Searched defs:debug_info_data (Results 1 - 8 of 8) sorted by relevance

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.cpp142 const DataExtractor& debug_info_data,
164 DWARFFormValue::SkipValue(form, debug_info_data, &offset, cu);
140 CopyChangingStringToStrp( const DWARFAbbreviationDeclaration& abbr_decl, const DataExtractor& debug_info_data, dw_offset_t debug_info_offset, const DWARFCompileUnit* cu, const uint32_t strp_min_len ) argument
H A DDWARFDebugInfoEntry.cpp119 const DataExtractor& debug_info_data,
129 const uint64_t abbr_idx = debug_info_data.GetULEB128 (offset_ptr);
175 case DW_FORM_block : form_size = debug_info_data.GetULEB128 (&offset); break;
176 case DW_FORM_block1 : form_size = debug_info_data.GetU8_unchecked (&offset); break;
177 case DW_FORM_block2 : form_size = debug_info_data.GetU16_unchecked (&offset);break;
178 case DW_FORM_block4 : form_size = debug_info_data.GetU32_unchecked (&offset);break;
182 debug_info_data.GetCStr (&offset);
232 debug_info_data.Skip_LEB128 (&offset);
237 form = debug_info_data.GetULEB128 (&offset);
242 debug_info_data
117 FastExtract( const DataExtractor& debug_info_data, const DWARFCompileUnit* cu, const uint8_t *fixed_form_sizes, lldb::offset_t *offset_ptr ) argument
[all...]
H A DDWARFFormValue.cpp186 DWARFFormValue::SkipValue(const DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu) const argument
188 return DWARFFormValue::SkipValue(m_form, debug_info_data, offset_ptr, cu);
192 DWARFFormValue::SkipValue(dw_form_t form, const DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu) argument
199 case DW_FORM_block: { dw_uleb128_t size = debug_info_data.GetULEB128(offset_ptr); *offset_ptr += size; } return true;
200 case DW_FORM_block1: { dw_uleb128_t size = debug_info_data.GetU8(offset_ptr); *offset_ptr += size; } return true;
201 case DW_FORM_block2: { dw_uleb128_t size = debug_info_data.GetU16(offset_ptr); *offset_ptr += size; } return true;
202 case DW_FORM_block4: { dw_uleb128_t size = debug_info_data.GetU32(offset_ptr); *offset_ptr += size; } return true;
206 debug_info_data.GetCStr(offset_ptr);
261 debug_info_data.Skip_LEB128(offset_ptr);
266 dw_form_t indirect_form = debug_info_data
[all...]
H A DDWARFDebugInfo.cpp149 const DataExtractor &debug_info_data = m_dwarf2Data->get_debug_info_data(); local
150 while (debug_info_data.ValidOffset(offset))
157 if (cu_sp->Extract(debug_info_data, &offset) == false)
H A DDWARFCompileUnit.cpp107 DWARFCompileUnit::Extract(lldb::offset_t offset, const DataExtractor& debug_info_data, const DWARFAbbreviationDeclarationSet* abbrevs) argument
113 if (debug_info_data.ValidOffset(offset))
115 m_length = debug_info_data.GetU32(&offset);
116 m_version = debug_info_data.GetU16(&offset);
117 bool abbrevs_OK = debug_info_data.GetU32(&offset) == abbrevs->GetOffset();
119 m_addr_size = debug_info_data.GetU8 (&offset);
124 if (version_OK && addr_size_OK && abbrevs_OK && debug_info_data.ValidOffset(offset))
190 const DataExtractor& debug_info_data = m_dwarf2Data->get_debug_info_data(); local
197 die.FastExtract (debug_info_data, this, fixed_form_sizes, &offset))
H A DSymbolFileDWARF.cpp1765 const DataExtractor& debug_info_data = get_debug_info_data(); local
1767 uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart();
1772 debug_info_data,
2156 const DataExtractor& debug_info_data = get_debug_info_data(); local
2158 uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart();
2163 debug_info_data,
4194 // const DataExtractor& debug_info_data = debug_info();
4196 // DataExtractor location(debug_info_data, form_value.BlockData() - debug_info_data.GetDataStart(), block_length);
7277 const DataExtractor& debug_info_data local
7319 const DataExtractor& debug_info_data = get_debug_info_data(); local
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFFormValue.cpp255 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr, argument
257 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu);
261 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, argument
270 uint64_t size = debug_info_data.getULEB128(offset_ptr);
275 uint8_t size = debug_info_data.getU8(offset_ptr);
280 uint16_t size = debug_info_data.getU16(offset_ptr);
285 uint32_t size = debug_info_data.getU32(offset_ptr);
292 debug_info_data.getCStr(offset_ptr);
341 debug_info_data.getULEB128(offset_ptr);
346 form = debug_info_data
[all...]
H A DDWARFDebugInfoEntry.cpp26 DataExtractor debug_info_data = u->getDebugInfoExtractor(); local
29 if (debug_info_data.isValidOffset(offset)) {
30 uint32_t abbrCode = debug_info_data.getULEB128(&offset);

Completed in 139 milliseconds