Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugAbbrev.cpp54 dw_uleb128_t abbrCode) const { in GetAbbreviationDeclaration()
59 if (pos->Code() == abbrCode) in GetAbbreviationDeclaration()
63 uint32_t idx = abbrCode - m_idx_offset; in GetAbbreviationDeclaration()
DDWARFDebugAbbrev.h46 GetAbbreviationDeclaration(dw_uleb128_t abbrCode) const;
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugInfoEntry.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()
/external/llvm-project/llvm/include/llvm/Bitcode/
DBitcodeConvenience.h397 unsigned abbrCode, unsigned recordID, Data &&...data) {
405 Stream, buffer, abbrCode, recordID, std::forward<Data>(data)...);
466 unsigned abbrCode, Data &&...data) {
467 Base::emitRecord(Stream, buffer, abbrCode, RecordCode,
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDie.cpp620 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump() local
625 if (abbrCode) { in dump()
631 OS << format(" [%u] %c", abbrCode, in dump()
659 << abbrCode << '\n'; in dump()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDie.cpp584 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump() local
589 if (abbrCode) { in dump()
595 OS << format(" [%u] %c", abbrCode, in dump()
623 << abbrCode << '\n'; in dump()
/external/llvm-project/lld/lib/ReaderWriter/MachO/
DMachONormalizedFileToAtoms.cpp838 uint64_t abbrCode) { in getCUAbbrevOffset() argument
841 while ((curCode = abbrevData.getULEB128(&offset)) != abbrCode) { in getCUAbbrevOffset()
900 uint32_t abbrCode = infoData.getULEB128(&offset); in readCompUnit() local
902 uint64_t abbrevOffset = getCUAbbrevOffset(abbrevData, abbrCode); in readCompUnit()