Lines Matching refs:debug_info
236 const DWARFDataExtractor &debug_info, in extract() argument
245 Length = debug_info.getU32(offset_ptr); in extract()
249 FormParams.Version = debug_info.getU16(offset_ptr); in extract()
251 UnitType = debug_info.getU8(offset_ptr); in extract()
252 FormParams.AddrSize = debug_info.getU8(offset_ptr); in extract()
253 AbbrOffset = debug_info.getU32(offset_ptr); in extract()
255 AbbrOffset = debug_info.getRelocatedValue(4, offset_ptr); in extract()
256 FormParams.AddrSize = debug_info.getU8(offset_ptr); in extract()
276 TypeHash = debug_info.getU64(offset_ptr); in extract()
277 TypeOffset = debug_info.getU32(offset_ptr); in extract()
279 DWOId = debug_info.getU64(offset_ptr); in extract()
291 bool LengthOK = debug_info.isValidOffset(getNextUnitOffset() - 1); in extract()