Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
HDDWARFDebugAbbrev.cpp70 DWARFAbbreviationDeclarationSet::GetAbbreviationDeclaration(dw_uleb128_t abbrCode) const in GetAbbreviationDeclaration()
78 if (pos->Code() == abbrCode) in GetAbbreviationDeclaration()
84 uint32_t idx = abbrCode - m_idx_offset; in GetAbbreviationDeclaration()
HDDWARFDebugAbbrev.h50 const DWARFAbbreviationDeclaration* GetAbbreviationDeclaration(dw_uleb128_t abbrCode) const;
HDDWARFDebugInfoEntry.cpp966 dw_uleb128_t abbrCode = debug_info_data.GetULEB128(&offset); in Dump() local
970 if (abbrCode != m_abbr_idx) in Dump()
974 else if (abbrCode) in Dump()
976 …bbreviationDeclaration* abbrevDecl = cu->GetAbbreviations()->GetAbbreviationDeclaration (abbrCode); in Dump()
981 s.Printf( " [%u] %c\n", abbrCode, abbrevDecl->HasChildren() ? '*':' '); in Dump()
1009 … s.Printf( "Abbreviation code note found in 'debug_abbrev' class for code: %u\n", abbrCode); in Dump()
/NextBSD/contrib/llvm/lib/DebugInfo/DWARF/
HDDWARFDebugInfoEntry.cpp43 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump() local
46 if (abbrCode) { in dump()
55 OS << format(" [%u] %c\n", abbrCode, in dump()
72 << abbrCode << '\n'; in dump()