|
20 | 20 | // Project includes
|
21 | 21 | #include "lldb/Target/Platform.h"
|
22 | 22 | #include "lldb/Breakpoint/BreakpointIDList.h"
|
| 23 | +#include "lldb/Breakpoint/BreakpointLocation.h" |
23 | 24 | #include "lldb/Core/DataBufferHeap.h"
|
24 | 25 | #include "lldb/Core/Debugger.h"
|
25 | 26 | #include "lldb/Core/Error.h"
|
@@ -2046,3 +2047,105 @@ Platform::ConnectToWaitingProcesses(lldb_private::Debugger& debugger, lldb_priva
|
2046 | 2047 | error.Clear();
|
2047 | 2048 | return 0;
|
2048 | 2049 | }
|
| 2050 | + |
| 2051 | +size_t |
| 2052 | +Platform::GetSoftwareBreakpointTrapOpcode(Target &target, BreakpointSite *bp_site) |
| 2053 | +{ |
| 2054 | + ArchSpec arch = target.GetArchitecture(); |
| 2055 | + const uint8_t *trap_opcode = nullptr; |
| 2056 | + size_t trap_opcode_size = 0; |
| 2057 | + |
| 2058 | + switch (arch.GetMachine()) |
| 2059 | + { |
| 2060 | + case llvm::Triple::aarch64: |
| 2061 | + { |
| 2062 | + static const uint8_t g_aarch64_opcode[] = {0x00, 0x00, 0x20, 0xd4}; |
| 2063 | + trap_opcode = g_aarch64_opcode; |
| 2064 | + trap_opcode_size = sizeof(g_aarch64_opcode); |
| 2065 | + } |
| 2066 | + break; |
| 2067 | + |
| 2068 | + // TODO: support big-endian arm and thumb trap codes. |
| 2069 | + case llvm::Triple::arm: |
| 2070 | + { |
| 2071 | + // The ARM reference recommends the use of 0xe7fddefe and 0xdefe |
| 2072 | + // but the linux kernel does otherwise. |
| 2073 | + static const uint8_t g_arm_breakpoint_opcode[] = {0xf0, 0x01, 0xf0, 0xe7}; |
| 2074 | + static const uint8_t g_thumb_breakpoint_opcode[] = {0x01, 0xde}; |
| 2075 | + |
| 2076 | + lldb::BreakpointLocationSP bp_loc_sp(bp_site->GetOwnerAtIndex(0)); |
| 2077 | + AddressClass addr_class = eAddressClassUnknown; |
| 2078 | + |
| 2079 | + if (bp_loc_sp) |
| 2080 | + { |
| 2081 | + addr_class = bp_loc_sp->GetAddress().GetAddressClass(); |
| 2082 | + if (addr_class == eAddressClassUnknown && (bp_loc_sp->GetAddress().GetFileAddress() & 1)) |
| 2083 | + addr_class = eAddressClassCodeAlternateISA; |
| 2084 | + } |
| 2085 | + |
| 2086 | + if (addr_class == eAddressClassCodeAlternateISA) |
| 2087 | + { |
| 2088 | + trap_opcode = g_thumb_breakpoint_opcode; |
| 2089 | + trap_opcode_size = sizeof(g_thumb_breakpoint_opcode); |
| 2090 | + } |
| 2091 | + else |
| 2092 | + { |
| 2093 | + trap_opcode = g_arm_breakpoint_opcode; |
| 2094 | + trap_opcode_size = sizeof(g_arm_breakpoint_opcode); |
| 2095 | + } |
| 2096 | + } |
| 2097 | + break; |
| 2098 | + |
| 2099 | + case llvm::Triple::mips64: |
| 2100 | + { |
| 2101 | + static const uint8_t g_hex_opcode[] = {0x00, 0x00, 0x00, 0x0d}; |
| 2102 | + trap_opcode = g_hex_opcode; |
| 2103 | + trap_opcode_size = sizeof(g_hex_opcode); |
| 2104 | + } |
| 2105 | + break; |
| 2106 | + |
| 2107 | + case llvm::Triple::mips64el: |
| 2108 | + { |
| 2109 | + static const uint8_t g_hex_opcode[] = {0x0d, 0x00, 0x00, 0x00}; |
| 2110 | + trap_opcode = g_hex_opcode; |
| 2111 | + trap_opcode_size = sizeof(g_hex_opcode); |
| 2112 | + } |
| 2113 | + break; |
| 2114 | + |
| 2115 | + case llvm::Triple::hexagon: |
| 2116 | + { |
| 2117 | + static const uint8_t g_hex_opcode[] = {0x0c, 0xdb, 0x00, 0x54}; |
| 2118 | + trap_opcode = g_hex_opcode; |
| 2119 | + trap_opcode_size = sizeof(g_hex_opcode); |
| 2120 | + } |
| 2121 | + break; |
| 2122 | + |
| 2123 | + case llvm::Triple::ppc: |
| 2124 | + case llvm::Triple::ppc64: |
| 2125 | + { |
| 2126 | + static const uint8_t g_ppc_opcode[] = {0x7f, 0xe0, 0x00, 0x08}; |
| 2127 | + trap_opcode = g_ppc_opcode; |
| 2128 | + trap_opcode_size = sizeof(g_ppc_opcode); |
| 2129 | + } |
| 2130 | + break; |
| 2131 | + |
| 2132 | + case llvm::Triple::x86: |
| 2133 | + case llvm::Triple::x86_64: |
| 2134 | + { |
| 2135 | + static const uint8_t g_i386_opcode[] = {0xCC}; |
| 2136 | + trap_opcode = g_i386_opcode; |
| 2137 | + trap_opcode_size = sizeof(g_i386_opcode); |
| 2138 | + } |
| 2139 | + break; |
| 2140 | + |
| 2141 | + default: |
| 2142 | + assert(!"Unhandled architecture in Platform::GetSoftwareBreakpointTrapOpcode"); |
| 2143 | + break; |
| 2144 | + } |
| 2145 | + |
| 2146 | + assert(bp_site); |
| 2147 | + if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size)) |
| 2148 | + return trap_opcode_size; |
| 2149 | + |
| 2150 | + return 0; |
| 2151 | +} |
0 commit comments