Home
last modified time | relevance | path

Searched refs:AbbrCode (Results 1 – 19 of 19) 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/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp57 uint32_t AbbrCode) const { in getAbbreviationDeclaration()
60 if (Decl.getCode() == AbbrCode) in getAbbreviationDeclaration()
65 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
67 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
DDWARFDebugInfoEntry.cpp35 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast() local
36 if (0 == AbbrCode) { in extractFast()
41 AbbrevDecl = U.getAbbreviations()->getAbbreviationDeclaration(AbbrCode); in extractFast()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp57 uint32_t AbbrCode) const { in getAbbreviationDeclaration()
60 if (Decl.getCode() == AbbrCode) in getAbbreviationDeclaration()
65 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
67 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
DDWARFDebugInfoEntry.cpp35 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast() local
36 if (0 == AbbrCode) { in extractFast()
42 AbbrevDecl = AbbrevSet->getAbbreviationDeclaration(AbbrCode); in extractFast()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DDWARFVisitor.cpp49 auto FirstAbbrevCode = Unit.Entries[0].AbbrCode; in traverseDebugInfo()
53 if (Entry.AbbrCode == 0u) in traverseDebugInfo()
55 auto &Abbrev = DebugInfo.AbbrevDecls[Entry.AbbrCode - FirstAbbrevCode]; in traverseDebugInfo()
DDWARFEmitter.cpp155 encodeULEB128(DIE.AbbrCode, OS); in onStartDIE()
327 Length += getULEB128Size(DIE.AbbrCode); in onStartDIE()
DDWARFYAML.cpp109 IO.mapRequired("AbbrCode", Entry.AbbrCode); in mapping()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAbbrev.h34 getAbbreviationDeclaration(uint32_t AbbrCode) const;
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAbbrev.h40 getAbbreviationDeclaration(uint32_t AbbrCode) const;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAbbrev.h40 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()
/external/llvm-project/llvm/lib/ObjectYAML/
DDWARFEmitter.cpp271 encodeULEB128(Entry.AbbrCode, OS); in writeDIE()
272 uint32_t AbbrCode = Entry.AbbrCode; in writeDIE() local
273 if (AbbrCode == 0 || Entry.Values.empty()) in writeDIE()
287 if (AbbrCode > AbbrevDecls.size()) in writeDIE()
292 const DWARFYAML::Abbrev &Abbrev = AbbrevDecls[AbbrCode - 1]; in writeDIE()
DDWARFYAML.cpp196 IO.mapRequired("AbbrCode", Entry.AbbrCode); in mapping()
/external/llvm-project/llvm/tools/llvm-dwp/
Dllvm-dwp.cpp100 static uint64_t getCUAbbrev(StringRef Abbrev, uint64_t AbbrCode) { in getCUAbbrev() argument
104 while ((CurCode = AbbrevData.getULEB128(&Offset)) != AbbrCode) { in getCUAbbrev()
167 uint32_t AbbrCode = InfoData.getULEB128(&Offset); in getCUIdentifiers() local
170 uint64_t AbbrevOffset = getCUAbbrev(Abbrev, AbbrCode); in getCUIdentifiers()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h96 llvm::yaml::Hex32 AbbrCode; member
/external/llvm-project/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp238 NewEntry.AbbrCode = EntryData.getULEB128(&offset); in dumpDebugInfo()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h99 llvm::yaml::Hex32 AbbrCode; member