Home
last modified time | relevance | path

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

/external/llvm/lib/DebugInfo/
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()
DDWARFDebugInfoEntry.cpp34 if (AbbrevDecl) { in dump()
41 AbbrevDecl->hasChildren() ? '*' : ' '); in dump()
44 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in dump()
103 AbbrevDecl = nullptr; in extractFast()
106 AbbrevDecl = U->getAbbreviations()->getAbbreviationDeclaration(AbbrCode); in extractFast()
107 if (nullptr == AbbrevDecl) { in extractFast()
117 for (const auto &AttrSpec : AbbrevDecl->attributes()) { in extractFast()
145 if (!AbbrevDecl) in getAttributeValue()
148 uint32_t AttrIdx = AbbrevDecl->findAttributeIndex(Attr); in getAttributeValue()
160 DWARFFormValue::skipValue(AbbrevDecl->getFormByIndex(i), in getAttributeValue()
[all …]