HomeSort by relevance Sort by last modified time
    Searched refs:KindID (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/IR/
AttributeImpl.h 33 unsigned char KindID; ///< Holds the AttrEntryKind of the attribute
46 AttributeImpl(AttrEntryKind KindID) : KindID(KindID) {}
51 bool isEnumAttribute() const { return KindID == EnumAttrEntry; }
52 bool isAlignAttribute() const { return KindID == AlignAttrEntry; }
53 bool isStringAttribute() const { return KindID == StringAttrEntry; }
Metadata.cpp 634 void Instruction::setMetadata(unsigned KindID, MDNode *Node) {
638 if (KindID == LLVMContext::MD_dbg) {
653 if (P.first == KindID) {
660 Info.push_back(std::make_pair(KindID, Node));
673 if (Info.size() == 1 && Info[0].first == KindID) {
681 if (Info[i].first == KindID) {
690 MDNode *Instruction::getMetadataImpl(unsigned KindID) const {
692 if (KindID == LLVMContext::MD_dbg)
701 if (I.first == KindID)
Core.cpp 556 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) {
557 return wrap(unwrap<Instruction>(Inst)->getMetadata(KindID));
560 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) {
561 unwrap<Instruction>(Inst)->setMetadata(KindID,
    [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 143 MDNode *getMetadata(unsigned KindID) const {
145 return getMetadataImpl(KindID);
156 /// element of each pair returned is the KindID, the second element is the
157 /// metadata value. This list is returned sorted by the KindID.
174 void setMetadata(unsigned KindID, MDNode *Node);
259 MDNode *getMetadataImpl(unsigned KindID) const;
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 44 static int KindID;
47 if (KindID == 0)
48 KindID = llvm::getNextAvailablePluginDiagnosticKind();
49 return KindID;
71 int DiagnosticInfoUnsupported::KindID = 0;
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]

Completed in 114 milliseconds