Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.cpp33 DWARFAbbreviationDeclaration AbbrDecl; in extract() local
37 AbbrDecl.extract(Data, OffsetPtr); in extract()
45 FirstAbbrCode = AbbrDecl.getCode(); in extract()
46 } else if (PrevAbbrCode + 1 != AbbrDecl.getCode()) { in extract()
50 PrevAbbrCode = AbbrDecl.getCode(); in extract()
51 Decls.push_back(std::move(AbbrDecl)); in extract()
H A DDWARFDie.cpp673 auto AbbrDecl = Die.getAbbreviationDeclarationPtr(); in attribute_iterator() local
674 assert(AbbrDecl && "Must have abbreviation declaration"); in attribute_iterator()
677 Index = AbbrDecl->getNumAttributes(); in attribute_iterator()
680 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize(); in attribute_iterator()
681 updateForIndex(*AbbrDecl, 0); in attribute_iterator()
686 const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I) { in updateForIndex() argument
689 auto NumAttrs = AbbrDecl.getNumAttributes(); in updateForIndex()
691 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index); in updateForIndex()
695 if (AbbrDecl.getAttrIsImplicitConstByIndex(Index)) in updateForIndex()
697 AbbrDecl.getFormByIndex(Index), in updateForIndex()
[all …]
H A DDWARFUnit.cpp469 if (const DWARFAbbreviationDeclaration *AbbrDecl = in extractDIEsToVector() local
471 if (AbbrDecl->hasChildren()) { in extractDIEsToVector()
H A DDWARFVerifier.cpp376 for (auto AbbrDecl : *AbbrDecls) { in verifyAbbrevSection()
378 for (auto Attribute : AbbrDecl.attributes()) { in verifyAbbrevSection()
385 AbbrDecl.dump(OS); in verifyAbbrevSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDie.h318 void updateForIndex(const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I);