Searched defs:MDNode (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/
H A DMetadata.h72 /// MDNode - a tuple of other values.
73 class MDNode : public Value, public FoldingSetNode { class in namespace:llvm
74 MDNode(const MDNode &); // DO NOT IMPLEMENT
75 void operator=(const MDNode &); // DO NOT IMPLEMENT
78 friend struct FoldingSetTrait<MDNode>;
80 /// Hash - If the MDNode is uniqued cache the hash to speed up lookup.
84 /// end of this MDNode.
89 /// FunctionLocalBit - This bit is set if this MDNode is function local.
113 ~MDNode();
[all...]
/external/llvm/lib/VMCore/
H A DMetadata.cpp51 // Use CallbackVH to hold MDNode operands.
54 MDNode *getParent() {
62 return reinterpret_cast<MDNode*>(Cur) - 1;
90 // MDNode implementation.
94 /// the end of the MDNode.
95 static MDNodeOperand *getOperandPtr(MDNode *N, unsigned Op) {
101 void MDNode::replaceOperandWith(unsigned i, Value *Val) {
106 MDNode::MDNode(LLVMContext &C, ArrayRef<Value*> Vals, bool isFunctionLocal) function in class:MDNode
126 /// ~MDNode
[all...]
/external/llvm/include/llvm/Analysis/
H A DDebugInfo.h35 class MDNode;
48 /// DIDescriptor - A thin wraper around MDNode to access encoded debug info.
49 /// This should not be stored in a container, because underly MDNode may
66 const MDNode *DbgNode;
86 explicit DIDescriptor(const MDNode *N) : DbgNode(N) {}
96 operator MDNode *() const { return const_cast<MDNode*>(DbgNode); }
97 MDNode *operator ->() const { return const_cast<MDNode*>(DbgNode); }
138 explicit DISubrange(const MDNode *
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml214 | MDNode Constructor in type:ValueKind/t
H A Dllvm_ocaml.c414 MDNode, enumerator in enum:ValueKind
465 DEFINE_CASE(Val, MDNode);

Completed in 117 milliseconds