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

References

tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
  760       opcode_size = 1;
  765   if (b1 == 0x0f && opcode_size == 0) {
  784         opcode_size = 2;
  791   if (opcode_size == 0)
  795   if (instruction_length - opcode_size == 1) {
  796     int8_t rel8 = (int8_t) *(m_cur_insn + opcode_size);
  798   } else if (instruction_length - opcode_size == 2) {
  799     int16_t rel16 = extract_2_signed (m_cur_insn + opcode_size);
  801   } else if (instruction_length - opcode_size == 4) {
  802     int32_t rel32 = extract_4_signed (m_cur_insn + opcode_size);