Searched refs:opcode_size (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/ |
| H A D | x86AssemblyInspectionEngine.cpp | 722 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 D | UnwindAssemblyInstEmulation.cpp | 54 AddressRange &range, uint8_t *opcode_data, size_t opcode_size, in GetNonCallSiteUnwindPlanFromAssembly() argument 56 if (opcode_data == nullptr || opcode_size == 0) in GetNonCallSiteUnwindPlanFromAssembly() 75 opcode_data, opcode_size, 99999, prefer_file_cache)); in GetNonCallSiteUnwindPlanFromAssembly()
|
| H A D | UnwindAssemblyInstEmulation.h | 28 uint8_t *opcode_data, size_t opcode_size,
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Disassembler.h | 377 void SetOpcode(size_t opcode_size, void *opcode_data);
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Disassembler.cpp | 1208 void PseudoInstruction::SetOpcode(size_t opcode_size, void *opcode_data) { in SetOpcode() argument 1212 switch (opcode_size) { in SetOpcode()
|