Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A Dx86AssemblyInspectionEngine.cpp722 int opcode_size = 0; in pc_rel_branch_or_jump_p() local
746 opcode_size = 1; in pc_rel_branch_or_jump_p()
751 if (b1 == 0x0f && opcode_size == 0) { in pc_rel_branch_or_jump_p()
770 opcode_size = 2; in pc_rel_branch_or_jump_p()
777 if (opcode_size == 0) in pc_rel_branch_or_jump_p()
781 if (instruction_length - opcode_size == 1) { in pc_rel_branch_or_jump_p()
782 int8_t rel8 = (int8_t) *(m_cur_insn + opcode_size); in pc_rel_branch_or_jump_p()
784 } else if (instruction_length - opcode_size == 2) { in pc_rel_branch_or_jump_p()
785 int16_t rel16 = extract_2_signed (m_cur_insn + opcode_size); in pc_rel_branch_or_jump_p()
787 } else if (instruction_length - opcode_size == 4) { in pc_rel_branch_or_jump_p()
[all …]
/freebsd/contrib/llvm-project/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,
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h377 void SetOpcode(size_t opcode_size, void *opcode_data);
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1176 void PseudoInstruction::SetOpcode(size_t opcode_size, void *opcode_data) { in SetOpcode() argument
1180 switch (opcode_size) { in SetOpcode()