Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.cpp58 uint32_t AbbrCode) const { in getAbbreviationDeclaration()
61 if (Decl.getCode() == AbbrCode) in getAbbreviationDeclaration()
66 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
68 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
H A DDWARFDebugInfoEntry.cpp36 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast() local
37 if (0 == AbbrCode) { in extractFast()
42 AbbrevDecl = U.getAbbreviations()->getAbbreviationDeclaration(AbbrCode); in extractFast()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DDWARFVisitor.cpp50 auto FirstAbbrevCode = Unit.Entries[0].AbbrCode; in traverseDebugInfo()
54 if (Entry.AbbrCode == 0u) in traverseDebugInfo()
56 auto &Abbrev = DebugInfo.AbbrevDecls[Entry.AbbrCode - FirstAbbrevCode]; in traverseDebugInfo()
H A DDWARFEmitter.cpp156 encodeULEB128(DIE.AbbrCode, OS); in onStartDIE()
325 Length += getULEB128Size(DIE.AbbrCode); in onStartDIE()
H A DDWARFYAML.cpp110 IO.mapRequired("AbbrCode", Entry.AbbrCode); in mapping()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h41 getAbbreviationDeclaration(uint32_t AbbrCode) const;
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h97 llvm::yaml::Hex32 AbbrCode; member