| /trueos/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| HD | DWARFDebugInfoEntry.cpp | 119 const DWARFDataExtractor& 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 …]
|
| HD | DWARFFormValue.cpp | 186 DWARFFormValue::SkipValue(const DWARFDataExtractor& debug_info_data, lldb::offset_t *offset_ptr, co… 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 DWARFDataExtractor& debug_info_data, lldb::offset_t… 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 …]
|
| HD | DWARFFormValue.h | 67 …bool SkipValue(const lldb_private::DWARFDataExtractor& debug_info_data, lldb::offse… 68 …pValue(const dw_form_t form, const lldb_private::DWARFDataExtractor& debug_info_data, lldb::offset…
|
| HD | DWARFAbbreviationDeclaration.cpp | 142 const DWARFDataExtractor& debug_info_data, in CopyChangingStringToStrp() argument 164 DWARFFormValue::SkipValue(form, debug_info_data, &offset, cu); in CopyChangingStringToStrp()
|
| HD | DWARFDebugInfo.cpp | 166 const DWARFDataExtractor &debug_info_data = m_dwarf2Data->get_debug_info_data(); in ParseCompileUnitHeadersIfNeeded() local 167 while (debug_info_data.ValidOffset(offset)) in ParseCompileUnitHeadersIfNeeded() 174 if (cu_sp->Extract(debug_info_data, &offset) == false) in ParseCompileUnitHeadersIfNeeded()
|
| HD | DWARFAbbreviationDeclaration.h | 61 const lldb_private::DWARFDataExtractor& debug_info_data,
|
| HD | DWARFDebugInfoEntry.h | 145 const lldb_private::DWARFDataExtractor& debug_info_data, 292 const lldb_private::DWARFDataExtractor& debug_info_data,
|
| HD | SymbolFileDWARF.cpp | 1773 … const DWARFDataExtractor& debug_info_data = get_debug_info_data(); in ParseChildMembers() local 1775 … uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart(); in ParseChildMembers() 1781 debug_info_data, in ParseChildMembers() 2168 … const DWARFDataExtractor& debug_info_data = get_debug_info_data(); in ParseChildMembers() local 2170 … uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart(); in ParseChildMembers() 2176 debug_info_data, in ParseChildMembers() 7369 const DWARFDataExtractor& debug_info_data = get_debug_info_data(); in ParseVariableDIE() local 7373 … uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart(); in ParseVariableDIE() 7375 … location.CopyOpcodeData(module, debug_info_data, block_offset, block_length); in ParseVariableDIE() 7383 … location.CopyOpcodeData(module, debug_info_data, data_offset, data_length); in ParseVariableDIE() [all …]
|
| HD | DWARFCompileUnit.cpp | 166 const DWARFDataExtractor& debug_info_data = m_dwarf2Data->get_debug_info_data(); in ExtractDIEsIfNeeded() local 173 die.FastExtract (debug_info_data, this, fixed_form_sizes, &offset)) in ExtractDIEsIfNeeded()
|
| /trueos/contrib/llvm/lib/DebugInfo/ |
| HD | DWARFFormValue.cpp | 255 DWARFFormValue::skipValue(DataExtractor debug_info_data, uint32_t* offset_ptr, in skipValue() argument 257 return DWARFFormValue::skipValue(Form, debug_info_data, offset_ptr, cu); in skipValue() 261 DWARFFormValue::skipValue(uint16_t form, DataExtractor debug_info_data, in skipValue() argument 270 uint64_t size = debug_info_data.getULEB128(offset_ptr); in skipValue() 275 uint8_t size = debug_info_data.getU8(offset_ptr); in skipValue() 280 uint16_t size = debug_info_data.getU16(offset_ptr); in skipValue() 285 uint32_t size = debug_info_data.getU32(offset_ptr); in skipValue() 292 debug_info_data.getCStr(offset_ptr); in skipValue() 341 debug_info_data.getULEB128(offset_ptr); in skipValue() 346 form = debug_info_data.getULEB128(offset_ptr); in skipValue()
|
| HD | DWARFDebugInfoEntry.cpp | 25 DataExtractor debug_info_data = u->getDebugInfoExtractor(); in dump() local 28 if (debug_info_data.isValidOffset(offset)) { in dump() 29 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump()
|
| /trueos/contrib/llvm/include/llvm/DebugInfo/ |
| HD | DWARFFormValue.h | 74 bool skipValue(DataExtractor debug_info_data, uint32_t *offset_ptr, 76 static bool skipValue(uint16_t form, DataExtractor debug_info_data,
|