Home
last modified time | relevance | path

Searched refs:debug_macro_data (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugMacro.cpp19 DWARFDebugMacroHeader::ParseHeader(const DWARFDataExtractor &debug_macro_data, in ParseHeader() argument
24 header.m_version = debug_macro_data.GetU16(offset); in ParseHeader()
26 uint8_t flags = debug_macro_data.GetU8(offset); in ParseHeader()
31 header.m_debug_line_offset = debug_macro_data.GetU64(offset); in ParseHeader()
33 header.m_debug_line_offset = debug_macro_data.GetU32(offset); in ParseHeader()
38 SkipOperandTable(debug_macro_data, offset); in ParseHeader()
44 const DWARFDataExtractor &debug_macro_data, lldb::offset_t *offset) { in SkipOperandTable() argument
45 uint8_t entry_count = debug_macro_data.GetU8(offset); in SkipOperandTable()
48 debug_macro_data.GetU8(offset); in SkipOperandTable()
50 uint64_t operand_count = debug_macro_data.GetULEB128(offset); in SkipOperandTable()
[all …]
DDWARFDebugMacro.h36 ParseHeader(const lldb_private::DWARFDataExtractor &debug_macro_data,
43 SkipOperandTable(const lldb_private::DWARFDataExtractor &debug_macro_data,
54 ReadMacroEntries(const lldb_private::DWARFDataExtractor &debug_macro_data,
DSymbolFileDWARF.cpp1087 const DWARFDataExtractor &debug_macro_data = m_context.getOrLoadMacroData(); in ParseDebugMacros() local
1088 if (debug_macro_data.GetByteSize() == 0) in ParseDebugMacros()
1095 DWARFDebugMacroHeader::ParseHeader(debug_macro_data, offset); in ParseDebugMacros()
1097 debug_macro_data, m_context.getOrLoadStrData(), header.OffsetIs64Bit(), in ParseDebugMacros()