HomeSort by relevance Sort by last modified time
    Searched refs:KindID (Results 1 - 10 of 10) 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 isIntAttribute() const { return KindID == IntAttrEntry; }
53 bool isStringAttribute() const { return KindID == StringAttrEntry; }
Metadata.cpp 1036 void Instruction::setMetadata(unsigned KindID, MDNode *Node) {
1041 if (KindID == LLVMContext::MD_dbg) {
1056 if (P.first == KindID) {
1063 Info.emplace_back(std::piecewise_construct, std::make_tuple(KindID),
1077 if (Info.size() == 1 && Info[0].first == KindID) {
1085 if (Info[i].first == KindID) {
    [all...]
Core.cpp 558 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) {
561 if (auto *MD = I->getMetadata(KindID))
580 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef Val) {
583 unwrap<Instruction>(Inst)->setMetadata(KindID, N);
    [all...]
  /external/llvm/bindings/go/llvm/
IRBindings.h 50 void LLVMSetMetadata2(LLVMValueRef Inst, unsigned KindID, LLVMMetadataRef MD);
IRBindings.cpp 83 void LLVMSetMetadata2(LLVMValueRef Inst, unsigned KindID, LLVMMetadataRef MD) {
85 unwrap<Instruction>(Inst)->setMetadata(KindID, N);
  /external/llvm/include/llvm/IR/
Instruction.h 166 MDNode *getMetadata(unsigned KindID) const {
168 return getMetadataImpl(KindID);
179 /// element of each pair returned is the KindID, the second element is the
180 /// metadata value. This list is returned sorted by the KindID.
203 void setMetadata(unsigned KindID, MDNode *Node);
297 MDNode *getMetadataImpl(unsigned KindID) const;
  /external/llvm/lib/Target/BPF/
BPFISelLowering.cpp 48 static int KindID;
51 if (KindID == 0)
52 KindID = llvm::getNextAvailablePluginDiagnosticKind();
53 return KindID;
88 int DiagnosticInfoUnsupported::KindID = 0;
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 43 static int KindID;
46 if (KindID == 0)
47 KindID = llvm::getNextAvailablePluginDiagnosticKind();
48 return KindID;
70 int DiagnosticInfoUnsupported::KindID = 0;
    [all...]
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]

Completed in 1014 milliseconds