Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugInfoEntry.cpp37 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast() local
38 if (0 == AbbrCode) { in extractFast()
54 AbbrevDecl = AbbrevSet->getAbbreviationDeclaration(AbbrCode); in extractFast()
61 U.getOffset(), AbbrCode, *OffsetPtr, in extractFast()
H A DDWARFDebugAbbrev.cpp63 uint32_t AbbrCode) const { in getAbbreviationDeclaration()
66 if (Decl.getCode() == AbbrCode) in getAbbreviationDeclaration()
71 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
73 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h40 getAbbreviationDeclaration(uint32_t AbbrCode) const;
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A 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()
H A DDWARFYAML.cpp223 IO.mapRequired("AbbrCode", Entry.AbbrCode); in mapping()
/freebsd/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp42 static uint64_t getCUAbbrev(StringRef Abbrev, uint64_t AbbrCode) { in getCUAbbrev() argument
45 while (AbbrevData.getULEB128(&Offset) != AbbrCode) { in getCUAbbrev()
108 uint32_t AbbrCode = InfoData.getULEB128(&Offset); in getCUIdentifiers() local
110 uint64_t AbbrevOffset = getCUAbbrev(Abbrev, AbbrCode); in getCUIdentifiers()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h100 llvm::yaml::Hex32 AbbrCode; member