Searched defs:debug_info_data (Results 1 - 6 of 6) sorted by relevance
/external/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDebugInfoEntry.cpp | 39 DataExtractor debug_info_data = u->getDebugInfoExtractor(); local 42 if (debug_info_data.isValidOffset(offset)) { 43 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
|
H A D | DWARFFormValue.cpp | 256 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr, argument 258 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); 262 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, argument 264 return skipValue(form, debug_info_data, offset_ptr, cu->getVersion(), 267 bool DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, argument 277 uint64_t size = debug_info_data.getULEB128(offset_ptr); 282 uint8_t size = debug_info_data.getU8(offset_ptr); 287 uint16_t size = debug_info_data.getU16(offset_ptr); 292 uint32_t size = debug_info_data.getU32(offset_ptr); 299 debug_info_data [all...] |
/external/swiftshader/third_party/LLVM/lib/DebugInfo/ |
H A D | DWARFContext.cpp | 104 const DataExtractor &debug_info_data = DataExtractor(getInfoSection(), local 106 while (debug_info_data.isValidOffset(offset)) { 108 if (!CUs.back().extract(debug_info_data, &offset)) {
|
H A D | DWARFCompileUnit.cpp | 55 DWARFCompileUnit::extract(uint32_t offset, DataExtractor debug_info_data, argument 61 if (debug_info_data.isValidOffset(offset)) { 62 Length = debug_info_data.getU32(&offset); 63 Version = debug_info_data.getU16(&offset); 64 bool abbrevsOK = debug_info_data.getU32(&offset) == abbrevs->getOffset(); 66 AddrSize = debug_info_data.getU8 (&offset); 72 debug_info_data.isValidOffset(offset))
|
H A D | DWARFDebugInfoEntry.cpp | 25 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local 28 if (debug_info_data.isValidOffset(offset)) { 29 uint64_t abbrCode = debug_info_data.getULEB128(&offset); 101 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local 102 uint64_t abbrCode = debug_info_data.getULEB128(offset_ptr); 130 form_size = debug_info_data.getULEB128(&offset); 133 form_size = debug_info_data.getU8(&offset); 136 form_size = debug_info_data.getU16(&offset); 139 form_size = debug_info_data.getU32(&offset); 144 debug_info_data 213 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local 353 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local [all...] |
H A D | DWARFFormValue.cpp | 168 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr, argument 170 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); 174 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, argument 183 uint64_t size = debug_info_data.getULEB128(offset_ptr); 188 uint8_t size = debug_info_data.getU8(offset_ptr); 193 uint16_t size = debug_info_data.getU16(offset_ptr); 198 uint32_t size = debug_info_data.getU32(offset_ptr); 205 debug_info_data.getCStr(offset_ptr); 245 debug_info_data.getULEB128(offset_ptr); 250 form = debug_info_data [all...] |
Completed in 135 milliseconds