Home
last modified time | relevance | path

Searched refs:instruction_length (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A Dx86AssemblyInspectionEngine.h118 bool pc_rel_branch_or_jump_p (const int instruction_length, int &offset);
121 const int instruction_length);
124 const int instruction_length,
131 bool instruction_length(uint8_t *insn, int &length, uint32_t buffer_remaining_bytes);
H A Dx86AssemblyInspectionEngine.cpp720 const int instruction_length, int &offset) in pc_rel_branch_or_jump_p() argument
781 if (instruction_length - opcode_size == 1) { in pc_rel_branch_or_jump_p()
784 } else if (instruction_length - opcode_size == 2) { in pc_rel_branch_or_jump_p()
787 } else if (instruction_length - opcode_size == 4) { in pc_rel_branch_or_jump_p()
803 const int instruction_length, in local_branch_p() argument
806 if (pc_rel_branch_or_jump_p (instruction_length, offset) && offset != 0) { in local_branch_p()
807 addr_t next_pc_value = current_func_text_offset + instruction_length; in local_branch_p()
830 const int instruction_length) { in non_local_branch_p() argument
833 if (pc_rel_branch_or_jump_p (instruction_length, offset)) { in non_local_branch_p()
834 … return !local_branch_p(current_func_text_offset,func_range,instruction_length,target_insn_offset); in non_local_branch_p()
[all …]