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...]
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 the underlying MDNode
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); }
140 explicit DISubrange(const MDNode *
[all...]
/external/llvm/lib/VMCore/
H A DMetadata.cpp52 // Use CallbackVH to hold MDNode operands.
55 MDNode *getParent() {
63 return reinterpret_cast<MDNode*>(Cur) - 1;
95 // MDNode implementation.
99 /// the end of the MDNode.
100 static MDNodeOperand *getOperandPtr(MDNode *N, unsigned Op) {
106 void MDNode::replaceOperandWith(unsigned i, Value *Val) {
111 MDNode::MDNode(LLVMContext &C, ArrayRef<Value*> Vals, bool isFunctionLocal) function in class:MDNode
130 /// ~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 3467 milliseconds