HomeSort by relevance Sort by last modified time
    Searched refs:debug_info_data (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/DebugInfo/
DWARFFormValue.h 71 bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr,
73 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.cpp 53 DWARFCompileUnit::extract(uint32_t offset, DataExtractor debug_info_data,
59 if (debug_info_data.isValidOffset(offset)) {
60 Length = debug_info_data.getU32(&offset);
61 Version = debug_info_data.getU16(&offset);
62 bool abbrevsOK = debug_info_data.getU32(&offset) == abbrevs->getOffset();
64 AddrSize = debug_info_data.getU8(&offset);
70 debug_info_data.isValidOffset(offset))
DWARFFormValue.cpp 209 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr,
211 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu);
215 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data,
224 uint64_t size = debug_info_data.getULEB128(offset_ptr);
229 uint8_t size = debug_info_data.getU8(offset_ptr);
234 uint16_t size = debug_info_data.getU16(offset_ptr);
239 uint32_t size = debug_info_data.getU32(offset_ptr);
246 debug_info_data.getCStr(offset_ptr);
295 debug_info_data.getULEB128(offset_ptr);
300 form = debug_info_data.getULEB128(offset_ptr)
    [all...]
DWARFDebugInfoEntry.cpp 26 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local
29 if (debug_info_data.isValidOffset(offset)) {
30 uint32_t abbrCode = debug_info_data.getULEB128(&offset);
202 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); local
205 debug_info_data.getULEB128(&offset);
210 debug_info_data, &offset, cu);
214 if (form_value.extractValue(debug_info_data, &offset, cu)) {
DWARFCompileUnit.h 62 uint32_t extract(uint32_t offset, DataExtractor debug_info_data,

Completed in 72 milliseconds