Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSite.cpp105 uint32_t trap_opcode_size) { in SetTrapOpcode() argument
106 if (trap_opcode_size > 0 && trap_opcode_size <= sizeof(m_trap_opcode)) { in SetTrapOpcode()
107 m_byte_size = trap_opcode_size; in SetTrapOpcode()
108 ::memcpy(m_trap_opcode, trap_opcode, trap_opcode_size); in SetTrapOpcode()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1879 size_t trap_opcode_size = 0; in GetSoftwareBreakpointTrapOpcode() local
1886 trap_opcode_size = sizeof(g_aarch64_opcode); in GetSoftwareBreakpointTrapOpcode()
1892 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1924 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1931 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1938 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1944 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1950 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1957 trap_opcode_size = sizeof(g_ppc_opcode); in GetSoftwareBreakpointTrapOpcode()
1970 trap_opcode_size = sizeof(g_i386_opcode); in GetSoftwareBreakpointTrapOpcode()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSite.h62 bool SetTrapOpcode(const uint8_t *trap_opcode, uint32_t trap_opcode_size);