1 /* PPC GNU/Linux native support.
3 Copyright (C) 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001, 2002, 2003,
4 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "gdb_string.h"
27 #include "gdb_assert.h"
29 #include "linux-nat.h"
32 #include <sys/types.h>
33 #include <sys/param.h>
36 #include <sys/ioctl.h>
39 #include <sys/procfs.h>
40 #include <sys/ptrace.h>
42 /* Prototypes for supply_gregset etc. */
45 #include "ppc-linux-tdep.h"
47 /* Required when using the AUXV. */
48 #include "elf/common.h"
51 /* This sometimes isn't defined. */
59 /* The PPC_FEATURE_* defines should be provided by <asm/cputable.h>.
60 If they aren't, we can provide them ourselves (their values are fixed
61 because they are part of the kernel ABI). They are used in the AT_HWCAP
63 #ifndef PPC_FEATURE_BOOKE
64 #define PPC_FEATURE_BOOKE 0x00008000
66 #ifndef PPC_FEATURE_ARCH_2_05
67 #define PPC_FEATURE_ARCH_2_05 0x00001000 /* ISA 2.05 */
70 /* Glibc's headers don't define PTRACE_GETVRREGS so we cannot use a
71 configure time check. Some older glibc's (for instance 2.2.1)
72 don't have a specific powerpc version of ptrace.h, and fall back on
73 a generic one. In such cases, sys/ptrace.h defines
74 PTRACE_GETFPXREGS and PTRACE_SETFPXREGS to the same numbers that
75 ppc kernel's asm/ptrace.h defines PTRACE_GETVRREGS and
76 PTRACE_SETVRREGS to be. This also makes a configury check pretty
79 /* These definitions should really come from the glibc header files,
80 but Glibc doesn't know about the vrregs yet. */
81 #ifndef PTRACE_GETVRREGS
82 #define PTRACE_GETVRREGS 18
83 #define PTRACE_SETVRREGS 19
86 /* PTRACE requests for POWER7 VSX registers. */
87 #ifndef PTRACE_GETVSXREGS
88 #define PTRACE_GETVSXREGS 27
89 #define PTRACE_SETVSXREGS 28
92 /* Similarly for the ptrace requests for getting / setting the SPE
93 registers (ev0 -- ev31, acc, and spefscr). See the description of
94 gdb_evrregset_t for details. */
95 #ifndef PTRACE_GETEVRREGS
96 #define PTRACE_GETEVRREGS 20
97 #define PTRACE_SETEVRREGS 21
100 /* Similarly for the hardware watchpoint support. */
101 #ifndef PTRACE_GET_DEBUGREG
102 #define PTRACE_GET_DEBUGREG 25
104 #ifndef PTRACE_SET_DEBUGREG
105 #define PTRACE_SET_DEBUGREG 26
107 #ifndef PTRACE_GETSIGINFO
108 #define PTRACE_GETSIGINFO 0x4202
111 /* This oddity is because the Linux kernel defines elf_vrregset_t as
112 an array of 33 16 bytes long elements. I.e. it leaves out vrsave.
113 However the PTRACE_GETVRREGS and PTRACE_SETVRREGS requests return
114 the vrsave as an extra 4 bytes at the end. I opted for creating a
115 flat array of chars, so that it is easier to manipulate for gdb.
117 There are 32 vector registers 16 bytes longs, plus a VSCR register
118 which is only 4 bytes long, but is fetched as a 16 bytes
119 quantity. Up to here we have the elf_vrregset_t structure.
120 Appended to this there is space for the VRSAVE register: 4 bytes.
121 Even though this vrsave register is not included in the regset
122 typedef, it is handled by the ptrace requests.
124 Note that GNU/Linux doesn't support little endian PPC hardware,
125 therefore the offset at which the real value of the VSCR register
126 is located will be always 12 bytes.
128 The layout is like this (where x is the actual value of the vscr reg): */
132 |.|.|.|.|.....|.|.|.|.||.|.|.|x||.|
133 <-------> <-------><-------><->
138 #define SIZEOF_VRREGS 33*16+4
140 typedef char gdb_vrregset_t[SIZEOF_VRREGS];
142 /* This is the layout of the POWER7 VSX registers and the way they overlap
143 with the existing FPR and VMX registers.
145 VSR doubleword 0 VSR doubleword 1
146 ----------------------------------------------------------------
148 ----------------------------------------------------------------
150 ----------------------------------------------------------------
153 ----------------------------------------------------------------
154 VSR[30] | FPR[30] | |
155 ----------------------------------------------------------------
156 VSR[31] | FPR[31] | |
157 ----------------------------------------------------------------
159 ----------------------------------------------------------------
161 ----------------------------------------------------------------
164 ----------------------------------------------------------------
166 ----------------------------------------------------------------
168 ----------------------------------------------------------------
170 VSX has 64 128bit registers. The first 32 registers overlap with
171 the FP registers (doubleword 0) and hence extend them with additional
172 64 bits (doubleword 1). The other 32 regs overlap with the VMX
174 #define SIZEOF_VSXREGS 32*8
176 typedef char gdb_vsxregset_t[SIZEOF_VSXREGS];
178 /* On PPC processors that support the the Signal Processing Extension
179 (SPE) APU, the general-purpose registers are 64 bits long.
180 However, the ordinary Linux kernel PTRACE_PEEKUSER / PTRACE_POKEUSER
181 ptrace calls only access the lower half of each register, to allow
182 them to behave the same way they do on non-SPE systems. There's a
183 separate pair of calls, PTRACE_GETEVRREGS / PTRACE_SETEVRREGS, that
184 read and write the top halves of all the general-purpose registers
185 at once, along with some SPE-specific registers.
187 GDB itself continues to claim the general-purpose registers are 32
188 bits long. It has unnamed raw registers that hold the upper halves
189 of the gprs, and the the full 64-bit SIMD views of the registers,
190 'ev0' -- 'ev31', are pseudo-registers that splice the top and
191 bottom halves together.
193 This is the structure filled in by PTRACE_GETEVRREGS and written to
194 the inferior's registers by PTRACE_SETEVRREGS. */
195 struct gdb_evrregset_t
197 unsigned long evr[32];
198 unsigned long long acc;
199 unsigned long spefscr;
202 /* Non-zero if our kernel may support the PTRACE_GETVSXREGS and
203 PTRACE_SETVSXREGS requests, for reading and writing the VSX
204 POWER7 registers 0 through 31. Zero if we've tried one of them and
205 gotten an error. Note that VSX registers 32 through 63 overlap
206 with VR registers 0 through 31. */
207 int have_ptrace_getsetvsxregs = 1;
209 /* Non-zero if our kernel may support the PTRACE_GETVRREGS and
210 PTRACE_SETVRREGS requests, for reading and writing the Altivec
211 registers. Zero if we've tried one of them and gotten an
213 int have_ptrace_getvrregs = 1;
215 /* Non-zero if our kernel may support the PTRACE_GETEVRREGS and
216 PTRACE_SETEVRREGS requests, for reading and writing the SPE
217 registers. Zero if we've tried one of them and gotten an
219 int have_ptrace_getsetevrregs = 1;
222 /* registers layout, as presented by the ptrace interface:
223 PT_R0, PT_R1, PT_R2, PT_R3, PT_R4, PT_R5, PT_R6, PT_R7,
224 PT_R8, PT_R9, PT_R10, PT_R11, PT_R12, PT_R13, PT_R14, PT_R15,
225 PT_R16, PT_R17, PT_R18, PT_R19, PT_R20, PT_R21, PT_R22, PT_R23,
226 PT_R24, PT_R25, PT_R26, PT_R27, PT_R28, PT_R29, PT_R30, PT_R31,
227 PT_FPR0, PT_FPR0 + 2, PT_FPR0 + 4, PT_FPR0 + 6, PT_FPR0 + 8, PT_FPR0 + 10, PT_FPR0 + 12, PT_FPR0 + 14,
228 PT_FPR0 + 16, PT_FPR0 + 18, PT_FPR0 + 20, PT_FPR0 + 22, PT_FPR0 + 24, PT_FPR0 + 26, PT_FPR0 + 28, PT_FPR0 + 30,
229 PT_FPR0 + 32, PT_FPR0 + 34, PT_FPR0 + 36, PT_FPR0 + 38, PT_FPR0 + 40, PT_FPR0 + 42, PT_FPR0 + 44, PT_FPR0 + 46,
230 PT_FPR0 + 48, PT_FPR0 + 50, PT_FPR0 + 52, PT_FPR0 + 54, PT_FPR0 + 56, PT_FPR0 + 58, PT_FPR0 + 60, PT_FPR0 + 62,
231 PT_NIP, PT_MSR, PT_CCR, PT_LNK, PT_CTR, PT_XER, PT_MQ */
235 ppc_register_u_addr (struct gdbarch *gdbarch, int regno)
238 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
239 /* NOTE: cagney/2003-11-25: This is the word size used by the ptrace
240 interface, and not the wordsize of the program's ABI. */
241 int wordsize = sizeof (long);
243 /* General purpose registers occupy 1 slot each in the buffer */
244 if (regno >= tdep->ppc_gp0_regnum
245 && regno < tdep->ppc_gp0_regnum + ppc_num_gprs)
246 u_addr = ((regno - tdep->ppc_gp0_regnum + PT_R0) * wordsize);
248 /* Floating point regs: eight bytes each in both 32- and 64-bit
249 ptrace interfaces. Thus, two slots each in 32-bit interface, one
250 slot each in 64-bit interface. */
251 if (tdep->ppc_fp0_regnum >= 0
252 && regno >= tdep->ppc_fp0_regnum
253 && regno < tdep->ppc_fp0_regnum + ppc_num_fprs)
254 u_addr = (PT_FPR0 * wordsize) + ((regno - tdep->ppc_fp0_regnum) * 8);
256 /* UISA special purpose registers: 1 slot each */
257 if (regno == gdbarch_pc_regnum (gdbarch))
258 u_addr = PT_NIP * wordsize;
259 if (regno == tdep->ppc_lr_regnum)
260 u_addr = PT_LNK * wordsize;
261 if (regno == tdep->ppc_cr_regnum)
262 u_addr = PT_CCR * wordsize;
263 if (regno == tdep->ppc_xer_regnum)
264 u_addr = PT_XER * wordsize;
265 if (regno == tdep->ppc_ctr_regnum)
266 u_addr = PT_CTR * wordsize;
268 if (regno == tdep->ppc_mq_regnum)
269 u_addr = PT_MQ * wordsize;
271 if (regno == tdep->ppc_ps_regnum)
272 u_addr = PT_MSR * wordsize;
273 if (regno == PPC_ORIG_R3_REGNUM)
274 u_addr = PT_ORIG_R3 * wordsize;
275 if (regno == PPC_TRAP_REGNUM)
276 u_addr = PT_TRAP * wordsize;
277 if (tdep->ppc_fpscr_regnum >= 0
278 && regno == tdep->ppc_fpscr_regnum)
280 /* NOTE: cagney/2005-02-08: On some 64-bit GNU/Linux systems the
281 kernel headers incorrectly contained the 32-bit definition of
282 PT_FPSCR. For the 32-bit definition, floating-point
283 registers occupy two 32-bit "slots", and the FPSCR lives in
284 the second half of such a slot-pair (hence +1). For 64-bit,
285 the FPSCR instead occupies the full 64-bit 2-word-slot and
286 hence no adjustment is necessary. Hack around this. */
287 if (wordsize == 8 && PT_FPSCR == (48 + 32 + 1))
288 u_addr = (48 + 32) * wordsize;
289 /* If the FPSCR is 64-bit wide, we need to fetch the whole 64-bit
290 slot and not just its second word. The PT_FPSCR supplied when
291 GDB is compiled as a 32-bit app doesn't reflect this. */
292 else if (wordsize == 4 && register_size (gdbarch, regno) == 8
293 && PT_FPSCR == (48 + 2*32 + 1))
294 u_addr = (48 + 2*32) * wordsize;
296 u_addr = PT_FPSCR * wordsize;
301 /* The Linux kernel ptrace interface for POWER7 VSX registers uses the
302 registers set mechanism, as opposed to the interface for all the
303 other registers, that stores/fetches each register individually. */
305 fetch_vsx_register (struct regcache *regcache, int tid, int regno)
308 gdb_vsxregset_t regs;
309 struct gdbarch *gdbarch = get_regcache_arch (regcache);
310 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
311 int vsxregsize = register_size (gdbarch, tdep->ppc_vsr0_upper_regnum);
313 ret = ptrace (PTRACE_GETVSXREGS, tid, 0, ®s);
318 have_ptrace_getsetvsxregs = 0;
321 perror_with_name (_("Unable to fetch VSX register"));
324 regcache_raw_supply (regcache, regno,
325 regs + (regno - tdep->ppc_vsr0_upper_regnum)
329 /* The Linux kernel ptrace interface for AltiVec registers uses the
330 registers set mechanism, as opposed to the interface for all the
331 other registers, that stores/fetches each register individually. */
333 fetch_altivec_register (struct regcache *regcache, int tid, int regno)
338 struct gdbarch *gdbarch = get_regcache_arch (regcache);
339 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
340 int vrregsize = register_size (gdbarch, tdep->ppc_vr0_regnum);
342 ret = ptrace (PTRACE_GETVRREGS, tid, 0, ®s);
347 have_ptrace_getvrregs = 0;
350 perror_with_name (_("Unable to fetch AltiVec register"));
353 /* VSCR is fetched as a 16 bytes quantity, but it is really 4 bytes
354 long on the hardware. We deal only with the lower 4 bytes of the
355 vector. VRSAVE is at the end of the array in a 4 bytes slot, so
356 there is no need to define an offset for it. */
357 if (regno == (tdep->ppc_vrsave_regnum - 1))
358 offset = vrregsize - register_size (gdbarch, tdep->ppc_vrsave_regnum);
360 regcache_raw_supply (regcache, regno,
361 regs + (regno - tdep->ppc_vr0_regnum) * vrregsize + offset);
364 /* Fetch the top 32 bits of TID's general-purpose registers and the
365 SPE-specific registers, and place the results in EVRREGSET. If we
366 don't support PTRACE_GETEVRREGS, then just fill EVRREGSET with
369 All the logic to deal with whether or not the PTRACE_GETEVRREGS and
370 PTRACE_SETEVRREGS requests are supported is isolated here, and in
371 set_spe_registers. */
373 get_spe_registers (int tid, struct gdb_evrregset_t *evrregset)
375 if (have_ptrace_getsetevrregs)
377 if (ptrace (PTRACE_GETEVRREGS, tid, 0, evrregset) >= 0)
381 /* EIO means that the PTRACE_GETEVRREGS request isn't supported;
382 we just return zeros. */
384 have_ptrace_getsetevrregs = 0;
386 /* Anything else needs to be reported. */
387 perror_with_name (_("Unable to fetch SPE registers"));
391 memset (evrregset, 0, sizeof (*evrregset));
394 /* Supply values from TID for SPE-specific raw registers: the upper
395 halves of the GPRs, the accumulator, and the spefscr. REGNO must
396 be the number of an upper half register, acc, spefscr, or -1 to
397 supply the values of all registers. */
399 fetch_spe_register (struct regcache *regcache, int tid, int regno)
401 struct gdbarch *gdbarch = get_regcache_arch (regcache);
402 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
403 struct gdb_evrregset_t evrregs;
405 gdb_assert (sizeof (evrregs.evr[0])
406 == register_size (gdbarch, tdep->ppc_ev0_upper_regnum));
407 gdb_assert (sizeof (evrregs.acc)
408 == register_size (gdbarch, tdep->ppc_acc_regnum));
409 gdb_assert (sizeof (evrregs.spefscr)
410 == register_size (gdbarch, tdep->ppc_spefscr_regnum));
412 get_spe_registers (tid, &evrregs);
418 for (i = 0; i < ppc_num_gprs; i++)
419 regcache_raw_supply (regcache, tdep->ppc_ev0_upper_regnum + i,
422 else if (tdep->ppc_ev0_upper_regnum <= regno
423 && regno < tdep->ppc_ev0_upper_regnum + ppc_num_gprs)
424 regcache_raw_supply (regcache, regno,
425 &evrregs.evr[regno - tdep->ppc_ev0_upper_regnum]);
428 || regno == tdep->ppc_acc_regnum)
429 regcache_raw_supply (regcache, tdep->ppc_acc_regnum, &evrregs.acc);
432 || regno == tdep->ppc_spefscr_regnum)
433 regcache_raw_supply (regcache, tdep->ppc_spefscr_regnum,
438 fetch_register (struct regcache *regcache, int tid, int regno)
440 struct gdbarch *gdbarch = get_regcache_arch (regcache);
441 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
442 /* This isn't really an address. But ptrace thinks of it as one. */
443 CORE_ADDR regaddr = ppc_register_u_addr (gdbarch, regno);
444 int bytes_transferred;
445 unsigned int offset; /* Offset of registers within the u area. */
446 char buf[MAX_REGISTER_SIZE];
448 if (altivec_register_p (gdbarch, regno))
450 /* If this is the first time through, or if it is not the first
451 time through, and we have comfirmed that there is kernel
452 support for such a ptrace request, then go and fetch the
454 if (have_ptrace_getvrregs)
456 fetch_altivec_register (regcache, tid, regno);
459 /* If we have discovered that there is no ptrace support for
460 AltiVec registers, fall through and return zeroes, because
461 regaddr will be -1 in this case. */
463 if (vsx_register_p (gdbarch, regno))
465 if (have_ptrace_getsetvsxregs)
467 fetch_vsx_register (regcache, tid, regno);
471 else if (spe_register_p (gdbarch, regno))
473 fetch_spe_register (regcache, tid, regno);
479 memset (buf, '\0', register_size (gdbarch, regno)); /* Supply zeroes */
480 regcache_raw_supply (regcache, regno, buf);
484 /* Read the raw register using sizeof(long) sized chunks. On a
485 32-bit platform, 64-bit floating-point registers will require two
487 for (bytes_transferred = 0;
488 bytes_transferred < register_size (gdbarch, regno);
489 bytes_transferred += sizeof (long))
492 *(long *) &buf[bytes_transferred]
493 = ptrace (PTRACE_PEEKUSER, tid, (PTRACE_TYPE_ARG3) regaddr, 0);
494 regaddr += sizeof (long);
498 sprintf (message, "reading register %s (#%d)",
499 gdbarch_register_name (gdbarch, regno), regno);
500 perror_with_name (message);
504 /* Now supply the register. Keep in mind that the regcache's idea
505 of the register's size may not be a multiple of sizeof
507 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_LITTLE)
509 /* Little-endian values are always found at the left end of the
510 bytes transferred. */
511 regcache_raw_supply (regcache, regno, buf);
513 else if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
515 /* Big-endian values are found at the right end of the bytes
517 size_t padding = (bytes_transferred - register_size (gdbarch, regno));
518 regcache_raw_supply (regcache, regno, buf + padding);
521 internal_error (__FILE__, __LINE__,
522 _("fetch_register: unexpected byte order: %d"),
523 gdbarch_byte_order (gdbarch));
527 supply_vsxregset (struct regcache *regcache, gdb_vsxregset_t *vsxregsetp)
530 struct gdbarch *gdbarch = get_regcache_arch (regcache);
531 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
532 int vsxregsize = register_size (gdbarch, tdep->ppc_vsr0_upper_regnum);
534 for (i = 0; i < ppc_num_vshrs; i++)
536 regcache_raw_supply (regcache, tdep->ppc_vsr0_upper_regnum + i,
537 *vsxregsetp + i * vsxregsize);
542 supply_vrregset (struct regcache *regcache, gdb_vrregset_t *vrregsetp)
545 struct gdbarch *gdbarch = get_regcache_arch (regcache);
546 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
547 int num_of_vrregs = tdep->ppc_vrsave_regnum - tdep->ppc_vr0_regnum + 1;
548 int vrregsize = register_size (gdbarch, tdep->ppc_vr0_regnum);
549 int offset = vrregsize - register_size (gdbarch, tdep->ppc_vrsave_regnum);
551 for (i = 0; i < num_of_vrregs; i++)
553 /* The last 2 registers of this set are only 32 bit long, not
554 128. However an offset is necessary only for VSCR because it
555 occupies a whole vector, while VRSAVE occupies a full 4 bytes
557 if (i == (num_of_vrregs - 2))
558 regcache_raw_supply (regcache, tdep->ppc_vr0_regnum + i,
559 *vrregsetp + i * vrregsize + offset);
561 regcache_raw_supply (regcache, tdep->ppc_vr0_regnum + i,
562 *vrregsetp + i * vrregsize);
567 fetch_vsx_registers (struct regcache *regcache, int tid)
570 gdb_vsxregset_t regs;
572 ret = ptrace (PTRACE_GETVSXREGS, tid, 0, ®s);
577 have_ptrace_getsetvsxregs = 0;
580 perror_with_name (_("Unable to fetch VSX registers"));
582 supply_vsxregset (regcache, ®s);
586 fetch_altivec_registers (struct regcache *regcache, int tid)
591 ret = ptrace (PTRACE_GETVRREGS, tid, 0, ®s);
596 have_ptrace_getvrregs = 0;
599 perror_with_name (_("Unable to fetch AltiVec registers"));
601 supply_vrregset (regcache, ®s);
605 fetch_ppc_registers (struct regcache *regcache, int tid)
608 struct gdbarch *gdbarch = get_regcache_arch (regcache);
609 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
611 for (i = 0; i < ppc_num_gprs; i++)
612 fetch_register (regcache, tid, tdep->ppc_gp0_regnum + i);
613 if (tdep->ppc_fp0_regnum >= 0)
614 for (i = 0; i < ppc_num_fprs; i++)
615 fetch_register (regcache, tid, tdep->ppc_fp0_regnum + i);
616 fetch_register (regcache, tid, gdbarch_pc_regnum (gdbarch));
617 if (tdep->ppc_ps_regnum != -1)
618 fetch_register (regcache, tid, tdep->ppc_ps_regnum);
619 if (tdep->ppc_cr_regnum != -1)
620 fetch_register (regcache, tid, tdep->ppc_cr_regnum);
621 if (tdep->ppc_lr_regnum != -1)
622 fetch_register (regcache, tid, tdep->ppc_lr_regnum);
623 if (tdep->ppc_ctr_regnum != -1)
624 fetch_register (regcache, tid, tdep->ppc_ctr_regnum);
625 if (tdep->ppc_xer_regnum != -1)
626 fetch_register (regcache, tid, tdep->ppc_xer_regnum);
627 if (tdep->ppc_mq_regnum != -1)
628 fetch_register (regcache, tid, tdep->ppc_mq_regnum);
629 if (ppc_linux_trap_reg_p (gdbarch))
631 fetch_register (regcache, tid, PPC_ORIG_R3_REGNUM);
632 fetch_register (regcache, tid, PPC_TRAP_REGNUM);
634 if (tdep->ppc_fpscr_regnum != -1)
635 fetch_register (regcache, tid, tdep->ppc_fpscr_regnum);
636 if (have_ptrace_getvrregs)
637 if (tdep->ppc_vr0_regnum != -1 && tdep->ppc_vrsave_regnum != -1)
638 fetch_altivec_registers (regcache, tid);
639 if (have_ptrace_getsetvsxregs)
640 if (tdep->ppc_vsr0_upper_regnum != -1)
641 fetch_vsx_registers (regcache, tid);
642 if (tdep->ppc_ev0_upper_regnum >= 0)
643 fetch_spe_register (regcache, tid, -1);
646 /* Fetch registers from the child process. Fetch all registers if
647 regno == -1, otherwise fetch all general registers or all floating
648 point registers depending upon the value of regno. */
650 ppc_linux_fetch_inferior_registers (struct regcache *regcache, int regno)
652 /* Overload thread id onto process id */
653 int tid = TIDGET (inferior_ptid);
655 /* No thread id, just use process id */
657 tid = PIDGET (inferior_ptid);
660 fetch_ppc_registers (regcache, tid);
662 fetch_register (regcache, tid, regno);
665 /* Store one VSX register. */
667 store_vsx_register (const struct regcache *regcache, int tid, int regno)
670 gdb_vsxregset_t regs;
671 struct gdbarch *gdbarch = get_regcache_arch (regcache);
672 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
673 int vsxregsize = register_size (gdbarch, tdep->ppc_vsr0_upper_regnum);
675 ret = ptrace (PTRACE_SETVSXREGS, tid, 0, ®s);
680 have_ptrace_getsetvsxregs = 0;
683 perror_with_name (_("Unable to fetch VSX register"));
686 regcache_raw_collect (regcache, regno, regs +
687 (regno - tdep->ppc_vsr0_upper_regnum) * vsxregsize);
689 ret = ptrace (PTRACE_SETVSXREGS, tid, 0, ®s);
691 perror_with_name (_("Unable to store VSX register"));
694 /* Store one register. */
696 store_altivec_register (const struct regcache *regcache, int tid, int regno)
701 struct gdbarch *gdbarch = get_regcache_arch (regcache);
702 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
703 int vrregsize = register_size (gdbarch, tdep->ppc_vr0_regnum);
705 ret = ptrace (PTRACE_GETVRREGS, tid, 0, ®s);
710 have_ptrace_getvrregs = 0;
713 perror_with_name (_("Unable to fetch AltiVec register"));
716 /* VSCR is fetched as a 16 bytes quantity, but it is really 4 bytes
717 long on the hardware. */
718 if (regno == (tdep->ppc_vrsave_regnum - 1))
719 offset = vrregsize - register_size (gdbarch, tdep->ppc_vrsave_regnum);
721 regcache_raw_collect (regcache, regno,
722 regs + (regno - tdep->ppc_vr0_regnum) * vrregsize + offset);
724 ret = ptrace (PTRACE_SETVRREGS, tid, 0, ®s);
726 perror_with_name (_("Unable to store AltiVec register"));
729 /* Assuming TID referrs to an SPE process, set the top halves of TID's
730 general-purpose registers and its SPE-specific registers to the
731 values in EVRREGSET. If we don't support PTRACE_SETEVRREGS, do
734 All the logic to deal with whether or not the PTRACE_GETEVRREGS and
735 PTRACE_SETEVRREGS requests are supported is isolated here, and in
736 get_spe_registers. */
738 set_spe_registers (int tid, struct gdb_evrregset_t *evrregset)
740 if (have_ptrace_getsetevrregs)
742 if (ptrace (PTRACE_SETEVRREGS, tid, 0, evrregset) >= 0)
746 /* EIO means that the PTRACE_SETEVRREGS request isn't
747 supported; we fail silently, and don't try the call
750 have_ptrace_getsetevrregs = 0;
752 /* Anything else needs to be reported. */
753 perror_with_name (_("Unable to set SPE registers"));
758 /* Write GDB's value for the SPE-specific raw register REGNO to TID.
759 If REGNO is -1, write the values of all the SPE-specific
762 store_spe_register (const struct regcache *regcache, int tid, int regno)
764 struct gdbarch *gdbarch = get_regcache_arch (regcache);
765 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
766 struct gdb_evrregset_t evrregs;
768 gdb_assert (sizeof (evrregs.evr[0])
769 == register_size (gdbarch, tdep->ppc_ev0_upper_regnum));
770 gdb_assert (sizeof (evrregs.acc)
771 == register_size (gdbarch, tdep->ppc_acc_regnum));
772 gdb_assert (sizeof (evrregs.spefscr)
773 == register_size (gdbarch, tdep->ppc_spefscr_regnum));
776 /* Since we're going to write out every register, the code below
777 should store to every field of evrregs; if that doesn't happen,
778 make it obvious by initializing it with suspicious values. */
779 memset (&evrregs, 42, sizeof (evrregs));
781 /* We can only read and write the entire EVR register set at a
782 time, so to write just a single register, we do a
783 read-modify-write maneuver. */
784 get_spe_registers (tid, &evrregs);
790 for (i = 0; i < ppc_num_gprs; i++)
791 regcache_raw_collect (regcache,
792 tdep->ppc_ev0_upper_regnum + i,
795 else if (tdep->ppc_ev0_upper_regnum <= regno
796 && regno < tdep->ppc_ev0_upper_regnum + ppc_num_gprs)
797 regcache_raw_collect (regcache, regno,
798 &evrregs.evr[regno - tdep->ppc_ev0_upper_regnum]);
801 || regno == tdep->ppc_acc_regnum)
802 regcache_raw_collect (regcache,
803 tdep->ppc_acc_regnum,
807 || regno == tdep->ppc_spefscr_regnum)
808 regcache_raw_collect (regcache,
809 tdep->ppc_spefscr_regnum,
812 /* Write back the modified register set. */
813 set_spe_registers (tid, &evrregs);
817 store_register (const struct regcache *regcache, int tid, int regno)
819 struct gdbarch *gdbarch = get_regcache_arch (regcache);
820 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
821 /* This isn't really an address. But ptrace thinks of it as one. */
822 CORE_ADDR regaddr = ppc_register_u_addr (gdbarch, regno);
824 size_t bytes_to_transfer;
825 char buf[MAX_REGISTER_SIZE];
827 if (altivec_register_p (gdbarch, regno))
829 store_altivec_register (regcache, tid, regno);
832 if (vsx_register_p (gdbarch, regno))
834 store_vsx_register (regcache, tid, regno);
837 else if (spe_register_p (gdbarch, regno))
839 store_spe_register (regcache, tid, regno);
846 /* First collect the register. Keep in mind that the regcache's
847 idea of the register's size may not be a multiple of sizeof
849 memset (buf, 0, sizeof buf);
850 bytes_to_transfer = align_up (register_size (gdbarch, regno), sizeof (long));
851 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_LITTLE)
853 /* Little-endian values always sit at the left end of the buffer. */
854 regcache_raw_collect (regcache, regno, buf);
856 else if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
858 /* Big-endian values sit at the right end of the buffer. */
859 size_t padding = (bytes_to_transfer - register_size (gdbarch, regno));
860 regcache_raw_collect (regcache, regno, buf + padding);
863 for (i = 0; i < bytes_to_transfer; i += sizeof (long))
866 ptrace (PTRACE_POKEUSER, tid, (PTRACE_TYPE_ARG3) regaddr,
868 regaddr += sizeof (long);
871 && (regno == tdep->ppc_fpscr_regnum
872 || regno == PPC_ORIG_R3_REGNUM
873 || regno == PPC_TRAP_REGNUM))
875 /* Some older kernel versions don't allow fpscr, orig_r3
876 or trap to be written. */
883 sprintf (message, "writing register %s (#%d)",
884 gdbarch_register_name (gdbarch, regno), regno);
885 perror_with_name (message);
891 fill_vsxregset (const struct regcache *regcache, gdb_vsxregset_t *vsxregsetp)
894 struct gdbarch *gdbarch = get_regcache_arch (regcache);
895 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
896 int vsxregsize = register_size (gdbarch, tdep->ppc_vsr0_upper_regnum);
898 for (i = 0; i < ppc_num_vshrs; i++)
899 regcache_raw_collect (regcache, tdep->ppc_vsr0_upper_regnum + i,
900 *vsxregsetp + i * vsxregsize);
904 fill_vrregset (const struct regcache *regcache, gdb_vrregset_t *vrregsetp)
907 struct gdbarch *gdbarch = get_regcache_arch (regcache);
908 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
909 int num_of_vrregs = tdep->ppc_vrsave_regnum - tdep->ppc_vr0_regnum + 1;
910 int vrregsize = register_size (gdbarch, tdep->ppc_vr0_regnum);
911 int offset = vrregsize - register_size (gdbarch, tdep->ppc_vrsave_regnum);
913 for (i = 0; i < num_of_vrregs; i++)
915 /* The last 2 registers of this set are only 32 bit long, not
916 128, but only VSCR is fetched as a 16 bytes quantity. */
917 if (i == (num_of_vrregs - 2))
918 regcache_raw_collect (regcache, tdep->ppc_vr0_regnum + i,
919 *vrregsetp + i * vrregsize + offset);
921 regcache_raw_collect (regcache, tdep->ppc_vr0_regnum + i,
922 *vrregsetp + i * vrregsize);
927 store_vsx_registers (const struct regcache *regcache, int tid)
930 gdb_vsxregset_t regs;
932 ret = ptrace (PTRACE_GETVSXREGS, tid, 0, ®s);
937 have_ptrace_getsetvsxregs = 0;
940 perror_with_name (_("Couldn't get VSX registers"));
943 fill_vsxregset (regcache, ®s);
945 if (ptrace (PTRACE_SETVSXREGS, tid, 0, ®s) < 0)
946 perror_with_name (_("Couldn't write VSX registers"));
950 store_altivec_registers (const struct regcache *regcache, int tid)
955 ret = ptrace (PTRACE_GETVRREGS, tid, 0, ®s);
960 have_ptrace_getvrregs = 0;
963 perror_with_name (_("Couldn't get AltiVec registers"));
966 fill_vrregset (regcache, ®s);
968 if (ptrace (PTRACE_SETVRREGS, tid, 0, ®s) < 0)
969 perror_with_name (_("Couldn't write AltiVec registers"));
973 store_ppc_registers (const struct regcache *regcache, int tid)
976 struct gdbarch *gdbarch = get_regcache_arch (regcache);
977 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
979 for (i = 0; i < ppc_num_gprs; i++)
980 store_register (regcache, tid, tdep->ppc_gp0_regnum + i);
981 if (tdep->ppc_fp0_regnum >= 0)
982 for (i = 0; i < ppc_num_fprs; i++)
983 store_register (regcache, tid, tdep->ppc_fp0_regnum + i);
984 store_register (regcache, tid, gdbarch_pc_regnum (gdbarch));
985 if (tdep->ppc_ps_regnum != -1)
986 store_register (regcache, tid, tdep->ppc_ps_regnum);
987 if (tdep->ppc_cr_regnum != -1)
988 store_register (regcache, tid, tdep->ppc_cr_regnum);
989 if (tdep->ppc_lr_regnum != -1)
990 store_register (regcache, tid, tdep->ppc_lr_regnum);
991 if (tdep->ppc_ctr_regnum != -1)
992 store_register (regcache, tid, tdep->ppc_ctr_regnum);
993 if (tdep->ppc_xer_regnum != -1)
994 store_register (regcache, tid, tdep->ppc_xer_regnum);
995 if (tdep->ppc_mq_regnum != -1)
996 store_register (regcache, tid, tdep->ppc_mq_regnum);
997 if (tdep->ppc_fpscr_regnum != -1)
998 store_register (regcache, tid, tdep->ppc_fpscr_regnum);
999 if (ppc_linux_trap_reg_p (gdbarch))
1001 store_register (regcache, tid, PPC_ORIG_R3_REGNUM);
1002 store_register (regcache, tid, PPC_TRAP_REGNUM);
1004 if (have_ptrace_getvrregs)
1005 if (tdep->ppc_vr0_regnum != -1 && tdep->ppc_vrsave_regnum != -1)
1006 store_altivec_registers (regcache, tid);
1007 if (have_ptrace_getsetvsxregs)
1008 if (tdep->ppc_vsr0_upper_regnum != -1)
1009 store_vsx_registers (regcache, tid);
1010 if (tdep->ppc_ev0_upper_regnum >= 0)
1011 store_spe_register (regcache, tid, -1);
1015 ppc_linux_check_watch_resources (int type, int cnt, int ot)
1018 ptid_t ptid = inferior_ptid;
1020 /* DABR (data address breakpoint register) is optional for PPC variants.
1021 Some variants have one DABR, others have none. So CNT can't be larger
1026 /* We need to know whether ptrace supports PTRACE_SET_DEBUGREG and whether
1027 the target has DABR. If either answer is no, the ptrace call will
1028 return -1. Fail in that case. */
1029 tid = TIDGET (ptid);
1031 tid = PIDGET (ptid);
1033 if (ptrace (PTRACE_SET_DEBUGREG, tid, 0, 0) == -1)
1038 /* Fetch the AT_HWCAP entry from the aux vector. */
1039 unsigned long ppc_linux_get_hwcap (void)
1043 if (target_auxv_search (¤t_target, AT_HWCAP, &field))
1044 return (unsigned long) field;
1050 ppc_linux_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
1052 /* Handle sub-8-byte quantities. */
1056 /* addr+len must fall in the 8 byte watchable region for DABR-based
1057 processors. DAC-based processors, like the PowerPC 440, will use
1058 addresses aligned to 4-bytes due to the way the read/write flags are
1059 passed at the moment. */
1060 if (((ppc_linux_get_hwcap () & PPC_FEATURE_BOOKE)
1061 && (addr + len) > (addr & ~3) + 4)
1062 || (addr + len) > (addr & ~7) + 8)
1068 /* The cached DABR value, to install in new threads. */
1069 static long saved_dabr_value;
1071 /* Set a watchpoint of type TYPE at address ADDR. */
1073 ppc_linux_insert_watchpoint (CORE_ADDR addr, int len, int rw)
1075 struct lwp_info *lp;
1078 long read_mode, write_mode;
1080 if (ppc_linux_get_hwcap () & PPC_FEATURE_BOOKE)
1082 /* PowerPC 440 requires only the read/write flags to be passed
1089 /* PowerPC 970 and other DABR-based processors are required to pass
1090 the Breakpoint Translation bit together with the flags. */
1095 dabr_value = addr & ~(read_mode | write_mode);
1099 /* Set read and translate bits. */
1100 dabr_value |= read_mode;
1103 /* Set write and translate bits. */
1104 dabr_value |= write_mode;
1107 /* Set read, write and translate bits. */
1108 dabr_value |= read_mode | write_mode;
1112 saved_dabr_value = dabr_value;
1115 if (ptrace (PTRACE_SET_DEBUGREG, TIDGET (ptid), 0, saved_dabr_value) < 0)
1122 ppc_linux_remove_watchpoint (CORE_ADDR addr, int len, int rw)
1124 struct lwp_info *lp;
1126 long dabr_value = 0;
1128 saved_dabr_value = 0;
1130 if (ptrace (PTRACE_SET_DEBUGREG, TIDGET (ptid), 0, saved_dabr_value) < 0)
1136 ppc_linux_new_thread (ptid_t ptid)
1138 ptrace (PTRACE_SET_DEBUGREG, TIDGET (ptid), 0, saved_dabr_value);
1142 ppc_linux_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
1144 struct siginfo *siginfo_p;
1146 siginfo_p = linux_nat_get_siginfo (inferior_ptid);
1148 if (siginfo_p->si_signo != SIGTRAP
1149 || (siginfo_p->si_code & 0xffff) != 0x0004 /* TRAP_HWBKPT */)
1152 *addr_p = (CORE_ADDR) (uintptr_t) siginfo_p->si_addr;
1157 ppc_linux_stopped_by_watchpoint (void)
1160 return ppc_linux_stopped_data_address (¤t_target, &addr);
1164 ppc_linux_watchpoint_addr_within_range (struct target_ops *target,
1166 CORE_ADDR start, int length)
1170 if (ppc_linux_get_hwcap () & PPC_FEATURE_BOOKE)
1177 /* Check whether [start, start+length-1] intersects [addr, addr+mask]. */
1178 return start <= addr + mask && start + length - 1 >= addr;
1182 ppc_linux_store_inferior_registers (struct regcache *regcache, int regno)
1184 /* Overload thread id onto process id */
1185 int tid = TIDGET (inferior_ptid);
1187 /* No thread id, just use process id */
1189 tid = PIDGET (inferior_ptid);
1192 store_register (regcache, tid, regno);
1194 store_ppc_registers (regcache, tid);
1197 /* Functions for transferring registers between a gregset_t or fpregset_t
1198 (see sys/ucontext.h) and gdb's regcache. The word size is that used
1199 by the ptrace interface, not the current program's ABI. eg. If a
1200 powerpc64-linux gdb is being used to debug a powerpc32-linux app, we
1201 read or write 64-bit gregsets. This is to suit the host libthread_db. */
1204 supply_gregset (struct regcache *regcache, const gdb_gregset_t *gregsetp)
1206 const struct regset *regset = ppc_linux_gregset (sizeof (long));
1208 ppc_supply_gregset (regset, regcache, -1, gregsetp, sizeof (*gregsetp));
1212 fill_gregset (const struct regcache *regcache,
1213 gdb_gregset_t *gregsetp, int regno)
1215 const struct regset *regset = ppc_linux_gregset (sizeof (long));
1218 memset (gregsetp, 0, sizeof (*gregsetp));
1219 ppc_collect_gregset (regset, regcache, regno, gregsetp, sizeof (*gregsetp));
1223 supply_fpregset (struct regcache *regcache, const gdb_fpregset_t * fpregsetp)
1225 const struct regset *regset = ppc_linux_fpregset ();
1227 ppc_supply_fpregset (regset, regcache, -1,
1228 fpregsetp, sizeof (*fpregsetp));
1232 fill_fpregset (const struct regcache *regcache,
1233 gdb_fpregset_t *fpregsetp, int regno)
1235 const struct regset *regset = ppc_linux_fpregset ();
1237 ppc_collect_fpregset (regset, regcache, regno,
1238 fpregsetp, sizeof (*fpregsetp));
1241 static const struct target_desc *
1242 ppc_linux_read_description (struct target_ops *ops)
1248 int tid = TIDGET (inferior_ptid);
1250 tid = PIDGET (inferior_ptid);
1252 if (have_ptrace_getsetevrregs)
1254 struct gdb_evrregset_t evrregset;
1256 if (ptrace (PTRACE_GETEVRREGS, tid, 0, &evrregset) >= 0)
1257 return tdesc_powerpc_e500l;
1259 /* EIO means that the PTRACE_GETEVRREGS request isn't supported.
1260 Anything else needs to be reported. */
1261 else if (errno != EIO)
1262 perror_with_name (_("Unable to fetch SPE registers"));
1265 if (have_ptrace_getsetvsxregs)
1267 gdb_vsxregset_t vsxregset;
1269 if (ptrace (PTRACE_GETVSXREGS, tid, 0, &vsxregset) >= 0)
1272 /* EIO means that the PTRACE_GETVSXREGS request isn't supported.
1273 Anything else needs to be reported. */
1274 else if (errno != EIO)
1275 perror_with_name (_("Unable to fetch VSX registers"));
1278 if (have_ptrace_getvrregs)
1280 gdb_vrregset_t vrregset;
1282 if (ptrace (PTRACE_GETVRREGS, tid, 0, &vrregset) >= 0)
1285 /* EIO means that the PTRACE_GETVRREGS request isn't supported.
1286 Anything else needs to be reported. */
1287 else if (errno != EIO)
1288 perror_with_name (_("Unable to fetch AltiVec registers"));
1291 if (ppc_linux_get_hwcap () & PPC_FEATURE_ARCH_2_05)
1294 /* Check for 64-bit inferior process. This is the case when the host is
1295 64-bit, and in addition the top bit of the MSR register is set. */
1296 #ifdef __powerpc64__
1300 msr = (long) ptrace (PTRACE_PEEKUSER, tid, PT_MSR * 8, 0);
1301 if (errno == 0 && msr < 0)
1304 return isa205? tdesc_powerpc_isa205_vsx64l : tdesc_powerpc_vsx64l;
1306 return isa205? tdesc_powerpc_isa205_altivec64l : tdesc_powerpc_altivec64l;
1308 return isa205? tdesc_powerpc_isa205_64l : tdesc_powerpc_64l;
1314 return isa205? tdesc_powerpc_isa205_vsx32l : tdesc_powerpc_vsx32l;
1316 return isa205? tdesc_powerpc_isa205_altivec32l : tdesc_powerpc_altivec32l;
1318 return isa205? tdesc_powerpc_isa205_32l : tdesc_powerpc_32l;
1321 void _initialize_ppc_linux_nat (void);
1324 _initialize_ppc_linux_nat (void)
1326 struct target_ops *t;
1328 /* Fill in the generic GNU/Linux methods. */
1329 t = linux_target ();
1331 /* Add our register access methods. */
1332 t->to_fetch_registers = ppc_linux_fetch_inferior_registers;
1333 t->to_store_registers = ppc_linux_store_inferior_registers;
1335 /* Add our watchpoint methods. */
1336 t->to_can_use_hw_breakpoint = ppc_linux_check_watch_resources;
1337 t->to_region_ok_for_hw_watchpoint = ppc_linux_region_ok_for_hw_watchpoint;
1338 t->to_insert_watchpoint = ppc_linux_insert_watchpoint;
1339 t->to_remove_watchpoint = ppc_linux_remove_watchpoint;
1340 t->to_stopped_by_watchpoint = ppc_linux_stopped_by_watchpoint;
1341 t->to_stopped_data_address = ppc_linux_stopped_data_address;
1342 t->to_watchpoint_addr_within_range = ppc_linux_watchpoint_addr_within_range;
1344 t->to_read_description = ppc_linux_read_description;
1346 /* Register the target. */
1347 linux_nat_add_target (t);
1348 linux_nat_set_new_thread (t, ppc_linux_new_thread);