HomeSort by: relevance | last modified time | path
    Searched refs:AbbrDecl (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugAbbrev.cpp 33 DWARFAbbreviationDeclaration AbbrDecl;
35 while (AbbrDecl.extract(Data, OffsetPtr)) {
37 FirstAbbrCode = AbbrDecl.getCode();
39 if (PrevAbbrCode + 1 != AbbrDecl.getCode()) {
44 PrevAbbrCode = AbbrDecl.getCode();
45 Decls.push_back(std::move(AbbrDecl));
DWARFDie.cpp 697 auto AbbrDecl = Die.getAbbreviationDeclarationPtr();
698 assert(AbbrDecl && "Must have abbreviation declaration");
701 Index = AbbrDecl->getNumAttributes();
704 AttrValue.Offset = D.getOffset() + AbbrDecl->getCodeByteSize();
705 updateForIndex(*AbbrDecl, 0);
710 const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I) {
712 // AbbrDecl must be valid before calling this function.
713 auto NumAttrs = AbbrDecl.getNumAttributes();
715 AttrValue.Attr = AbbrDecl.getAttrByIndex(Index);
719 if (AbbrDecl.getAttrIsImplicitConstByIndex(Index)
    [all...]
DWARFVerifier.cpp 261 for (auto AbbrDecl : *AbbrDecls) {
263 for (auto Attribute : AbbrDecl.attributes()) {
268 AbbrDecl.dump(OS);
DWARFUnit.cpp 383 if (const DWARFAbbreviationDeclaration *AbbrDecl =
386 if (AbbrDecl->hasChildren())
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDie.h 318 void updateForIndex(const DWARFAbbreviationDeclaration &AbbrDecl, uint32_t I);

Completed in 158 milliseconds