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 48 // Use CallbackVH to hold MDNode operands.
51 MDNode *Parent;
53 MDNodeOperand(Value *V, MDNode *P) : CallbackVH(V), Parent(P) {}
77 // MDNode implementation.
81 /// the end of the MDNode.
82 static MDNodeOperand *getOperandPtr(MDNode *N, unsigned Op) {
88 MDNode::MDNode(LLVMContext &C, ArrayRef<Value*> Vals, bool isFunctionLocal)
103 /// ~MDNode - Destroy MDNode
    [all...]
  /external/llvm/include/llvm/
Metadata.h 75 /// MDNode - a tuple of other values.
76 class MDNode : public Value, public FoldingSetNode {
77 MDNode(const MDNode &); // DO NOT IMPLEMENT
78 void operator=(const MDNode &); // DO NOT IMPLEMENT
83 /// end of this MDNode.
88 /// FunctionLocalBit - This bit is set if this MDNode is function local.
112 ~MDNode();
114 MDNode(LLVMContext &C, ArrayRef<Value*> Vals, bool isFunctionLocal);
116 static MDNode *getMDNode(LLVMContext &C, ArrayRef<Value*> Vals
    [all...]
  /external/llvm/include/llvm/Analysis/
DebugInfo.h 35 class MDNode;
47 /// DIDescriptor - A thin wraper around MDNode to access encoded debug info.
48 /// This should not be stored in a container, because underly MDNode may
65 const MDNode *DbgNode;
85 explicit DIDescriptor(const MDNode *N) : DbgNode(N) {}
95 operator MDNode *() const { return const_cast<MDNode*>(DbgNode); }
96 MDNode *operator ->() const { return const_cast<MDNode*>(DbgNode); }
136 explicit DISubrange(const MDNode *N = 0) : DIDescriptor(N) {
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 213 | MDNode
391 external mdnode : llcontext -> llvalue array -> llvalue = "llvm_mdnode"
    [all...]
llvm_ocaml.c 415 MDNode,
466 DEFINE_CASE(Val, MDNode);
    [all...]

Completed in 572 milliseconds