Home
last modified time | relevance | path

Searched refs:debug_info_data (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/DebugInfo/
DDWARFCompileUnit.cpp53 DWARFCompileUnit::extract(uint32_t offset, DataExtractor debug_info_data, in extract() argument
59 if (debug_info_data.isValidOffset(offset)) { in extract()
60 Length = debug_info_data.getU32(&offset); in extract()
61 Version = debug_info_data.getU16(&offset); in extract()
62 bool abbrevsOK = debug_info_data.getU32(&offset) == abbrevs->getOffset(); in extract()
64 AddrSize = debug_info_data.getU8(&offset); in extract()
70 debug_info_data.isValidOffset(offset)) in extract()
DDWARFFormValue.cpp209 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr, in skipValue() argument
211 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); in skipValue()
215 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, in skipValue() argument
224 uint64_t size = debug_info_data.getULEB128(offset_ptr); in skipValue()
229 uint8_t size = debug_info_data.getU8(offset_ptr); in skipValue()
234 uint16_t size = debug_info_data.getU16(offset_ptr); in skipValue()
239 uint32_t size = debug_info_data.getU32(offset_ptr); in skipValue()
246 debug_info_data.getCStr(offset_ptr); in skipValue()
295 debug_info_data.getULEB128(offset_ptr); in skipValue()
300 form = debug_info_data.getULEB128(offset_ptr); in skipValue()
DDWARFDebugInfoEntry.cpp26 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); in dump() local
29 if (debug_info_data.isValidOffset(offset)) { in dump()
30 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump()
202 DataExtractor debug_info_data = cu->getDebugInfoExtractor(); in getAttributeValue() local
205 debug_info_data.getULEB128(&offset); in getAttributeValue()
210 debug_info_data, &offset, cu); in getAttributeValue()
214 if (form_value.extractValue(debug_info_data, &offset, cu)) { in getAttributeValue()
DDWARFCompileUnit.h62 uint32_t extract(uint32_t offset, DataExtractor debug_info_data,
/external/llvm/include/llvm/DebugInfo/
DDWARFFormValue.h71 bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr,
73 static bool skipValue(uint16_t form, DataExtractor debug_info_data,