Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSite.cpp103 uint32_t trap_opcode_size) {
104 if (trap_opcode_size > 0 && trap_opcode_size <= sizeof(m_trap_opcode)) { in SetTrapOpcode()
105 m_byte_size = trap_opcode_size; in SetTrapOpcode() argument
106 ::memcpy(m_trap_opcode, trap_opcode, trap_opcode_size); in SetTrapOpcode()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1946 size_t trap_opcode_size = 0; in GetSoftwareBreakpointTrapOpcode() local
1953 trap_opcode_size = sizeof(g_aarch64_opcode); in GetSoftwareBreakpointTrapOpcode()
1959 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1981 trap_opcode_size = sizeof(g_thumb_breakpoint_opcode); in GetSoftwareBreakpointTrapOpcode()
1984 trap_opcode_size = sizeof(g_arm_breakpoint_opcode); in GetSoftwareBreakpointTrapOpcode()
1991 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1998 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2005 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2011 trap_opcode_size = sizeof(g_msp430_opcode); in GetSoftwareBreakpointTrapOpcode()
2017 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSite.h65 bool SetTrapOpcode(const uint8_t *trap_opcode, uint32_t trap_opcode_size);