Home
last modified time | relevance | path

Searched refs:debug_info_data (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.cpp101 debug_info_data.GetCStr(&offset); in FastExtract()
167 debug_info_data.Skip_LEB128(&offset); in FastExtract()
172 form = debug_info_data.GetULEB128(&offset); in FastExtract()
178 debug_info_data.GetU64(&offset); in FastExtract()
180 debug_info_data.GetU32(&offset); in FastExtract()
283 debug_info_data.GetCStr(&offset); in Extract()
335 debug_info_data.Skip_LEB128(&offset); in Extract()
346 debug_info_data.GetU64(&offset); in Extract()
348 debug_info_data.GetU32(&offset); in Extract()
433 if (!debug_info_data.ValidOffset(offset)) in GetDIENamesAndRanges()
[all …]
H A DDWARFFormValue.cpp289 bool DWARFFormValue::SkipValue(const DWARFDataExtractor &debug_info_data, in SkipValue() argument
291 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, m_cu); in SkipValue()
295 const DWARFDataExtractor &debug_info_data, in SkipValue() argument
304 dw_uleb128_t size = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
309 dw_uleb128_t size = debug_info_data.GetU8(offset_ptr); in SkipValue()
314 dw_uleb128_t size = debug_info_data.GetU16(offset_ptr); in SkipValue()
319 dw_uleb128_t size = debug_info_data.GetU32(offset_ptr); in SkipValue()
326 debug_info_data.GetCStr(offset_ptr); in SkipValue()
404 debug_info_data.Skip_LEB128(offset_ptr); in SkipValue()
408 dw_form_t indirect_form = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
[all …]
H A DDWARFFormValue.h84 bool SkipValue(const lldb_private::DWARFDataExtractor &debug_info_data,
87 const lldb_private::DWARFDataExtractor &debug_info_data,
H A DDWARFDebugInfo.cpp101 const auto &debug_info_data = m_dwarf2Data->get_debug_info_data(); in ParseCompileUnitHeadersIfNeeded() local
102 while ((cu_sp = DWARFCompileUnit::Extract(m_dwarf2Data, debug_info_data, in ParseCompileUnitHeadersIfNeeded()
H A DDWARFDebugInfoEntry.h73 bool FastExtract(const lldb_private::DWARFDataExtractor &debug_info_data,
177 const lldb_private::DWARFDataExtractor &debug_info_data,
H A DSymbolFileDWARF.cpp3293 auto debug_info_data = die.GetData(); in ParseVariableDIE() local
3297 form_value.BlockData() - debug_info_data.GetDataStart(); in ParseVariableDIE()
3299 location.CopyOpcodeData(module, debug_info_data, block_offset, in ParseVariableDIE()
3320 location.CopyOpcodeData(module, debug_info_data, data_offset, in ParseVariableDIE()
3333 location.CopyOpcodeData(module, debug_info_data, data_offset, in ParseVariableDIE()
3338 str - (const char *)debug_info_data.GetDataStart(); in ParseVariableDIE()
3340 location.CopyOpcodeData(module, debug_info_data, in ParseVariableDIE()
H A DDWARFASTParserClang.cpp2769 const DWARFDataExtractor &debug_info_data = die.GetData(); in ParseChildMembers() local
2772 form_value.BlockData() - debug_info_data.GetDataStart(); in ParseChildMembers()
2776 module_sp, debug_info_data, die.GetCU(), block_offset, in ParseChildMembers()
3221 const DWARFDataExtractor &debug_info_data = die.GetData(); in ParseChildMembers() local
3224 form_value.BlockData() - debug_info_data.GetDataStart(); in ParseChildMembers()
3226 debug_info_data, die.GetCU(), in ParseChildMembers()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp575 DWARFDataExtractor debug_info_data = U->getDebugInfoExtractor(); in dump() local
585 if (debug_info_data.isValidOffset(offset)) { in dump()
586 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump()