Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp202 bool DWARFFormValue::SkipValue(const DWARFDataExtractor &debug_info_data, in SkipValue() argument
204 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, m_unit); in SkipValue()
208 const DWARFDataExtractor &debug_info_data, in SkipValue() argument
217 dw_uleb128_t size = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
222 dw_uleb128_t size = debug_info_data.GetU8(offset_ptr); in SkipValue()
227 dw_uleb128_t size = debug_info_data.GetU16(offset_ptr); in SkipValue()
232 dw_uleb128_t size = debug_info_data.GetU32(offset_ptr); in SkipValue()
239 debug_info_data.GetCStr(offset_ptr); in SkipValue()
318 debug_info_data.Skip_LEB128(offset_ptr); in SkipValue()
322 dw_form_t indirect_form = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
[all …]
H A DDWARFFormValue.h71 bool SkipValue(const lldb_private::DWARFDataExtractor &debug_info_data,
74 const lldb_private::DWARFDataExtractor &debug_info_data,
H A DDWARFASTParserClang.cpp2389 const DWARFDataExtractor &debug_info_data = die.GetData(); in ParseSingleMember() local
2392 form_value.BlockData() - debug_info_data.GetDataStart(); in ParseSingleMember()
2397 DataExtractor(debug_info_data, block_offset, block_length), in ParseSingleMember()
2788 const DWARFDataExtractor &debug_info_data = die.GetData(); in ParseChildMembers() local
2791 form_value.BlockData() - debug_info_data.GetDataStart(); in ParseChildMembers()
2794 DataExtractor(debug_info_data, block_offset, in ParseChildMembers()
H A DSymbolFileDWARF.cpp3160 const DWARFDataExtractor &debug_info_data = die.GetData(); in ParseVariableDIE() local
3164 const_value_form.BlockData() - debug_info_data.GetDataStart(); in ParseVariableDIE()
3167 module, DataExtractor(debug_info_data, block_offset, block_length), in ParseVariableDIE()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp623 DWARFDataExtractor debug_info_data = U->getDebugInfoExtractor(); in dump() local
633 if (debug_info_data.isValidOffset(offset)) { in dump()
634 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump()