Searched defs:KindID (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/IR/
H A DAttributeImpl.h33 unsigned char KindID; ///< Holds the AttrEntryKind of the attribute member in class:llvm::AttributeImpl
46 AttributeImpl(AttrEntryKind KindID) : KindID(KindID) {} argument
51 bool isEnumAttribute() const { return KindID == EnumAttrEntry; }
52 bool isAlignAttribute() const { return KindID == AlignAttrEntry; }
53 bool isStringAttribute() const { return KindID == StringAttrEntry; }
H A DMetadata.cpp634 void Instruction::setMetadata(unsigned KindID, MDNode *Node) { argument
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)
H A DCore.cpp556 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) { argument
557 return wrap(unwrap<Instruction>(Inst)->getMetadata(KindID));
560 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) { argument
561 unwrap<Instruction>(Inst)->setMetadata(KindID,
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp44 static int KindID; member in class:__anon26099::DiagnosticInfoUnsupported
47 if (KindID == 0)
48 KindID = llvm::getNextAvailablePluginDiagnosticKind();
49 return KindID;
71 int DiagnosticInfoUnsupported::KindID = 0; member in class:__anon26099::DiagnosticInfoUnsupported

Completed in 181 milliseconds