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

Declarations

tools/lldb/include/lldb/Utility/DataExtractor.h
  797   int64_t GetSLEB128(lldb::offset_t *offset_ptr) const;

References

tools/lldb/source/Expression/DWARFExpression.cpp
 1398       stack.push_back(Scalar(opcodes.GetSLEB128(&offset)));
 2098         int64_t breg_offset = opcodes.GetSLEB128(&offset);
 2117         int64_t breg_offset = opcodes.GetSLEB128(&offset);
 2131             int64_t fbreg_offset = opcodes.GetSLEB128(&offset);
 2734     sint = data.GetSLEB128(offset_ptr);
 2869     sint = data.GetSLEB128(offset_ptr);
 2995     int64_t offset = opcodes.GetSLEB128(&op_offset);
 3025     offset = opcodes.GetSLEB128(&op_offset);
 3032     offset = opcodes.GetSLEB128(&op_offset);
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
   74       m_value.value.sval = data.GetSLEB128(offset_ptr);
tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
  118     addressValue = DE.GetSLEB128(offset_ptr);
  303     cie_sp->data_align = (int32_t)m_cfi_data.GetSLEB128(&offset);
  962       int32_t op_offset = (int32_t)m_cfi_data.GetSLEB128(&offset) * data_align;
  976       int32_t op_offset = (int32_t)m_cfi_data.GetSLEB128(&offset) * data_align;
  986       int32_t op_offset = (int32_t)m_cfi_data.GetSLEB128(&offset) * data_align;
tools/lldb/source/Utility/DataExtractor.cpp
 1025       sstr.Printf(format ? format : " %" PRId64, GetSLEB128(&offset));