Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp33 DWARFAbbreviationDeclaration AbbrDecl; in extract() local
35 while (AbbrDecl.extract(Data, OffsetPtr)) { in extract()
37 FirstAbbrCode = AbbrDecl.getCode(); in extract()
39 if (PrevAbbrCode + 1 != AbbrDecl.getCode()) { in extract()
44 PrevAbbrCode = AbbrDecl.getCode(); in extract()
45 Decls.push_back(std::move(AbbrDecl)); in extract()
DDWARFDie.cpp659 auto AbbrDecl = Die.getAbbreviationDeclarationPtr(); in attribute_iterator() local
660 assert(AbbrDecl && "Must have abbreviation declaration"); in attribute_iterator()
663 Index = AbbrDecl->getNumAttributes(); in attribute_iterator()
666 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize(); in attribute_iterator()
667 updateForIndex(*AbbrDecl, 0); in attribute_iterator()
672 const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I) { in updateForIndex() argument
675 auto NumAttrs = AbbrDecl.getNumAttributes(); in updateForIndex()
677 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index); in updateForIndex()
681 if (AbbrDecl.getAttrIsImplicitConstByIndex(Index)) in updateForIndex()
683 AbbrDecl.getFormByIndex(Index), in updateForIndex()
[all …]
DDWARFVerifier.cpp306 for (auto AbbrDecl : *AbbrDecls) { in verifyAbbrevSection()
308 for (auto Attribute : AbbrDecl.attributes()) { in verifyAbbrevSection()
313 AbbrDecl.dump(OS); in verifyAbbrevSection()
DDWARFUnit.cpp457 if (const DWARFAbbreviationDeclaration *AbbrDecl = in extractDIEsToVector() local
459 if (AbbrDecl->hasChildren()) { in extractDIEsToVector()
/openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDie.h318 void updateForIndex(const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I);