Home
last modified time | relevance | path

Searched refs:AbbrCode (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp54 uint32_t AbbrCode) const { in getAbbreviationDeclaration()
57 if (Decl.getCode() == AbbrCode) in getAbbreviationDeclaration()
62 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
64 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
DDWARFDebugInfoEntry.cpp191 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast() local
192 if (0 == AbbrCode) { in extractFast()
197 AbbrevDecl = U->getAbbreviations()->getAbbreviationDeclaration(AbbrCode); in extractFast()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAbbrev.h34 getAbbreviationDeclaration(uint32_t AbbrCode) const;
/external/llvm/tools/llvm-dwp/
Dllvm-dwp.cpp92 static uint32_t getCUAbbrev(StringRef Abbrev, uint64_t AbbrCode) { in getCUAbbrev() argument
96 while ((CurCode = AbbrevData.getULEB128(&Offset)) != AbbrCode) { in getCUAbbrev()
141 uint32_t AbbrCode = InfoData.getULEB128(&Offset); in getCUIdentifiers() local
144 uint32_t AbbrevOffset = getCUAbbrev(Abbrev, AbbrCode); in getCUIdentifiers()