Home
last modified time | relevance | path

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

/trueos/contrib/llvm/lib/DebugInfo/
HDDWARFDebugAbbrev.cpp41 DWARFAbbreviationDeclarationSet::getAbbreviationDeclaration(uint32_t abbrCode) in getAbbreviationDeclaration()
47 if (pos->getCode() == abbrCode) in getAbbreviationDeclaration()
51 uint32_t idx = abbrCode - IdxOffset; in getAbbreviationDeclaration()
HDDWARFDebugInfoEntry.cpp29 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump() local
32 if (abbrCode) { in dump()
39 OS << format(" [%u] %c\n", abbrCode, in dump()
59 << abbrCode << '\n'; in dump()
HDDWARFDebugAbbrev.h47 getAbbreviationDeclaration(uint32_t abbrCode) const;
/trueos/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.cpp969 dw_uleb128_t abbrCode = debug_info_data.GetULEB128(&offset); in Dump() local
973 if (abbrCode != m_abbr_idx) in Dump()
977 else if (abbrCode) in Dump()
979 …bbreviationDeclaration* abbrevDecl = cu->GetAbbreviations()->GetAbbreviationDeclaration (abbrCode); in Dump()
984 s.Printf( " [%u] %c\n", abbrCode, abbrevDecl->HasChildren() ? '*':' '); in Dump()
1012 … s.Printf( "Abbreviation code note found in 'debug_abbrev' class for code: %u\n", abbrCode); in Dump()