Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Symbol/
DDWARFCallFrameInfo.cpp106 addressValue = DE.GetULEB128(offset_ptr); in GetGNUEHPointer()
302 cie_sp->code_align = (uint32_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
307 ? static_cast<uint32_t>(m_cfi_data.GetULEB128(&offset)) in ParseCIE()
313 const size_t aug_data_len = (size_t)m_cfi_data.GetULEB128(&offset); in ParseCIE()
590 uint32_t aug_data_len = (uint32_t)m_cfi_data.GetULEB128(&offset); in FDEToUnwindPlan()
742 uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset); in FDEToUnwindPlan()
799 m_cfi_data.GetULEB128(&offset); in FDEToUnwindPlan()
833 int32_t op_offset = (int32_t)m_cfi_data.GetULEB128(&offset) * data_align; in HandleCommonDwarfOpcode()
849 uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset); in HandleCommonDwarfOpcode()
850 int32_t op_offset = (int32_t)m_cfi_data.GetULEB128(&offset) * data_align; in HandleCommonDwarfOpcode()
[all …]
DArmUnwindInfo.cpp85 uint64_t ArmUnwindInfo::GetULEB128(const uint32_t *data, uint16_t &offset, in GetULEB128() function in ArmUnwindInfo
227 uint64_t uleb128 = GetULEB128(data, byte_offset, byte_count); in GetUnwindPlan()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFAbbreviationDeclaration.cpp32 m_code = data.GetULEB128(offset_ptr); in extract()
37 m_tag = static_cast<dw_tag_t>(data.GetULEB128(offset_ptr)); in extract()
45 dw_attr_t attr = data.GetULEB128(offset_ptr); in extract()
46 dw_form_t form = data.GetULEB128(offset_ptr); in extract()
61 val.value.sval = data.GetULEB128(offset_ptr); in extract()
DDWARFDebugMacro.cpp50 uint64_t operand_count = debug_macro_data.GetULEB128(offset); in SkipOperandTable()
75 line = debug_macro_data.GetULEB128(offset); in ReadMacroEntries()
86 line = debug_macro_data.GetULEB128(offset); in ReadMacroEntries()
100 line = debug_macro_data.GetULEB128(offset); in ReadMacroEntries()
101 debug_line_file_idx = debug_macro_data.GetULEB128(offset); in ReadMacroEntries()
DDWARFFormValue.cpp67 m_value.value.uval = data.GetULEB128(offset_ptr); in ExtractValue()
117 m_value.value.uval = data.GetULEB128(offset_ptr); in ExtractValue()
128 m_form = data.GetULEB128(offset_ptr); in ExtractValue()
217 dw_uleb128_t size = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
321 dw_form_t indirect_form = debug_info_data.GetULEB128(offset_ptr); in SkipValue()
DDWARFDebugInfoEntry.cpp45 const uint64_t abbr_idx = data.GetULEB128(offset_ptr); in Extract()
86 form_size = data.GetULEB128(&offset); in Extract()
172 form = data.GetULEB128(&offset); in Extract()
/external/llvm-project/lldb/source/Expression/
DDWARFExpression.cpp402 uint64_t subexpr_len = data.GetULEB128(&offset); in GetOpcodeDataSize()
429 uint64_t index = m_data.GetULEB128(&offset); in GetLocation_DW_OP_addr()
794 const uint32_t subexpr_len = opcodes.GetULEB128(&opcode_offset); in Evaluate_DW_OP_entry_value()
1301 stack.push_back(Scalar(opcodes.GetULEB128(&offset))); in Evaluate()
1605 const uint64_t uconst_value = opcodes.GetULEB128(&offset); in Evaluate()
1956 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2019 reg_num = opcodes.GetULEB128(&offset); in Evaluate()
2079 const uint64_t piece_byte_size = opcodes.GetULEB128(&offset); in Evaluate()
2213 const uint64_t piece_bit_size = opcodes.GetULEB128(&offset); in Evaluate()
2214 const uint64_t piece_bit_offset = opcodes.GetULEB128(&offset); in Evaluate()
[all …]
/external/llvm-project/lldb/include/lldb/Symbol/
DArmUnwindInfo.h55 uint64_t GetULEB128(const uint32_t *data, uint16_t &offset,
/external/llvm-project/lldb/unittests/Utility/
DDataExtractorTest.cpp296 EXPECT_EQ(expected, LE.GetULEB128(&offset)); in TEST()
299 EXPECT_EQ(expected, BE.GetULEB128(&offset)); in TEST()
/external/llvm-project/lldb/include/lldb/Utility/
DDataExtractor.h794 uint64_t GetULEB128(lldb::offset_t *offset_ptr) const;
/external/llvm-project/lldb/source/Utility/
DDataExtractor.cpp845 uint64_t DataExtractor::GetULEB128(offset_t *offset_ptr) const { in GetULEB128() function in DataExtractor
951 sstr.Printf(" 0x%" PRIx64, GetULEB128(&offset)); in PutToLog()
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp1263 uint64_t Tag = data.GetULEB128(&Offset); in ParseARMAttributes()
1267 data.GetULEB128(&Offset); in ParseARMAttributes()
1269 data.GetULEB128(&Offset); in ParseARMAttributes()
1282 uint64_t VFPArgs = data.GetULEB128(&Offset); in ParseARMAttributes()
/external/llvm-project/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp1976 const uint64_t terminalSize = data.GetULEB128(&offset); in ParseTrieEntries()
1980 e.entry.flags = data.GetULEB128(&offset); in ParseTrieEntries()
1984 e.entry.other = data.GetULEB128(&offset); // dylib ordinal in ParseTrieEntries()
1987 e.entry.address = data.GetULEB128(&offset); in ParseTrieEntries()
1991 e.entry.other = data.GetULEB128(&offset); in ParseTrieEntries()
2045 lldb::offset_t childNodeOffset = data.GetULEB128(&children_offset); in ParseTrieEntries()
2460 while ((delta = function_starts_data.GetULEB128(&function_start_offset)) > in ParseSymtab()