Searched refs:opcode_size (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A Dx86AssemblyInspectionEngine.cpp736 int opcode_size = 0; local
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
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.cpp638 size_t opcode_size = 0; local
661 opcode_size = sizeof(g_thumb_breakpoint_opcode);
664 opcode_size = sizeof(g_arm_breakpoint_opcode);
669 opcode_size = sizeof(g_aarch64_opcode);
675 opcode_size = sizeof(g_i386_opcode);
679 bp_site->SetTrapOpcode(opcode, opcode_size);
680 return opcode_size;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.h28 uint8_t *opcode_data, size_t opcode_size,
H A DUnwindAssemblyInstEmulation.cpp51 AddressRange &range, uint8_t *opcode_data, size_t opcode_size,
53 if (opcode_data == nullptr || opcode_size == 0)
71 opcode_size, 99999, prefer_file_cache));
50 GetNonCallSiteUnwindPlanFromAssembly( AddressRange &range, uint8_t *opcode_data, size_t opcode_size, UnwindPlan &unwind_plan) argument
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DDisassembler.h345 void SetOpcode(size_t opcode_size, void *opcode_data);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DDisassembler.cpp1318 void PseudoInstruction::SetOpcode(size_t opcode_size, void *opcode_data) { argument
1322 switch (opcode_size) {

Completed in 91 milliseconds