Lines Matching refs:debug_loc_data
3002 const DataExtractor &debug_loc_data, in LocationListSize() argument
3005 while (debug_loc_data.ValidOffset(offset)) { in LocationListSize()
3008 if (!AddressRangeForLocationListEntry(dwarf_cu, debug_loc_data, &offset, in LocationListSize()
3015 uint16_t loc_length = debug_loc_data.GetU16(&offset); in LocationListSize()
3025 const DWARFUnit *dwarf_cu, const DataExtractor &debug_loc_data, in AddressRangeForLocationListEntry() argument
3027 if (!debug_loc_data.ValidOffset(*offset_ptr)) in AddressRangeForLocationListEntry()
3036 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3037 high_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3041 switch (debug_loc_data.GetU8(offset_ptr)) { in AddressRangeForLocationListEntry()
3045 uint64_t index = debug_loc_data.GetULEB128(offset_ptr); in AddressRangeForLocationListEntry()
3047 index = debug_loc_data.GetULEB128(offset_ptr); in AddressRangeForLocationListEntry()
3052 uint64_t index = debug_loc_data.GetULEB128(offset_ptr); in AddressRangeForLocationListEntry()
3055 ? debug_loc_data.GetULEB128(offset_ptr) in AddressRangeForLocationListEntry()
3056 : debug_loc_data.GetU32(offset_ptr); in AddressRangeForLocationListEntry()
3061 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3062 high_pc = low_pc + debug_loc_data.GetULEB128(offset_ptr); in AddressRangeForLocationListEntry()
3066 low_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3067 high_pc = debug_loc_data.GetAddress(offset_ptr); in AddressRangeForLocationListEntry()
3275 Stream &s, const DWARFUnit *cu, const DataExtractor &debug_loc_data, in PrintDWARFLocationList() argument
3281 while (debug_loc_data.ValidOffset(offset)) { in PrintDWARFLocationList()
3282 start_addr = debug_loc_data.GetMaxU64(&offset, addr_size); in PrintDWARFLocationList()
3283 end_addr = debug_loc_data.GetMaxU64(&offset, addr_size); in PrintDWARFLocationList()
3293 uint32_t loc_length = debug_loc_data.GetU16(&offset); in PrintDWARFLocationList()
3295 DataExtractor locationData(debug_loc_data, offset, loc_length); in PrintDWARFLocationList()