/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugInfoEntry.cpp | 119 const DataExtractor& debug_info_data, in FastExtract() argument 129 const uint64_t abbr_idx = debug_info_data.GetULEB128 (offset_ptr); in FastExtract() 175 … case DW_FORM_block : form_size = debug_info_data.GetULEB128 (&offset); break; in FastExtract() 176 … case DW_FORM_block1 : form_size = debug_info_data.GetU8_unchecked (&offset); break; in FastExtract() 177 … case DW_FORM_block2 : form_size = debug_info_data.GetU16_unchecked (&offset);break; in FastExtract() 178 … case DW_FORM_block4 : form_size = debug_info_data.GetU32_unchecked (&offset);break; in FastExtract() 182 debug_info_data.GetCStr (&offset); in FastExtract() 232 debug_info_data.Skip_LEB128 (&offset); in FastExtract() 237 form = debug_info_data.GetULEB128 (&offset); in FastExtract() 242 debug_info_data.GetU32 (offset_ptr); in FastExtract() [all …]
|
D | DWARFFormValue.cpp | 186 DWARFFormValue::SkipValue(const DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const D… in SkipValue() argument 188 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, cu); in SkipValue() 192 DWARFFormValue::SkipValue(dw_form_t form, const DataExtractor& debug_info_data, lldb::offset_t *off… in SkipValue() argument 199 …case DW_FORM_block: { dw_uleb128_t size = debug_info_data.GetULEB128(offset_ptr); *offset_ptr += … in SkipValue() 200 …case DW_FORM_block1: { dw_uleb128_t size = debug_info_data.GetU8(offset_ptr); *offset_ptr += … in SkipValue() 201 …case DW_FORM_block2: { dw_uleb128_t size = debug_info_data.GetU16(offset_ptr); *offset_ptr += … in SkipValue() 202 …case DW_FORM_block4: { dw_uleb128_t size = debug_info_data.GetU32(offset_ptr); *offset_ptr += … in SkipValue() 206 debug_info_data.GetCStr(offset_ptr); in SkipValue() 261 debug_info_data.Skip_LEB128(offset_ptr); in SkipValue() 266 dw_form_t indirect_form = debug_info_data.GetULEB128(offset_ptr); in SkipValue() [all …]
|
D | DWARFCompileUnit.cpp | 107 DWARFCompileUnit::Extract(lldb::offset_t offset, const DataExtractor& debug_info_data, const DWARFA… in Extract() argument 113 if (debug_info_data.ValidOffset(offset)) in Extract() 115 m_length = debug_info_data.GetU32(&offset); in Extract() 116 m_version = debug_info_data.GetU16(&offset); in Extract() 117 bool abbrevs_OK = debug_info_data.GetU32(&offset) == abbrevs->GetOffset(); in Extract() 119 m_addr_size = debug_info_data.GetU8 (&offset); in Extract() 124 if (version_OK && addr_size_OK && abbrevs_OK && debug_info_data.ValidOffset(offset)) in Extract() 190 const DataExtractor& debug_info_data = m_dwarf2Data->get_debug_info_data(); in ExtractDIEsIfNeeded() local 197 die.FastExtract (debug_info_data, this, fixed_form_sizes, &offset)) in ExtractDIEsIfNeeded()
|
D | DWARFFormValue.h | 66 …bool SkipValue(const lldb_private::DataExtractor& debug_info_data, lldb::offset_t *… 67 … SkipValue(const dw_form_t form, const lldb_private::DataExtractor& debug_info_data, lldb::offset…
|
D | DWARFAbbreviationDeclaration.cpp | 142 const DataExtractor& debug_info_data, in CopyChangingStringToStrp() argument 164 DWARFFormValue::SkipValue(form, debug_info_data, &offset, cu); in CopyChangingStringToStrp()
|
D | DWARFAbbreviationDeclaration.h | 61 const lldb_private::DataExtractor& debug_info_data,
|
D | DWARFDebugInfo.cpp | 149 const DataExtractor &debug_info_data = m_dwarf2Data->get_debug_info_data(); in ParseCompileUnitHeadersIfNeeded() local 150 while (debug_info_data.ValidOffset(offset)) in ParseCompileUnitHeadersIfNeeded() 157 if (cu_sp->Extract(debug_info_data, &offset) == false) in ParseCompileUnitHeadersIfNeeded()
|
D | DWARFDebugInfoEntry.h | 145 const lldb_private::DataExtractor& debug_info_data, 292 const lldb_private::DataExtractor& debug_info_data,
|
D | DWARFCompileUnit.h | 33 …dw_offset_t Extract(lldb::offset_t offset, const lldb_private::DataExtractor& debug_info_data, con…
|
D | SymbolFileDWARF.cpp | 1765 const DataExtractor& debug_info_data = get_debug_info_data(); in ParseChildMembers() local 1767 … uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart(); in ParseChildMembers() 1772 debug_info_data, in ParseChildMembers() 2156 const DataExtractor& debug_info_data = get_debug_info_data(); in ParseChildMembers() local 2158 … uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart(); in ParseChildMembers() 2163 debug_info_data, in ParseChildMembers() 7277 const DataExtractor& debug_info_data = get_debug_info_data(); in ParseVariableDIE() local 7281 … uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart(); in ParseVariableDIE() 7283 … location.CopyOpcodeData(debug_info_data, block_offset, block_length); in ParseVariableDIE() 7291 location.CopyOpcodeData(debug_info_data, data_offset, data_length); in ParseVariableDIE() [all …]
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFFormValue.cpp | 256 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr, in skipValue() argument 258 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); in skipValue() 262 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, in skipValue() argument 264 return skipValue(form, debug_info_data, offset_ptr, cu->getVersion(), in skipValue() 267 bool DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, in skipValue() argument 277 uint64_t size = debug_info_data.getULEB128(offset_ptr); in skipValue() 282 uint8_t size = debug_info_data.getU8(offset_ptr); in skipValue() 287 uint16_t size = debug_info_data.getU16(offset_ptr); in skipValue() 292 uint32_t size = debug_info_data.getU32(offset_ptr); in skipValue() 299 debug_info_data.getCStr(offset_ptr); in skipValue() [all …]
|
D | DWARFDebugInfoEntry.cpp | 39 DataExtractor debug_info_data = u->getDebugInfoExtractor(); in dump() local 42 if (debug_info_data.isValidOffset(offset)) { in dump() 43 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFFormValue.h | 83 bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr, 85 static bool skipValue(uint16_t form, DataExtractor debug_info_data, 87 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
|