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.cpp120 uint32_t trap_opcode_size) { in SetTrapOpcode() argument
121 if (trap_opcode_size > 0 && trap_opcode_size <= sizeof(m_trap_opcode)) { in SetTrapOpcode()
122 m_byte_size = trap_opcode_size; in SetTrapOpcode()
123 ::memcpy(m_trap_opcode, trap_opcode, trap_opcode_size); in SetTrapOpcode()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1958 size_t trap_opcode_size = 0; in GetSoftwareBreakpointTrapOpcode() local
1965 trap_opcode_size = sizeof(g_aarch64_opcode); in GetSoftwareBreakpointTrapOpcode()
1971 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1993 trap_opcode_size = sizeof(g_thumb_breakpoint_opcode); in GetSoftwareBreakpointTrapOpcode()
1996 trap_opcode_size = sizeof(g_arm_breakpoint_opcode); in GetSoftwareBreakpointTrapOpcode()
2003 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2010 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2017 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
2023 trap_opcode_size = sizeof(g_msp430_opcode); in GetSoftwareBreakpointTrapOpcode()
2029 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);