Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
HDDWARFFormValue.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()
317 debug_info_data.Skip_LEB128(offset_ptr); in SkipValue()
321 dw_form_t indirect_form = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
[all …]
HDDWARFFormValue.h70 bool SkipValue(const lldb_private::DWARFDataExtractor &debug_info_data,
73 const lldb_private::DWARFDataExtractor &debug_info_data,
HDSymbolFileDWARF.cpp3284 auto debug_info_data = die.GetData(); in ParseVariableDIE() local
3288 form_value.BlockData() - debug_info_data.GetDataStart(); in ParseVariableDIE()
3292 DataExtractor(debug_info_data, block_offset, block_length), in ParseVariableDIE()
3300 DataExtractor(debug_info_data, data_offset, *data_length), in ParseVariableDIE()
3318 DataExtractor(debug_info_data, in ParseVariableDIE()
3325 str - (const char *)debug_info_data.GetDataStart(); in ParseVariableDIE()
3328 DataExtractor(debug_info_data, in ParseVariableDIE()
HDDWARFASTParserClang.cpp2458 const DWARFDataExtractor &debug_info_data = die.GetData(); in ParseSingleMember() local
2461 form_value.BlockData() - debug_info_data.GetDataStart(); in ParseSingleMember()
2466 DataExtractor(debug_info_data, block_offset, block_length), in ParseSingleMember()
2883 const DWARFDataExtractor &debug_info_data = die.GetData(); in ParseChildMembers() local
2886 form_value.BlockData() - debug_info_data.GetDataStart(); in ParseChildMembers()
2889 DataExtractor(debug_info_data, block_offset, in ParseChildMembers()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
HDDWARFDie.cpp573 DWARFDataExtractor debug_info_data = U->getDebugInfoExtractor(); in dump() local
583 if (debug_info_data.isValidOffset(offset)) { in dump()
584 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump()