HomeSort by relevance Sort by last modified time
    Searched refs:KindID (Results 1 - 6 of 6) 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 587 void Instruction::setMetadata(unsigned KindID, MDNode *Node) {
591 if (KindID == LLVMContext::MD_dbg) {
606 if (Info[i].first == KindID) {
613 Info.push_back(std::make_pair(KindID, Node));
626 if (Info.size() == 1 && Info[0].first == KindID) {
634 if (Info[i].first == KindID) {
643 MDNode *Instruction::getMetadataImpl(unsigned KindID) const {
645 if (KindID == LLVMContext::MD_dbg)
655 if (I->first == KindID)
Core.cpp 461 LLVMValueRef LLVMGetMetadata(LLVMValueRef Inst, unsigned KindID) {
462 return wrap(unwrap<Instruction>(Inst)->getMetadata(KindID));
465 void LLVMSetMetadata(LLVMValueRef Inst, unsigned KindID, LLVMValueRef MD) {
466 unwrap<Instruction>(Inst)->setMetadata(KindID, MD? unwrap<MDNode>(MD) : NULL);
    [all...]
  /external/llvm/include/llvm/IR/
Instruction.h 140 MDNode *getMetadata(unsigned KindID) const {
142 return getMetadataImpl(KindID);
153 /// element of each pair returned is the KindID, the second element is the
154 /// metadata value. This list is returned sorted by the KindID.
171 void setMetadata(unsigned KindID, MDNode *Node);
241 MDNode *getMetadataImpl(unsigned KindID) const;
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]

Completed in 222 milliseconds