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

  /external/llvm/include/llvm/DebugInfo/
DWARFFormValue.h 74 bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr,
76 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFFormValue.cpp 186 DWARFFormValue::SkipValue(const DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu) const
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)
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.GetULEB128(offset_ptr)
    [all...]
DWARFFormValue.h 66 bool SkipValue(const lldb_private::DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu) const;
67 static bool SkipValue(const dw_form_t form, const lldb_private::DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu);
68 // static bool TransferValue(dw_form_t form, const lldb_private::DataExtractor& debug_info_data, lldb::offset_t *offset_ptr, const DWARFCompileUnit* cu, BinaryStreamBuf& out_buff);
DWARFDebugInfoEntry.cpp 119 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.GetU32 (offset_ptr)
    [all...]
DWARFAbbreviationDeclaration.cpp 142 const DataExtractor& debug_info_data,
164 DWARFFormValue::SkipValue(form, debug_info_data, &offset, cu);
DWARFAbbreviationDeclaration.h 61 const lldb_private::DataExtractor& debug_info_data,
DWARFCompileUnit.cpp 107 DWARFCompileUnit::Extract(lldb::offset_t offset, const DataExtractor& debug_info_data, const DWARFAbbreviationDeclarationSet* abbrevs)
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))
    [all...]
DWARFCompileUnit.h 33 dw_offset_t Extract(lldb::offset_t offset, const lldb_private::DataExtractor& debug_info_data, const DWARFAbbreviationDeclarationSet* abbrevs);
DWARFDebugInfoEntry.h 145 const lldb_private::DataExtractor& debug_info_data,
292 const lldb_private::DataExtractor& debug_info_data,
DWARFDebugInfo.cpp 149 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)
SymbolFileDWARF.cpp 1765 const DataExtractor& debug_info_data = get_debug_info_data(); local
2156 const DataExtractor& debug_info_data = get_debug_info_data(); local
7277 const DataExtractor& debug_info_data = get_debug_info_data(); local
7319 const DataExtractor& debug_info_data = get_debug_info_data(); local
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFFormValue.cpp 255 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr,
257 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu);
261 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data,
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.getULEB128(offset_ptr)
    [all...]
DWARFDebugInfoEntry.cpp 26 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 787 milliseconds