Home
last modified time | relevance | path

Searched refs:trap_opcode_size (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSite.cpp103 uint32_t trap_opcode_size) { in SetTrapOpcode() argument
104 if (trap_opcode_size > 0 && trap_opcode_size <= sizeof(m_trap_opcode)) { in SetTrapOpcode()
105 m_byte_size = trap_opcode_size; in SetTrapOpcode()
106 ::memcpy(m_trap_opcode, trap_opcode, trap_opcode_size); in SetTrapOpcode()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1994 size_t trap_opcode_size = 0; in GetSoftwareBreakpointTrapOpcode() local
2007 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2039 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2046 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2053 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2059 trap_opcode_size = sizeof(g_msp430_opcode); in GetSoftwareBreakpointTrapOpcode()
2065 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2071 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2078 trap_opcode_size = sizeof(g_ppc_opcode); in GetSoftwareBreakpointTrapOpcode()
2091 trap_opcode_size = sizeof(g_i386_opcode); in GetSoftwareBreakpointTrapOpcode()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSite.h65 bool SetTrapOpcode(const uint8_t *trap_opcode, uint32_t trap_opcode_size);