reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/DataExtractor.h
  815   uint64_t GetULEB128(lldb::offset_t *offset_ptr) const;

References

tools/lldb/source/Expression/DWARFExpression.cpp
  407     uint64_t subexpr_len = data.GetULEB128(&offset);
  434       uint64_t index = m_data.GetULEB128(&offset);
  870   const uint32_t subexpr_len = opcodes.GetULEB128(&opcode_offset);
 1395       stack.push_back(Scalar(opcodes.GetULEB128(&offset)));
 1699         const uint64_t uconst_value = opcodes.GetULEB128(&offset);
 2050       reg_num = opcodes.GetULEB128(&offset);
 2113       reg_num = opcodes.GetULEB128(&offset);
 2173       const uint64_t piece_byte_size = opcodes.GetULEB128(&offset);
 2309         const uint64_t piece_bit_size = opcodes.GetULEB128(&offset);
 2310         const uint64_t piece_bit_offset = opcodes.GetULEB128(&offset);
 2436       const uint64_t die_offset = opcodes.GetULEB128(&offset);
 2589       uint64_t index = opcodes.GetULEB128(&offset);
 2609       uint64_t index = opcodes.GetULEB128(&offset);
 2679       uint64_t index = debug_loc_data.GetULEB128(offset_ptr);
 2681       index = debug_loc_data.GetULEB128(offset_ptr);
 2686       uint64_t index = debug_loc_data.GetULEB128(offset_ptr);
 2689                             ? debug_loc_data.GetULEB128(offset_ptr)
 2696       high_pc = low_pc + debug_loc_data.GetULEB128(offset_ptr);
 2733     uint = data.GetULEB128(offset_ptr);
 2739     uint = data.GetULEB128(offset_ptr);
 2889     uint = data.GetULEB128(offset_ptr);
 3028     uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset));
 3031     uint32_t reg_num = static_cast<uint32_t>(opcodes.GetULEB128(&op_offset));
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
 1259       uint64_t Tag = data.GetULEB128(&Offset);
 1263           data.GetULEB128(&Offset);
 1265           data.GetULEB128(&Offset);
 1278         uint64_t VFPArgs = data.GetULEB128(&Offset);
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 1940   const uint64_t terminalSize = data.GetULEB128(&offset);
 1944     e.entry.flags = data.GetULEB128(&offset);
 1948       e.entry.other = data.GetULEB128(&offset); // dylib ordinal
 1951       e.entry.address = data.GetULEB128(&offset);
 1953         e.entry.other = data.GetULEB128(&offset);
 1988     lldb::offset_t childNodeOffset = data.GetULEB128(&children_offset);
 2412     while ((delta = function_starts_data.GetULEB128(&function_start_offset)) >
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
   32   m_code = data.GetULEB128(offset_ptr);
   37   m_tag = static_cast<dw_tag_t>(data.GetULEB128(offset_ptr));
   45     dw_attr_t attr = data.GetULEB128(offset_ptr);
   46     dw_form_t form = data.GetULEB128(offset_ptr);
   61       val.value.sval = data.GetULEB128(offset_ptr);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
   45   const uint64_t abbr_idx = data.GetULEB128(offset_ptr);
   86             form_size = data.GetULEB128(&offset);
  171             form = data.GetULEB128(&offset);
  407     dw_uleb128_t abbrCode = data.GetULEB128(&offset);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
   50     uint64_t operand_count = debug_macro_data.GetULEB128(offset);
   75       line = debug_macro_data.GetULEB128(offset);
   86       line = debug_macro_data.GetULEB128(offset);
  100       line = debug_macro_data.GetULEB128(offset);
  101       debug_line_file_idx = debug_macro_data.GetULEB128(offset);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
  139       dw_addr_t len = data.GetULEB128(offset_ptr);
  158       dw_addr_t begin = data.GetULEB128(offset_ptr);
  159       dw_addr_t end = data.GetULEB128(offset_ptr);
  165       dw_addr_t base = data.GetULEB128(offset_ptr);
  171       dw_addr_t start = data.GetULEB128(offset_ptr);
  172       dw_addr_t end = data.GetULEB128(offset_ptr);
  178       dw_addr_t start = data.GetULEB128(offset_ptr);
  179       dw_addr_t length = data.GetULEB128(offset_ptr);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
   67       m_value.value.uval = data.GetULEB128(offset_ptr);
  116       m_value.value.uval = data.GetULEB128(offset_ptr);
  127       m_form = data.GetULEB128(offset_ptr);
  216     dw_uleb128_t size = debug_info_data.GetULEB128(offset_ptr);
  319     dw_form_t indirect_form = debug_info_data.GetULEB128(offset_ptr);
tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  106     addressValue = DE.GetULEB128(offset_ptr);
  302     cie_sp->code_align = (uint32_t)m_cfi_data.GetULEB128(&offset);
  307             ? static_cast<uint32_t>(m_cfi_data.GetULEB128(&offset))
  313       const size_t aug_data_len = (size_t)m_cfi_data.GetULEB128(&offset);
  590     uint32_t aug_data_len = (uint32_t)m_cfi_data.GetULEB128(&offset);
  742           uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  799           m_cfi_data.GetULEB128(&offset);
  833       int32_t op_offset = (int32_t)m_cfi_data.GetULEB128(&offset) * data_align;
  849       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  850       int32_t op_offset = (int32_t)m_cfi_data.GetULEB128(&offset) * data_align;
  862       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  874       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  886       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  887       uint32_t other_reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  899       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  900       int32_t op_offset = (int32_t)m_cfi_data.GetULEB128(&offset);
  910       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  921       int32_t op_offset = (int32_t)m_cfi_data.GetULEB128(&offset);
  929       size_t block_len = (size_t)m_cfi_data.GetULEB128(&offset);
  945       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  946       uint32_t block_len = (uint32_t)m_cfi_data.GetULEB128(&offset);
  961       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
  975       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
 1001       uint32_t reg_num = (uint32_t)m_cfi_data.GetULEB128(&offset);
 1002       uint32_t block_len = (uint32_t)m_cfi_data.GetULEB128(&offset);
tools/lldb/source/Utility/DataExtractor.cpp
 1022       sstr.Printf(format ? format : " 0x%" PRIx64, GetULEB128(&offset));