Kevin Buettner | c877c8e | 2000-02-22 01:20:32 +0000 | [diff] [blame] | 1 | /* Target-dependent code for GDB, the GNU debugger. |
Andrew Cagney | 4e052ed | 2001-03-01 01:39:22 +0000 | [diff] [blame] | 2 | |
Joel Brobecker | 3666a04 | 2021-01-01 12:03:39 +0400 | [diff] [blame] | 3 | Copyright (C) 1986-2021 Free Software Foundation, Inc. |
Kevin Buettner | c877c8e | 2000-02-22 01:20:32 +0000 | [diff] [blame] | 4 | |
| 5 | This file is part of GDB. |
| 6 | |
| 7 | This program is free software; you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by |
Joel Brobecker | a9762ec | 2007-08-23 18:08:50 +0000 | [diff] [blame] | 9 | the Free Software Foundation; either version 3 of the License, or |
Kevin Buettner | c877c8e | 2000-02-22 01:20:32 +0000 | [diff] [blame] | 10 | (at your option) any later version. |
| 11 | |
| 12 | This program is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | GNU General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU General Public License |
Joel Brobecker | a9762ec | 2007-08-23 18:08:50 +0000 | [diff] [blame] | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
Kevin Buettner | c877c8e | 2000-02-22 01:20:32 +0000 | [diff] [blame] | 19 | |
| 20 | #include "defs.h" |
| 21 | #include "frame.h" |
| 22 | #include "inferior.h" |
| 23 | #include "symtab.h" |
| 24 | #include "target.h" |
| 25 | #include "gdbcore.h" |
| 26 | #include "gdbcmd.h" |
| 27 | #include "symfile.h" |
| 28 | #include "objfiles.h" |
Andrew Cagney | 4e052ed | 2001-03-01 01:39:22 +0000 | [diff] [blame] | 29 | #include "regcache.h" |
Andrew Cagney | fd0407d | 2001-10-21 17:19:38 +0000 | [diff] [blame] | 30 | #include "value.h" |
Daniel Jacobowitz | 4be8783 | 2003-01-04 23:38:46 +0000 | [diff] [blame] | 31 | #include "osabi.h" |
Andrew Cagney | f9be684 | 2004-03-15 21:35:25 +0000 | [diff] [blame] | 32 | #include "regset.h" |
Kevin Buettner | 6ded799 | 2001-12-01 00:25:08 +0000 | [diff] [blame] | 33 | #include "solib-svr4.h" |
Ulrich Weigand | cc5f0d6 | 2009-07-31 15:31:08 +0000 | [diff] [blame] | 34 | #include "solib.h" |
| 35 | #include "solist.h" |
Kevin Buettner | 9aa1e68 | 2000-07-31 20:56:44 +0000 | [diff] [blame] | 36 | #include "ppc-tdep.h" |
Andreas Tobler | d78489b | 2013-02-01 20:54:18 +0000 | [diff] [blame] | 37 | #include "ppc64-tdep.h" |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 38 | #include "ppc-linux-tdep.h" |
Pedro Franco de Carvalho | bd64614 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 39 | #include "arch/ppc-linux-common.h" |
| 40 | #include "arch/ppc-linux-tdesc.h" |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 41 | #include "glibc-tdep.h" |
Kevin Buettner | 61a6509 | 2004-03-20 04:51:21 +0000 | [diff] [blame] | 42 | #include "trad-frame.h" |
| 43 | #include "frame-unwind.h" |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 44 | #include "tramp-frame.h" |
Tom Tromey | 7672791 | 2016-10-02 10:50:20 -0600 | [diff] [blame] | 45 | #include "observable.h" |
Ulrich Weigand | 85e747d | 2009-07-31 15:28:27 +0000 | [diff] [blame] | 46 | #include "auxv.h" |
| 47 | #include "elf/common.h" |
Ulrich Weigand | 591a12a | 2014-02-04 18:44:14 +0100 | [diff] [blame] | 48 | #include "elf/ppc64.h" |
Ulrich Weigand | cc5f0d6 | 2009-07-31 15:31:08 +0000 | [diff] [blame] | 49 | #include "arch-utils.h" |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 50 | #include "xml-syscall.h" |
Pedro Alves | a5ee0f0 | 2010-08-04 15:27:57 +0000 | [diff] [blame] | 51 | #include "linux-tdep.h" |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 52 | #include "linux-record.h" |
| 53 | #include "record-full.h" |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 54 | #include "infrun.h" |
Tom Tromey | 4c5e7a9 | 2021-03-08 07:27:57 -0700 | [diff] [blame] | 55 | #include "expop.h" |
Kevin Buettner | 9aa1e68 | 2000-07-31 20:56:44 +0000 | [diff] [blame] | 56 | |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 57 | #include "stap-probe.h" |
| 58 | #include "ax.h" |
| 59 | #include "ax-gdb.h" |
| 60 | #include "cli/cli-utils.h" |
| 61 | #include "parser-defs.h" |
| 62 | #include "user-regs.h" |
| 63 | #include <ctype.h> |
Maciej W. Rozycki | a2f63b2 | 2017-10-11 15:01:40 +0100 | [diff] [blame] | 64 | #include "elf-bfd.h" |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 65 | |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 66 | #include "features/rs6000/powerpc-32l.c" |
| 67 | #include "features/rs6000/powerpc-altivec32l.c" |
Luis Machado | 604c2f8 | 2008-08-15 15:18:34 +0000 | [diff] [blame] | 68 | #include "features/rs6000/powerpc-vsx32l.c" |
Thiago Jung Bauermann | 69abc51 | 2008-11-18 21:39:47 +0000 | [diff] [blame] | 69 | #include "features/rs6000/powerpc-isa205-32l.c" |
| 70 | #include "features/rs6000/powerpc-isa205-altivec32l.c" |
| 71 | #include "features/rs6000/powerpc-isa205-vsx32l.c" |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 72 | #include "features/rs6000/powerpc-isa205-ppr-dscr-vsx32l.c" |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 73 | #include "features/rs6000/powerpc-isa207-vsx32l.c" |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 74 | #include "features/rs6000/powerpc-isa207-htm-vsx32l.c" |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 75 | #include "features/rs6000/powerpc-64l.c" |
| 76 | #include "features/rs6000/powerpc-altivec64l.c" |
Luis Machado | 604c2f8 | 2008-08-15 15:18:34 +0000 | [diff] [blame] | 77 | #include "features/rs6000/powerpc-vsx64l.c" |
Thiago Jung Bauermann | 69abc51 | 2008-11-18 21:39:47 +0000 | [diff] [blame] | 78 | #include "features/rs6000/powerpc-isa205-64l.c" |
| 79 | #include "features/rs6000/powerpc-isa205-altivec64l.c" |
| 80 | #include "features/rs6000/powerpc-isa205-vsx64l.c" |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 81 | #include "features/rs6000/powerpc-isa205-ppr-dscr-vsx64l.c" |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 82 | #include "features/rs6000/powerpc-isa207-vsx64l.c" |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 83 | #include "features/rs6000/powerpc-isa207-htm-vsx64l.c" |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 84 | #include "features/rs6000/powerpc-e500l.c" |
| 85 | |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 86 | /* Shared library operations for PowerPC-Linux. */ |
| 87 | static struct target_so_ops powerpc_so_ops; |
| 88 | |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 89 | /* The syscall's XML filename for PPC and PPC64. */ |
| 90 | #define XML_SYSCALL_FILENAME_PPC "syscalls/ppc-linux.xml" |
| 91 | #define XML_SYSCALL_FILENAME_PPC64 "syscalls/ppc64-linux.xml" |
Kevin Buettner | c877c8e | 2000-02-22 01:20:32 +0000 | [diff] [blame] | 92 | |
Kevin Buettner | 122a33d | 2000-02-26 09:25:50 +0000 | [diff] [blame] | 93 | /* ppc_linux_memory_remove_breakpoints attempts to remove a breakpoint |
| 94 | in much the same fashion as memory_remove_breakpoint in mem-break.c, |
| 95 | but is careful not to write back the previous contents if the code |
| 96 | in question has changed in between inserting the breakpoint and |
| 97 | removing it. |
| 98 | |
| 99 | Here is the problem that we're trying to solve... |
| 100 | |
| 101 | Once upon a time, before introducing this function to remove |
| 102 | breakpoints from the inferior, setting a breakpoint on a shared |
| 103 | library function prior to running the program would not work |
| 104 | properly. In order to understand the problem, it is first |
| 105 | necessary to understand a little bit about dynamic linking on |
| 106 | this platform. |
| 107 | |
| 108 | A call to a shared library function is accomplished via a bl |
| 109 | (branch-and-link) instruction whose branch target is an entry |
| 110 | in the procedure linkage table (PLT). The PLT in the object |
| 111 | file is uninitialized. To gdb, prior to running the program, the |
| 112 | entries in the PLT are all zeros. |
| 113 | |
| 114 | Once the program starts running, the shared libraries are loaded |
| 115 | and the procedure linkage table is initialized, but the entries in |
| 116 | the table are not (necessarily) resolved. Once a function is |
| 117 | actually called, the code in the PLT is hit and the function is |
| 118 | resolved. In order to better illustrate this, an example is in |
| 119 | order; the following example is from the gdb testsuite. |
| 120 | |
| 121 | We start the program shmain. |
| 122 | |
| 123 | [kev@arroyo testsuite]$ ../gdb gdb.base/shmain |
| 124 | [...] |
| 125 | |
| 126 | We place two breakpoints, one on shr1 and the other on main. |
| 127 | |
| 128 | (gdb) b shr1 |
| 129 | Breakpoint 1 at 0x100409d4 |
| 130 | (gdb) b main |
| 131 | Breakpoint 2 at 0x100006a0: file gdb.base/shmain.c, line 44. |
| 132 | |
| 133 | Examine the instruction (and the immediatly following instruction) |
| 134 | upon which the breakpoint was placed. Note that the PLT entry |
| 135 | for shr1 contains zeros. |
| 136 | |
| 137 | (gdb) x/2i 0x100409d4 |
| 138 | 0x100409d4 <shr1>: .long 0x0 |
| 139 | 0x100409d8 <shr1+4>: .long 0x0 |
| 140 | |
| 141 | Now run 'til main. |
| 142 | |
| 143 | (gdb) r |
| 144 | Starting program: gdb.base/shmain |
| 145 | Breakpoint 1 at 0xffaf790: file gdb.base/shr1.c, line 19. |
| 146 | |
| 147 | Breakpoint 2, main () |
| 148 | at gdb.base/shmain.c:44 |
| 149 | 44 g = 1; |
| 150 | |
| 151 | Examine the PLT again. Note that the loading of the shared |
| 152 | library has initialized the PLT to code which loads a constant |
| 153 | (which I think is an index into the GOT) into r11 and then |
Tom de Vries | 30baf67 | 2019-10-26 09:55:32 +0200 | [diff] [blame] | 154 | branches a short distance to the code which actually does the |
Kevin Buettner | 122a33d | 2000-02-26 09:25:50 +0000 | [diff] [blame] | 155 | resolving. |
| 156 | |
| 157 | (gdb) x/2i 0x100409d4 |
| 158 | 0x100409d4 <shr1>: li r11,4 |
| 159 | 0x100409d8 <shr1+4>: b 0x10040984 <sg+4> |
| 160 | (gdb) c |
| 161 | Continuing. |
| 162 | |
| 163 | Breakpoint 1, shr1 (x=1) |
| 164 | at gdb.base/shr1.c:19 |
| 165 | 19 l = 1; |
| 166 | |
| 167 | Now we've hit the breakpoint at shr1. (The breakpoint was |
| 168 | reset from the PLT entry to the actual shr1 function after the |
| 169 | shared library was loaded.) Note that the PLT entry has been |
Michael Snyder | 0df8b41 | 2011-01-10 20:38:51 +0000 | [diff] [blame] | 170 | resolved to contain a branch that takes us directly to shr1. |
Kevin Buettner | 122a33d | 2000-02-26 09:25:50 +0000 | [diff] [blame] | 171 | (The real one, not the PLT entry.) |
| 172 | |
| 173 | (gdb) x/2i 0x100409d4 |
| 174 | 0x100409d4 <shr1>: b 0xffaf76c <shr1> |
| 175 | 0x100409d8 <shr1+4>: b 0x10040984 <sg+4> |
| 176 | |
| 177 | The thing to note here is that the PLT entry for shr1 has been |
| 178 | changed twice. |
| 179 | |
| 180 | Now the problem should be obvious. GDB places a breakpoint (a |
Michael Snyder | 0df8b41 | 2011-01-10 20:38:51 +0000 | [diff] [blame] | 181 | trap instruction) on the zero value of the PLT entry for shr1. |
Kevin Buettner | 122a33d | 2000-02-26 09:25:50 +0000 | [diff] [blame] | 182 | Later on, after the shared library had been loaded and the PLT |
| 183 | initialized, GDB gets a signal indicating this fact and attempts |
| 184 | (as it always does when it stops) to remove all the breakpoints. |
| 185 | |
| 186 | The breakpoint removal was causing the former contents (a zero |
| 187 | word) to be written back to the now initialized PLT entry thus |
| 188 | destroying a portion of the initialization that had occurred only a |
| 189 | short time ago. When execution continued, the zero word would be |
Michael Snyder | 766062f | 2011-02-27 16:25:38 +0000 | [diff] [blame] | 190 | executed as an instruction an illegal instruction trap was |
Kevin Buettner | 122a33d | 2000-02-26 09:25:50 +0000 | [diff] [blame] | 191 | generated instead. (0 is not a legal instruction.) |
| 192 | |
| 193 | The fix for this problem was fairly straightforward. The function |
| 194 | memory_remove_breakpoint from mem-break.c was copied to this file, |
| 195 | modified slightly, and renamed to ppc_linux_memory_remove_breakpoint. |
| 196 | In tm-linux.h, MEMORY_REMOVE_BREAKPOINT is defined to call this new |
| 197 | function. |
| 198 | |
| 199 | The differences between ppc_linux_memory_remove_breakpoint () and |
| 200 | memory_remove_breakpoint () are minor. All that the former does |
| 201 | that the latter does not is check to make sure that the breakpoint |
| 202 | location actually contains a breakpoint (trap instruction) prior |
| 203 | to attempting to write back the old contents. If it does contain |
Michael Snyder | 0df8b41 | 2011-01-10 20:38:51 +0000 | [diff] [blame] | 204 | a trap instruction, we allow the old contents to be written back. |
Kevin Buettner | 122a33d | 2000-02-26 09:25:50 +0000 | [diff] [blame] | 205 | Otherwise, we silently do nothing. |
| 206 | |
| 207 | The big question is whether memory_remove_breakpoint () should be |
| 208 | changed to have the same functionality. The downside is that more |
| 209 | traffic is generated for remote targets since we'll have an extra |
| 210 | fetch of a memory word each time a breakpoint is removed. |
| 211 | |
| 212 | For the time being, we'll leave this self-modifying-code-friendly |
| 213 | version in ppc-linux-tdep.c, but it ought to be migrated somewhere |
| 214 | else in the event that some other platform has similar needs with |
| 215 | regard to removing breakpoints in some potentially self modifying |
| 216 | code. */ |
Pedro Alves | 63807e1 | 2009-02-22 01:02:20 +0000 | [diff] [blame] | 217 | static int |
Markus Deuling | ae4b228 | 2008-02-20 14:31:40 +0000 | [diff] [blame] | 218 | ppc_linux_memory_remove_breakpoint (struct gdbarch *gdbarch, |
| 219 | struct bp_target_info *bp_tgt) |
Kevin Buettner | 482ca3f | 2000-02-24 23:06:48 +0000 | [diff] [blame] | 220 | { |
Maciej W. Rozycki | 0d5ed15 | 2014-10-03 12:44:58 +0100 | [diff] [blame] | 221 | CORE_ADDR addr = bp_tgt->reqstd_address; |
Andrew Cagney | f4f9705 | 2002-04-18 18:09:09 +0000 | [diff] [blame] | 222 | const unsigned char *bp; |
Kevin Buettner | 482ca3f | 2000-02-24 23:06:48 +0000 | [diff] [blame] | 223 | int val; |
| 224 | int bplen; |
Andrew Cagney | 50fd128 | 2005-05-25 03:12:13 +0000 | [diff] [blame] | 225 | gdb_byte old_contents[BREAKPOINT_MAX]; |
Kevin Buettner | 482ca3f | 2000-02-24 23:06:48 +0000 | [diff] [blame] | 226 | |
| 227 | /* Determine appropriate breakpoint contents and size for this address. */ |
Markus Deuling | ae4b228 | 2008-02-20 14:31:40 +0000 | [diff] [blame] | 228 | bp = gdbarch_breakpoint_from_pc (gdbarch, &addr, &bplen); |
Kevin Buettner | 482ca3f | 2000-02-24 23:06:48 +0000 | [diff] [blame] | 229 | |
Daniel Jacobowitz | 8defab1 | 2008-03-13 12:22:14 +0000 | [diff] [blame] | 230 | /* Make sure we see the memory breakpoints. */ |
Tom Tromey | cb85b21 | 2017-09-09 10:47:10 -0600 | [diff] [blame] | 231 | scoped_restore restore_memory |
| 232 | = make_scoped_restore_show_memory_breakpoints (1); |
Kevin Buettner | 482ca3f | 2000-02-24 23:06:48 +0000 | [diff] [blame] | 233 | val = target_read_memory (addr, old_contents, bplen); |
| 234 | |
| 235 | /* If our breakpoint is no longer at the address, this means that the |
| 236 | program modified the code on us, so it is wrong to put back the |
Michael Snyder | 0df8b41 | 2011-01-10 20:38:51 +0000 | [diff] [blame] | 237 | old value. */ |
Kevin Buettner | 482ca3f | 2000-02-24 23:06:48 +0000 | [diff] [blame] | 238 | if (val == 0 && memcmp (bp, old_contents, bplen) == 0) |
Pedro Alves | dd110ab | 2011-12-14 14:55:27 +0000 | [diff] [blame] | 239 | val = target_write_raw_memory (addr, bp_tgt->shadow_contents, bplen); |
Kevin Buettner | 482ca3f | 2000-02-24 23:06:48 +0000 | [diff] [blame] | 240 | |
| 241 | return val; |
| 242 | } |
Kevin Buettner | 6ded799 | 2001-12-01 00:25:08 +0000 | [diff] [blame] | 243 | |
Andrew Cagney | b9ff301 | 2003-09-16 23:33:17 +0000 | [diff] [blame] | 244 | /* For historic reasons, PPC 32 GNU/Linux follows PowerOpen rather |
| 245 | than the 32 bit SYSV R4 ABI structure return convention - all |
| 246 | structures, no matter their size, are put in memory. Vectors, |
| 247 | which were added later, do get returned in a register though. */ |
| 248 | |
Andrew Cagney | 05580c6 | 2003-11-07 20:44:51 +0000 | [diff] [blame] | 249 | static enum return_value_convention |
Maciej W. Rozycki | 6a3a010 | 2012-05-16 14:35:09 +0000 | [diff] [blame] | 250 | ppc_linux_return_value (struct gdbarch *gdbarch, struct value *function, |
Corinna Vinschen | c055b10 | 2008-04-22 11:03:42 +0000 | [diff] [blame] | 251 | struct type *valtype, struct regcache *regcache, |
| 252 | gdb_byte *readbuf, const gdb_byte *writebuf) |
Andrew Cagney | b9ff301 | 2003-09-16 23:33:17 +0000 | [diff] [blame] | 253 | { |
Simon Marchi | 7813437 | 2020-05-14 13:46:38 -0400 | [diff] [blame] | 254 | if ((valtype->code () == TYPE_CODE_STRUCT |
| 255 | || valtype->code () == TYPE_CODE_UNION) |
Andrew Cagney | 05580c6 | 2003-11-07 20:44:51 +0000 | [diff] [blame] | 256 | && !((TYPE_LENGTH (valtype) == 16 || TYPE_LENGTH (valtype) == 8) |
Simon Marchi | bd63c87 | 2020-09-14 11:08:03 -0400 | [diff] [blame] | 257 | && valtype->is_vector ())) |
Andrew Cagney | 05580c6 | 2003-11-07 20:44:51 +0000 | [diff] [blame] | 258 | return RETURN_VALUE_STRUCT_CONVENTION; |
| 259 | else |
Maciej W. Rozycki | 6a3a010 | 2012-05-16 14:35:09 +0000 | [diff] [blame] | 260 | return ppc_sysv_abi_return_value (gdbarch, function, valtype, regcache, |
Corinna Vinschen | c055b10 | 2008-04-22 11:03:42 +0000 | [diff] [blame] | 261 | readbuf, writebuf); |
Andrew Cagney | b9ff301 | 2003-09-16 23:33:17 +0000 | [diff] [blame] | 262 | } |
| 263 | |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 264 | /* PLT stub in an executable. */ |
| 265 | static const struct ppc_insn_pattern powerpc32_plt_stub[] = |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 266 | { |
| 267 | { 0xffff0000, 0x3d600000, 0 }, /* lis r11, xxxx */ |
| 268 | { 0xffff0000, 0x816b0000, 0 }, /* lwz r11, xxxx(r11) */ |
| 269 | { 0xffffffff, 0x7d6903a6, 0 }, /* mtctr r11 */ |
| 270 | { 0xffffffff, 0x4e800420, 0 }, /* bctr */ |
| 271 | { 0, 0, 0 } |
| 272 | }; |
| 273 | |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 274 | /* PLT stubs in a shared library or PIE. |
| 275 | The first variant is used when the PLT entry is within +/-32k of |
| 276 | the GOT pointer (r30). */ |
| 277 | static const struct ppc_insn_pattern powerpc32_plt_stub_so_1[] = |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 278 | { |
| 279 | { 0xffff0000, 0x817e0000, 0 }, /* lwz r11, xxxx(r30) */ |
| 280 | { 0xffffffff, 0x7d6903a6, 0 }, /* mtctr r11 */ |
| 281 | { 0xffffffff, 0x4e800420, 0 }, /* bctr */ |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 282 | { 0, 0, 0 } |
| 283 | }; |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 284 | |
| 285 | /* The second variant is used when the PLT entry is more than +/-32k |
| 286 | from the GOT pointer (r30). */ |
| 287 | static const struct ppc_insn_pattern powerpc32_plt_stub_so_2[] = |
| 288 | { |
| 289 | { 0xffff0000, 0x3d7e0000, 0 }, /* addis r11, r30, xxxx */ |
| 290 | { 0xffff0000, 0x816b0000, 0 }, /* lwz r11, xxxx(r11) */ |
| 291 | { 0xffffffff, 0x7d6903a6, 0 }, /* mtctr r11 */ |
| 292 | { 0xffffffff, 0x4e800420, 0 }, /* bctr */ |
| 293 | { 0, 0, 0 } |
| 294 | }; |
| 295 | |
| 296 | /* The max number of insns we check using ppc_insns_match_pattern. */ |
| 297 | #define POWERPC32_PLT_CHECK_LEN (ARRAY_SIZE (powerpc32_plt_stub) - 1) |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 298 | |
| 299 | /* Check if PC is in PLT stub. For non-secure PLT, stub is in .plt |
| 300 | section. For secure PLT, stub is in .text and we need to check |
| 301 | instruction patterns. */ |
| 302 | |
| 303 | static int |
| 304 | powerpc_linux_in_dynsym_resolve_code (CORE_ADDR pc) |
| 305 | { |
Tom Tromey | 7cbd4a9 | 2013-04-08 19:59:09 +0000 | [diff] [blame] | 306 | struct bound_minimal_symbol sym; |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 307 | |
| 308 | /* Check whether PC is in the dynamic linker. This also checks |
| 309 | whether it is in the .plt section, used by non-PIC executables. */ |
| 310 | if (svr4_in_dynsym_resolve_code (pc)) |
| 311 | return 1; |
| 312 | |
| 313 | /* Check if we are in the resolver. */ |
| 314 | sym = lookup_minimal_symbol_by_pc (pc); |
Tom Tromey | 7cbd4a9 | 2013-04-08 19:59:09 +0000 | [diff] [blame] | 315 | if (sym.minsym != NULL |
Christian Biesinger | c9d95fa | 2019-11-22 12:05:14 -0600 | [diff] [blame] | 316 | && (strcmp (sym.minsym->linkage_name (), "__glink") == 0 |
| 317 | || strcmp (sym.minsym->linkage_name (), "__glink_PLTresolve") == 0)) |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 318 | return 1; |
| 319 | |
| 320 | return 0; |
| 321 | } |
| 322 | |
Wei-cheng Wang | ddeca1d | 2015-01-19 23:34:07 +0800 | [diff] [blame] | 323 | /* Follow PLT stub to actual routine. |
| 324 | |
| 325 | When the execution direction is EXEC_REVERSE, scan backward to |
| 326 | check whether we are in the middle of a PLT stub. Currently, |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 327 | we only look-behind at most 4 instructions (the max length of a PLT |
Wei-cheng Wang | ddeca1d | 2015-01-19 23:34:07 +0800 | [diff] [blame] | 328 | stub sequence. */ |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 329 | |
| 330 | static CORE_ADDR |
| 331 | ppc_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc) |
| 332 | { |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 333 | unsigned int insnbuf[POWERPC32_PLT_CHECK_LEN]; |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 334 | struct gdbarch *gdbarch = get_frame_arch (frame); |
| 335 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
| 336 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
| 337 | CORE_ADDR target = 0; |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 338 | int scan_limit, i; |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 339 | |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 340 | scan_limit = 1; |
| 341 | /* When reverse-debugging, scan backward to check whether we are |
| 342 | in the middle of trampoline code. */ |
| 343 | if (execution_direction == EXEC_REVERSE) |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 344 | scan_limit = 4; /* At most 4 instructions. */ |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 345 | |
| 346 | for (i = 0; i < scan_limit; i++) |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 347 | { |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 348 | if (ppc_insns_match_pattern (frame, pc, powerpc32_plt_stub, insnbuf)) |
| 349 | { |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 350 | /* Calculate PLT entry address from |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 351 | lis r11, xxxx |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 352 | lwz r11, xxxx(r11). */ |
| 353 | target = ((ppc_insn_d_field (insnbuf[0]) << 16) |
| 354 | + ppc_insn_d_field (insnbuf[1])); |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 355 | } |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 356 | else if (i < ARRAY_SIZE (powerpc32_plt_stub_so_1) - 1 |
| 357 | && ppc_insns_match_pattern (frame, pc, powerpc32_plt_stub_so_1, |
| 358 | insnbuf)) |
| 359 | { |
| 360 | /* Calculate PLT entry address from |
| 361 | lwz r11, xxxx(r30). */ |
| 362 | target = (ppc_insn_d_field (insnbuf[0]) |
| 363 | + get_frame_register_unsigned (frame, |
| 364 | tdep->ppc_gp0_regnum + 30)); |
| 365 | } |
| 366 | else if (ppc_insns_match_pattern (frame, pc, powerpc32_plt_stub_so_2, |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 367 | insnbuf)) |
| 368 | { |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 369 | /* Calculate PLT entry address from |
| 370 | addis r11, r30, xxxx |
| 371 | lwz r11, xxxx(r11). */ |
| 372 | target = ((ppc_insn_d_field (insnbuf[0]) << 16) |
| 373 | + ppc_insn_d_field (insnbuf[1]) |
| 374 | + get_frame_register_unsigned (frame, |
| 375 | tdep->ppc_gp0_regnum + 30)); |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 376 | } |
| 377 | else |
| 378 | { |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 379 | /* Scan backward one more instruction if it doesn't match. */ |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 380 | pc -= 4; |
| 381 | continue; |
| 382 | } |
| 383 | |
Alan Modra | 7433498 | 2018-01-24 15:22:17 +1030 | [diff] [blame] | 384 | target = read_memory_unsigned_integer (target, 4, byte_order); |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 385 | return target; |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 386 | } |
| 387 | |
Wei-cheng Wang | cf90fd9 | 2015-01-17 14:30:59 +0800 | [diff] [blame] | 388 | return 0; |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 389 | } |
Jim Blandy | f470a70 | 2003-06-13 00:06:11 +0000 | [diff] [blame] | 390 | |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 391 | /* Wrappers to handle Linux-only registers. */ |
| 392 | |
| 393 | static void |
| 394 | ppc_linux_supply_gregset (const struct regset *regset, |
| 395 | struct regcache *regcache, |
| 396 | int regnum, const void *gregs, size_t len) |
| 397 | { |
Simon Marchi | 19ba03f | 2015-09-25 14:08:07 -0400 | [diff] [blame] | 398 | const struct ppc_reg_offsets *offsets |
| 399 | = (const struct ppc_reg_offsets *) regset->regmap; |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 400 | |
| 401 | ppc_supply_gregset (regset, regcache, regnum, gregs, len); |
| 402 | |
Yao Qi | ac7936d | 2017-10-25 16:37:03 +0100 | [diff] [blame] | 403 | if (ppc_linux_trap_reg_p (regcache->arch ())) |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 404 | { |
| 405 | /* "orig_r3" is stored 2 slots after "pc". */ |
| 406 | if (regnum == -1 || regnum == PPC_ORIG_R3_REGNUM) |
Simon Marchi | 19ba03f | 2015-09-25 14:08:07 -0400 | [diff] [blame] | 407 | ppc_supply_reg (regcache, PPC_ORIG_R3_REGNUM, (const gdb_byte *) gregs, |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 408 | offsets->pc_offset + 2 * offsets->gpr_size, |
| 409 | offsets->gpr_size); |
| 410 | |
| 411 | /* "trap" is stored 8 slots after "pc". */ |
| 412 | if (regnum == -1 || regnum == PPC_TRAP_REGNUM) |
Simon Marchi | 19ba03f | 2015-09-25 14:08:07 -0400 | [diff] [blame] | 413 | ppc_supply_reg (regcache, PPC_TRAP_REGNUM, (const gdb_byte *) gregs, |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 414 | offsets->pc_offset + 8 * offsets->gpr_size, |
| 415 | offsets->gpr_size); |
| 416 | } |
| 417 | } |
Andrew Cagney | f9be684 | 2004-03-15 21:35:25 +0000 | [diff] [blame] | 418 | |
| 419 | static void |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 420 | ppc_linux_collect_gregset (const struct regset *regset, |
| 421 | const struct regcache *regcache, |
| 422 | int regnum, void *gregs, size_t len) |
Andrew Cagney | f9be684 | 2004-03-15 21:35:25 +0000 | [diff] [blame] | 423 | { |
Simon Marchi | 19ba03f | 2015-09-25 14:08:07 -0400 | [diff] [blame] | 424 | const struct ppc_reg_offsets *offsets |
| 425 | = (const struct ppc_reg_offsets *) regset->regmap; |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 426 | |
| 427 | /* Clear areas in the linux gregset not written elsewhere. */ |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 428 | if (regnum == -1) |
| 429 | memset (gregs, 0, len); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 430 | |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 431 | ppc_collect_gregset (regset, regcache, regnum, gregs, len); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 432 | |
Yao Qi | ac7936d | 2017-10-25 16:37:03 +0100 | [diff] [blame] | 433 | if (ppc_linux_trap_reg_p (regcache->arch ())) |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 434 | { |
| 435 | /* "orig_r3" is stored 2 slots after "pc". */ |
| 436 | if (regnum == -1 || regnum == PPC_ORIG_R3_REGNUM) |
Simon Marchi | 19ba03f | 2015-09-25 14:08:07 -0400 | [diff] [blame] | 437 | ppc_collect_reg (regcache, PPC_ORIG_R3_REGNUM, (gdb_byte *) gregs, |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 438 | offsets->pc_offset + 2 * offsets->gpr_size, |
| 439 | offsets->gpr_size); |
| 440 | |
| 441 | /* "trap" is stored 8 slots after "pc". */ |
| 442 | if (regnum == -1 || regnum == PPC_TRAP_REGNUM) |
Simon Marchi | 19ba03f | 2015-09-25 14:08:07 -0400 | [diff] [blame] | 443 | ppc_collect_reg (regcache, PPC_TRAP_REGNUM, (gdb_byte *) gregs, |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 444 | offsets->pc_offset + 8 * offsets->gpr_size, |
| 445 | offsets->gpr_size); |
| 446 | } |
Andrew Cagney | f9be684 | 2004-03-15 21:35:25 +0000 | [diff] [blame] | 447 | } |
| 448 | |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 449 | /* Regset descriptions. */ |
| 450 | static const struct ppc_reg_offsets ppc32_linux_reg_offsets = |
| 451 | { |
| 452 | /* General-purpose registers. */ |
| 453 | /* .r0_offset = */ 0, |
| 454 | /* .gpr_size = */ 4, |
| 455 | /* .xr_size = */ 4, |
| 456 | /* .pc_offset = */ 128, |
| 457 | /* .ps_offset = */ 132, |
| 458 | /* .cr_offset = */ 152, |
| 459 | /* .lr_offset = */ 144, |
| 460 | /* .ctr_offset = */ 140, |
| 461 | /* .xer_offset = */ 148, |
| 462 | /* .mq_offset = */ 156, |
| 463 | |
| 464 | /* Floating-point registers. */ |
| 465 | /* .f0_offset = */ 0, |
| 466 | /* .fpscr_offset = */ 256, |
Pedro Franco de Carvalho | 1d75a65 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 467 | /* .fpscr_size = */ 8 |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 468 | }; |
| 469 | |
| 470 | static const struct ppc_reg_offsets ppc64_linux_reg_offsets = |
| 471 | { |
| 472 | /* General-purpose registers. */ |
| 473 | /* .r0_offset = */ 0, |
| 474 | /* .gpr_size = */ 8, |
| 475 | /* .xr_size = */ 8, |
| 476 | /* .pc_offset = */ 256, |
| 477 | /* .ps_offset = */ 264, |
| 478 | /* .cr_offset = */ 304, |
| 479 | /* .lr_offset = */ 288, |
| 480 | /* .ctr_offset = */ 280, |
| 481 | /* .xer_offset = */ 296, |
| 482 | /* .mq_offset = */ 312, |
| 483 | |
| 484 | /* Floating-point registers. */ |
| 485 | /* .f0_offset = */ 0, |
| 486 | /* .fpscr_offset = */ 256, |
Pedro Franco de Carvalho | 1d75a65 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 487 | /* .fpscr_size = */ 8 |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 488 | }; |
| 489 | |
| 490 | static const struct regset ppc32_linux_gregset = { |
| 491 | &ppc32_linux_reg_offsets, |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 492 | ppc_linux_supply_gregset, |
Andreas Arnez | 09424cf | 2014-05-13 11:05:57 +0000 | [diff] [blame] | 493 | ppc_linux_collect_gregset |
Andrew Cagney | f9be684 | 2004-03-15 21:35:25 +0000 | [diff] [blame] | 494 | }; |
| 495 | |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 496 | static const struct regset ppc64_linux_gregset = { |
| 497 | &ppc64_linux_reg_offsets, |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 498 | ppc_linux_supply_gregset, |
Andreas Arnez | 09424cf | 2014-05-13 11:05:57 +0000 | [diff] [blame] | 499 | ppc_linux_collect_gregset |
Andrew Cagney | f9be684 | 2004-03-15 21:35:25 +0000 | [diff] [blame] | 500 | }; |
| 501 | |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 502 | static const struct regset ppc32_linux_fpregset = { |
| 503 | &ppc32_linux_reg_offsets, |
| 504 | ppc_supply_fpregset, |
Andreas Arnez | 09424cf | 2014-05-13 11:05:57 +0000 | [diff] [blame] | 505 | ppc_collect_fpregset |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 506 | }; |
| 507 | |
Pedro Franco de Carvalho | 1d75a65 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 508 | static const struct regcache_map_entry ppc32_le_linux_vrregmap[] = |
| 509 | { |
| 510 | { 32, PPC_VR0_REGNUM, 16 }, |
| 511 | { 1, PPC_VSCR_REGNUM, 4 }, |
| 512 | { 1, REGCACHE_MAP_SKIP, 12 }, |
| 513 | { 1, PPC_VRSAVE_REGNUM, 4 }, |
| 514 | { 1, REGCACHE_MAP_SKIP, 12 }, |
| 515 | { 0 } |
| 516 | }; |
| 517 | |
| 518 | static const struct regcache_map_entry ppc32_be_linux_vrregmap[] = |
| 519 | { |
| 520 | { 32, PPC_VR0_REGNUM, 16 }, |
| 521 | { 1, REGCACHE_MAP_SKIP, 12}, |
| 522 | { 1, PPC_VSCR_REGNUM, 4 }, |
| 523 | { 1, PPC_VRSAVE_REGNUM, 4 }, |
| 524 | { 1, REGCACHE_MAP_SKIP, 12 }, |
| 525 | { 0 } |
| 526 | }; |
| 527 | |
| 528 | static const struct regset ppc32_le_linux_vrregset = { |
| 529 | ppc32_le_linux_vrregmap, |
| 530 | regcache_supply_regset, |
Pedro Franco de Carvalho | 5c849b2 | 2018-10-26 09:37:53 -0300 | [diff] [blame] | 531 | regcache_collect_regset |
Pedro Franco de Carvalho | 1d75a65 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 532 | }; |
| 533 | |
| 534 | static const struct regset ppc32_be_linux_vrregset = { |
| 535 | ppc32_be_linux_vrregmap, |
| 536 | regcache_supply_regset, |
Pedro Franco de Carvalho | 5c849b2 | 2018-10-26 09:37:53 -0300 | [diff] [blame] | 537 | regcache_collect_regset |
Carlos Eduardo Seo | 06caf7d | 2007-10-29 20:26:42 +0000 | [diff] [blame] | 538 | }; |
| 539 | |
Pedro Franco de Carvalho | 2c3305f | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 540 | static const struct regcache_map_entry ppc32_linux_vsxregmap[] = |
| 541 | { |
| 542 | { 32, PPC_VSR0_UPPER_REGNUM, 8 }, |
| 543 | { 0 } |
| 544 | }; |
| 545 | |
Luis Machado | 604c2f8 | 2008-08-15 15:18:34 +0000 | [diff] [blame] | 546 | static const struct regset ppc32_linux_vsxregset = { |
Pedro Franco de Carvalho | 2c3305f | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 547 | ppc32_linux_vsxregmap, |
| 548 | regcache_supply_regset, |
| 549 | regcache_collect_regset |
Luis Machado | 604c2f8 | 2008-08-15 15:18:34 +0000 | [diff] [blame] | 550 | }; |
| 551 | |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 552 | /* Program Priorty Register regmap. */ |
| 553 | |
| 554 | static const struct regcache_map_entry ppc32_regmap_ppr[] = |
| 555 | { |
| 556 | { 1, PPC_PPR_REGNUM, 8 }, |
| 557 | { 0 } |
| 558 | }; |
| 559 | |
| 560 | /* Program Priorty Register regset. */ |
| 561 | |
| 562 | const struct regset ppc32_linux_pprregset = { |
| 563 | ppc32_regmap_ppr, |
| 564 | regcache_supply_regset, |
| 565 | regcache_collect_regset |
| 566 | }; |
| 567 | |
| 568 | /* Data Stream Control Register regmap. */ |
| 569 | |
| 570 | static const struct regcache_map_entry ppc32_regmap_dscr[] = |
| 571 | { |
| 572 | { 1, PPC_DSCR_REGNUM, 8 }, |
| 573 | { 0 } |
| 574 | }; |
| 575 | |
| 576 | /* Data Stream Control Register regset. */ |
| 577 | |
| 578 | const struct regset ppc32_linux_dscrregset = { |
| 579 | ppc32_regmap_dscr, |
| 580 | regcache_supply_regset, |
| 581 | regcache_collect_regset |
| 582 | }; |
| 583 | |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 584 | /* Target Address Register regmap. */ |
| 585 | |
| 586 | static const struct regcache_map_entry ppc32_regmap_tar[] = |
| 587 | { |
| 588 | { 1, PPC_TAR_REGNUM, 8 }, |
| 589 | { 0 } |
| 590 | }; |
| 591 | |
| 592 | /* Target Address Register regset. */ |
| 593 | |
| 594 | const struct regset ppc32_linux_tarregset = { |
| 595 | ppc32_regmap_tar, |
| 596 | regcache_supply_regset, |
| 597 | regcache_collect_regset |
| 598 | }; |
| 599 | |
Edjunior Barbosa Machado | 232bfb8 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 600 | /* Event-Based Branching regmap. */ |
| 601 | |
| 602 | static const struct regcache_map_entry ppc32_regmap_ebb[] = |
| 603 | { |
| 604 | { 1, PPC_EBBRR_REGNUM, 8 }, |
| 605 | { 1, PPC_EBBHR_REGNUM, 8 }, |
| 606 | { 1, PPC_BESCR_REGNUM, 8 }, |
| 607 | { 0 } |
| 608 | }; |
| 609 | |
| 610 | /* Event-Based Branching regset. */ |
| 611 | |
| 612 | const struct regset ppc32_linux_ebbregset = { |
| 613 | ppc32_regmap_ebb, |
| 614 | regcache_supply_regset, |
| 615 | regcache_collect_regset |
| 616 | }; |
| 617 | |
| 618 | /* Performance Monitoring Unit regmap. */ |
| 619 | |
| 620 | static const struct regcache_map_entry ppc32_regmap_pmu[] = |
| 621 | { |
| 622 | { 1, PPC_SIAR_REGNUM, 8 }, |
| 623 | { 1, PPC_SDAR_REGNUM, 8 }, |
| 624 | { 1, PPC_SIER_REGNUM, 8 }, |
| 625 | { 1, PPC_MMCR2_REGNUM, 8 }, |
| 626 | { 1, PPC_MMCR0_REGNUM, 8 }, |
| 627 | { 0 } |
| 628 | }; |
| 629 | |
| 630 | /* Performance Monitoring Unit regset. */ |
| 631 | |
| 632 | const struct regset ppc32_linux_pmuregset = { |
| 633 | ppc32_regmap_pmu, |
| 634 | regcache_supply_regset, |
| 635 | regcache_collect_regset |
| 636 | }; |
| 637 | |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 638 | /* Hardware Transactional Memory special-purpose register regmap. */ |
| 639 | |
| 640 | static const struct regcache_map_entry ppc32_regmap_tm_spr[] = |
| 641 | { |
| 642 | { 1, PPC_TFHAR_REGNUM, 8 }, |
| 643 | { 1, PPC_TEXASR_REGNUM, 8 }, |
| 644 | { 1, PPC_TFIAR_REGNUM, 8 }, |
| 645 | { 0 } |
| 646 | }; |
| 647 | |
| 648 | /* Hardware Transactional Memory special-purpose register regset. */ |
| 649 | |
| 650 | const struct regset ppc32_linux_tm_sprregset = { |
| 651 | ppc32_regmap_tm_spr, |
| 652 | regcache_supply_regset, |
| 653 | regcache_collect_regset |
| 654 | }; |
| 655 | |
| 656 | /* Regmaps for the Hardware Transactional Memory checkpointed |
| 657 | general-purpose regsets for 32-bit, 64-bit big-endian, and 64-bit |
| 658 | little endian targets. The ptrace and core file buffers for 64-bit |
| 659 | targets use 8-byte fields for the 4-byte registers, and the |
Tom de Vries | 405feb7 | 2019-10-17 18:06:36 +0200 | [diff] [blame] | 660 | position of the register in the fields depends on the endianness. |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 661 | The 32-bit regmap is the same for both endian types because the |
| 662 | fields are all 4-byte long. |
| 663 | |
| 664 | The layout of checkpointed GPR regset is the same as a regular |
| 665 | struct pt_regs, but we skip all registers that are not actually |
| 666 | checkpointed by the processor (e.g. msr, nip), except when |
| 667 | generating a core file. The 64-bit regset is 48 * 8 bytes long. |
| 668 | In some 64-bit kernels, the regset for a 32-bit inferior has the |
| 669 | same length, but all the registers are squeezed in the first half |
| 670 | (48 * 4 bytes). The pt_regs struct calls the regular cr ccr, but |
| 671 | we use ccr for "checkpointed condition register". Note that CR |
| 672 | (condition register) field 0 is not checkpointed, but the kernel |
| 673 | returns all 4 bytes. The skipped registers should not be touched |
| 674 | when writing the regset to the inferior (with |
| 675 | PTRACE_SETREGSET). */ |
| 676 | |
| 677 | static const struct regcache_map_entry ppc32_regmap_cgpr[] = |
| 678 | { |
| 679 | { 32, PPC_CR0_REGNUM, 4 }, |
| 680 | { 3, REGCACHE_MAP_SKIP, 4 }, /* nip, msr, orig_gpr3. */ |
| 681 | { 1, PPC_CCTR_REGNUM, 4 }, |
| 682 | { 1, PPC_CLR_REGNUM, 4 }, |
| 683 | { 1, PPC_CXER_REGNUM, 4 }, |
| 684 | { 1, PPC_CCR_REGNUM, 4 }, |
| 685 | { 9, REGCACHE_MAP_SKIP, 4 }, /* All the rest. */ |
| 686 | { 0 } |
| 687 | }; |
| 688 | |
| 689 | static const struct regcache_map_entry ppc64_le_regmap_cgpr[] = |
| 690 | { |
| 691 | { 32, PPC_CR0_REGNUM, 8 }, |
| 692 | { 3, REGCACHE_MAP_SKIP, 8 }, |
| 693 | { 1, PPC_CCTR_REGNUM, 8 }, |
| 694 | { 1, PPC_CLR_REGNUM, 8 }, |
| 695 | { 1, PPC_CXER_REGNUM, 4 }, |
| 696 | { 1, REGCACHE_MAP_SKIP, 4 }, /* CXER padding. */ |
| 697 | { 1, PPC_CCR_REGNUM, 4 }, |
| 698 | { 1, REGCACHE_MAP_SKIP, 4}, /* CCR padding. */ |
| 699 | { 9, REGCACHE_MAP_SKIP, 8}, |
| 700 | { 0 } |
| 701 | }; |
| 702 | |
| 703 | static const struct regcache_map_entry ppc64_be_regmap_cgpr[] = |
| 704 | { |
| 705 | { 32, PPC_CR0_REGNUM, 8 }, |
| 706 | { 3, REGCACHE_MAP_SKIP, 8 }, |
| 707 | { 1, PPC_CCTR_REGNUM, 8 }, |
| 708 | { 1, PPC_CLR_REGNUM, 8 }, |
| 709 | { 1, REGCACHE_MAP_SKIP, 4}, /* CXER padding. */ |
| 710 | { 1, PPC_CXER_REGNUM, 4 }, |
| 711 | { 1, REGCACHE_MAP_SKIP, 4}, /* CCR padding. */ |
| 712 | { 1, PPC_CCR_REGNUM, 4 }, |
| 713 | { 9, REGCACHE_MAP_SKIP, 8}, |
| 714 | { 0 } |
| 715 | }; |
| 716 | |
| 717 | /* Regsets for the Hardware Transactional Memory checkpointed |
| 718 | general-purpose registers for 32-bit, 64-bit big-endian, and 64-bit |
| 719 | little endian targets. |
| 720 | |
| 721 | Some 64-bit kernels generate a checkpointed gpr note section with |
| 722 | 48*8 bytes for a 32-bit thread, of which only 48*4 are actually |
| 723 | used, so we set the variable size flag in the corresponding regset |
| 724 | to accept this case. */ |
| 725 | |
| 726 | static const struct regset ppc32_linux_cgprregset = { |
| 727 | ppc32_regmap_cgpr, |
| 728 | regcache_supply_regset, |
| 729 | regcache_collect_regset, |
| 730 | REGSET_VARIABLE_SIZE |
| 731 | }; |
| 732 | |
| 733 | static const struct regset ppc64_be_linux_cgprregset = { |
| 734 | ppc64_be_regmap_cgpr, |
| 735 | regcache_supply_regset, |
| 736 | regcache_collect_regset |
| 737 | }; |
| 738 | |
| 739 | static const struct regset ppc64_le_linux_cgprregset = { |
| 740 | ppc64_le_regmap_cgpr, |
| 741 | regcache_supply_regset, |
| 742 | regcache_collect_regset |
| 743 | }; |
| 744 | |
| 745 | /* Hardware Transactional Memory checkpointed floating-point regmap. */ |
| 746 | |
| 747 | static const struct regcache_map_entry ppc32_regmap_cfpr[] = |
| 748 | { |
| 749 | { 32, PPC_CF0_REGNUM, 8 }, |
| 750 | { 1, PPC_CFPSCR_REGNUM, 8 }, |
| 751 | { 0 } |
| 752 | }; |
| 753 | |
| 754 | /* Hardware Transactional Memory checkpointed floating-point regset. */ |
| 755 | |
| 756 | const struct regset ppc32_linux_cfprregset = { |
| 757 | ppc32_regmap_cfpr, |
| 758 | regcache_supply_regset, |
| 759 | regcache_collect_regset |
| 760 | }; |
| 761 | |
| 762 | /* Regmaps for the Hardware Transactional Memory checkpointed vector |
| 763 | regsets, for big and little endian targets. The position of the |
Tom de Vries | 405feb7 | 2019-10-17 18:06:36 +0200 | [diff] [blame] | 764 | 4-byte VSCR in its 16-byte field depends on the endianness. */ |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 765 | |
| 766 | static const struct regcache_map_entry ppc32_le_regmap_cvmx[] = |
| 767 | { |
| 768 | { 32, PPC_CVR0_REGNUM, 16 }, |
| 769 | { 1, PPC_CVSCR_REGNUM, 4 }, |
| 770 | { 1, REGCACHE_MAP_SKIP, 12 }, |
| 771 | { 1, PPC_CVRSAVE_REGNUM, 4 }, |
| 772 | { 1, REGCACHE_MAP_SKIP, 12 }, |
| 773 | { 0 } |
| 774 | }; |
| 775 | |
| 776 | static const struct regcache_map_entry ppc32_be_regmap_cvmx[] = |
| 777 | { |
| 778 | { 32, PPC_CVR0_REGNUM, 16 }, |
| 779 | { 1, REGCACHE_MAP_SKIP, 12 }, |
| 780 | { 1, PPC_CVSCR_REGNUM, 4 }, |
| 781 | { 1, PPC_CVRSAVE_REGNUM, 4 }, |
| 782 | { 1, REGCACHE_MAP_SKIP, 12}, |
| 783 | { 0 } |
| 784 | }; |
| 785 | |
| 786 | /* Hardware Transactional Memory checkpointed vector regsets, for little |
| 787 | and big endian targets. */ |
| 788 | |
| 789 | static const struct regset ppc32_le_linux_cvmxregset = { |
| 790 | ppc32_le_regmap_cvmx, |
| 791 | regcache_supply_regset, |
| 792 | regcache_collect_regset |
| 793 | }; |
| 794 | |
| 795 | static const struct regset ppc32_be_linux_cvmxregset = { |
| 796 | ppc32_be_regmap_cvmx, |
| 797 | regcache_supply_regset, |
| 798 | regcache_collect_regset |
| 799 | }; |
| 800 | |
| 801 | /* Hardware Transactional Memory checkpointed vector-scalar regmap. */ |
| 802 | |
| 803 | static const struct regcache_map_entry ppc32_regmap_cvsx[] = |
| 804 | { |
| 805 | { 32, PPC_CVSR0_UPPER_REGNUM, 8 }, |
| 806 | { 0 } |
| 807 | }; |
| 808 | |
| 809 | /* Hardware Transactional Memory checkpointed vector-scalar regset. */ |
| 810 | |
| 811 | const struct regset ppc32_linux_cvsxregset = { |
| 812 | ppc32_regmap_cvsx, |
| 813 | regcache_supply_regset, |
| 814 | regcache_collect_regset |
| 815 | }; |
| 816 | |
| 817 | /* Hardware Transactional Memory checkpointed Program Priority Register |
| 818 | regmap. */ |
| 819 | |
| 820 | static const struct regcache_map_entry ppc32_regmap_cppr[] = |
| 821 | { |
| 822 | { 1, PPC_CPPR_REGNUM, 8 }, |
| 823 | { 0 } |
| 824 | }; |
| 825 | |
| 826 | /* Hardware Transactional Memory checkpointed Program Priority Register |
| 827 | regset. */ |
| 828 | |
| 829 | const struct regset ppc32_linux_cpprregset = { |
| 830 | ppc32_regmap_cppr, |
| 831 | regcache_supply_regset, |
| 832 | regcache_collect_regset |
| 833 | }; |
| 834 | |
| 835 | /* Hardware Transactional Memory checkpointed Data Stream Control |
| 836 | Register regmap. */ |
| 837 | |
| 838 | static const struct regcache_map_entry ppc32_regmap_cdscr[] = |
| 839 | { |
| 840 | { 1, PPC_CDSCR_REGNUM, 8 }, |
| 841 | { 0 } |
| 842 | }; |
| 843 | |
| 844 | /* Hardware Transactional Memory checkpointed Data Stream Control |
| 845 | Register regset. */ |
| 846 | |
| 847 | const struct regset ppc32_linux_cdscrregset = { |
| 848 | ppc32_regmap_cdscr, |
| 849 | regcache_supply_regset, |
| 850 | regcache_collect_regset |
| 851 | }; |
| 852 | |
| 853 | /* Hardware Transactional Memory checkpointed Target Address Register |
| 854 | regmap. */ |
| 855 | |
| 856 | static const struct regcache_map_entry ppc32_regmap_ctar[] = |
| 857 | { |
| 858 | { 1, PPC_CTAR_REGNUM, 8 }, |
| 859 | { 0 } |
| 860 | }; |
| 861 | |
| 862 | /* Hardware Transactional Memory checkpointed Target Address Register |
| 863 | regset. */ |
| 864 | |
| 865 | const struct regset ppc32_linux_ctarregset = { |
| 866 | ppc32_regmap_ctar, |
| 867 | regcache_supply_regset, |
| 868 | regcache_collect_regset |
| 869 | }; |
| 870 | |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 871 | const struct regset * |
| 872 | ppc_linux_gregset (int wordsize) |
Andrew Cagney | f9be684 | 2004-03-15 21:35:25 +0000 | [diff] [blame] | 873 | { |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 874 | return wordsize == 8 ? &ppc64_linux_gregset : &ppc32_linux_gregset; |
Daniel Jacobowitz | 2fda497 | 2002-07-30 19:03:49 +0000 | [diff] [blame] | 875 | } |
| 876 | |
Alan Modra | f2db237 | 2007-08-30 13:13:59 +0000 | [diff] [blame] | 877 | const struct regset * |
| 878 | ppc_linux_fpregset (void) |
| 879 | { |
| 880 | return &ppc32_linux_fpregset; |
| 881 | } |
Daniel Jacobowitz | 2fda497 | 2002-07-30 19:03:49 +0000 | [diff] [blame] | 882 | |
Pedro Franco de Carvalho | 1d75a65 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 883 | const struct regset * |
| 884 | ppc_linux_vrregset (struct gdbarch *gdbarch) |
| 885 | { |
| 886 | if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG) |
| 887 | return &ppc32_be_linux_vrregset; |
| 888 | else |
| 889 | return &ppc32_le_linux_vrregset; |
| 890 | } |
| 891 | |
Pedro Franco de Carvalho | 2c3305f | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 892 | const struct regset * |
| 893 | ppc_linux_vsxregset (void) |
| 894 | { |
| 895 | return &ppc32_linux_vsxregset; |
| 896 | } |
| 897 | |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 898 | const struct regset * |
| 899 | ppc_linux_cgprregset (struct gdbarch *gdbarch) |
| 900 | { |
| 901 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
| 902 | |
| 903 | if (tdep->wordsize == 4) |
| 904 | { |
| 905 | return &ppc32_linux_cgprregset; |
| 906 | } |
| 907 | else |
| 908 | { |
| 909 | if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG) |
| 910 | return &ppc64_be_linux_cgprregset; |
| 911 | else |
| 912 | return &ppc64_le_linux_cgprregset; |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | const struct regset * |
| 917 | ppc_linux_cvmxregset (struct gdbarch *gdbarch) |
| 918 | { |
| 919 | if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG) |
| 920 | return &ppc32_be_linux_cvmxregset; |
| 921 | else |
| 922 | return &ppc32_le_linux_cvmxregset; |
| 923 | } |
| 924 | |
| 925 | /* Collect function used to generate the core note for the |
| 926 | checkpointed GPR regset. Here, we don't want to skip the |
| 927 | "checkpointed" NIP and MSR, so that the note section we generate is |
| 928 | similar to the one generated by the kernel. To avoid having to |
| 929 | define additional registers in GDB which are not actually |
| 930 | checkpointed in the architecture, we copy TFHAR to the checkpointed |
| 931 | NIP slot, which is what the kernel does, and copy the regular MSR |
| 932 | to the checkpointed MSR slot, which will have a similar value in |
| 933 | most cases. */ |
| 934 | |
| 935 | static void |
| 936 | ppc_linux_collect_core_cpgrregset (const struct regset *regset, |
| 937 | const struct regcache *regcache, |
| 938 | int regnum, void *buf, size_t len) |
| 939 | { |
| 940 | struct gdbarch *gdbarch = regcache->arch (); |
| 941 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
| 942 | |
| 943 | const struct regset *cgprregset = ppc_linux_cgprregset (gdbarch); |
| 944 | |
| 945 | /* We collect the checkpointed GPRs already defined in the regular |
| 946 | regmap, then overlay TFHAR/MSR on the checkpointed NIP/MSR |
| 947 | slots. */ |
| 948 | cgprregset->collect_regset (cgprregset, regcache, regnum, buf, len); |
| 949 | |
| 950 | /* Check that we are collecting all the registers, which should be |
| 951 | the case when generating a core file. */ |
| 952 | if (regnum != -1) |
| 953 | return; |
| 954 | |
| 955 | /* PT_NIP and PT_MSR are 32 and 33 for powerpc. Don't redefine |
| 956 | these symbols since this file can run on clients in other |
| 957 | architectures where they can already be defined to other |
| 958 | values. */ |
| 959 | int pt_offset = 32; |
| 960 | |
| 961 | /* Check that our buffer is long enough to hold two slots at |
| 962 | pt_offset * wordsize, one for NIP and one for MSR. */ |
| 963 | gdb_assert ((pt_offset + 2) * tdep->wordsize <= len); |
| 964 | |
| 965 | /* TFHAR is 8 bytes wide, but the NIP slot for a 32-bit thread is |
| 966 | 4-bytes long. We use raw_collect_integer which handles |
| 967 | differences in the sizes for the source and destination buffers |
| 968 | for both endian modes. */ |
| 969 | (regcache->raw_collect_integer |
| 970 | (PPC_TFHAR_REGNUM, ((gdb_byte *) buf) + pt_offset * tdep->wordsize, |
| 971 | tdep->wordsize, false)); |
| 972 | |
| 973 | pt_offset = 33; |
| 974 | |
| 975 | (regcache->raw_collect_integer |
| 976 | (PPC_MSR_REGNUM, ((gdb_byte *) buf) + pt_offset * tdep->wordsize, |
| 977 | tdep->wordsize, false)); |
| 978 | } |
| 979 | |
Andreas Arnez | 5aa82d0 | 2014-09-04 15:26:43 +0000 | [diff] [blame] | 980 | /* Iterate over supported core file register note sections. */ |
| 981 | |
| 982 | static void |
| 983 | ppc_linux_iterate_over_regset_sections (struct gdbarch *gdbarch, |
| 984 | iterate_over_regset_sections_cb *cb, |
| 985 | void *cb_data, |
| 986 | const struct regcache *regcache) |
| 987 | { |
| 988 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
| 989 | int have_altivec = tdep->ppc_vr0_regnum != -1; |
| 990 | int have_vsx = tdep->ppc_vsr0_upper_regnum != -1; |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 991 | int have_ppr = tdep->ppc_ppr_regnum != -1; |
| 992 | int have_dscr = tdep->ppc_dscr_regnum != -1; |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 993 | int have_tar = tdep->ppc_tar_regnum != -1; |
Andreas Arnez | 5aa82d0 | 2014-09-04 15:26:43 +0000 | [diff] [blame] | 994 | |
Andreas Arnez | 8f0435f | 2014-09-12 08:42:48 +0000 | [diff] [blame] | 995 | if (tdep->wordsize == 4) |
Alan Hayward | a616bb9 | 2018-08-13 10:04:11 +0100 | [diff] [blame] | 996 | cb (".reg", 48 * 4, 48 * 4, &ppc32_linux_gregset, NULL, cb_data); |
Andreas Arnez | 8f0435f | 2014-09-12 08:42:48 +0000 | [diff] [blame] | 997 | else |
Alan Hayward | a616bb9 | 2018-08-13 10:04:11 +0100 | [diff] [blame] | 998 | cb (".reg", 48 * 8, 48 * 8, &ppc64_linux_gregset, NULL, cb_data); |
Andreas Arnez | 8f0435f | 2014-09-12 08:42:48 +0000 | [diff] [blame] | 999 | |
Alan Hayward | a616bb9 | 2018-08-13 10:04:11 +0100 | [diff] [blame] | 1000 | cb (".reg2", 264, 264, &ppc32_linux_fpregset, NULL, cb_data); |
Andreas Arnez | 5aa82d0 | 2014-09-04 15:26:43 +0000 | [diff] [blame] | 1001 | |
| 1002 | if (have_altivec) |
Pedro Franco de Carvalho | 1d75a65 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1003 | { |
| 1004 | const struct regset *vrregset = ppc_linux_vrregset (gdbarch); |
Alan Hayward | a616bb9 | 2018-08-13 10:04:11 +0100 | [diff] [blame] | 1005 | cb (".reg-ppc-vmx", PPC_LINUX_SIZEOF_VRREGSET, PPC_LINUX_SIZEOF_VRREGSET, |
| 1006 | vrregset, "ppc Altivec", cb_data); |
Pedro Franco de Carvalho | 1d75a65 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1007 | } |
Andreas Arnez | 5aa82d0 | 2014-09-04 15:26:43 +0000 | [diff] [blame] | 1008 | |
| 1009 | if (have_vsx) |
Alan Hayward | a616bb9 | 2018-08-13 10:04:11 +0100 | [diff] [blame] | 1010 | cb (".reg-ppc-vsx", PPC_LINUX_SIZEOF_VSXREGSET, PPC_LINUX_SIZEOF_VSXREGSET, |
Pedro Franco de Carvalho | d078308 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1011 | &ppc32_linux_vsxregset, "POWER7 VSX", cb_data); |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1012 | |
| 1013 | if (have_ppr) |
| 1014 | cb (".reg-ppc-ppr", PPC_LINUX_SIZEOF_PPRREGSET, |
| 1015 | PPC_LINUX_SIZEOF_PPRREGSET, |
| 1016 | &ppc32_linux_pprregset, "Priority Program Register", cb_data); |
| 1017 | |
| 1018 | if (have_dscr) |
| 1019 | cb (".reg-ppc-dscr", PPC_LINUX_SIZEOF_DSCRREGSET, |
| 1020 | PPC_LINUX_SIZEOF_DSCRREGSET, |
| 1021 | &ppc32_linux_dscrregset, "Data Stream Control Register", |
| 1022 | cb_data); |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1023 | |
| 1024 | if (have_tar) |
| 1025 | cb (".reg-ppc-tar", PPC_LINUX_SIZEOF_TARREGSET, |
| 1026 | PPC_LINUX_SIZEOF_TARREGSET, |
| 1027 | &ppc32_linux_tarregset, "Target Address Register", cb_data); |
Edjunior Barbosa Machado | 232bfb8 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1028 | |
| 1029 | /* EBB registers are unavailable when ptrace returns ENODATA. Check |
| 1030 | availability when generating a core file (regcache != NULL). */ |
| 1031 | if (tdep->have_ebb) |
| 1032 | if (regcache == NULL |
| 1033 | || REG_VALID == regcache->get_register_status (PPC_BESCR_REGNUM)) |
| 1034 | cb (".reg-ppc-ebb", PPC_LINUX_SIZEOF_EBBREGSET, |
| 1035 | PPC_LINUX_SIZEOF_EBBREGSET, |
| 1036 | &ppc32_linux_ebbregset, "Event-based Branching Registers", |
| 1037 | cb_data); |
| 1038 | |
| 1039 | if (tdep->ppc_mmcr0_regnum != -1) |
| 1040 | cb (".reg-ppc-pmu", PPC_LINUX_SIZEOF_PMUREGSET, |
| 1041 | PPC_LINUX_SIZEOF_PMUREGSET, |
| 1042 | &ppc32_linux_pmuregset, "Performance Monitor Registers", |
| 1043 | cb_data); |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 1044 | |
| 1045 | if (tdep->have_htm_spr) |
| 1046 | cb (".reg-ppc-tm-spr", PPC_LINUX_SIZEOF_TM_SPRREGSET, |
| 1047 | PPC_LINUX_SIZEOF_TM_SPRREGSET, |
| 1048 | &ppc32_linux_tm_sprregset, |
| 1049 | "Hardware Transactional Memory Special Purpose Registers", |
| 1050 | cb_data); |
| 1051 | |
| 1052 | /* Checkpointed registers can be unavailable, don't call back if |
| 1053 | we are generating a core file. */ |
| 1054 | |
| 1055 | if (tdep->have_htm_core) |
| 1056 | { |
| 1057 | /* Only generate the checkpointed GPR core note if we also have |
| 1058 | access to the HTM SPRs, because we need TFHAR to fill the |
| 1059 | "checkpointed" NIP slot. We can read a core file without it |
| 1060 | since GDB is not aware of this NIP as a visible register. */ |
| 1061 | if (regcache == NULL || |
| 1062 | (REG_VALID == regcache->get_register_status (PPC_CR0_REGNUM) |
| 1063 | && tdep->have_htm_spr)) |
| 1064 | { |
| 1065 | int cgpr_size = (tdep->wordsize == 4? |
| 1066 | PPC32_LINUX_SIZEOF_CGPRREGSET |
| 1067 | : PPC64_LINUX_SIZEOF_CGPRREGSET); |
| 1068 | |
| 1069 | const struct regset *cgprregset = |
| 1070 | ppc_linux_cgprregset (gdbarch); |
| 1071 | |
| 1072 | if (regcache != NULL) |
| 1073 | { |
| 1074 | struct regset core_cgprregset = *cgprregset; |
| 1075 | |
| 1076 | core_cgprregset.collect_regset |
| 1077 | = ppc_linux_collect_core_cpgrregset; |
| 1078 | |
| 1079 | cb (".reg-ppc-tm-cgpr", |
| 1080 | cgpr_size, cgpr_size, |
| 1081 | &core_cgprregset, |
| 1082 | "Checkpointed General Purpose Registers", cb_data); |
| 1083 | } |
| 1084 | else |
| 1085 | { |
| 1086 | cb (".reg-ppc-tm-cgpr", |
| 1087 | cgpr_size, cgpr_size, |
| 1088 | cgprregset, |
| 1089 | "Checkpointed General Purpose Registers", cb_data); |
| 1090 | } |
| 1091 | } |
| 1092 | } |
| 1093 | |
| 1094 | if (tdep->have_htm_fpu) |
| 1095 | { |
| 1096 | if (regcache == NULL || |
| 1097 | REG_VALID == regcache->get_register_status (PPC_CF0_REGNUM)) |
| 1098 | cb (".reg-ppc-tm-cfpr", PPC_LINUX_SIZEOF_CFPRREGSET, |
| 1099 | PPC_LINUX_SIZEOF_CFPRREGSET, |
| 1100 | &ppc32_linux_cfprregset, |
| 1101 | "Checkpointed Floating Point Registers", cb_data); |
| 1102 | } |
| 1103 | |
| 1104 | if (tdep->have_htm_altivec) |
| 1105 | { |
| 1106 | if (regcache == NULL || |
| 1107 | REG_VALID == regcache->get_register_status (PPC_CVR0_REGNUM)) |
| 1108 | { |
| 1109 | const struct regset *cvmxregset = |
| 1110 | ppc_linux_cvmxregset (gdbarch); |
| 1111 | |
| 1112 | cb (".reg-ppc-tm-cvmx", PPC_LINUX_SIZEOF_CVMXREGSET, |
| 1113 | PPC_LINUX_SIZEOF_CVMXREGSET, |
| 1114 | cvmxregset, |
| 1115 | "Checkpointed Altivec (VMX) Registers", cb_data); |
| 1116 | } |
| 1117 | } |
| 1118 | |
| 1119 | if (tdep->have_htm_vsx) |
| 1120 | { |
| 1121 | if (regcache == NULL || |
| 1122 | (REG_VALID |
| 1123 | == regcache->get_register_status (PPC_CVSR0_UPPER_REGNUM))) |
| 1124 | cb (".reg-ppc-tm-cvsx", PPC_LINUX_SIZEOF_CVSXREGSET, |
| 1125 | PPC_LINUX_SIZEOF_CVSXREGSET, |
| 1126 | &ppc32_linux_cvsxregset, |
| 1127 | "Checkpointed VSX Registers", cb_data); |
| 1128 | } |
| 1129 | |
| 1130 | if (tdep->ppc_cppr_regnum != -1) |
| 1131 | { |
| 1132 | if (regcache == NULL || |
| 1133 | REG_VALID == regcache->get_register_status (PPC_CPPR_REGNUM)) |
| 1134 | cb (".reg-ppc-tm-cppr", PPC_LINUX_SIZEOF_CPPRREGSET, |
| 1135 | PPC_LINUX_SIZEOF_CPPRREGSET, |
| 1136 | &ppc32_linux_cpprregset, |
| 1137 | "Checkpointed Priority Program Register", cb_data); |
| 1138 | } |
| 1139 | |
| 1140 | if (tdep->ppc_cdscr_regnum != -1) |
| 1141 | { |
| 1142 | if (regcache == NULL || |
| 1143 | REG_VALID == regcache->get_register_status (PPC_CDSCR_REGNUM)) |
| 1144 | cb (".reg-ppc-tm-cdscr", PPC_LINUX_SIZEOF_CDSCRREGSET, |
| 1145 | PPC_LINUX_SIZEOF_CDSCRREGSET, |
| 1146 | &ppc32_linux_cdscrregset, |
| 1147 | "Checkpointed Data Stream Control Register", cb_data); |
| 1148 | } |
| 1149 | |
| 1150 | if (tdep->ppc_ctar_regnum) |
| 1151 | { |
| 1152 | if ( regcache == NULL || |
| 1153 | REG_VALID == regcache->get_register_status (PPC_CTAR_REGNUM)) |
| 1154 | cb (".reg-ppc-tm-ctar", PPC_LINUX_SIZEOF_CTARREGSET, |
| 1155 | PPC_LINUX_SIZEOF_CTARREGSET, |
| 1156 | &ppc32_linux_ctarregset, |
| 1157 | "Checkpointed Target Address Register", cb_data); |
| 1158 | } |
Andreas Arnez | 5aa82d0 | 2014-09-04 15:26:43 +0000 | [diff] [blame] | 1159 | } |
| 1160 | |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 1161 | static void |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1162 | ppc_linux_sigtramp_cache (struct frame_info *this_frame, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1163 | struct trad_frame_cache *this_cache, |
| 1164 | CORE_ADDR func, LONGEST offset, |
| 1165 | int bias) |
| 1166 | { |
| 1167 | CORE_ADDR base; |
| 1168 | CORE_ADDR regs; |
| 1169 | CORE_ADDR gpregs; |
| 1170 | CORE_ADDR fpregs; |
| 1171 | int i; |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1172 | struct gdbarch *gdbarch = get_frame_arch (this_frame); |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1173 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
Ulrich Weigand | e17a411 | 2009-07-02 17:25:59 +0000 | [diff] [blame] | 1174 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1175 | |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1176 | base = get_frame_register_unsigned (this_frame, |
| 1177 | gdbarch_sp_regnum (gdbarch)); |
| 1178 | if (bias > 0 && get_frame_pc (this_frame) != func) |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1179 | /* See below, some signal trampolines increment the stack as their |
| 1180 | first instruction, need to compensate for that. */ |
| 1181 | base -= bias; |
| 1182 | |
| 1183 | /* Find the address of the register buffer pointer. */ |
| 1184 | regs = base + offset; |
| 1185 | /* Use that to find the address of the corresponding register |
| 1186 | buffers. */ |
Ulrich Weigand | e17a411 | 2009-07-02 17:25:59 +0000 | [diff] [blame] | 1187 | gpregs = read_memory_unsigned_integer (regs, tdep->wordsize, byte_order); |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1188 | fpregs = gpregs + 48 * tdep->wordsize; |
| 1189 | |
| 1190 | /* General purpose. */ |
| 1191 | for (i = 0; i < 32; i++) |
| 1192 | { |
| 1193 | int regnum = i + tdep->ppc_gp0_regnum; |
Michael Snyder | 0df8b41 | 2011-01-10 20:38:51 +0000 | [diff] [blame] | 1194 | trad_frame_set_reg_addr (this_cache, |
| 1195 | regnum, gpregs + i * tdep->wordsize); |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1196 | } |
Ulrich Weigand | 3e8c568 | 2007-06-18 17:45:26 +0000 | [diff] [blame] | 1197 | trad_frame_set_reg_addr (this_cache, |
Markus Deuling | 40a6adc | 2007-11-16 04:53:46 +0000 | [diff] [blame] | 1198 | gdbarch_pc_regnum (gdbarch), |
Ulrich Weigand | 3e8c568 | 2007-06-18 17:45:26 +0000 | [diff] [blame] | 1199 | gpregs + 32 * tdep->wordsize); |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1200 | trad_frame_set_reg_addr (this_cache, tdep->ppc_ctr_regnum, |
| 1201 | gpregs + 35 * tdep->wordsize); |
| 1202 | trad_frame_set_reg_addr (this_cache, tdep->ppc_lr_regnum, |
| 1203 | gpregs + 36 * tdep->wordsize); |
| 1204 | trad_frame_set_reg_addr (this_cache, tdep->ppc_xer_regnum, |
| 1205 | gpregs + 37 * tdep->wordsize); |
| 1206 | trad_frame_set_reg_addr (this_cache, tdep->ppc_cr_regnum, |
| 1207 | gpregs + 38 * tdep->wordsize); |
| 1208 | |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1209 | if (ppc_linux_trap_reg_p (gdbarch)) |
| 1210 | { |
| 1211 | trad_frame_set_reg_addr (this_cache, PPC_ORIG_R3_REGNUM, |
| 1212 | gpregs + 34 * tdep->wordsize); |
| 1213 | trad_frame_set_reg_addr (this_cache, PPC_TRAP_REGNUM, |
| 1214 | gpregs + 40 * tdep->wordsize); |
| 1215 | } |
| 1216 | |
Paul Gilliam | 60f140f | 2006-11-13 18:50:11 +0000 | [diff] [blame] | 1217 | if (ppc_floating_point_unit_p (gdbarch)) |
| 1218 | { |
| 1219 | /* Floating point registers. */ |
| 1220 | for (i = 0; i < 32; i++) |
| 1221 | { |
Markus Deuling | 40a6adc | 2007-11-16 04:53:46 +0000 | [diff] [blame] | 1222 | int regnum = i + gdbarch_fp0_regnum (gdbarch); |
Paul Gilliam | 60f140f | 2006-11-13 18:50:11 +0000 | [diff] [blame] | 1223 | trad_frame_set_reg_addr (this_cache, regnum, |
| 1224 | fpregs + i * tdep->wordsize); |
| 1225 | } |
| 1226 | trad_frame_set_reg_addr (this_cache, tdep->ppc_fpscr_regnum, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 1227 | fpregs + 32 * tdep->wordsize); |
Paul Gilliam | 60f140f | 2006-11-13 18:50:11 +0000 | [diff] [blame] | 1228 | } |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1229 | trad_frame_set_id (this_cache, frame_id_build (base, func)); |
| 1230 | } |
| 1231 | |
| 1232 | static void |
| 1233 | ppc32_linux_sigaction_cache_init (const struct tramp_frame *self, |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1234 | struct frame_info *this_frame, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1235 | struct trad_frame_cache *this_cache, |
| 1236 | CORE_ADDR func) |
| 1237 | { |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1238 | ppc_linux_sigtramp_cache (this_frame, this_cache, func, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1239 | 0xd0 /* Offset to ucontext_t. */ |
| 1240 | + 0x30 /* Offset to .reg. */, |
| 1241 | 0); |
| 1242 | } |
| 1243 | |
| 1244 | static void |
| 1245 | ppc64_linux_sigaction_cache_init (const struct tramp_frame *self, |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1246 | struct frame_info *this_frame, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1247 | struct trad_frame_cache *this_cache, |
| 1248 | CORE_ADDR func) |
| 1249 | { |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1250 | ppc_linux_sigtramp_cache (this_frame, this_cache, func, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1251 | 0x80 /* Offset to ucontext_t. */ |
| 1252 | + 0xe0 /* Offset to .reg. */, |
| 1253 | 128); |
| 1254 | } |
| 1255 | |
| 1256 | static void |
| 1257 | ppc32_linux_sighandler_cache_init (const struct tramp_frame *self, |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1258 | struct frame_info *this_frame, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1259 | struct trad_frame_cache *this_cache, |
| 1260 | CORE_ADDR func) |
| 1261 | { |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1262 | ppc_linux_sigtramp_cache (this_frame, this_cache, func, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1263 | 0x40 /* Offset to ucontext_t. */ |
| 1264 | + 0x1c /* Offset to .reg. */, |
| 1265 | 0); |
| 1266 | } |
| 1267 | |
| 1268 | static void |
| 1269 | ppc64_linux_sighandler_cache_init (const struct tramp_frame *self, |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1270 | struct frame_info *this_frame, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1271 | struct trad_frame_cache *this_cache, |
| 1272 | CORE_ADDR func) |
| 1273 | { |
Daniel Jacobowitz | 5366653 | 2008-04-30 21:28:57 +0000 | [diff] [blame] | 1274 | ppc_linux_sigtramp_cache (this_frame, this_cache, func, |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1275 | 0x80 /* Offset to struct sigcontext. */ |
| 1276 | + 0x38 /* Offset to .reg. */, |
| 1277 | 128); |
| 1278 | } |
| 1279 | |
| 1280 | static struct tramp_frame ppc32_linux_sigaction_tramp_frame = { |
| 1281 | SIGTRAMP_FRAME, |
| 1282 | 4, |
| 1283 | { |
Tom Tromey | 7bc0270 | 2018-08-07 13:04:05 -0600 | [diff] [blame] | 1284 | { 0x380000ac, ULONGEST_MAX }, /* li r0, 172 */ |
| 1285 | { 0x44000002, ULONGEST_MAX }, /* sc */ |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1286 | { TRAMP_SENTINEL_INSN }, |
| 1287 | }, |
| 1288 | ppc32_linux_sigaction_cache_init |
| 1289 | }; |
| 1290 | static struct tramp_frame ppc64_linux_sigaction_tramp_frame = { |
| 1291 | SIGTRAMP_FRAME, |
| 1292 | 4, |
| 1293 | { |
Tom Tromey | 7bc0270 | 2018-08-07 13:04:05 -0600 | [diff] [blame] | 1294 | { 0x38210080, ULONGEST_MAX }, /* addi r1,r1,128 */ |
| 1295 | { 0x380000ac, ULONGEST_MAX }, /* li r0, 172 */ |
| 1296 | { 0x44000002, ULONGEST_MAX }, /* sc */ |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1297 | { TRAMP_SENTINEL_INSN }, |
| 1298 | }, |
| 1299 | ppc64_linux_sigaction_cache_init |
| 1300 | }; |
| 1301 | static struct tramp_frame ppc32_linux_sighandler_tramp_frame = { |
| 1302 | SIGTRAMP_FRAME, |
| 1303 | 4, |
| 1304 | { |
Tom Tromey | 7bc0270 | 2018-08-07 13:04:05 -0600 | [diff] [blame] | 1305 | { 0x38000077, ULONGEST_MAX }, /* li r0,119 */ |
| 1306 | { 0x44000002, ULONGEST_MAX }, /* sc */ |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1307 | { TRAMP_SENTINEL_INSN }, |
| 1308 | }, |
| 1309 | ppc32_linux_sighandler_cache_init |
| 1310 | }; |
| 1311 | static struct tramp_frame ppc64_linux_sighandler_tramp_frame = { |
| 1312 | SIGTRAMP_FRAME, |
| 1313 | 4, |
| 1314 | { |
Tom Tromey | 7bc0270 | 2018-08-07 13:04:05 -0600 | [diff] [blame] | 1315 | { 0x38210080, ULONGEST_MAX }, /* addi r1,r1,128 */ |
| 1316 | { 0x38000077, ULONGEST_MAX }, /* li r0,119 */ |
| 1317 | { 0x44000002, ULONGEST_MAX }, /* sc */ |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 1318 | { TRAMP_SENTINEL_INSN }, |
| 1319 | }, |
| 1320 | ppc64_linux_sighandler_cache_init |
| 1321 | }; |
| 1322 | |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1323 | /* Return 1 if PPC_ORIG_R3_REGNUM and PPC_TRAP_REGNUM are usable. */ |
| 1324 | int |
| 1325 | ppc_linux_trap_reg_p (struct gdbarch *gdbarch) |
| 1326 | { |
| 1327 | /* If we do not have a target description with registers, then |
| 1328 | the special registers will not be included in the register set. */ |
| 1329 | if (!tdesc_has_registers (gdbarch_target_desc (gdbarch))) |
| 1330 | return 0; |
| 1331 | |
| 1332 | /* If we do, then it is safe to check the size. */ |
| 1333 | return register_size (gdbarch, PPC_ORIG_R3_REGNUM) > 0 |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 1334 | && register_size (gdbarch, PPC_TRAP_REGNUM) > 0; |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1335 | } |
| 1336 | |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 1337 | /* Return the current system call's number present in the |
| 1338 | r0 register. When the function fails, it returns -1. */ |
| 1339 | static LONGEST |
| 1340 | ppc_linux_get_syscall_number (struct gdbarch *gdbarch, |
Pedro Alves | 00431a7 | 2018-06-21 17:09:31 +0100 | [diff] [blame] | 1341 | thread_info *thread) |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 1342 | { |
Pedro Alves | 00431a7 | 2018-06-21 17:09:31 +0100 | [diff] [blame] | 1343 | struct regcache *regcache = get_thread_regcache (thread); |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 1344 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
| 1345 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 1346 | |
| 1347 | /* Make sure we're in a 32- or 64-bit machine */ |
| 1348 | gdb_assert (tdep->wordsize == 4 || tdep->wordsize == 8); |
| 1349 | |
Tom Tromey | 779bc38 | 2017-11-01 18:52:30 -0600 | [diff] [blame] | 1350 | /* The content of a register */ |
| 1351 | gdb::byte_vector buf (tdep->wordsize); |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 1352 | |
| 1353 | /* Getting the system call number from the register. |
| 1354 | When dealing with PowerPC architecture, this information |
| 1355 | is stored at 0th register. */ |
Simon Marchi | dca08e1 | 2018-05-30 14:54:38 -0400 | [diff] [blame] | 1356 | regcache->cooked_read (tdep->ppc_gp0_regnum, buf.data ()); |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 1357 | |
Tom Tromey | 779bc38 | 2017-11-01 18:52:30 -0600 | [diff] [blame] | 1358 | return extract_signed_integer (buf.data (), tdep->wordsize, byte_order); |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 1359 | } |
| 1360 | |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1361 | /* PPC process record-replay */ |
| 1362 | |
| 1363 | static struct linux_record_tdep ppc_linux_record_tdep; |
| 1364 | static struct linux_record_tdep ppc64_linux_record_tdep; |
| 1365 | |
Wei-cheng Wang | ddeca1d | 2015-01-19 23:34:07 +0800 | [diff] [blame] | 1366 | /* ppc_canonicalize_syscall maps from the native PowerPC Linux set of |
| 1367 | syscall ids into a canonical set of syscall ids used by process |
| 1368 | record. (See arch/powerpc/include/uapi/asm/unistd.h in kernel tree.) |
| 1369 | Return -1 if this system call is not supported by process record. |
Tom de Vries | 8510236 | 2019-10-18 02:48:08 +0200 | [diff] [blame] | 1370 | Otherwise, return the syscall number for process record of given |
Wei-cheng Wang | ddeca1d | 2015-01-19 23:34:07 +0800 | [diff] [blame] | 1371 | SYSCALL. */ |
| 1372 | |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1373 | static enum gdb_syscall |
| 1374 | ppc_canonicalize_syscall (int syscall) |
| 1375 | { |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1376 | int result = -1; |
| 1377 | |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1378 | if (syscall <= 165) |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1379 | result = syscall; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1380 | else if (syscall >= 167 && syscall <= 190) /* Skip query_module 166 */ |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1381 | result = syscall + 1; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1382 | else if (syscall >= 192 && syscall <= 197) /* mmap2 */ |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1383 | result = syscall; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1384 | else if (syscall == 208) /* tkill */ |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1385 | result = gdb_sys_tkill; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1386 | else if (syscall >= 207 && syscall <= 220) /* gettid */ |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1387 | result = syscall + 224 - 207; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1388 | else if (syscall >= 234 && syscall <= 239) /* exit_group */ |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1389 | result = syscall + 252 - 234; |
| 1390 | else if (syscall >= 240 && syscall <= 248) /* timer_create */ |
| 1391 | result = syscall += 259 - 240; |
| 1392 | else if (syscall >= 250 && syscall <= 251) /* tgkill */ |
| 1393 | result = syscall + 270 - 250; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1394 | else if (syscall == 336) |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1395 | result = gdb_sys_recv; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1396 | else if (syscall == 337) |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1397 | result = gdb_sys_recvfrom; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1398 | else if (syscall == 342) |
Simon Marchi | aead760 | 2015-08-06 17:21:41 -0400 | [diff] [blame] | 1399 | result = gdb_sys_recvmsg; |
| 1400 | |
| 1401 | return (enum gdb_syscall) result; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1402 | } |
| 1403 | |
Wei-cheng Wang | ddeca1d | 2015-01-19 23:34:07 +0800 | [diff] [blame] | 1404 | /* Record registers which might be clobbered during system call. |
| 1405 | Return 0 if successful. */ |
| 1406 | |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1407 | static int |
| 1408 | ppc_linux_syscall_record (struct regcache *regcache) |
| 1409 | { |
Yao Qi | ac7936d | 2017-10-25 16:37:03 +0100 | [diff] [blame] | 1410 | struct gdbarch *gdbarch = regcache->arch (); |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1411 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
| 1412 | ULONGEST scnum; |
| 1413 | enum gdb_syscall syscall_gdb; |
| 1414 | int ret; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1415 | |
| 1416 | regcache_raw_read_unsigned (regcache, tdep->ppc_gp0_regnum, &scnum); |
| 1417 | syscall_gdb = ppc_canonicalize_syscall (scnum); |
| 1418 | |
| 1419 | if (syscall_gdb < 0) |
| 1420 | { |
| 1421 | printf_unfiltered (_("Process record and replay target doesn't " |
| 1422 | "support syscall number %d\n"), (int) scnum); |
| 1423 | return 0; |
| 1424 | } |
| 1425 | |
| 1426 | if (syscall_gdb == gdb_sys_sigreturn |
| 1427 | || syscall_gdb == gdb_sys_rt_sigreturn) |
| 1428 | { |
| 1429 | int i, j; |
| 1430 | int regsets[] = { tdep->ppc_gp0_regnum, |
| 1431 | tdep->ppc_fp0_regnum, |
| 1432 | tdep->ppc_vr0_regnum, |
| 1433 | tdep->ppc_vsr0_upper_regnum }; |
| 1434 | |
| 1435 | for (j = 0; j < 4; j++) |
| 1436 | { |
| 1437 | if (regsets[j] == -1) |
| 1438 | continue; |
| 1439 | for (i = 0; i < 32; i++) |
| 1440 | { |
| 1441 | if (record_full_arch_list_add_reg (regcache, regsets[j] + i)) |
| 1442 | return -1; |
| 1443 | } |
| 1444 | } |
| 1445 | |
| 1446 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_cr_regnum)) |
| 1447 | return -1; |
| 1448 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_ctr_regnum)) |
| 1449 | return -1; |
| 1450 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_lr_regnum)) |
| 1451 | return -1; |
| 1452 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_xer_regnum)) |
| 1453 | return -1; |
| 1454 | |
| 1455 | return 0; |
| 1456 | } |
| 1457 | |
| 1458 | if (tdep->wordsize == 8) |
| 1459 | ret = record_linux_system_call (syscall_gdb, regcache, |
| 1460 | &ppc64_linux_record_tdep); |
| 1461 | else |
| 1462 | ret = record_linux_system_call (syscall_gdb, regcache, |
| 1463 | &ppc_linux_record_tdep); |
| 1464 | |
| 1465 | if (ret != 0) |
| 1466 | return ret; |
| 1467 | |
| 1468 | /* Record registers clobbered during syscall. */ |
Tom Tromey | b926417 | 2018-04-21 16:16:27 -0600 | [diff] [blame] | 1469 | for (int i = 3; i <= 12; i++) |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1470 | { |
| 1471 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_gp0_regnum + i)) |
| 1472 | return -1; |
| 1473 | } |
| 1474 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_gp0_regnum + 0)) |
| 1475 | return -1; |
| 1476 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_cr_regnum)) |
| 1477 | return -1; |
| 1478 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_ctr_regnum)) |
| 1479 | return -1; |
| 1480 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_lr_regnum)) |
| 1481 | return -1; |
| 1482 | |
| 1483 | return 0; |
| 1484 | } |
| 1485 | |
Wei-cheng Wang | ddeca1d | 2015-01-19 23:34:07 +0800 | [diff] [blame] | 1486 | /* Record registers which might be clobbered during signal handling. |
| 1487 | Return 0 if successful. */ |
| 1488 | |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1489 | static int |
| 1490 | ppc_linux_record_signal (struct gdbarch *gdbarch, struct regcache *regcache, |
| 1491 | enum gdb_signal signal) |
| 1492 | { |
| 1493 | /* See handle_rt_signal64 in arch/powerpc/kernel/signal_64.c |
| 1494 | handle_rt_signal32 in arch/powerpc/kernel/signal_32.c |
| 1495 | arch/powerpc/include/asm/ptrace.h |
| 1496 | for details. */ |
| 1497 | const int SIGNAL_FRAMESIZE = 128; |
| 1498 | const int sizeof_rt_sigframe = 1440 * 2 + 8 * 2 + 4 * 6 + 8 + 8 + 128 + 512; |
| 1499 | ULONGEST sp; |
| 1500 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
| 1501 | int i; |
| 1502 | |
| 1503 | for (i = 3; i <= 12; i++) |
| 1504 | { |
| 1505 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_gp0_regnum + i)) |
| 1506 | return -1; |
| 1507 | } |
| 1508 | |
| 1509 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_lr_regnum)) |
| 1510 | return -1; |
| 1511 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_cr_regnum)) |
| 1512 | return -1; |
| 1513 | if (record_full_arch_list_add_reg (regcache, tdep->ppc_ctr_regnum)) |
| 1514 | return -1; |
| 1515 | if (record_full_arch_list_add_reg (regcache, gdbarch_pc_regnum (gdbarch))) |
| 1516 | return -1; |
| 1517 | if (record_full_arch_list_add_reg (regcache, gdbarch_sp_regnum (gdbarch))) |
| 1518 | return -1; |
| 1519 | |
| 1520 | /* Record the change in the stack. |
| 1521 | frame-size = sizeof (struct rt_sigframe) + SIGNAL_FRAMESIZE */ |
| 1522 | regcache_raw_read_unsigned (regcache, gdbarch_sp_regnum (gdbarch), &sp); |
| 1523 | sp -= SIGNAL_FRAMESIZE; |
| 1524 | sp -= sizeof_rt_sigframe; |
| 1525 | |
| 1526 | if (record_full_arch_list_add_mem (sp, SIGNAL_FRAMESIZE + sizeof_rt_sigframe)) |
| 1527 | return -1; |
| 1528 | |
| 1529 | if (record_full_arch_list_add_end ()) |
| 1530 | return -1; |
| 1531 | |
| 1532 | return 0; |
| 1533 | } |
| 1534 | |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1535 | static void |
| 1536 | ppc_linux_write_pc (struct regcache *regcache, CORE_ADDR pc) |
| 1537 | { |
Yao Qi | ac7936d | 2017-10-25 16:37:03 +0100 | [diff] [blame] | 1538 | struct gdbarch *gdbarch = regcache->arch (); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1539 | |
| 1540 | regcache_cooked_write_unsigned (regcache, gdbarch_pc_regnum (gdbarch), pc); |
| 1541 | |
| 1542 | /* Set special TRAP register to -1 to prevent the kernel from |
| 1543 | messing with the PC we just installed, if we happen to be |
| 1544 | within an interrupted system call that the kernel wants to |
| 1545 | restart. |
| 1546 | |
| 1547 | Note that after we return from the dummy call, the TRAP and |
| 1548 | ORIG_R3 registers will be automatically restored, and the |
| 1549 | kernel continues to restart the system call at this point. */ |
| 1550 | if (ppc_linux_trap_reg_p (gdbarch)) |
| 1551 | regcache_cooked_write_unsigned (regcache, PPC_TRAP_REGNUM, -1); |
| 1552 | } |
| 1553 | |
| 1554 | static const struct target_desc * |
| 1555 | ppc_linux_core_read_description (struct gdbarch *gdbarch, |
| 1556 | struct target_ops *target, |
| 1557 | bfd *abfd) |
| 1558 | { |
Pedro Franco de Carvalho | bd64614 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1559 | struct ppc_linux_features features = ppc_linux_no_features; |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1560 | asection *altivec = bfd_get_section_by_name (abfd, ".reg-ppc-vmx"); |
Luis Machado | 604c2f8 | 2008-08-15 15:18:34 +0000 | [diff] [blame] | 1561 | asection *vsx = bfd_get_section_by_name (abfd, ".reg-ppc-vsx"); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1562 | asection *section = bfd_get_section_by_name (abfd, ".reg"); |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1563 | asection *ppr = bfd_get_section_by_name (abfd, ".reg-ppc-ppr"); |
| 1564 | asection *dscr = bfd_get_section_by_name (abfd, ".reg-ppc-dscr"); |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1565 | asection *tar = bfd_get_section_by_name (abfd, ".reg-ppc-tar"); |
Edjunior Barbosa Machado | 232bfb8 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1566 | asection *pmu = bfd_get_section_by_name (abfd, ".reg-ppc-pmu"); |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 1567 | asection *htmspr = bfd_get_section_by_name (abfd, ".reg-ppc-tm-spr"); |
Pedro Franco de Carvalho | bd64614 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1568 | |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1569 | if (! section) |
| 1570 | return NULL; |
| 1571 | |
Alan Modra | fd36198 | 2019-09-16 20:25:17 +0930 | [diff] [blame] | 1572 | switch (bfd_section_size (section)) |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1573 | { |
| 1574 | case 48 * 4: |
Pedro Franco de Carvalho | bd64614 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1575 | features.wordsize = 4; |
| 1576 | break; |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1577 | case 48 * 8: |
Pedro Franco de Carvalho | bd64614 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1578 | features.wordsize = 8; |
| 1579 | break; |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1580 | default: |
| 1581 | return NULL; |
| 1582 | } |
Pedro Franco de Carvalho | bd64614 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1583 | |
Pedro Franco de Carvalho | bd64614 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1584 | if (altivec) |
| 1585 | features.altivec = true; |
| 1586 | |
| 1587 | if (vsx) |
| 1588 | features.vsx = true; |
| 1589 | |
Alan Hayward | 0f83012 | 2019-03-25 16:48:03 +0000 | [diff] [blame] | 1590 | CORE_ADDR hwcap = linux_get_hwcap (target); |
Pedro Franco de Carvalho | 0ec848a | 2018-05-22 11:09:06 -0300 | [diff] [blame] | 1591 | |
| 1592 | features.isa205 = ppc_linux_has_isa205 (hwcap); |
| 1593 | |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1594 | if (ppr && dscr) |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1595 | { |
| 1596 | features.ppr_dscr = true; |
Edjunior Barbosa Machado | 232bfb8 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1597 | |
| 1598 | /* We don't require the EBB note section to be present in the |
| 1599 | core file to select isa207 because these registers could have |
| 1600 | been unavailable when the core file was created. They will |
| 1601 | be in the tdep but will show as unavailable. */ |
| 1602 | if (tar && pmu) |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 1603 | { |
| 1604 | features.isa207 = true; |
| 1605 | if (htmspr) |
| 1606 | features.htm = true; |
| 1607 | } |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1608 | } |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 1609 | |
Pedro Franco de Carvalho | bd64614 | 2018-05-22 11:09:05 -0300 | [diff] [blame] | 1610 | return ppc_linux_match_description (features); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 1611 | } |
| 1612 | |
Ulrich Weigand | 591a12a | 2014-02-04 18:44:14 +0100 | [diff] [blame] | 1613 | |
| 1614 | /* Implementation of `gdbarch_elf_make_msymbol_special', as defined in |
| 1615 | gdbarch.h. This implementation is used for the ELFv2 ABI only. */ |
| 1616 | |
| 1617 | static void |
| 1618 | ppc_elfv2_elf_make_msymbol_special (asymbol *sym, struct minimal_symbol *msym) |
| 1619 | { |
| 1620 | elf_symbol_type *elf_sym = (elf_symbol_type *)sym; |
| 1621 | |
| 1622 | /* If the symbol is marked as having a local entry point, set a target |
| 1623 | flag in the msymbol. We currently only support local entry point |
| 1624 | offsets of 8 bytes, which is the only entry point offset ever used |
| 1625 | by current compilers. If/when other offsets are ever used, we will |
| 1626 | have to use additional target flag bits to store them. */ |
| 1627 | switch (PPC64_LOCAL_ENTRY_OFFSET (elf_sym->internal_elf_sym.st_other)) |
| 1628 | { |
| 1629 | default: |
| 1630 | break; |
| 1631 | case 8: |
| 1632 | MSYMBOL_TARGET_FLAG_1 (msym) = 1; |
| 1633 | break; |
| 1634 | } |
| 1635 | } |
| 1636 | |
| 1637 | /* Implementation of `gdbarch_skip_entrypoint', as defined in |
| 1638 | gdbarch.h. This implementation is used for the ELFv2 ABI only. */ |
| 1639 | |
| 1640 | static CORE_ADDR |
| 1641 | ppc_elfv2_skip_entrypoint (struct gdbarch *gdbarch, CORE_ADDR pc) |
| 1642 | { |
| 1643 | struct bound_minimal_symbol fun; |
| 1644 | int local_entry_offset = 0; |
| 1645 | |
| 1646 | fun = lookup_minimal_symbol_by_pc (pc); |
| 1647 | if (fun.minsym == NULL) |
| 1648 | return pc; |
| 1649 | |
| 1650 | /* See ppc_elfv2_elf_make_msymbol_special for how local entry point |
| 1651 | offset values are encoded. */ |
| 1652 | if (MSYMBOL_TARGET_FLAG_1 (fun.minsym)) |
| 1653 | local_entry_offset = 8; |
| 1654 | |
Tom Tromey | 77e371c | 2013-08-15 08:46:35 -0600 | [diff] [blame] | 1655 | if (BMSYMBOL_VALUE_ADDRESS (fun) <= pc |
| 1656 | && pc < BMSYMBOL_VALUE_ADDRESS (fun) + local_entry_offset) |
| 1657 | return BMSYMBOL_VALUE_ADDRESS (fun) + local_entry_offset; |
Ulrich Weigand | 591a12a | 2014-02-04 18:44:14 +0100 | [diff] [blame] | 1658 | |
| 1659 | return pc; |
| 1660 | } |
| 1661 | |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 1662 | /* Implementation of `gdbarch_stap_is_single_operand', as defined in |
| 1663 | gdbarch.h. */ |
| 1664 | |
| 1665 | static int |
| 1666 | ppc_stap_is_single_operand (struct gdbarch *gdbarch, const char *s) |
| 1667 | { |
| 1668 | return (*s == 'i' /* Literal number. */ |
| 1669 | || (isdigit (*s) && s[1] == '(' |
| 1670 | && isdigit (s[2])) /* Displacement. */ |
| 1671 | || (*s == '(' && isdigit (s[1])) /* Register indirection. */ |
| 1672 | || isdigit (*s)); /* Register value. */ |
| 1673 | } |
| 1674 | |
| 1675 | /* Implementation of `gdbarch_stap_parse_special_token', as defined in |
| 1676 | gdbarch.h. */ |
| 1677 | |
Tom Tromey | 4c5e7a9 | 2021-03-08 07:27:57 -0700 | [diff] [blame] | 1678 | static expr::operation_up |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 1679 | ppc_stap_parse_special_token (struct gdbarch *gdbarch, |
| 1680 | struct stap_parse_info *p) |
| 1681 | { |
| 1682 | if (isdigit (*p->arg)) |
| 1683 | { |
| 1684 | /* This temporary pointer is needed because we have to do a lookahead. |
| 1685 | We could be dealing with a register displacement, and in such case |
| 1686 | we would not need to do anything. */ |
| 1687 | const char *s = p->arg; |
| 1688 | char *regname; |
| 1689 | int len; |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 1690 | |
| 1691 | while (isdigit (*s)) |
| 1692 | ++s; |
| 1693 | |
| 1694 | if (*s == '(') |
| 1695 | { |
| 1696 | /* It is a register displacement indeed. Returning 0 means we are |
| 1697 | deferring the treatment of this case to the generic parser. */ |
Tom Tromey | 4c5e7a9 | 2021-03-08 07:27:57 -0700 | [diff] [blame] | 1698 | return {}; |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
| 1701 | len = s - p->arg; |
Simon Marchi | 224c3dd | 2015-09-25 14:08:06 -0400 | [diff] [blame] | 1702 | regname = (char *) alloca (len + 2); |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 1703 | regname[0] = 'r'; |
| 1704 | |
| 1705 | strncpy (regname + 1, p->arg, len); |
| 1706 | ++len; |
| 1707 | regname[len] = '\0'; |
| 1708 | |
| 1709 | if (user_reg_map_name_to_regnum (gdbarch, regname, len) == -1) |
| 1710 | error (_("Invalid register name `%s' on expression `%s'."), |
| 1711 | regname, p->saved_arg); |
| 1712 | |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 1713 | p->arg = s; |
Tom Tromey | 4c5e7a9 | 2021-03-08 07:27:57 -0700 | [diff] [blame] | 1714 | |
| 1715 | return expr::make_operation<expr::register_operation> (regname); |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 1716 | } |
| 1717 | |
Tom Tromey | 4c5e7a9 | 2021-03-08 07:27:57 -0700 | [diff] [blame] | 1718 | /* All the other tokens should be handled correctly by the generic |
| 1719 | parser. */ |
| 1720 | return {}; |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 1721 | } |
Ulrich Weigand | cc5f0d6 | 2009-07-31 15:31:08 +0000 | [diff] [blame] | 1722 | |
Wei-cheng Wang | ddeca1d | 2015-01-19 23:34:07 +0800 | [diff] [blame] | 1723 | /* Initialize linux_record_tdep if not initialized yet. |
| 1724 | WORDSIZE is 4 or 8 for 32- or 64-bit PowerPC Linux respectively. |
| 1725 | Sizes of data structures are initialized accordingly. */ |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1726 | |
| 1727 | static void |
| 1728 | ppc_init_linux_record_tdep (struct linux_record_tdep *record_tdep, |
| 1729 | int wordsize) |
| 1730 | { |
| 1731 | /* Simply return if it had been initialized. */ |
| 1732 | if (record_tdep->size_pointer != 0) |
| 1733 | return; |
| 1734 | |
| 1735 | /* These values are the size of the type that will be used in a system |
| 1736 | call. They are obtained from Linux Kernel source. */ |
| 1737 | |
| 1738 | if (wordsize == 8) |
| 1739 | { |
| 1740 | record_tdep->size_pointer = 8; |
| 1741 | record_tdep->size__old_kernel_stat = 32; |
| 1742 | record_tdep->size_tms = 32; |
| 1743 | record_tdep->size_loff_t = 8; |
| 1744 | record_tdep->size_flock = 32; |
| 1745 | record_tdep->size_oldold_utsname = 45; |
| 1746 | record_tdep->size_ustat = 32; |
Marcin Kościelnicki | 7571f7f | 2015-10-30 15:51:57 +0000 | [diff] [blame] | 1747 | record_tdep->size_old_sigaction = 32; |
| 1748 | record_tdep->size_old_sigset_t = 8; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1749 | record_tdep->size_rlimit = 16; |
| 1750 | record_tdep->size_rusage = 144; |
| 1751 | record_tdep->size_timeval = 16; |
| 1752 | record_tdep->size_timezone = 8; |
| 1753 | record_tdep->size_old_gid_t = 4; |
| 1754 | record_tdep->size_old_uid_t = 4; |
| 1755 | record_tdep->size_fd_set = 128; |
Marcin Kościelnicki | 72aded8 | 2015-10-30 15:51:58 +0000 | [diff] [blame] | 1756 | record_tdep->size_old_dirent = 280; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1757 | record_tdep->size_statfs = 120; |
| 1758 | record_tdep->size_statfs64 = 120; |
| 1759 | record_tdep->size_sockaddr = 16; |
| 1760 | record_tdep->size_int = 4; |
| 1761 | record_tdep->size_long = 8; |
| 1762 | record_tdep->size_ulong = 8; |
| 1763 | record_tdep->size_msghdr = 56; |
| 1764 | record_tdep->size_itimerval = 32; |
| 1765 | record_tdep->size_stat = 144; |
| 1766 | record_tdep->size_old_utsname = 325; |
| 1767 | record_tdep->size_sysinfo = 112; |
| 1768 | record_tdep->size_msqid_ds = 120; |
| 1769 | record_tdep->size_shmid_ds = 112; |
| 1770 | record_tdep->size_new_utsname = 390; |
| 1771 | record_tdep->size_timex = 208; |
| 1772 | record_tdep->size_mem_dqinfo = 24; |
| 1773 | record_tdep->size_if_dqblk = 72; |
| 1774 | record_tdep->size_fs_quota_stat = 80; |
| 1775 | record_tdep->size_timespec = 16; |
| 1776 | record_tdep->size_pollfd = 8; |
| 1777 | record_tdep->size_NFS_FHSIZE = 32; |
| 1778 | record_tdep->size_knfsd_fh = 132; |
Marcin Kościelnicki | c28ebe2 | 2015-10-30 15:52:01 +0000 | [diff] [blame] | 1779 | record_tdep->size_TASK_COMM_LEN = 16; |
Marcin Kościelnicki | 7571f7f | 2015-10-30 15:51:57 +0000 | [diff] [blame] | 1780 | record_tdep->size_sigaction = 32; |
| 1781 | record_tdep->size_sigset_t = 8; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1782 | record_tdep->size_siginfo_t = 128; |
| 1783 | record_tdep->size_cap_user_data_t = 8; |
| 1784 | record_tdep->size_stack_t = 24; |
| 1785 | record_tdep->size_off_t = 8; |
| 1786 | record_tdep->size_stat64 = 104; |
| 1787 | record_tdep->size_gid_t = 4; |
| 1788 | record_tdep->size_uid_t = 4; |
| 1789 | record_tdep->size_PAGE_SIZE = 0x10000; /* 64KB */ |
| 1790 | record_tdep->size_flock64 = 32; |
| 1791 | record_tdep->size_io_event = 32; |
| 1792 | record_tdep->size_iocb = 64; |
| 1793 | record_tdep->size_epoll_event = 16; |
| 1794 | record_tdep->size_itimerspec = 32; |
| 1795 | record_tdep->size_mq_attr = 64; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1796 | record_tdep->size_termios = 44; |
| 1797 | record_tdep->size_pid_t = 4; |
| 1798 | record_tdep->size_winsize = 8; |
| 1799 | record_tdep->size_serial_struct = 72; |
| 1800 | record_tdep->size_serial_icounter_struct = 80; |
| 1801 | record_tdep->size_size_t = 8; |
| 1802 | record_tdep->size_iovec = 16; |
Marcin Kościelnicki | b80d067 | 2015-10-30 15:51:59 +0000 | [diff] [blame] | 1803 | record_tdep->size_time_t = 8; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1804 | } |
| 1805 | else if (wordsize == 4) |
| 1806 | { |
| 1807 | record_tdep->size_pointer = 4; |
| 1808 | record_tdep->size__old_kernel_stat = 32; |
| 1809 | record_tdep->size_tms = 16; |
| 1810 | record_tdep->size_loff_t = 8; |
| 1811 | record_tdep->size_flock = 16; |
| 1812 | record_tdep->size_oldold_utsname = 45; |
| 1813 | record_tdep->size_ustat = 20; |
Marcin Kościelnicki | 7571f7f | 2015-10-30 15:51:57 +0000 | [diff] [blame] | 1814 | record_tdep->size_old_sigaction = 16; |
| 1815 | record_tdep->size_old_sigset_t = 4; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1816 | record_tdep->size_rlimit = 8; |
| 1817 | record_tdep->size_rusage = 72; |
| 1818 | record_tdep->size_timeval = 8; |
| 1819 | record_tdep->size_timezone = 8; |
| 1820 | record_tdep->size_old_gid_t = 4; |
| 1821 | record_tdep->size_old_uid_t = 4; |
| 1822 | record_tdep->size_fd_set = 128; |
Marcin Kościelnicki | 72aded8 | 2015-10-30 15:51:58 +0000 | [diff] [blame] | 1823 | record_tdep->size_old_dirent = 268; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1824 | record_tdep->size_statfs = 64; |
| 1825 | record_tdep->size_statfs64 = 88; |
| 1826 | record_tdep->size_sockaddr = 16; |
| 1827 | record_tdep->size_int = 4; |
| 1828 | record_tdep->size_long = 4; |
| 1829 | record_tdep->size_ulong = 4; |
| 1830 | record_tdep->size_msghdr = 28; |
| 1831 | record_tdep->size_itimerval = 16; |
| 1832 | record_tdep->size_stat = 88; |
| 1833 | record_tdep->size_old_utsname = 325; |
| 1834 | record_tdep->size_sysinfo = 64; |
| 1835 | record_tdep->size_msqid_ds = 68; |
| 1836 | record_tdep->size_shmid_ds = 60; |
| 1837 | record_tdep->size_new_utsname = 390; |
| 1838 | record_tdep->size_timex = 128; |
| 1839 | record_tdep->size_mem_dqinfo = 24; |
| 1840 | record_tdep->size_if_dqblk = 72; |
| 1841 | record_tdep->size_fs_quota_stat = 80; |
| 1842 | record_tdep->size_timespec = 8; |
| 1843 | record_tdep->size_pollfd = 8; |
| 1844 | record_tdep->size_NFS_FHSIZE = 32; |
| 1845 | record_tdep->size_knfsd_fh = 132; |
Marcin Kościelnicki | c28ebe2 | 2015-10-30 15:52:01 +0000 | [diff] [blame] | 1846 | record_tdep->size_TASK_COMM_LEN = 16; |
Marcin Kościelnicki | 7571f7f | 2015-10-30 15:51:57 +0000 | [diff] [blame] | 1847 | record_tdep->size_sigaction = 20; |
| 1848 | record_tdep->size_sigset_t = 8; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1849 | record_tdep->size_siginfo_t = 128; |
| 1850 | record_tdep->size_cap_user_data_t = 4; |
| 1851 | record_tdep->size_stack_t = 12; |
| 1852 | record_tdep->size_off_t = 4; |
| 1853 | record_tdep->size_stat64 = 104; |
| 1854 | record_tdep->size_gid_t = 4; |
| 1855 | record_tdep->size_uid_t = 4; |
| 1856 | record_tdep->size_PAGE_SIZE = 0x10000; /* 64KB */ |
| 1857 | record_tdep->size_flock64 = 32; |
| 1858 | record_tdep->size_io_event = 32; |
| 1859 | record_tdep->size_iocb = 64; |
| 1860 | record_tdep->size_epoll_event = 16; |
| 1861 | record_tdep->size_itimerspec = 16; |
| 1862 | record_tdep->size_mq_attr = 32; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1863 | record_tdep->size_termios = 44; |
| 1864 | record_tdep->size_pid_t = 4; |
| 1865 | record_tdep->size_winsize = 8; |
| 1866 | record_tdep->size_serial_struct = 60; |
| 1867 | record_tdep->size_serial_icounter_struct = 80; |
| 1868 | record_tdep->size_size_t = 4; |
| 1869 | record_tdep->size_iovec = 8; |
Marcin Kościelnicki | b80d067 | 2015-10-30 15:51:59 +0000 | [diff] [blame] | 1870 | record_tdep->size_time_t = 4; |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 1871 | } |
| 1872 | else |
| 1873 | internal_error (__FILE__, __LINE__, _("unexpected wordsize")); |
| 1874 | |
| 1875 | /* These values are the second argument of system call "sys_fcntl" |
| 1876 | and "sys_fcntl64". They are obtained from Linux Kernel source. */ |
| 1877 | record_tdep->fcntl_F_GETLK = 5; |
| 1878 | record_tdep->fcntl_F_GETLK64 = 12; |
| 1879 | record_tdep->fcntl_F_SETLK64 = 13; |
| 1880 | record_tdep->fcntl_F_SETLKW64 = 14; |
| 1881 | |
| 1882 | record_tdep->arg1 = PPC_R0_REGNUM + 3; |
| 1883 | record_tdep->arg2 = PPC_R0_REGNUM + 4; |
| 1884 | record_tdep->arg3 = PPC_R0_REGNUM + 5; |
| 1885 | record_tdep->arg4 = PPC_R0_REGNUM + 6; |
| 1886 | record_tdep->arg5 = PPC_R0_REGNUM + 7; |
| 1887 | record_tdep->arg6 = PPC_R0_REGNUM + 8; |
| 1888 | |
| 1889 | /* These values are the second argument of system call "sys_ioctl". |
| 1890 | They are obtained from Linux Kernel source. |
| 1891 | See arch/powerpc/include/uapi/asm/ioctls.h. */ |
| 1892 | record_tdep->ioctl_TCGETS = 0x403c7413; |
| 1893 | record_tdep->ioctl_TCSETS = 0x803c7414; |
| 1894 | record_tdep->ioctl_TCSETSW = 0x803c7415; |
| 1895 | record_tdep->ioctl_TCSETSF = 0x803c7416; |
| 1896 | record_tdep->ioctl_TCGETA = 0x40147417; |
| 1897 | record_tdep->ioctl_TCSETA = 0x80147418; |
| 1898 | record_tdep->ioctl_TCSETAW = 0x80147419; |
| 1899 | record_tdep->ioctl_TCSETAF = 0x8014741c; |
| 1900 | record_tdep->ioctl_TCSBRK = 0x2000741d; |
| 1901 | record_tdep->ioctl_TCXONC = 0x2000741e; |
| 1902 | record_tdep->ioctl_TCFLSH = 0x2000741f; |
| 1903 | record_tdep->ioctl_TIOCEXCL = 0x540c; |
| 1904 | record_tdep->ioctl_TIOCNXCL = 0x540d; |
| 1905 | record_tdep->ioctl_TIOCSCTTY = 0x540e; |
| 1906 | record_tdep->ioctl_TIOCGPGRP = 0x40047477; |
| 1907 | record_tdep->ioctl_TIOCSPGRP = 0x80047476; |
| 1908 | record_tdep->ioctl_TIOCOUTQ = 0x40047473; |
| 1909 | record_tdep->ioctl_TIOCSTI = 0x5412; |
| 1910 | record_tdep->ioctl_TIOCGWINSZ = 0x40087468; |
| 1911 | record_tdep->ioctl_TIOCSWINSZ = 0x80087467; |
| 1912 | record_tdep->ioctl_TIOCMGET = 0x5415; |
| 1913 | record_tdep->ioctl_TIOCMBIS = 0x5416; |
| 1914 | record_tdep->ioctl_TIOCMBIC = 0x5417; |
| 1915 | record_tdep->ioctl_TIOCMSET = 0x5418; |
| 1916 | record_tdep->ioctl_TIOCGSOFTCAR = 0x5419; |
| 1917 | record_tdep->ioctl_TIOCSSOFTCAR = 0x541a; |
| 1918 | record_tdep->ioctl_FIONREAD = 0x4004667f; |
| 1919 | record_tdep->ioctl_TIOCINQ = 0x4004667f; |
| 1920 | record_tdep->ioctl_TIOCLINUX = 0x541c; |
| 1921 | record_tdep->ioctl_TIOCCONS = 0x541d; |
| 1922 | record_tdep->ioctl_TIOCGSERIAL = 0x541e; |
| 1923 | record_tdep->ioctl_TIOCSSERIAL = 0x541f; |
| 1924 | record_tdep->ioctl_TIOCPKT = 0x5420; |
| 1925 | record_tdep->ioctl_FIONBIO = 0x8004667e; |
| 1926 | record_tdep->ioctl_TIOCNOTTY = 0x5422; |
| 1927 | record_tdep->ioctl_TIOCSETD = 0x5423; |
| 1928 | record_tdep->ioctl_TIOCGETD = 0x5424; |
| 1929 | record_tdep->ioctl_TCSBRKP = 0x5425; |
| 1930 | record_tdep->ioctl_TIOCSBRK = 0x5427; |
| 1931 | record_tdep->ioctl_TIOCCBRK = 0x5428; |
| 1932 | record_tdep->ioctl_TIOCGSID = 0x5429; |
| 1933 | record_tdep->ioctl_TIOCGPTN = 0x40045430; |
| 1934 | record_tdep->ioctl_TIOCSPTLCK = 0x80045431; |
| 1935 | record_tdep->ioctl_FIONCLEX = 0x20006602; |
| 1936 | record_tdep->ioctl_FIOCLEX = 0x20006601; |
| 1937 | record_tdep->ioctl_FIOASYNC = 0x8004667d; |
| 1938 | record_tdep->ioctl_TIOCSERCONFIG = 0x5453; |
| 1939 | record_tdep->ioctl_TIOCSERGWILD = 0x5454; |
| 1940 | record_tdep->ioctl_TIOCSERSWILD = 0x5455; |
| 1941 | record_tdep->ioctl_TIOCGLCKTRMIOS = 0x5456; |
| 1942 | record_tdep->ioctl_TIOCSLCKTRMIOS = 0x5457; |
| 1943 | record_tdep->ioctl_TIOCSERGSTRUCT = 0x5458; |
| 1944 | record_tdep->ioctl_TIOCSERGETLSR = 0x5459; |
| 1945 | record_tdep->ioctl_TIOCSERGETMULTI = 0x545a; |
| 1946 | record_tdep->ioctl_TIOCSERSETMULTI = 0x545b; |
| 1947 | record_tdep->ioctl_TIOCMIWAIT = 0x545c; |
| 1948 | record_tdep->ioctl_TIOCGICOUNT = 0x545d; |
| 1949 | record_tdep->ioctl_FIOQSIZE = 0x40086680; |
| 1950 | } |
Ulrich Weigand | cc5f0d6 | 2009-07-31 15:31:08 +0000 | [diff] [blame] | 1951 | |
Ulrich Weigand | 00d5215 | 2016-09-06 17:33:15 +0200 | [diff] [blame] | 1952 | /* Return a floating-point format for a floating-point variable of |
| 1953 | length LEN in bits. If non-NULL, NAME is the name of its type. |
| 1954 | If no suitable type is found, return NULL. */ |
| 1955 | |
Simon Marchi | cb8c24b | 2019-11-26 12:12:01 -0500 | [diff] [blame] | 1956 | static const struct floatformat ** |
Ulrich Weigand | 00d5215 | 2016-09-06 17:33:15 +0200 | [diff] [blame] | 1957 | ppc_floatformat_for_type (struct gdbarch *gdbarch, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 1958 | const char *name, int len) |
Ulrich Weigand | 00d5215 | 2016-09-06 17:33:15 +0200 | [diff] [blame] | 1959 | { |
| 1960 | if (len == 128 && name) |
Ulrich Weigand | ed0f427 | 2017-11-21 18:50:59 +0100 | [diff] [blame] | 1961 | { |
| 1962 | if (strcmp (name, "__float128") == 0 |
| 1963 | || strcmp (name, "_Float128") == 0 |
| 1964 | || strcmp (name, "_Float64x") == 0 |
| 1965 | || strcmp (name, "complex _Float128") == 0 |
| 1966 | || strcmp (name, "complex _Float64x") == 0) |
| 1967 | return floatformats_ia64_quad; |
| 1968 | |
| 1969 | if (strcmp (name, "__ibm128") == 0) |
| 1970 | return floatformats_ibm_long_double; |
| 1971 | } |
Ulrich Weigand | 00d5215 | 2016-09-06 17:33:15 +0200 | [diff] [blame] | 1972 | |
| 1973 | return default_floatformat_for_type (gdbarch, name, len); |
| 1974 | } |
| 1975 | |
Will Schmidt | bc0df0f | 2021-08-18 11:43:45 -0500 | [diff] [blame] | 1976 | /* Specify the powerpc64le target triplet. |
| 1977 | This can be variations of |
| 1978 | ppc64le-{distro}-linux-gcc |
| 1979 | and |
| 1980 | powerpc64le-{distro}-linux-gcc. */ |
| 1981 | |
| 1982 | static const char * |
| 1983 | ppc64le_gnu_triplet_regexp (struct gdbarch *gdbarch) |
| 1984 | { |
| 1985 | return "p(ower)?pc64le"; |
| 1986 | } |
| 1987 | |
| 1988 | /* Specify the powerpc64 target triplet. |
| 1989 | This can be variations of |
| 1990 | ppc64-{distro}-linux-gcc |
| 1991 | and |
| 1992 | powerpc64-{distro}-linux-gcc. */ |
| 1993 | |
| 1994 | static const char * |
| 1995 | ppc64_gnu_triplet_regexp (struct gdbarch *gdbarch) |
| 1996 | { |
| 1997 | return "p(ower)?pc64"; |
| 1998 | } |
| 1999 | |
Will Schmidt | 533f040 | 2021-08-18 11:45:49 -0500 | [diff] [blame] | 2000 | /* Implement the linux_gcc_target_options method. */ |
| 2001 | |
| 2002 | static std::string |
| 2003 | ppc64_linux_gcc_target_options (struct gdbarch *gdbarch) |
| 2004 | { |
| 2005 | return ""; |
| 2006 | } |
| 2007 | |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 2008 | static void |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2009 | ppc_linux_init_abi (struct gdbarch_info info, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 2010 | struct gdbarch *gdbarch) |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2011 | { |
| 2012 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
Maciej W. Rozycki | 0dba2a6 | 2017-08-07 15:53:54 +0100 | [diff] [blame] | 2013 | struct tdesc_arch_data *tdesc_data = info.tdesc_data; |
Sergio Durigan Junior | 05c0465 | 2013-12-19 18:53:40 -0200 | [diff] [blame] | 2014 | static const char *const stap_integer_prefixes[] = { "i", NULL }; |
| 2015 | static const char *const stap_register_indirection_prefixes[] = { "(", |
| 2016 | NULL }; |
| 2017 | static const char *const stap_register_indirection_suffixes[] = { ")", |
| 2018 | NULL }; |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2019 | |
Simon Marchi | 480af54 | 2020-12-04 16:43:56 -0500 | [diff] [blame] | 2020 | linux_init_abi (info, gdbarch, 0); |
Pedro Alves | a5ee0f0 | 2010-08-04 15:27:57 +0000 | [diff] [blame] | 2021 | |
Joseph Myers | b14d30e | 2007-11-08 00:08:48 +0000 | [diff] [blame] | 2022 | /* PPC GNU/Linux uses either 64-bit or 128-bit long doubles; where |
Ulrich Weigand | ed0f427 | 2017-11-21 18:50:59 +0100 | [diff] [blame] | 2023 | 128-bit, they can be either IBM long double or IEEE quad long double. |
| 2024 | The 64-bit long double case will be detected automatically using |
| 2025 | the size specified in debug info. We use a .gnu.attribute flag |
| 2026 | to distinguish between the IBM long double and IEEE quad cases. */ |
Joseph Myers | b14d30e | 2007-11-08 00:08:48 +0000 | [diff] [blame] | 2027 | set_gdbarch_long_double_bit (gdbarch, 16 * TARGET_CHAR_BIT); |
Ulrich Weigand | ed0f427 | 2017-11-21 18:50:59 +0100 | [diff] [blame] | 2028 | if (tdep->long_double_abi == POWERPC_LONG_DOUBLE_IEEE128) |
| 2029 | set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad); |
| 2030 | else |
| 2031 | set_gdbarch_long_double_format (gdbarch, floatformats_ibm_long_double); |
Andrew Cagney | 0598a43 | 2005-01-25 22:06:59 +0000 | [diff] [blame] | 2032 | |
Ulrich Weigand | 00d5215 | 2016-09-06 17:33:15 +0200 | [diff] [blame] | 2033 | /* Support for floating-point data type variants. */ |
| 2034 | set_gdbarch_floatformat_for_type (gdbarch, ppc_floatformat_for_type); |
| 2035 | |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 2036 | /* Handle inferior calls during interrupted system calls. */ |
| 2037 | set_gdbarch_write_pc (gdbarch, ppc_linux_write_pc); |
| 2038 | |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 2039 | /* Get the syscall number from the arch's register. */ |
| 2040 | set_gdbarch_get_syscall_number (gdbarch, ppc_linux_get_syscall_number); |
| 2041 | |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 2042 | /* SystemTap functions. */ |
Sergio Durigan Junior | 05c0465 | 2013-12-19 18:53:40 -0200 | [diff] [blame] | 2043 | set_gdbarch_stap_integer_prefixes (gdbarch, stap_integer_prefixes); |
| 2044 | set_gdbarch_stap_register_indirection_prefixes (gdbarch, |
| 2045 | stap_register_indirection_prefixes); |
| 2046 | set_gdbarch_stap_register_indirection_suffixes (gdbarch, |
| 2047 | stap_register_indirection_suffixes); |
Sergio Durigan Junior | 55aa24f | 2012-04-27 20:47:57 +0000 | [diff] [blame] | 2048 | set_gdbarch_stap_gdb_register_prefix (gdbarch, "r"); |
| 2049 | set_gdbarch_stap_is_single_operand (gdbarch, ppc_stap_is_single_operand); |
| 2050 | set_gdbarch_stap_parse_special_token (gdbarch, |
| 2051 | ppc_stap_parse_special_token); |
| 2052 | |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2053 | if (tdep->wordsize == 4) |
| 2054 | { |
Andrew Cagney | b9ff301 | 2003-09-16 23:33:17 +0000 | [diff] [blame] | 2055 | /* Until November 2001, gcc did not comply with the 32 bit SysV |
| 2056 | R4 ABI requirement that structures less than or equal to 8 |
| 2057 | bytes should be returned in registers. Instead GCC was using |
Michael Snyder | b021a22 | 2011-02-26 02:07:10 +0000 | [diff] [blame] | 2058 | the AIX/PowerOpen ABI - everything returned in memory |
Andrew Cagney | b9ff301 | 2003-09-16 23:33:17 +0000 | [diff] [blame] | 2059 | (well ignoring vectors that is). When this was corrected, it |
| 2060 | wasn't fixed for GNU/Linux native platform. Use the |
| 2061 | PowerOpen struct convention. */ |
Andrew Cagney | 05580c6 | 2003-11-07 20:44:51 +0000 | [diff] [blame] | 2062 | set_gdbarch_return_value (gdbarch, ppc_linux_return_value); |
Andrew Cagney | b9ff301 | 2003-09-16 23:33:17 +0000 | [diff] [blame] | 2063 | |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2064 | set_gdbarch_memory_remove_breakpoint (gdbarch, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 2065 | ppc_linux_memory_remove_breakpoint); |
Kevin Buettner | 61a6509 | 2004-03-20 04:51:21 +0000 | [diff] [blame] | 2066 | |
Jim Blandy | f470a70 | 2003-06-13 00:06:11 +0000 | [diff] [blame] | 2067 | /* Shared library handling. */ |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 2068 | set_gdbarch_skip_trampoline_code (gdbarch, ppc_skip_trampoline_code); |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2069 | set_solib_svr4_fetch_link_map_offsets |
H.J. Lu | c0154a4 | 2021-08-16 16:17:25 -0700 | [diff] [blame] | 2070 | (gdbarch, linux_ilp32_fetch_link_map_offsets); |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 2071 | |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 2072 | /* Setting the correct XML syscall filename. */ |
Sergio Durigan Junior | 458c8db | 2014-11-20 12:28:18 -0500 | [diff] [blame] | 2073 | set_xml_syscall_file_name (gdbarch, XML_SYSCALL_FILENAME_PPC); |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 2074 | |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 2075 | /* Trampolines. */ |
Michael Snyder | 0df8b41 | 2011-01-10 20:38:51 +0000 | [diff] [blame] | 2076 | tramp_frame_prepend_unwinder (gdbarch, |
| 2077 | &ppc32_linux_sigaction_tramp_frame); |
| 2078 | tramp_frame_prepend_unwinder (gdbarch, |
| 2079 | &ppc32_linux_sighandler_tramp_frame); |
Ulrich Weigand | a78c2d6 | 2009-06-17 18:48:26 +0000 | [diff] [blame] | 2080 | |
| 2081 | /* BFD target for core files. */ |
| 2082 | if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_LITTLE) |
| 2083 | set_gdbarch_gcore_bfd_target (gdbarch, "elf32-powerpcle"); |
| 2084 | else |
| 2085 | set_gdbarch_gcore_bfd_target (gdbarch, "elf32-powerpc"); |
Ulrich Weigand | 2f2241f | 2010-07-07 12:28:32 +0000 | [diff] [blame] | 2086 | |
Michael Eager | 5d85300 | 2012-01-30 17:09:40 +0000 | [diff] [blame] | 2087 | if (powerpc_so_ops.in_dynsym_resolve_code == NULL) |
| 2088 | { |
| 2089 | powerpc_so_ops = svr4_so_ops; |
| 2090 | /* Override dynamic resolve function. */ |
| 2091 | powerpc_so_ops.in_dynsym_resolve_code = |
| 2092 | powerpc_linux_in_dynsym_resolve_code; |
| 2093 | } |
| 2094 | set_solib_ops (gdbarch, &powerpc_so_ops); |
| 2095 | |
| 2096 | set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver); |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2097 | } |
Jim Blandy | f470a70 | 2003-06-13 00:06:11 +0000 | [diff] [blame] | 2098 | |
| 2099 | if (tdep->wordsize == 8) |
| 2100 | { |
Ulrich Weigand | d4094b6 | 2014-02-04 18:40:16 +0100 | [diff] [blame] | 2101 | if (tdep->elf_abi == POWERPC_ELF_V1) |
| 2102 | { |
| 2103 | /* Handle PPC GNU/Linux 64-bit function pointers (which are really |
| 2104 | function descriptors). */ |
| 2105 | set_gdbarch_convert_from_func_ptr_addr |
| 2106 | (gdbarch, ppc64_convert_from_func_ptr_addr); |
Ulrich Weigand | 00d5f93 | 2008-05-14 18:28:59 +0000 | [diff] [blame] | 2107 | |
Ulrich Weigand | d4094b6 | 2014-02-04 18:40:16 +0100 | [diff] [blame] | 2108 | set_gdbarch_elf_make_msymbol_special |
| 2109 | (gdbarch, ppc64_elf_make_msymbol_special); |
| 2110 | } |
Ulrich Weigand | 591a12a | 2014-02-04 18:44:14 +0100 | [diff] [blame] | 2111 | else |
| 2112 | { |
| 2113 | set_gdbarch_elf_make_msymbol_special |
| 2114 | (gdbarch, ppc_elfv2_elf_make_msymbol_special); |
| 2115 | |
| 2116 | set_gdbarch_skip_entrypoint (gdbarch, ppc_elfv2_skip_entrypoint); |
| 2117 | } |
Alan Modra | 24c274a | 2013-02-22 23:24:24 +0000 | [diff] [blame] | 2118 | |
Daniel Jacobowitz | fb318ff | 2005-07-13 16:29:04 +0000 | [diff] [blame] | 2119 | /* Shared library handling. */ |
Daniel Jacobowitz | 2bbe3cc | 2007-07-03 15:58:42 +0000 | [diff] [blame] | 2120 | set_gdbarch_skip_trampoline_code (gdbarch, ppc64_skip_trampoline_code); |
Daniel Jacobowitz | fb318ff | 2005-07-13 16:29:04 +0000 | [diff] [blame] | 2121 | set_solib_svr4_fetch_link_map_offsets |
H.J. Lu | c0154a4 | 2021-08-16 16:17:25 -0700 | [diff] [blame] | 2122 | (gdbarch, linux_lp64_fetch_link_map_offsets); |
Daniel Jacobowitz | fb318ff | 2005-07-13 16:29:04 +0000 | [diff] [blame] | 2123 | |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 2124 | /* Setting the correct XML syscall filename. */ |
Sergio Durigan Junior | 458c8db | 2014-11-20 12:28:18 -0500 | [diff] [blame] | 2125 | set_xml_syscall_file_name (gdbarch, XML_SYSCALL_FILENAME_PPC64); |
Sergio Durigan Junior | a96d9b2 | 2009-09-15 03:30:08 +0000 | [diff] [blame] | 2126 | |
Andrew Cagney | a8f60bf | 2005-01-25 22:43:45 +0000 | [diff] [blame] | 2127 | /* Trampolines. */ |
Michael Snyder | 0df8b41 | 2011-01-10 20:38:51 +0000 | [diff] [blame] | 2128 | tramp_frame_prepend_unwinder (gdbarch, |
| 2129 | &ppc64_linux_sigaction_tramp_frame); |
| 2130 | tramp_frame_prepend_unwinder (gdbarch, |
| 2131 | &ppc64_linux_sighandler_tramp_frame); |
Ulrich Weigand | a78c2d6 | 2009-06-17 18:48:26 +0000 | [diff] [blame] | 2132 | |
| 2133 | /* BFD target for core files. */ |
| 2134 | if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_LITTLE) |
| 2135 | set_gdbarch_gcore_bfd_target (gdbarch, "elf64-powerpcle"); |
| 2136 | else |
| 2137 | set_gdbarch_gcore_bfd_target (gdbarch, "elf64-powerpc"); |
Will Schmidt | bc0df0f | 2021-08-18 11:43:45 -0500 | [diff] [blame] | 2138 | /* Set compiler triplet. */ |
| 2139 | if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_LITTLE) |
| 2140 | set_gdbarch_gnu_triplet_regexp (gdbarch, ppc64le_gnu_triplet_regexp); |
| 2141 | else |
| 2142 | set_gdbarch_gnu_triplet_regexp (gdbarch, ppc64_gnu_triplet_regexp); |
Will Schmidt | 533f040 | 2021-08-18 11:45:49 -0500 | [diff] [blame] | 2143 | /* Set GCC target options. */ |
| 2144 | set_gdbarch_gcc_target_options (gdbarch, ppc64_linux_gcc_target_options); |
Jim Blandy | f470a70 | 2003-06-13 00:06:11 +0000 | [diff] [blame] | 2145 | } |
Sergio Durigan Junior | b3ac9c7 | 2013-02-04 18:40:41 +0000 | [diff] [blame] | 2146 | |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 2147 | set_gdbarch_core_read_description (gdbarch, ppc_linux_core_read_description); |
Andreas Arnez | 5aa82d0 | 2014-09-04 15:26:43 +0000 | [diff] [blame] | 2148 | set_gdbarch_iterate_over_regset_sections (gdbarch, |
| 2149 | ppc_linux_iterate_over_regset_sections); |
Kevin Buettner | b275693 | 2005-03-31 19:58:26 +0000 | [diff] [blame] | 2150 | |
| 2151 | /* Enable TLS support. */ |
| 2152 | set_gdbarch_fetch_tls_load_module_address (gdbarch, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 2153 | svr4_fetch_objfile_link_map); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 2154 | |
| 2155 | if (tdesc_data) |
| 2156 | { |
| 2157 | const struct tdesc_feature *feature; |
| 2158 | |
| 2159 | /* If we have target-described registers, then we can safely |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 2160 | reserve a number for PPC_ORIG_R3_REGNUM and PPC_TRAP_REGNUM |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 2161 | (whether they are described or not). */ |
| 2162 | gdb_assert (gdbarch_num_regs (gdbarch) <= PPC_ORIG_R3_REGNUM); |
| 2163 | set_gdbarch_num_regs (gdbarch, PPC_TRAP_REGNUM + 1); |
| 2164 | |
| 2165 | /* If they are present, then assign them to the reserved number. */ |
| 2166 | feature = tdesc_find_feature (info.target_desc, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 2167 | "org.gnu.gdb.power.linux"); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 2168 | if (feature != NULL) |
| 2169 | { |
| 2170 | tdesc_numbered_register (feature, tdesc_data, |
| 2171 | PPC_ORIG_R3_REGNUM, "orig_r3"); |
| 2172 | tdesc_numbered_register (feature, tdesc_data, |
| 2173 | PPC_TRAP_REGNUM, "trap"); |
| 2174 | } |
| 2175 | } |
Ulrich Weigand | 85e747d | 2009-07-31 15:28:27 +0000 | [diff] [blame] | 2176 | |
Wei-cheng Wang | b4cdae6 | 2015-01-17 14:30:33 +0800 | [diff] [blame] | 2177 | /* Support reverse debugging. */ |
| 2178 | set_gdbarch_process_record (gdbarch, ppc_process_record); |
| 2179 | set_gdbarch_process_record_signal (gdbarch, ppc_linux_record_signal); |
| 2180 | tdep->ppc_syscall_record = ppc_linux_syscall_record; |
| 2181 | |
| 2182 | ppc_init_linux_record_tdep (&ppc_linux_record_tdep, 4); |
| 2183 | ppc_init_linux_record_tdep (&ppc64_linux_record_tdep, 8); |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2184 | } |
| 2185 | |
Simon Marchi | 6c26598 | 2020-01-13 14:01:38 -0500 | [diff] [blame] | 2186 | void _initialize_ppc_linux_tdep (); |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2187 | void |
Simon Marchi | 6c26598 | 2020-01-13 14:01:38 -0500 | [diff] [blame] | 2188 | _initialize_ppc_linux_tdep () |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2189 | { |
Tom de Vries | 8510236 | 2019-10-18 02:48:08 +0200 | [diff] [blame] | 2190 | /* Register for all sub-families of the POWER/PowerPC: 32-bit and |
Andrew Cagney | 0a0a4ac | 2003-10-29 19:24:52 +0000 | [diff] [blame] | 2191 | 64-bit PowerPC, and the older rs6k. */ |
| 2192 | gdbarch_register_osabi (bfd_arch_powerpc, bfd_mach_ppc, GDB_OSABI_LINUX, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 2193 | ppc_linux_init_abi); |
Andrew Cagney | 0a0a4ac | 2003-10-29 19:24:52 +0000 | [diff] [blame] | 2194 | gdbarch_register_osabi (bfd_arch_powerpc, bfd_mach_ppc64, GDB_OSABI_LINUX, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 2195 | ppc_linux_init_abi); |
Andrew Cagney | 0a0a4ac | 2003-10-29 19:24:52 +0000 | [diff] [blame] | 2196 | gdbarch_register_osabi (bfd_arch_rs6000, bfd_mach_rs6k, GDB_OSABI_LINUX, |
Simon Marchi | dda83cd | 2020-11-02 10:26:14 -0500 | [diff] [blame] | 2197 | ppc_linux_init_abi); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 2198 | |
| 2199 | /* Initialize the Linux target descriptions. */ |
| 2200 | initialize_tdesc_powerpc_32l (); |
| 2201 | initialize_tdesc_powerpc_altivec32l (); |
Luis Machado | 604c2f8 | 2008-08-15 15:18:34 +0000 | [diff] [blame] | 2202 | initialize_tdesc_powerpc_vsx32l (); |
Thiago Jung Bauermann | 69abc51 | 2008-11-18 21:39:47 +0000 | [diff] [blame] | 2203 | initialize_tdesc_powerpc_isa205_32l (); |
| 2204 | initialize_tdesc_powerpc_isa205_altivec32l (); |
| 2205 | initialize_tdesc_powerpc_isa205_vsx32l (); |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 2206 | initialize_tdesc_powerpc_isa205_ppr_dscr_vsx32l (); |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 2207 | initialize_tdesc_powerpc_isa207_vsx32l (); |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 2208 | initialize_tdesc_powerpc_isa207_htm_vsx32l (); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 2209 | initialize_tdesc_powerpc_64l (); |
| 2210 | initialize_tdesc_powerpc_altivec64l (); |
Luis Machado | 604c2f8 | 2008-08-15 15:18:34 +0000 | [diff] [blame] | 2211 | initialize_tdesc_powerpc_vsx64l (); |
Thiago Jung Bauermann | 69abc51 | 2008-11-18 21:39:47 +0000 | [diff] [blame] | 2212 | initialize_tdesc_powerpc_isa205_64l (); |
| 2213 | initialize_tdesc_powerpc_isa205_altivec64l (); |
| 2214 | initialize_tdesc_powerpc_isa205_vsx64l (); |
Edjunior Barbosa Machado | 7ca18ed | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 2215 | initialize_tdesc_powerpc_isa205_ppr_dscr_vsx64l (); |
Edjunior Barbosa Machado | f2cf617 | 2018-10-26 09:37:54 -0300 | [diff] [blame] | 2216 | initialize_tdesc_powerpc_isa207_vsx64l (); |
Edjunior Barbosa Machado | 8d619c0 | 2018-10-26 09:37:55 -0300 | [diff] [blame] | 2217 | initialize_tdesc_powerpc_isa207_htm_vsx64l (); |
Ulrich Weigand | 7284e1b | 2008-05-03 17:16:44 +0000 | [diff] [blame] | 2218 | initialize_tdesc_powerpc_e500l (); |
Jason Thorpe | 7b112f9 | 2002-05-30 01:21:53 +0000 | [diff] [blame] | 2219 | } |