Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp203 bool DWARFFormValue::SkipValue(const DWARFDataExtractor &debug_info_data, in SkipValue() argument
205 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, m_unit); in SkipValue()
209 const DWARFDataExtractor &debug_info_data, in SkipValue() argument
218 uint64_t size = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
223 uint8_t size = debug_info_data.GetU8(offset_ptr); in SkipValue()
228 uint16_t size = debug_info_data.GetU16(offset_ptr); in SkipValue()
233 uint32_t size = debug_info_data.GetU32(offset_ptr); in SkipValue()
240 debug_info_data.GetCStr(offset_ptr); in SkipValue()
319 debug_info_data.Skip_LEB128(offset_ptr); in SkipValue()
324 static_cast<dw_form_t>(debug_info_data.GetULEB128(offset_ptr)); in SkipValue()
[all …]
H A DDWARFFormValue.h78 bool SkipValue(const DWARFDataExtractor &debug_info_data,
81 const DWARFDataExtractor &debug_info_data,
H A DDWARFASTParserClang.cpp556 const DWARFDataExtractor &debug_info_data = die.GetData(); in ExtractDataMemberLocation() local
559 form_value.BlockData() - debug_info_data.GetDataStart(); in ExtractDataMemberLocation()
563 module_sp, DataExtractor(debug_info_data, block_offset, block_length), in ExtractDataMemberLocation()
H A DSymbolFileDWARF.cpp3422 const DWARFDataExtractor &debug_info_data = die.GetData(); in GetExprListFromAtConstValue() local
3426 form_value.BlockData() - debug_info_data.GetDataStart(); in GetExprListFromAtConstValue()
3429 module, DataExtractor(debug_info_data, block_offset, block_length), in GetExprListFromAtConstValue()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp580 DWARFDataExtractor debug_info_data = U->getDebugInfoExtractor(); in dump() local
590 if (debug_info_data.isValidOffset(offset)) { in dump()
591 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump()