Home
last modified time | relevance | path

Searched refs:opcode_size (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/UnwindAssembly/x86/
H A Dx86AssemblyInspectionEngine.cpp737 int opcode_size = 0; in pc_rel_branch_or_jump_p() local
761 opcode_size = 1; in pc_rel_branch_or_jump_p()
766 if (b1 == 0x0f && opcode_size == 0) { in pc_rel_branch_or_jump_p()
785 opcode_size = 2; in pc_rel_branch_or_jump_p()
792 if (opcode_size == 0) in pc_rel_branch_or_jump_p()
796 if (instruction_length - opcode_size == 1) { in pc_rel_branch_or_jump_p()
797 int8_t rel8 = (int8_t) *(m_cur_insn + opcode_size); in pc_rel_branch_or_jump_p()
799 } else if (instruction_length - opcode_size == 2) { in pc_rel_branch_or_jump_p()
800 int16_t rel16 = extract_2_signed (m_cur_insn + opcode_size); in pc_rel_branch_or_jump_p()
802 } else if (instruction_length - opcode_size == 4) { in pc_rel_branch_or_jump_p()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp54 AddressRange &range, uint8_t *opcode_data, size_t opcode_size, in GetNonCallSiteUnwindPlanFromAssembly() argument
56 if (opcode_data == nullptr || opcode_size == 0) in GetNonCallSiteUnwindPlanFromAssembly()
74 opcode_size, 99999, prefer_file_cache)); in GetNonCallSiteUnwindPlanFromAssembly()
H A DUnwindAssemblyInstEmulation.h28 uint8_t *opcode_data, size_t opcode_size,
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDisassembler.h373 void SetOpcode(size_t opcode_size, void *opcode_data);
/llvm-project-15.0.7/lldb/source/Core/
H A DDisassembler.cpp1173 void PseudoInstruction::SetOpcode(size_t opcode_size, void *opcode_data) { in SetOpcode() argument
1177 switch (opcode_size) { in SetOpcode()