Home
last modified time | relevance | path

Searched refs:AbbrDecl (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp30 DWARFAbbreviationDeclaration AbbrDecl; in extract() local
32 while (AbbrDecl.extract(Data, OffsetPtr)) { in extract()
34 FirstAbbrCode = AbbrDecl.getCode(); in extract()
36 if (PrevAbbrCode + 1 != AbbrDecl.getCode()) { in extract()
41 PrevAbbrCode = AbbrDecl.getCode(); in extract()
42 Decls.push_back(std::move(AbbrDecl)); in extract()
DDWARFUnit.cpp169 if (const DWARFAbbreviationDeclaration *AbbrDecl = in setDIERelations() local
172 if (AbbrDecl->hasChildren()) { in setDIERelations()
217 if (const DWARFAbbreviationDeclaration *AbbrDecl = in extractDIEsToVector() local
220 if (AbbrDecl->hasChildren()) in extractDIEsToVector()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp34 DWARFAbbreviationDeclaration AbbrDecl; in extract() local
36 while (AbbrDecl.extract(Data, OffsetPtr)) { in extract()
38 FirstAbbrCode = AbbrDecl.getCode(); in extract()
40 if (PrevAbbrCode + 1 != AbbrDecl.getCode()) { in extract()
45 PrevAbbrCode = AbbrDecl.getCode(); in extract()
46 Decls.push_back(std::move(AbbrDecl)); in extract()
DDWARFDie.cpp583 auto AbbrDecl = Die.getAbbreviationDeclarationPtr(); in attribute_iterator() local
584 assert(AbbrDecl && "Must have abbreviation declaration"); in attribute_iterator()
587 Index = AbbrDecl->getNumAttributes(); in attribute_iterator()
590 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize(); in attribute_iterator()
591 updateForIndex(*AbbrDecl, 0); in attribute_iterator()
596 const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I) { in updateForIndex() argument
599 auto NumAttrs = AbbrDecl.getNumAttributes(); in updateForIndex()
601 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index); in updateForIndex()
604 AttrValue.Value.setForm(AbbrDecl.getFormByIndex(Index)); in updateForIndex()
620 if (auto AbbrDecl = Die.getAbbreviationDeclarationPtr()) in operator ++() local
[all …]
DDWARFVerifier.cpp219 for (auto AbbrDecl : *AbbrDecls) { in verifyAbbrevSection()
221 for (auto Attribute : AbbrDecl.attributes()) { in verifyAbbrevSection()
226 AbbrDecl.dump(OS); in verifyAbbrevSection()
DDWARFUnit.cpp238 if (const DWARFAbbreviationDeclaration *AbbrDecl = in extractDIEsToVector() local
241 if (AbbrDecl->hasChildren()) in extractDIEsToVector()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDie.h300 void updateForIndex(const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I);