Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.cpp64 dw_uleb128_t abbrCode) const { in GetAbbreviationDeclaration()
69 if (pos->Code() == abbrCode) in GetAbbreviationDeclaration()
73 uint32_t idx = abbrCode - m_idx_offset; in GetAbbreviationDeclaration()
H A DDWARFDebugAbbrev.h47 GetAbbreviationDeclaration(dw_uleb128_t abbrCode) const;
H A DDWARFDebugInfoEntry.cpp612 dw_uleb128_t abbrCode = debug_info_data.GetULEB128(&offset); in Dump() local
616 if (abbrCode != m_abbr_idx) { in Dump()
618 } else if (abbrCode) { in Dump()
620 cu->GetAbbreviations()->GetAbbreviationDeclaration(abbrCode); in Dump()
624 s.Printf(" [%u] %c\n", abbrCode, abbrevDecl->HasChildren() ? '*' : ' '); in Dump()
650 abbrCode); in Dump()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp586 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump() local
591 if (abbrCode) { in dump()
597 OS << format(" [%u] %c", abbrCode, in dump()
625 << abbrCode << '\n'; in dump()
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileToAtoms.cpp837 uint64_t abbrCode) { in getCUAbbrevOffset() argument
840 while ((curCode = abbrevData.getULEB128(&offset)) != abbrCode) { in getCUAbbrevOffset()
899 uint32_t abbrCode = infoData.getULEB128(&offset); in readCompUnit() local
901 uint32_t abbrevOffset = getCUAbbrevOffset(abbrevData, abbrCode); in readCompUnit()