Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Target/
H A DPlatform.cpp1838 const uint8_t *trap_opcode = nullptr; in GetSoftwareBreakpointTrapOpcode() local
1845 trap_opcode = g_aarch64_opcode; in GetSoftwareBreakpointTrapOpcode()
1851 trap_opcode = g_hex_opcode; in GetSoftwareBreakpointTrapOpcode()
1883 trap_opcode = g_hex_opcode; in GetSoftwareBreakpointTrapOpcode()
1890 trap_opcode = g_hex_opcode; in GetSoftwareBreakpointTrapOpcode()
1897 trap_opcode = g_hex_opcode; in GetSoftwareBreakpointTrapOpcode()
1903 trap_opcode = g_hex_opcode; in GetSoftwareBreakpointTrapOpcode()
1909 trap_opcode = g_hex_opcode; in GetSoftwareBreakpointTrapOpcode()
1916 trap_opcode = g_ppc_opcode; in GetSoftwareBreakpointTrapOpcode()
1922 trap_opcode = g_ppc64le_opcode; in GetSoftwareBreakpointTrapOpcode()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Platform/Windows/
H A DPlatformWindows.cpp569 const uint8_t *trap_opcode = nullptr; in GetSoftwareBreakpointTrapOpcode() local
575 trap_opcode = g_aarch64_opcode; in GetSoftwareBreakpointTrapOpcode()
578 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size)) in GetSoftwareBreakpointTrapOpcode()
586 trap_opcode = g_thumb_opcode; in GetSoftwareBreakpointTrapOpcode()
589 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size)) in GetSoftwareBreakpointTrapOpcode()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointSite.cpp104 bool BreakpointSite::SetTrapOpcode(const uint8_t *trap_opcode, in SetTrapOpcode() argument
108 ::memcpy(m_trap_opcode, trap_opcode, trap_opcode_size); in SetTrapOpcode()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp415 const uint8_t *trap_opcode = nullptr; in GetSoftwareBreakpointTrapOpcode() local
425 trap_opcode = g_arm64_breakpoint_opcode; in GetSoftwareBreakpointTrapOpcode()
444 trap_opcode = g_thumb_breakpooint_opcode; in GetSoftwareBreakpointTrapOpcode()
448 trap_opcode = g_arm_breakpoint_opcode; in GetSoftwareBreakpointTrapOpcode()
455 trap_opcode = g_ppc_breakpoint_opcode; in GetSoftwareBreakpointTrapOpcode()
463 if (trap_opcode && trap_opcode_size) { in GetSoftwareBreakpointTrapOpcode()
464 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size)) in GetSoftwareBreakpointTrapOpcode()
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointSite.h62 bool SetTrapOpcode(const uint8_t *trap_opcode, uint32_t trap_opcode_size);
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10755 unsigned trap_opcode; in EmitSjLjDispatchBlock() local
10757 trap_opcode = ARM::tTRAP; in EmitSjLjDispatchBlock()
10759 trap_opcode = Subtarget->useNaClTrap() ? ARM::TRAPNaCl : ARM::TRAP; in EmitSjLjDispatchBlock()
10761 BuildMI(TrapBB, dl, TII->get(trap_opcode)); in EmitSjLjDispatchBlock()