Move some ppc macros to nat/ppc-linux.h
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-ppc-low.c
CommitLineData
0a30fbc4
DJ
1/* GNU/Linux/PowerPC specific low level interface, for the remote server for
2 GDB.
32d0add0 3 Copyright (C) 1995-2015 Free Software Foundation, Inc.
0a30fbc4
DJ
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
0a30fbc4
DJ
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
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
0a30fbc4
DJ
19
20#include "server.h"
58caa3dc 21#include "linux-low.h"
0a30fbc4 22
b6430ec3 23#include <elf.h>
0a30fbc4
DJ
24#include <asm/ptrace.h>
25
514c5338 26#include "nat/ppc-linux.h"
b6430ec3
UW
27
28static unsigned long ppc_hwcap;
29
30
7284e1be
UW
31/* Defined in auto-generated file powerpc-32l.c. */
32void init_registers_powerpc_32l (void);
3aee8918
PA
33extern const struct target_desc *tdesc_powerpc_32l;
34
7284e1be
UW
35/* Defined in auto-generated file powerpc-altivec32l.c. */
36void init_registers_powerpc_altivec32l (void);
3aee8918
PA
37extern const struct target_desc *tdesc_powerpc_altivec32l;
38
f4d9bade
UW
39/* Defined in auto-generated file powerpc-cell32l.c. */
40void init_registers_powerpc_cell32l (void);
3aee8918
PA
41extern const struct target_desc *tdesc_powerpc_cell32l;
42
677c5bb1
LM
43/* Defined in auto-generated file powerpc-vsx32l.c. */
44void init_registers_powerpc_vsx32l (void);
3aee8918
PA
45extern const struct target_desc *tdesc_powerpc_vsx32l;
46
2c4ad781
TJB
47/* Defined in auto-generated file powerpc-isa205-32l.c. */
48void init_registers_powerpc_isa205_32l (void);
3aee8918
PA
49extern const struct target_desc *tdesc_powerpc_isa205_32l;
50
2c4ad781
TJB
51/* Defined in auto-generated file powerpc-isa205-altivec32l.c. */
52void init_registers_powerpc_isa205_altivec32l (void);
3aee8918
PA
53extern const struct target_desc *tdesc_powerpc_isa205_altivec32l;
54
2c4ad781
TJB
55/* Defined in auto-generated file powerpc-isa205-vsx32l.c. */
56void init_registers_powerpc_isa205_vsx32l (void);
3aee8918
PA
57extern const struct target_desc *tdesc_powerpc_isa205_vsx32l;
58
7284e1be
UW
59/* Defined in auto-generated file powerpc-e500l.c. */
60void init_registers_powerpc_e500l (void);
3aee8918
PA
61extern const struct target_desc *tdesc_powerpc_e500l;
62
7284e1be
UW
63/* Defined in auto-generated file powerpc-64l.c. */
64void init_registers_powerpc_64l (void);
3aee8918
PA
65extern const struct target_desc *tdesc_powerpc_64l;
66
7284e1be
UW
67/* Defined in auto-generated file powerpc-altivec64l.c. */
68void init_registers_powerpc_altivec64l (void);
3aee8918
PA
69extern const struct target_desc *tdesc_powerpc_altivec64l;
70
f4d9bade
UW
71/* Defined in auto-generated file powerpc-cell64l.c. */
72void init_registers_powerpc_cell64l (void);
3aee8918
PA
73extern const struct target_desc *tdesc_powerpc_cell64l;
74
677c5bb1
LM
75/* Defined in auto-generated file powerpc-vsx64l.c. */
76void init_registers_powerpc_vsx64l (void);
3aee8918
PA
77extern const struct target_desc *tdesc_powerpc_vsx64l;
78
2c4ad781
TJB
79/* Defined in auto-generated file powerpc-isa205-64l.c. */
80void init_registers_powerpc_isa205_64l (void);
3aee8918
PA
81extern const struct target_desc *tdesc_powerpc_isa205_64l;
82
2c4ad781
TJB
83/* Defined in auto-generated file powerpc-isa205-altivec64l.c. */
84void init_registers_powerpc_isa205_altivec64l (void);
3aee8918
PA
85extern const struct target_desc *tdesc_powerpc_isa205_altivec64l;
86
2c4ad781
TJB
87/* Defined in auto-generated file powerpc-isa205-vsx64l.c. */
88void init_registers_powerpc_isa205_vsx64l (void);
3aee8918 89extern const struct target_desc *tdesc_powerpc_isa205_vsx64l;
7284e1be
UW
90
91#define ppc_num_regs 73
92
5b0a002e
UW
93#ifdef __powerpc64__
94/* We use a constant for FPSCR instead of PT_FPSCR, because
95 many shipped PPC64 kernels had the wrong value in ptrace.h. */
96static int ppc_regmap[] =
97 {PT_R0 * 8, PT_R1 * 8, PT_R2 * 8, PT_R3 * 8,
98 PT_R4 * 8, PT_R5 * 8, PT_R6 * 8, PT_R7 * 8,
99 PT_R8 * 8, PT_R9 * 8, PT_R10 * 8, PT_R11 * 8,
100 PT_R12 * 8, PT_R13 * 8, PT_R14 * 8, PT_R15 * 8,
101 PT_R16 * 8, PT_R17 * 8, PT_R18 * 8, PT_R19 * 8,
102 PT_R20 * 8, PT_R21 * 8, PT_R22 * 8, PT_R23 * 8,
103 PT_R24 * 8, PT_R25 * 8, PT_R26 * 8, PT_R27 * 8,
104 PT_R28 * 8, PT_R29 * 8, PT_R30 * 8, PT_R31 * 8,
105 PT_FPR0*8, PT_FPR0*8 + 8, PT_FPR0*8+16, PT_FPR0*8+24,
106 PT_FPR0*8+32, PT_FPR0*8+40, PT_FPR0*8+48, PT_FPR0*8+56,
107 PT_FPR0*8+64, PT_FPR0*8+72, PT_FPR0*8+80, PT_FPR0*8+88,
108 PT_FPR0*8+96, PT_FPR0*8+104, PT_FPR0*8+112, PT_FPR0*8+120,
109 PT_FPR0*8+128, PT_FPR0*8+136, PT_FPR0*8+144, PT_FPR0*8+152,
110 PT_FPR0*8+160, PT_FPR0*8+168, PT_FPR0*8+176, PT_FPR0*8+184,
111 PT_FPR0*8+192, PT_FPR0*8+200, PT_FPR0*8+208, PT_FPR0*8+216,
112 PT_FPR0*8+224, PT_FPR0*8+232, PT_FPR0*8+240, PT_FPR0*8+248,
113 PT_NIP * 8, PT_MSR * 8, PT_CCR * 8, PT_LNK * 8,
7284e1be
UW
114 PT_CTR * 8, PT_XER * 8, PT_FPR0*8 + 256,
115 PT_ORIG_R3 * 8, PT_TRAP * 8 };
5b0a002e 116#else
0a30fbc4 117/* Currently, don't check/send MQ. */
2ec06d2e 118static int ppc_regmap[] =
0a30fbc4
DJ
119 {PT_R0 * 4, PT_R1 * 4, PT_R2 * 4, PT_R3 * 4,
120 PT_R4 * 4, PT_R5 * 4, PT_R6 * 4, PT_R7 * 4,
121 PT_R8 * 4, PT_R9 * 4, PT_R10 * 4, PT_R11 * 4,
122 PT_R12 * 4, PT_R13 * 4, PT_R14 * 4, PT_R15 * 4,
123 PT_R16 * 4, PT_R17 * 4, PT_R18 * 4, PT_R19 * 4,
124 PT_R20 * 4, PT_R21 * 4, PT_R22 * 4, PT_R23 * 4,
125 PT_R24 * 4, PT_R25 * 4, PT_R26 * 4, PT_R27 * 4,
126 PT_R28 * 4, PT_R29 * 4, PT_R30 * 4, PT_R31 * 4,
127 PT_FPR0*4, PT_FPR0*4 + 8, PT_FPR0*4+16, PT_FPR0*4+24,
128 PT_FPR0*4+32, PT_FPR0*4+40, PT_FPR0*4+48, PT_FPR0*4+56,
129 PT_FPR0*4+64, PT_FPR0*4+72, PT_FPR0*4+80, PT_FPR0*4+88,
130 PT_FPR0*4+96, PT_FPR0*4+104, PT_FPR0*4+112, PT_FPR0*4+120,
131 PT_FPR0*4+128, PT_FPR0*4+136, PT_FPR0*4+144, PT_FPR0*4+152,
132 PT_FPR0*4+160, PT_FPR0*4+168, PT_FPR0*4+176, PT_FPR0*4+184,
133 PT_FPR0*4+192, PT_FPR0*4+200, PT_FPR0*4+208, PT_FPR0*4+216,
134 PT_FPR0*4+224, PT_FPR0*4+232, PT_FPR0*4+240, PT_FPR0*4+248,
135 PT_NIP * 4, PT_MSR * 4, PT_CCR * 4, PT_LNK * 4,
7284e1be
UW
136 PT_CTR * 4, PT_XER * 4, PT_FPSCR * 4,
137 PT_ORIG_R3 * 4, PT_TRAP * 4
b6430ec3
UW
138 };
139
140static int ppc_regmap_e500[] =
141 {PT_R0 * 4, PT_R1 * 4, PT_R2 * 4, PT_R3 * 4,
142 PT_R4 * 4, PT_R5 * 4, PT_R6 * 4, PT_R7 * 4,
143 PT_R8 * 4, PT_R9 * 4, PT_R10 * 4, PT_R11 * 4,
144 PT_R12 * 4, PT_R13 * 4, PT_R14 * 4, PT_R15 * 4,
145 PT_R16 * 4, PT_R17 * 4, PT_R18 * 4, PT_R19 * 4,
146 PT_R20 * 4, PT_R21 * 4, PT_R22 * 4, PT_R23 * 4,
147 PT_R24 * 4, PT_R25 * 4, PT_R26 * 4, PT_R27 * 4,
148 PT_R28 * 4, PT_R29 * 4, PT_R30 * 4, PT_R31 * 4,
149 -1, -1, -1, -1,
150 -1, -1, -1, -1,
151 -1, -1, -1, -1,
152 -1, -1, -1, -1,
153 -1, -1, -1, -1,
154 -1, -1, -1, -1,
155 -1, -1, -1, -1,
156 -1, -1, -1, -1,
157 PT_NIP * 4, PT_MSR * 4, PT_CCR * 4, PT_LNK * 4,
7284e1be
UW
158 PT_CTR * 4, PT_XER * 4, -1,
159 PT_ORIG_R3 * 4, PT_TRAP * 4
30ed0a8f 160 };
5b0a002e 161#endif
0a30fbc4 162
2ec06d2e
DJ
163static int
164ppc_cannot_store_register (int regno)
0a30fbc4 165{
3aee8918
PA
166 const struct target_desc *tdesc = current_process ()->tdesc;
167
b6430ec3 168#ifndef __powerpc64__
bc1e36ca 169 /* Some kernels do not allow us to store fpscr. */
3aee8918
PA
170 if (!(ppc_hwcap & PPC_FEATURE_HAS_SPE)
171 && regno == find_regno (tdesc, "fpscr"))
bc1e36ca 172 return 2;
30ed0a8f 173#endif
bc1e36ca 174
7284e1be 175 /* Some kernels do not allow us to store orig_r3 or trap. */
3aee8918
PA
176 if (regno == find_regno (tdesc, "orig_r3")
177 || regno == find_regno (tdesc, "trap"))
7284e1be
UW
178 return 2;
179
0a30fbc4
DJ
180 return 0;
181}
182
2ec06d2e
DJ
183static int
184ppc_cannot_fetch_register (int regno)
0a30fbc4
DJ
185{
186 return 0;
187}
188
5b0a002e 189static void
442ea881 190ppc_collect_ptrace_register (struct regcache *regcache, int regno, char *buf)
5b0a002e 191{
76b233dd
UW
192 memset (buf, 0, sizeof (long));
193
2e4bb98a
EBM
194 if (__BYTE_ORDER == __LITTLE_ENDIAN)
195 {
196 /* Little-endian values always sit at the left end of the buffer. */
197 collect_register (regcache, regno, buf);
198 }
199 else if (__BYTE_ORDER == __BIG_ENDIAN)
200 {
201 /* Big-endian values sit at the right end of the buffer. In case of
202 registers whose sizes are smaller than sizeof (long), we must use a
203 padding to access them correctly. */
204 int size = register_size (regcache->tdesc, regno);
205
206 if (size < sizeof (long))
207 collect_register (regcache, regno, buf + sizeof (long) - size);
208 else
209 collect_register (regcache, regno, buf);
210 }
5b0a002e 211 else
2e4bb98a 212 perror_with_name ("Unexpected byte order");
5b0a002e
UW
213}
214
215static void
442ea881
PA
216ppc_supply_ptrace_register (struct regcache *regcache,
217 int regno, const char *buf)
5b0a002e 218{
2e4bb98a
EBM
219 if (__BYTE_ORDER == __LITTLE_ENDIAN)
220 {
221 /* Little-endian values always sit at the left end of the buffer. */
222 supply_register (regcache, regno, buf);
223 }
224 else if (__BYTE_ORDER == __BIG_ENDIAN)
225 {
226 /* Big-endian values sit at the right end of the buffer. In case of
227 registers whose sizes are smaller than sizeof (long), we must use a
228 padding to access them correctly. */
229 int size = register_size (regcache->tdesc, regno);
230
231 if (size < sizeof (long))
232 supply_register (regcache, regno, buf + sizeof (long) - size);
233 else
234 supply_register (regcache, regno, buf);
235 }
5b0a002e 236 else
2e4bb98a 237 perror_with_name ("Unexpected byte order");
5b0a002e
UW
238}
239
0b9ff2c0
UW
240
241#define INSTR_SC 0x44000002
242#define NR_spu_run 0x0116
243
244/* If the PPU thread is currently stopped on a spu_run system call,
245 return to FD and ADDR the file handle and NPC parameter address
246 used with the system call. Return non-zero if successful. */
247static int
442ea881 248parse_spufs_run (struct regcache *regcache, int *fd, CORE_ADDR *addr)
0b9ff2c0
UW
249{
250 CORE_ADDR curr_pc;
251 int curr_insn;
252 int curr_r0;
253
3aee8918 254 if (register_size (regcache->tdesc, 0) == 4)
0b9ff2c0
UW
255 {
256 unsigned int pc, r0, r3, r4;
442ea881
PA
257 collect_register_by_name (regcache, "pc", &pc);
258 collect_register_by_name (regcache, "r0", &r0);
259 collect_register_by_name (regcache, "orig_r3", &r3);
260 collect_register_by_name (regcache, "r4", &r4);
0b9ff2c0
UW
261 curr_pc = (CORE_ADDR) pc;
262 curr_r0 = (int) r0;
263 *fd = (int) r3;
264 *addr = (CORE_ADDR) r4;
265 }
266 else
267 {
268 unsigned long pc, r0, r3, r4;
442ea881
PA
269 collect_register_by_name (regcache, "pc", &pc);
270 collect_register_by_name (regcache, "r0", &r0);
271 collect_register_by_name (regcache, "orig_r3", &r3);
272 collect_register_by_name (regcache, "r4", &r4);
0b9ff2c0
UW
273 curr_pc = (CORE_ADDR) pc;
274 curr_r0 = (int) r0;
275 *fd = (int) r3;
276 *addr = (CORE_ADDR) r4;
277 }
278
279 /* Fetch instruction preceding current NIP. */
280 if ((*the_target->read_memory) (curr_pc - 4,
281 (unsigned char *) &curr_insn, 4) != 0)
282 return 0;
283 /* It should be a "sc" instruction. */
284 if (curr_insn != INSTR_SC)
285 return 0;
286 /* System call number should be NR_spu_run. */
287 if (curr_r0 != NR_spu_run)
288 return 0;
289
290 return 1;
291}
292
0d62e5e8 293static CORE_ADDR
442ea881 294ppc_get_pc (struct regcache *regcache)
0d62e5e8 295{
0b9ff2c0
UW
296 CORE_ADDR addr;
297 int fd;
298
442ea881 299 if (parse_spufs_run (regcache, &fd, &addr))
0b9ff2c0
UW
300 {
301 unsigned int pc;
302 (*the_target->read_memory) (addr, (unsigned char *) &pc, 4);
493e2a69
MS
303 return ((CORE_ADDR)1 << 63)
304 | ((CORE_ADDR)fd << 32) | (CORE_ADDR) (pc - 4);
0b9ff2c0 305 }
3aee8918 306 else if (register_size (regcache->tdesc, 0) == 4)
6fe305f7
UW
307 {
308 unsigned int pc;
442ea881 309 collect_register_by_name (regcache, "pc", &pc);
6fe305f7
UW
310 return (CORE_ADDR) pc;
311 }
312 else
313 {
314 unsigned long pc;
442ea881 315 collect_register_by_name (regcache, "pc", &pc);
6fe305f7
UW
316 return (CORE_ADDR) pc;
317 }
0d62e5e8
DJ
318}
319
320static void
442ea881 321ppc_set_pc (struct regcache *regcache, CORE_ADDR pc)
0d62e5e8 322{
0b9ff2c0
UW
323 CORE_ADDR addr;
324 int fd;
325
442ea881 326 if (parse_spufs_run (regcache, &fd, &addr))
0b9ff2c0
UW
327 {
328 unsigned int newpc = pc;
329 (*the_target->write_memory) (addr, (unsigned char *) &newpc, 4);
330 }
3aee8918 331 else if (register_size (regcache->tdesc, 0) == 4)
6fe305f7
UW
332 {
333 unsigned int newpc = pc;
442ea881 334 supply_register_by_name (regcache, "pc", &newpc);
6fe305f7
UW
335 }
336 else
337 {
338 unsigned long newpc = pc;
442ea881 339 supply_register_by_name (regcache, "pc", &newpc);
6fe305f7
UW
340 }
341}
342
b6430ec3
UW
343
344static int
345ppc_get_hwcap (unsigned long *valp)
346{
3aee8918
PA
347 const struct target_desc *tdesc = current_process ()->tdesc;
348 int wordsize = register_size (tdesc, 0);
b6430ec3
UW
349 unsigned char *data = alloca (2 * wordsize);
350 int offset = 0;
351
352 while ((*the_target->read_auxv) (offset, data, 2 * wordsize) == 2 * wordsize)
353 {
354 if (wordsize == 4)
355 {
356 unsigned int *data_p = (unsigned int *)data;
357 if (data_p[0] == AT_HWCAP)
358 {
359 *valp = data_p[1];
360 return 1;
361 }
362 }
363 else
364 {
365 unsigned long *data_p = (unsigned long *)data;
366 if (data_p[0] == AT_HWCAP)
367 {
368 *valp = data_p[1];
369 return 1;
370 }
371 }
372
373 offset += 2 * wordsize;
374 }
375
376 *valp = 0;
377 return 0;
378}
379
3aee8918
PA
380/* Forward declaration. */
381static struct usrregs_info ppc_usrregs_info;
382#ifndef __powerpc64__
383static int ppc_regmap_adjusted;
384#endif
385
6fe305f7
UW
386static void
387ppc_arch_setup (void)
388{
3aee8918 389 const struct target_desc *tdesc;
6fe305f7
UW
390#ifdef __powerpc64__
391 long msr;
3be029c7 392 struct regcache *regcache;
0d62e5e8 393
c9b2f845
UW
394 /* On a 64-bit host, assume 64-bit inferior process with no
395 AltiVec registers. Reset ppc_hwcap to ensure that the
396 collect_register call below does not fail. */
3aee8918
PA
397 tdesc = tdesc_powerpc_64l;
398 current_process ()->tdesc = tdesc;
c9b2f845 399 ppc_hwcap = 0;
6fe305f7
UW
400
401 /* Only if the high bit of the MSR is set, we actually have
402 a 64-bit inferior. */
3aee8918
PA
403 regcache = new_register_cache (tdesc);
404 fetch_inferior_registers (regcache, find_regno (tdesc, "msr"));
3be029c7 405 collect_register_by_name (regcache, "msr", &msr);
92b72907 406 free_register_cache (regcache);
6fe305f7 407 if (msr < 0)
b6430ec3
UW
408 {
409 ppc_get_hwcap (&ppc_hwcap);
f4d9bade 410 if (ppc_hwcap & PPC_FEATURE_CELL)
3aee8918 411 tdesc = tdesc_powerpc_cell64l;
f4d9bade 412 else if (ppc_hwcap & PPC_FEATURE_HAS_VSX)
2c4ad781 413 {
f04c6d38
TJB
414 /* Power ISA 2.05 (implemented by Power 6 and newer processors)
415 increases the FPSCR from 32 bits to 64 bits. Even though Power 7
416 supports this ISA version, it doesn't have PPC_FEATURE_ARCH_2_05
417 set, only PPC_FEATURE_ARCH_2_06. Since for now the only bits
418 used in the higher half of the register are for Decimal Floating
419 Point, we check if that feature is available to decide the size
420 of the FPSCR. */
421 if (ppc_hwcap & PPC_FEATURE_HAS_DFP)
3aee8918 422 tdesc = tdesc_powerpc_isa205_vsx64l;
2c4ad781 423 else
3aee8918 424 tdesc = tdesc_powerpc_vsx64l;
2c4ad781 425 }
677c5bb1 426 else if (ppc_hwcap & PPC_FEATURE_HAS_ALTIVEC)
2c4ad781 427 {
f04c6d38 428 if (ppc_hwcap & PPC_FEATURE_HAS_DFP)
3aee8918 429 tdesc = tdesc_powerpc_isa205_altivec64l;
2c4ad781 430 else
3aee8918 431 tdesc = tdesc_powerpc_altivec64l;
2c4ad781
TJB
432 }
433
3aee8918 434 current_process ()->tdesc = tdesc;
b6430ec3
UW
435 return;
436 }
6fe305f7
UW
437#endif
438
439 /* OK, we have a 32-bit inferior. */
3aee8918
PA
440 tdesc = tdesc_powerpc_32l;
441 current_process ()->tdesc = tdesc;
b6430ec3
UW
442
443 ppc_get_hwcap (&ppc_hwcap);
f4d9bade 444 if (ppc_hwcap & PPC_FEATURE_CELL)
3aee8918 445 tdesc = tdesc_powerpc_cell32l;
f4d9bade 446 else if (ppc_hwcap & PPC_FEATURE_HAS_VSX)
2c4ad781 447 {
f04c6d38 448 if (ppc_hwcap & PPC_FEATURE_HAS_DFP)
3aee8918 449 tdesc = tdesc_powerpc_isa205_vsx32l;
2c4ad781 450 else
3aee8918 451 tdesc = tdesc_powerpc_vsx32l;
2c4ad781 452 }
677c5bb1 453 else if (ppc_hwcap & PPC_FEATURE_HAS_ALTIVEC)
2c4ad781 454 {
f04c6d38 455 if (ppc_hwcap & PPC_FEATURE_HAS_DFP)
3aee8918 456 tdesc = tdesc_powerpc_isa205_altivec32l;
2c4ad781 457 else
3aee8918 458 tdesc = tdesc_powerpc_altivec32l;
2c4ad781 459 }
677c5bb1 460
b6430ec3
UW
461 /* On 32-bit machines, check for SPE registers.
462 Set the low target's regmap field as appropriately. */
463#ifndef __powerpc64__
b6430ec3 464 if (ppc_hwcap & PPC_FEATURE_HAS_SPE)
3aee8918
PA
465 tdesc = tdesc_powerpc_e500l;
466
467 if (!ppc_regmap_adjusted)
b6430ec3 468 {
3aee8918
PA
469 if (ppc_hwcap & PPC_FEATURE_HAS_SPE)
470 ppc_usrregs_info.regmap = ppc_regmap_e500;
2c4ad781 471
3aee8918
PA
472 /* If the FPSCR is 64-bit wide, we need to fetch the whole
473 64-bit slot and not just its second word. The PT_FPSCR
474 supplied in a 32-bit GDB compilation doesn't reflect
475 this. */
476 if (register_size (tdesc, 70) == 8)
477 ppc_regmap[70] = (48 + 2*32) * sizeof (long);
478
479 ppc_regmap_adjusted = 1;
480 }
6fe305f7 481#endif
3aee8918 482 current_process ()->tdesc = tdesc;
0d62e5e8
DJ
483}
484
5b0a002e 485/* Correct in either endianness.
0d62e5e8
DJ
486 This instruction is "twge r2, r2", which GDB uses as a software
487 breakpoint. */
5b0a002e 488static const unsigned int ppc_breakpoint = 0x7d821008;
0d62e5e8
DJ
489#define ppc_breakpoint_len 4
490
491static int
492ppc_breakpoint_at (CORE_ADDR where)
493{
5b0a002e 494 unsigned int insn;
0d62e5e8 495
0b9ff2c0
UW
496 if (where & ((CORE_ADDR)1 << 63))
497 {
498 char mem_annex[32];
499 sprintf (mem_annex, "%d/mem", (int)((where >> 32) & 0x7fffffff));
500 (*the_target->qxfer_spu) (mem_annex, (unsigned char *) &insn,
501 NULL, where & 0xffffffff, 4);
502 if (insn == 0x3fff)
503 return 1;
504 }
505 else
506 {
507 (*the_target->read_memory) (where, (unsigned char *) &insn, 4);
508 if (insn == ppc_breakpoint)
509 return 1;
510 /* If necessary, recognize more trap instructions here. GDB only uses
511 the one. */
512 }
513
0d62e5e8
DJ
514 return 0;
515}
516
e9d25b98
DJ
517/* Provide only a fill function for the general register set. ps_lgetregs
518 will use this for NPTL support. */
519
442ea881 520static void ppc_fill_gregset (struct regcache *regcache, void *buf)
e9d25b98
DJ
521{
522 int i;
523
524 for (i = 0; i < 32; i++)
442ea881 525 ppc_collect_ptrace_register (regcache, i, (char *) buf + ppc_regmap[i]);
e9d25b98
DJ
526
527 for (i = 64; i < 70; i++)
442ea881 528 ppc_collect_ptrace_register (regcache, i, (char *) buf + ppc_regmap[i]);
7284e1be
UW
529
530 for (i = 71; i < 73; i++)
442ea881 531 ppc_collect_ptrace_register (regcache, i, (char *) buf + ppc_regmap[i]);
e9d25b98
DJ
532}
533
677c5bb1
LM
534#define SIZEOF_VSXREGS 32*8
535
536static void
442ea881 537ppc_fill_vsxregset (struct regcache *regcache, void *buf)
677c5bb1
LM
538{
539 int i, base;
540 char *regset = buf;
541
542 if (!(ppc_hwcap & PPC_FEATURE_HAS_VSX))
543 return;
544
3aee8918 545 base = find_regno (regcache->tdesc, "vs0h");
677c5bb1 546 for (i = 0; i < 32; i++)
442ea881 547 collect_register (regcache, base + i, &regset[i * 8]);
677c5bb1
LM
548}
549
550static void
442ea881 551ppc_store_vsxregset (struct regcache *regcache, const void *buf)
677c5bb1
LM
552{
553 int i, base;
554 const char *regset = buf;
555
556 if (!(ppc_hwcap & PPC_FEATURE_HAS_VSX))
557 return;
558
3aee8918 559 base = find_regno (regcache->tdesc, "vs0h");
677c5bb1 560 for (i = 0; i < 32; i++)
442ea881 561 supply_register (regcache, base + i, &regset[i * 8]);
677c5bb1
LM
562}
563
30ed0a8f
DJ
564#define SIZEOF_VRREGS 33*16+4
565
566static void
442ea881 567ppc_fill_vrregset (struct regcache *regcache, void *buf)
30ed0a8f
DJ
568{
569 int i, base;
570 char *regset = buf;
571
b6430ec3
UW
572 if (!(ppc_hwcap & PPC_FEATURE_HAS_ALTIVEC))
573 return;
574
3aee8918 575 base = find_regno (regcache->tdesc, "vr0");
30ed0a8f 576 for (i = 0; i < 32; i++)
442ea881 577 collect_register (regcache, base + i, &regset[i * 16]);
30ed0a8f 578
442ea881
PA
579 collect_register_by_name (regcache, "vscr", &regset[32 * 16 + 12]);
580 collect_register_by_name (regcache, "vrsave", &regset[33 * 16]);
30ed0a8f
DJ
581}
582
583static void
442ea881 584ppc_store_vrregset (struct regcache *regcache, const void *buf)
30ed0a8f
DJ
585{
586 int i, base;
587 const char *regset = buf;
588
b6430ec3
UW
589 if (!(ppc_hwcap & PPC_FEATURE_HAS_ALTIVEC))
590 return;
591
3aee8918 592 base = find_regno (regcache->tdesc, "vr0");
30ed0a8f 593 for (i = 0; i < 32; i++)
442ea881 594 supply_register (regcache, base + i, &regset[i * 16]);
30ed0a8f 595
442ea881
PA
596 supply_register_by_name (regcache, "vscr", &regset[32 * 16 + 12]);
597 supply_register_by_name (regcache, "vrsave", &regset[33 * 16]);
30ed0a8f
DJ
598}
599
30ed0a8f
DJ
600struct gdb_evrregset_t
601{
602 unsigned long evr[32];
603 unsigned long long acc;
604 unsigned long spefscr;
605};
606
607static void
442ea881 608ppc_fill_evrregset (struct regcache *regcache, void *buf)
30ed0a8f
DJ
609{
610 int i, ev0;
611 struct gdb_evrregset_t *regset = buf;
612
b6430ec3
UW
613 if (!(ppc_hwcap & PPC_FEATURE_HAS_SPE))
614 return;
615
3aee8918 616 ev0 = find_regno (regcache->tdesc, "ev0h");
30ed0a8f 617 for (i = 0; i < 32; i++)
442ea881 618 collect_register (regcache, ev0 + i, &regset->evr[i]);
30ed0a8f 619
442ea881
PA
620 collect_register_by_name (regcache, "acc", &regset->acc);
621 collect_register_by_name (regcache, "spefscr", &regset->spefscr);
30ed0a8f
DJ
622}
623
624static void
442ea881 625ppc_store_evrregset (struct regcache *regcache, const void *buf)
30ed0a8f
DJ
626{
627 int i, ev0;
628 const struct gdb_evrregset_t *regset = buf;
629
b6430ec3
UW
630 if (!(ppc_hwcap & PPC_FEATURE_HAS_SPE))
631 return;
632
3aee8918 633 ev0 = find_regno (regcache->tdesc, "ev0h");
30ed0a8f 634 for (i = 0; i < 32; i++)
442ea881 635 supply_register (regcache, ev0 + i, &regset->evr[i]);
30ed0a8f 636
442ea881
PA
637 supply_register_by_name (regcache, "acc", &regset->acc);
638 supply_register_by_name (regcache, "spefscr", &regset->spefscr);
30ed0a8f 639}
30ed0a8f 640
3aee8918 641static struct regset_info ppc_regsets[] = {
30ed0a8f
DJ
642 /* List the extra register sets before GENERAL_REGS. That way we will
643 fetch them every time, but still fall back to PTRACE_PEEKUSER for the
644 general registers. Some kernels support these, but not the newer
645 PPC_PTRACE_GETREGS. */
1570b33e 646 { PTRACE_GETVSXREGS, PTRACE_SETVSXREGS, 0, SIZEOF_VSXREGS, EXTENDED_REGS,
677c5bb1 647 ppc_fill_vsxregset, ppc_store_vsxregset },
1570b33e 648 { PTRACE_GETVRREGS, PTRACE_SETVRREGS, 0, SIZEOF_VRREGS, EXTENDED_REGS,
30ed0a8f 649 ppc_fill_vrregset, ppc_store_vrregset },
1570b33e 650 { PTRACE_GETEVRREGS, PTRACE_SETEVRREGS, 0, 32 * 4 + 8 + 4, EXTENDED_REGS,
30ed0a8f 651 ppc_fill_evrregset, ppc_store_evrregset },
1570b33e
L
652 { 0, 0, 0, 0, GENERAL_REGS, ppc_fill_gregset, NULL },
653 { 0, 0, 0, -1, -1, NULL, NULL }
e9d25b98
DJ
654};
655
3aee8918
PA
656static struct usrregs_info ppc_usrregs_info =
657 {
658 ppc_num_regs,
659 ppc_regmap,
660 };
661
662static struct regsets_info ppc_regsets_info =
663 {
664 ppc_regsets, /* regsets */
665 0, /* num_regsets */
666 NULL, /* disabled_regsets */
667 };
668
669static struct regs_info regs_info =
670 {
671 NULL, /* regset_bitmap */
672 &ppc_usrregs_info,
673 &ppc_regsets_info
674 };
675
676static const struct regs_info *
677ppc_regs_info (void)
678{
679 return &regs_info;
680}
681
2ec06d2e 682struct linux_target_ops the_low_target = {
6fe305f7 683 ppc_arch_setup,
3aee8918 684 ppc_regs_info,
2ec06d2e
DJ
685 ppc_cannot_fetch_register,
686 ppc_cannot_store_register,
c14dfd32 687 NULL, /* fetch_register */
0d62e5e8
DJ
688 ppc_get_pc,
689 ppc_set_pc,
f450004a 690 (const unsigned char *) &ppc_breakpoint,
0d62e5e8
DJ
691 ppc_breakpoint_len,
692 NULL,
693 0,
694 ppc_breakpoint_at,
802e8e6d 695 NULL, /* supports_z_point_type */
5b0a002e
UW
696 NULL,
697 NULL,
698 NULL,
699 NULL,
700 ppc_collect_ptrace_register,
701 ppc_supply_ptrace_register,
2ec06d2e 702};
3aee8918
PA
703
704void
705initialize_low_arch (void)
706{
707 /* Initialize the Linux target descriptions. */
708
709 init_registers_powerpc_32l ();
710 init_registers_powerpc_altivec32l ();
711 init_registers_powerpc_cell32l ();
712 init_registers_powerpc_vsx32l ();
713 init_registers_powerpc_isa205_32l ();
714 init_registers_powerpc_isa205_altivec32l ();
715 init_registers_powerpc_isa205_vsx32l ();
716 init_registers_powerpc_e500l ();
717 init_registers_powerpc_64l ();
718 init_registers_powerpc_altivec64l ();
719 init_registers_powerpc_cell64l ();
720 init_registers_powerpc_vsx64l ();
721 init_registers_powerpc_isa205_64l ();
722 init_registers_powerpc_isa205_altivec64l ();
723 init_registers_powerpc_isa205_vsx64l ();
724
725 initialize_regsets_info (&ppc_regsets_info);
726}
This page took 0.988352 seconds and 4 git commands to generate.