Home
last modified time | relevance | path

Searched refs:AbbrevDecl (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugInfoEntry.cpp33 if (AbbrevDecl) { in dump()
40 AbbrevDecl->hasChildren() ? '*' : ' '); in dump()
43 const uint32_t numAttributes = AbbrevDecl->getNumAttributes(); in dump()
45 uint16_t attr = AbbrevDecl->getAttrByIndex(i); in dump()
46 uint16_t form = AbbrevDecl->getFormByIndex(i); in dump()
109 AbbrevDecl = cu->getAbbreviations()->getAbbreviationDeclaration(abbrCode); in extractFast()
112 const uint32_t numAttributes = AbbrevDecl->getNumAttributes(); in extractFast()
116 form = AbbrevDecl->getFormByIndex(i); in extractFast()
203 AbbrevDecl = NULL; in extractFast()
223 AbbrevDecl = cu->getAbbreviations()->getAbbreviationDeclaration(abbrCode); in extract()
[all …]
DDWARFDebugInfoEntry.h35 const DWARFAbbreviationDeclaration *AbbrevDecl; variable
38 : Offset(0), ParentIdx(0), SiblingIdx(0), AbbrevDecl(0) {} in DWARFDebugInfoEntryMinimal()
53 uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; } in getTag()
54 bool isNULL() const { return AbbrevDecl == 0; } in isNULL()
57 return !isNULL() ? AbbrevDecl->getNumAttributes() : 0; in getNumAttributes()
59 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); } in hasChildren()
106 return AbbrevDecl; in getAbbreviationDeclarationPtr()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugInfoEntry.h36 const DWARFAbbreviationDeclaration *AbbrevDecl; variable
39 : Offset(0), SiblingIdx(0), AbbrevDecl(nullptr) {} in DWARFDebugInfoEntryMinimal()
51 uint32_t getTag() const { return AbbrevDecl ? AbbrevDecl->getTag() : 0; } in getTag()
52 bool isNULL() const { return AbbrevDecl == nullptr; } in isNULL()
61 bool hasChildren() const { return !isNULL() && AbbrevDecl->hasChildren(); } in hasChildren()
86 return AbbrevDecl; in getAbbreviationDeclarationPtr()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.cpp47 if (AbbrevDecl) { in dump()
56 AbbrevDecl->hasChildren() ? '*' : ' '); in dump()
59 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in dump()
194 AbbrevDecl = nullptr; in extractFast()
197 AbbrevDecl = U->getAbbreviations()->getAbbreviationDeclaration(AbbrCode); in extractFast()
198 if (nullptr == AbbrevDecl) { in extractFast()
208 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in extractFast()
236 if (!AbbrevDecl) in getAttributeValue()
239 uint32_t AttrIdx = AbbrevDecl->findAttributeIndex(Attr); in getAttributeValue()
251 DWARFFormValue::skipValue(AbbrevDecl->getFormByIndex(i), in getAttributeValue()
[all …]