Home
last modified time | relevance | path

Searched refs:debug_loc_data (Results 1 – 4 of 4) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFLocationList.cpp21 DWARFLocationList::Dump(Stream &s, const DWARFCompileUnit* cu, const DataExtractor& debug_loc_data,… in Dump() argument
27 while (debug_loc_data.ValidOffset(offset)) in Dump()
29 start_addr = debug_loc_data.GetMaxU64(&offset,addr_size); in Dump()
30 end_addr = debug_loc_data.GetMaxU64(&offset,addr_size); in Dump()
43 uint32_t loc_length = debug_loc_data.GetU16(&offset); in Dump()
45 DataExtractor locationData(debug_loc_data, offset, loc_length); in Dump()
55 DWARFLocationList::Extract(const DataExtractor& debug_loc_data, lldb::offset_t* offset_ptr, DataExt… in Extract() argument
60 size_t loc_list_length = Size(debug_loc_data, *offset_ptr); in Extract()
63 location_list_data.SetData(debug_loc_data, *offset_ptr, loc_list_length); in Extract()
72 DWARFLocationList::Size(const DataExtractor& debug_loc_data, lldb::offset_t offset) in Size() argument
[all …]
DDWARFLocationList.h21 const lldb_private::DataExtractor& debug_loc_data,
25 Extract (const lldb_private::DataExtractor& debug_loc_data,
30 Size (const lldb_private::DataExtractor& debug_loc_data,
DDWARFDebugInfoEntry.cpp881 const DataExtractor &debug_loc_data = dwarf2Data->get_debug_loc_data(); in GetDIENamesAndRanges() local
884 … size_t loc_list_length = DWARFLocationList::Size(debug_loc_data, debug_loc_offset); in GetDIENamesAndRanges()
887 … frame_base->SetOpcodeData(debug_loc_data, debug_loc_offset, loc_list_length); in GetDIENamesAndRanges()
DSymbolFileDWARF.cpp7327 const DataExtractor& debug_loc_data = get_debug_loc_data(); in ParseVariableDIE() local
7330 … size_t loc_list_length = DWARFLocationList::Size(debug_loc_data, debug_loc_offset); in ParseVariableDIE()
7333 … location.CopyOpcodeData(debug_loc_data, debug_loc_offset, loc_list_length); in ParseVariableDIE()