Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointSite.cpp98 uint32_t trap_opcode_size) { in SetTrapOpcode() argument
99 if (trap_opcode_size > 0 && trap_opcode_size <= sizeof(m_trap_opcode)) { in SetTrapOpcode()
100 m_byte_size = trap_opcode_size; in SetTrapOpcode()
101 ::memcpy(m_trap_opcode, trap_opcode, trap_opcode_size); in SetTrapOpcode()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp240 size_t trap_opcode_size = sizeof(g_arm_breakpoint_opcode); in GetSoftwareBreakpointTrapOpcode() local
242 if (bp_site->SetTrapOpcode(g_arm_breakpoint_opcode, trap_opcode_size)) in GetSoftwareBreakpointTrapOpcode()
243 return trap_opcode_size; in GetSoftwareBreakpointTrapOpcode()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp1869 size_t trap_opcode_size = 0; in GetSoftwareBreakpointTrapOpcode() local
1875 trap_opcode_size = sizeof(g_aarch64_opcode); in GetSoftwareBreakpointTrapOpcode()
1900 trap_opcode_size = sizeof(g_arm_breakpoint_opcode); in GetSoftwareBreakpointTrapOpcode()
1908 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1915 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1921 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1927 trap_opcode_size = sizeof(g_hex_opcode); in GetSoftwareBreakpointTrapOpcode()
1934 trap_opcode_size = sizeof(g_ppc_opcode); in GetSoftwareBreakpointTrapOpcode()
1940 trap_opcode_size = sizeof(g_ppc64le_opcode); in GetSoftwareBreakpointTrapOpcode()
1947 trap_opcode_size = sizeof(g_i386_opcode); in GetSoftwareBreakpointTrapOpcode()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointSite.h75 bool SetTrapOpcode(const uint8_t *trap_opcode, uint32_t trap_opcode_size);