Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
Dx86AssemblyInspectionEngine.cpp736 int opcode_size = 0; in pc_rel_branch_or_jump_p() local
760 opcode_size = 1; in pc_rel_branch_or_jump_p()
765 if (b1 == 0x0f && opcode_size == 0) { in pc_rel_branch_or_jump_p()
784 opcode_size = 2; in pc_rel_branch_or_jump_p()
791 if (opcode_size == 0) in pc_rel_branch_or_jump_p()
795 if (instruction_length - opcode_size == 1) { in pc_rel_branch_or_jump_p()
796 int8_t rel8 = (int8_t) *(m_cur_insn + opcode_size); in pc_rel_branch_or_jump_p()
798 } else if (instruction_length - opcode_size == 2) { in pc_rel_branch_or_jump_p()
799 int16_t rel16 = extract_2_signed (m_cur_insn + opcode_size); in pc_rel_branch_or_jump_p()
801 } else if (instruction_length - opcode_size == 4) { in pc_rel_branch_or_jump_p()
[all …]
/external/llvm-project/lldb/source/Plugins/Process/FreeBSD/
DProcessFreeBSD.cpp640 size_t opcode_size = 0; in GetSoftwareBreakpointTrapOpcode() local
663 opcode_size = sizeof(g_thumb_breakpoint_opcode); in GetSoftwareBreakpointTrapOpcode()
666 opcode_size = sizeof(g_arm_breakpoint_opcode); in GetSoftwareBreakpointTrapOpcode()
671 opcode_size = sizeof(g_aarch64_opcode); in GetSoftwareBreakpointTrapOpcode()
677 opcode_size = sizeof(g_i386_opcode); in GetSoftwareBreakpointTrapOpcode()
681 bp_site->SetTrapOpcode(opcode, opcode_size); in GetSoftwareBreakpointTrapOpcode()
682 return opcode_size; in GetSoftwareBreakpointTrapOpcode()
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
DUnwindAssemblyInstEmulation.cpp53 AddressRange &range, uint8_t *opcode_data, size_t opcode_size, in GetNonCallSiteUnwindPlanFromAssembly() argument
55 if (opcode_data == nullptr || opcode_size == 0) in GetNonCallSiteUnwindPlanFromAssembly()
73 opcode_size, 99999, prefer_file_cache)); in GetNonCallSiteUnwindPlanFromAssembly()
DUnwindAssemblyInstEmulation.h28 uint8_t *opcode_data, size_t opcode_size,
/external/llvm-project/lldb/include/lldb/Core/
DDisassembler.h349 void SetOpcode(size_t opcode_size, void *opcode_data);
/external/llvm-project/lldb/source/Core/
DDisassembler.cpp1134 void PseudoInstruction::SetOpcode(size_t opcode_size, void *opcode_data) { in SetOpcode() argument
1138 switch (opcode_size) { in SetOpcode()
/external/freetype/src/truetype/
Dttinterp.c3694 FT_UShort opcode_size[9] = { 12, 8, 8, 6, 7, 4, 5, 4, 2 }; in Ins_FDEF() local
3767 if ( opcode_pointer[i] < opcode_size[i] && in Ins_FDEF()
3772 if ( opcode_pointer[i] == opcode_size[i] ) in Ins_FDEF()
7742 FT_UShort opcode_size[1] = { 1 }; in TT_RunIns() local
7937 if ( opcode_pointer[i] < opcode_size[i] && in TT_RunIns()
7942 if ( opcode_pointer[i] == opcode_size[i] ) in TT_RunIns()