diff options
| author | Manman Ren <mren@apple.com> | 2013-04-02 19:50:49 +0000 |
|---|---|---|
| committer | Manman Ren <mren@apple.com> | 2013-04-02 19:50:49 +0000 |
| commit | c018eea684349d9b726dcf9fced2b20f55cfeaea (patch) | |
| tree | 02f165456953444fd5c92cc587b2539153458de5 | |
| parent | b4d2a15d17982800bd1fbf886306a85f7f03de13 (diff) | |
| download | bcm5719-llvm-c018eea684349d9b726dcf9fced2b20f55cfeaea.tar.gz bcm5719-llvm-c018eea684349d9b726dcf9fced2b20f55cfeaea.zip | |
Add MDBuilder utilities for path-aware TBAA.
Add utilities to create struct nodes in TBAA type DAG and to create path-aware
tags. The format of struct nodes in TBAA type DAG: a unique name, a list of
fields with field offsets and field types. The format of path-aware tags:
a base type in TBAA type DAG, an access type and an offset relative to the base
type.
llvm-svn: 178564
| -rw-r--r-- | llvm/include/llvm/IR/MDBuilder.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/llvm/include/llvm/IR/MDBuilder.h b/llvm/include/llvm/IR/MDBuilder.h index 604051b90a5..a1e3fb1966e 100644 --- a/llvm/include/llvm/IR/MDBuilder.h +++ b/llvm/include/llvm/IR/MDBuilder.h @@ -156,6 +156,29 @@ public: return MDNode::get(Context, Vals); } + /// \brief Return metadata for a TBAA struct node in the type DAG + /// with the given name, parents in the TBAA DAG. + MDNode *createTBAAStructTypeNode(StringRef Name, + ArrayRef<std::pair<uint64_t, MDNode*> > Fields) { + SmallVector<Value *, 4> Ops(Fields.size() * 2 + 1); + Type *Int64 = IntegerType::get(Context, 64); + Ops[0] = createString(Name); + for (unsigned i = 0, e = Fields.size(); i != e; ++i) { + Ops[i * 2 + 1] = ConstantInt::get(Int64, Fields[i].first); + Ops[i * 2 + 2] = Fields[i].second; + } + return MDNode::get(Context, Ops); + } + + /// \brief Return metadata for a TBAA tag node with the given + /// base type, access type and offset relative to the base type. + MDNode *createTBAAStructTagNode(MDNode *BaseType, MDNode *AccessType, + uint64_t Offset) { + Type *Int64 = IntegerType::get(Context, 64); + Value *Ops[3] = { BaseType, AccessType, ConstantInt::get(Int64, Offset) }; + return MDNode::get(Context, Ops); + } + }; } // end namespace llvm |

