Searched refs:debug_macro_data (Results 1 – 3 of 3) sorted by relevance
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFDebugMacro.cpp | 20 DWARFDebugMacroHeader::ParseHeader(const DWARFDataExtractor &debug_macro_data, in ParseHeader() argument 25 header.m_version = debug_macro_data.GetU16(offset); in ParseHeader() 27 uint8_t flags = debug_macro_data.GetU8(offset); in ParseHeader() 32 header.m_debug_line_offset = debug_macro_data.GetU64(offset); in ParseHeader() 34 header.m_debug_line_offset = debug_macro_data.GetU32(offset); in ParseHeader() 39 SkipOperandTable(debug_macro_data, offset); in ParseHeader() 45 const DWARFDataExtractor &debug_macro_data, lldb::offset_t *offset) { in SkipOperandTable() argument 46 uint8_t entry_count = debug_macro_data.GetU8(offset); in SkipOperandTable() 49 debug_macro_data.GetU8(offset); in SkipOperandTable() 51 uint64_t operand_count = debug_macro_data.GetULEB128(offset); in SkipOperandTable() [all …]
|
H A D | DWARFDebugMacro.h | 36 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,
|
H A D | SymbolFileDWARF.cpp | 1211 const DWARFDataExtractor &debug_macro_data = m_context.getOrLoadMacroData(); in ParseDebugMacros() local 1212 if (debug_macro_data.GetByteSize() == 0) in ParseDebugMacros() 1219 DWARFDebugMacroHeader::ParseHeader(debug_macro_data, offset); in ParseDebugMacros() 1221 debug_macro_data, m_context.getOrLoadStrData(), header.OffsetIs64Bit(), in ParseDebugMacros()
|