Searched refs:debug_macro_data (Results 1 – 3 of 3) sorted by relevance
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFDebugMacro.cpp | 21 DWARFDebugMacroHeader::ParseHeader(const DWARFDataExtractor &debug_macro_data, in ParseHeader() argument 26 header.m_version = debug_macro_data.GetU16(offset); in ParseHeader() 28 uint8_t flags = debug_macro_data.GetU8(offset); in ParseHeader() 33 header.m_debug_line_offset = debug_macro_data.GetU64(offset); in ParseHeader() 35 header.m_debug_line_offset = debug_macro_data.GetU32(offset); in ParseHeader() 40 SkipOperandTable(debug_macro_data, offset); in ParseHeader() 46 const DWARFDataExtractor &debug_macro_data, lldb::offset_t *offset) { in SkipOperandTable() argument 47 uint8_t entry_count = debug_macro_data.GetU8(offset); in SkipOperandTable() 50 debug_macro_data.GetU8(offset); in SkipOperandTable() 52 uint64_t operand_count = debug_macro_data.GetULEB128(offset); in SkipOperandTable() [all …]
|
H A D | DWARFDebugMacro.h | 36 ParseHeader(const DWARFDataExtractor &debug_macro_data, 42 static void SkipOperandTable(const DWARFDataExtractor &debug_macro_data, 52 static void ReadMacroEntries(const DWARFDataExtractor &debug_macro_data,
|
H A D | SymbolFileDWARF.cpp | 1294 const DWARFDataExtractor &debug_macro_data = m_context.getOrLoadMacroData(); in ParseDebugMacros() 1295 if (debug_macro_data.GetByteSize() == 0) in ParseDebugMacros() 1302 DWARFDebugMacroHeader::ParseHeader(debug_macro_data, offset); 1304 debug_macro_data, m_context.getOrLoadStrData(), header.OffsetIs64Bit(), in ParseDebugMacros() 1287 const DWARFDataExtractor &debug_macro_data = m_context.getOrLoadMacroData(); ParseDebugMacros() local
|