Home
last modified time | relevance | path

Searched refs:trap_opcode (Results 1 – 6 of 6) sorted by relevance

/external/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwin.cpp375 const uint8_t *trap_opcode = NULL; in GetSoftwareBreakpointTrapOpcode() local
386 trap_opcode = g_i386_breakpoint_opcode; in GetSoftwareBreakpointTrapOpcode()
407 trap_opcode = g_thumb_breakpooint_opcode; in GetSoftwareBreakpointTrapOpcode()
411 trap_opcode = g_arm_breakpoint_opcode; in GetSoftwareBreakpointTrapOpcode()
420 trap_opcode = g_ppc_breakpoint_opcode; in GetSoftwareBreakpointTrapOpcode()
430 if (trap_opcode && trap_opcode_size) in GetSoftwareBreakpointTrapOpcode()
432 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size)) in GetSoftwareBreakpointTrapOpcode()
/external/lldb/source/Plugins/Platform/Linux/
DPlatformLinux.cpp377 const uint8_t *trap_opcode = NULL; in GetSoftwareBreakpointTrapOpcode() local
390 trap_opcode = g_i386_breakpoint_opcode; in GetSoftwareBreakpointTrapOpcode()
396 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size)) in GetSoftwareBreakpointTrapOpcode()
/external/lldb/source/Breakpoint/
DBreakpointSite.cpp126 BreakpointSite::SetTrapOpcode (const uint8_t *trap_opcode, uint32_t trap_opcode_size) in SetTrapOpcode() argument
131 ::memcpy (m_trap_opcode, trap_opcode, trap_opcode_size); in SetTrapOpcode()
/external/lldb/source/Plugins/Platform/FreeBSD/
DPlatformFreeBSD.cpp287 const uint8_t *trap_opcode = NULL; in GetSoftwareBreakpointTrapOpcode() local
300 trap_opcode = g_i386_opcode; in GetSoftwareBreakpointTrapOpcode()
306 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size)) in GetSoftwareBreakpointTrapOpcode()
/external/lldb/include/lldb/Breakpoint/
DBreakpointSite.h85 SetTrapOpcode (const uint8_t *trap_opcode,
/external/llvm/lib/Target/ARM/
DARMISelLowering.cpp6556 unsigned trap_opcode; in EmitSjLjDispatchBlock() local
6558 trap_opcode = ARM::tTRAP; in EmitSjLjDispatchBlock()
6560 trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP; in EmitSjLjDispatchBlock()
6562 BuildMI(TrapBB, dl, TII->get(trap_opcode)); in EmitSjLjDispatchBlock()