HomeSort by relevance Sort by last modified time
    Searched defs:MDNode (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/VMCore/
Metadata.cpp 51 // 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)
126 /// ~MDNode - Destroy MDNode
    [all...]
  /external/llvm/include/llvm/
Metadata.h 72 /// MDNode - a tuple of other values.
73 class MDNode : public Value, public FoldingSetNode {
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/include/llvm/Analysis/
DebugInfo.h 35 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 *N = 0) : DIDescriptor(N) {
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 214 | MDNode
392 external mdnode : llcontext -> llvalue array -> llvalue = "llvm_mdnode"
    [all...]
llvm_ocaml.c 414 MDNode,
465 DEFINE_CASE(Val, MDNode);
    [all...]

Completed in 101 milliseconds