Home
last modified time | relevance | path

Searched refs:GetULEB128 (Results 1 – 11 of 11) sorted by relevance

/external/lldb/source/Symbol/
DDWARFCallFrameInfo.cpp179 cie_sp->code_align = (uint32_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
187 const size_t aug_data_len = (size_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
270 uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
271 int op_offset = (int32_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
285 int op_offset = (int32_t)m_cfi_data.GetULEB128(&offset) * cie_sp->data_align; in ParseCIE()
430 uint32_t aug_data_len = (uint32_t)m_cfi_data.GetULEB128(&offset); in FDEToUnwindPlan()
481 op_offset = (int32_t)m_cfi_data.GetULEB128(&offset) * data_align; in FDEToUnwindPlan()
570 reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset); in FDEToUnwindPlan()
571 op_offset = (int32_t)m_cfi_data.GetULEB128(&offset) * data_align; in FDEToUnwindPlan()
582 reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset); in FDEToUnwindPlan()
[all …]
/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugLine.cpp222 dw_uleb128_t len = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
247 fileEntry.dir_idx = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
248 fileEntry.mod_time = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
249 fileEntry.length = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
278 dw_uleb128_t addr_offset_n = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
294 row.file = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
299 row.column = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
341 row.isa = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
356 debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes()
450 fileEntry.dir_idx = debug_line_data.GetULEB128( offset_ptr ); in ParsePrologue()
[all …]
DDWARFDebugMacinfoEntry.cpp98 m_line = mac_info_data.GetULEB128(offset_ptr); in Extract()
107 m_line = mac_info_data.GetULEB128(offset_ptr); in Extract()
110 m_op2.file_idx = mac_info_data.GetULEB128(offset_ptr); in Extract()
121 m_line = mac_info_data.GetULEB128(offset_ptr); in Extract()
DDWARFAbbreviationDeclaration.cpp37 return Extract(data, offset_ptr, data.GetULEB128(offset_ptr)); in Extract()
47 m_tag = data.GetULEB128(offset_ptr); in Extract()
52 dw_attr_t attr = data.GetULEB128(offset_ptr); in Extract()
53 dw_form_t form = data.GetULEB128(offset_ptr); in Extract()
DDWARFFormValue.cpp140 …case DW_FORM_block: m_value.value.uval = data.GetULEB128(offset_ptr); is_block = true; br… in ExtractValue()
147 …case DW_FORM_udata: m_value.value.uval = data.GetULEB128(offset_ptr); br… in ExtractValue()
158 …case DW_FORM_ref_udata: m_value.value.uval = data.GetULEB128(offset_ptr); br… in ExtractValue()
160 m_form = data.GetULEB128(offset_ptr); in ExtractValue()
199 …case DW_FORM_block: { dw_uleb128_t size = debug_info_data.GetULEB128(offset_ptr); *offset_ptr += … in SkipValue()
266 dw_form_t indirect_form = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
DDWARFLocationDescription.cpp72 uint = data.GetULEB128(offset_ptr); in print_dwarf_exp_op()
168 case 128: uint = data.GetULEB128(offset_ptr); s.Printf("0x%" PRIx64, uint); break; in print_dwarf_exp_op()
DDWARFDebugInfoEntry.cpp129 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()
237 form = debug_info_data.GetULEB128 (&offset); in FastExtract()
295 const uint64_t abbr_idx = debug_info_data.GetULEB128(&offset); in Extract()
341 … case DW_FORM_block : form_size = debug_info_data.GetULEB128(&offset); break; in Extract()
403 form = debug_info_data.GetULEB128(&offset); in Extract()
967 dw_uleb128_t abbrCode = debug_info_data.GetULEB128(&offset); in Dump()
2271 const uint64_t abbrev_code = dwarf2Data->get_debug_info_data().GetULEB128 (&offset); in GetAbbreviationDeclarationPtr()
/external/lldb/source/Expression/
DDWARFExpression.cpp328 …case DW_OP_constu: s->Printf("DW_OP_constu(0x%" PRIx64 ") ", m_data.GetULEB128(&offset)); break; … in DumpLocation()
348 s->Printf("DW_OP_plus_uconst(0x%" PRIx64 ") ", m_data.GetULEB128(&offset)); in DumpLocation()
510 uint32_t reg_num = m_data.GetULEB128(&offset); in DumpLocation()
536 uint32_t reg_num = m_data.GetULEB128(&offset); in DumpLocation()
559 s->Printf("DW_OP_piece(0x%" PRIx64 ")", m_data.GetULEB128(&offset)); in DumpLocation()
1636 … case DW_OP_constu : stack.push_back(Scalar(opcodes.GetULEB128 (&offset))); break; in Evaluate()
2005 const uint64_t uconst_value = opcodes.GetULEB128(&offset); in Evaluate()
2405 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2477 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
/external/lldb/include/lldb/Core/
DDataExtractor.h1063 GetULEB128 (lldb::offset_t *offset_ptr) const;
/external/lldb/source/Core/
DDataExtractor.cpp915 case DW_EH_PE_uleb128 : addressValue = GetULEB128(offset_ptr); break; in GetGNUEHPointer()
1160 DataExtractor::GetULEB128 (offset_t *offset_ptr) const in GetULEB128() function in DataExtractor
2065 … case TypeULEB128: sstr.Printf (format ? format : " 0x%" PRIx64, GetULEB128(&offset)); break; in PutToLog()
/external/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp1724 while ((delta = function_starts_data.GetULEB128(&function_start_offset)) > 0) in ParseSymtab()