* gdb.stabs/exclfwd.exp, gdb.stabs/exclfwd1.c,
[deliverable/binutils-gdb.git] / gdb / rs6000-tdep.c
CommitLineData
c906108c 1/* Target-dependent code for GDB, the GNU debugger.
7aea86e6
AC
2
3 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
5 Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24#include "defs.h"
25#include "frame.h"
26#include "inferior.h"
27#include "symtab.h"
28#include "target.h"
29#include "gdbcore.h"
30#include "gdbcmd.h"
c906108c 31#include "objfiles.h"
7a78ae4e 32#include "arch-utils.h"
4e052eda 33#include "regcache.h"
d16aafd8 34#include "doublest.h"
fd0407d6 35#include "value.h"
1fcc0bb8 36#include "parser-defs.h"
4be87837 37#include "osabi.h"
7a78ae4e 38
2fccf04a 39#include "libbfd.h" /* for bfd_default_set_arch_mach */
7a78ae4e 40#include "coff/internal.h" /* for libcoff.h */
2fccf04a 41#include "libcoff.h" /* for xcoff_data */
11ed25ac
KB
42#include "coff/xcoff.h"
43#include "libxcoff.h"
7a78ae4e 44
9aa1e687 45#include "elf-bfd.h"
7a78ae4e 46
6ded7999 47#include "solib-svr4.h"
9aa1e687 48#include "ppc-tdep.h"
7a78ae4e 49
338ef23d 50#include "gdb_assert.h"
a89aa300 51#include "dis-asm.h"
338ef23d 52
61a65099
KB
53#include "trad-frame.h"
54#include "frame-unwind.h"
55#include "frame-base.h"
56
7a78ae4e
ND
57/* If the kernel has to deliver a signal, it pushes a sigcontext
58 structure on the stack and then calls the signal handler, passing
59 the address of the sigcontext in an argument register. Usually
60 the signal handler doesn't save this register, so we have to
61 access the sigcontext structure via an offset from the signal handler
62 frame.
63 The following constants were determined by experimentation on AIX 3.2. */
64#define SIG_FRAME_PC_OFFSET 96
65#define SIG_FRAME_LR_OFFSET 108
66#define SIG_FRAME_FP_OFFSET 284
67
7a78ae4e
ND
68/* To be used by skip_prologue. */
69
70struct rs6000_framedata
71 {
72 int offset; /* total size of frame --- the distance
73 by which we decrement sp to allocate
74 the frame */
75 int saved_gpr; /* smallest # of saved gpr */
76 int saved_fpr; /* smallest # of saved fpr */
6be8bc0c 77 int saved_vr; /* smallest # of saved vr */
96ff0de4 78 int saved_ev; /* smallest # of saved ev */
7a78ae4e
ND
79 int alloca_reg; /* alloca register number (frame ptr) */
80 char frameless; /* true if frameless functions. */
81 char nosavedpc; /* true if pc not saved. */
82 int gpr_offset; /* offset of saved gprs from prev sp */
83 int fpr_offset; /* offset of saved fprs from prev sp */
6be8bc0c 84 int vr_offset; /* offset of saved vrs from prev sp */
96ff0de4 85 int ev_offset; /* offset of saved evs from prev sp */
7a78ae4e
ND
86 int lr_offset; /* offset of saved lr */
87 int cr_offset; /* offset of saved cr */
6be8bc0c 88 int vrsave_offset; /* offset of saved vrsave register */
7a78ae4e
ND
89 };
90
91/* Description of a single register. */
92
93struct reg
94 {
95 char *name; /* name of register */
96 unsigned char sz32; /* size on 32-bit arch, 0 if nonextant */
97 unsigned char sz64; /* size on 64-bit arch, 0 if nonextant */
98 unsigned char fpr; /* whether register is floating-point */
489461e2 99 unsigned char pseudo; /* whether register is pseudo */
7a78ae4e
ND
100 };
101
c906108c
SS
102/* Breakpoint shadows for the single step instructions will be kept here. */
103
c5aa993b
JM
104static struct sstep_breaks
105 {
106 /* Address, or 0 if this is not in use. */
107 CORE_ADDR address;
108 /* Shadow contents. */
109 char data[4];
110 }
111stepBreaks[2];
c906108c
SS
112
113/* Hook for determining the TOC address when calling functions in the
114 inferior under AIX. The initialization code in rs6000-nat.c sets
115 this hook to point to find_toc_address. */
116
7a78ae4e
ND
117CORE_ADDR (*rs6000_find_toc_address_hook) (CORE_ADDR) = NULL;
118
119/* Hook to set the current architecture when starting a child process.
120 rs6000-nat.c sets this. */
121
122void (*rs6000_set_host_arch_hook) (int) = NULL;
c906108c
SS
123
124/* Static function prototypes */
125
a14ed312
KB
126static CORE_ADDR branch_dest (int opcode, int instr, CORE_ADDR pc,
127 CORE_ADDR safety);
077276e8
KB
128static CORE_ADDR skip_prologue (CORE_ADDR, CORE_ADDR,
129 struct rs6000_framedata *);
c906108c 130
64b84175
KB
131/* Is REGNO an AltiVec register? Return 1 if so, 0 otherwise. */
132int
133altivec_register_p (int regno)
134{
135 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
136 if (tdep->ppc_vr0_regnum < 0 || tdep->ppc_vrsave_regnum < 0)
137 return 0;
138 else
139 return (regno >= tdep->ppc_vr0_regnum && regno <= tdep->ppc_vrsave_regnum);
140}
141
0a613259
AC
142/* Use the architectures FP registers? */
143int
144ppc_floating_point_unit_p (struct gdbarch *gdbarch)
145{
146 const struct bfd_arch_info *info = gdbarch_bfd_arch_info (gdbarch);
147 if (info->arch == bfd_arch_powerpc)
148 return (info->mach != bfd_mach_ppc_e500);
149 if (info->arch == bfd_arch_rs6000)
150 return 1;
151 return 0;
152}
153
7a78ae4e 154/* Read a LEN-byte address from debugged memory address MEMADDR. */
c906108c 155
7a78ae4e
ND
156static CORE_ADDR
157read_memory_addr (CORE_ADDR memaddr, int len)
158{
159 return read_memory_unsigned_integer (memaddr, len);
160}
c906108c 161
7a78ae4e
ND
162static CORE_ADDR
163rs6000_skip_prologue (CORE_ADDR pc)
b83266a0
SS
164{
165 struct rs6000_framedata frame;
077276e8 166 pc = skip_prologue (pc, 0, &frame);
b83266a0
SS
167 return pc;
168}
169
170
c906108c
SS
171/* Fill in fi->saved_regs */
172
173struct frame_extra_info
174{
175 /* Functions calling alloca() change the value of the stack
176 pointer. We need to use initial stack pointer (which is saved in
177 r31 by gcc) in such cases. If a compiler emits traceback table,
178 then we should use the alloca register specified in traceback
179 table. FIXME. */
c5aa993b 180 CORE_ADDR initial_sp; /* initial stack pointer. */
c906108c
SS
181};
182
143985b7 183/* Get the ith function argument for the current function. */
b9362cc7 184static CORE_ADDR
143985b7
AF
185rs6000_fetch_pointer_argument (struct frame_info *frame, int argi,
186 struct type *type)
187{
188 CORE_ADDR addr;
7f5f525d 189 get_frame_register (frame, 3 + argi, &addr);
143985b7
AF
190 return addr;
191}
192
c906108c
SS
193/* Calculate the destination of a branch/jump. Return -1 if not a branch. */
194
195static CORE_ADDR
7a78ae4e 196branch_dest (int opcode, int instr, CORE_ADDR pc, CORE_ADDR safety)
c906108c
SS
197{
198 CORE_ADDR dest;
199 int immediate;
200 int absolute;
201 int ext_op;
202
203 absolute = (int) ((instr >> 1) & 1);
204
c5aa993b
JM
205 switch (opcode)
206 {
207 case 18:
208 immediate = ((instr & ~3) << 6) >> 6; /* br unconditional */
209 if (absolute)
210 dest = immediate;
211 else
212 dest = pc + immediate;
213 break;
214
215 case 16:
216 immediate = ((instr & ~3) << 16) >> 16; /* br conditional */
217 if (absolute)
218 dest = immediate;
219 else
220 dest = pc + immediate;
221 break;
222
223 case 19:
224 ext_op = (instr >> 1) & 0x3ff;
225
226 if (ext_op == 16) /* br conditional register */
227 {
2188cbdd 228 dest = read_register (gdbarch_tdep (current_gdbarch)->ppc_lr_regnum) & ~3;
c5aa993b
JM
229
230 /* If we are about to return from a signal handler, dest is
231 something like 0x3c90. The current frame is a signal handler
232 caller frame, upon completion of the sigreturn system call
233 execution will return to the saved PC in the frame. */
234 if (dest < TEXT_SEGMENT_BASE)
235 {
236 struct frame_info *fi;
237
238 fi = get_current_frame ();
239 if (fi != NULL)
8b36eed8 240 dest = read_memory_addr (get_frame_base (fi) + SIG_FRAME_PC_OFFSET,
21283beb 241 gdbarch_tdep (current_gdbarch)->wordsize);
c5aa993b
JM
242 }
243 }
244
245 else if (ext_op == 528) /* br cond to count reg */
246 {
2188cbdd 247 dest = read_register (gdbarch_tdep (current_gdbarch)->ppc_ctr_regnum) & ~3;
c5aa993b
JM
248
249 /* If we are about to execute a system call, dest is something
250 like 0x22fc or 0x3b00. Upon completion the system call
251 will return to the address in the link register. */
252 if (dest < TEXT_SEGMENT_BASE)
2188cbdd 253 dest = read_register (gdbarch_tdep (current_gdbarch)->ppc_lr_regnum) & ~3;
c5aa993b
JM
254 }
255 else
256 return -1;
257 break;
c906108c 258
c5aa993b
JM
259 default:
260 return -1;
261 }
c906108c
SS
262 return (dest < TEXT_SEGMENT_BASE) ? safety : dest;
263}
264
265
266/* Sequence of bytes for breakpoint instruction. */
267
f4f9705a 268const static unsigned char *
7a78ae4e 269rs6000_breakpoint_from_pc (CORE_ADDR *bp_addr, int *bp_size)
c906108c 270{
aaab4dba
AC
271 static unsigned char big_breakpoint[] = { 0x7d, 0x82, 0x10, 0x08 };
272 static unsigned char little_breakpoint[] = { 0x08, 0x10, 0x82, 0x7d };
c906108c 273 *bp_size = 4;
d7449b42 274 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
c906108c
SS
275 return big_breakpoint;
276 else
277 return little_breakpoint;
278}
279
280
281/* AIX does not support PT_STEP. Simulate it. */
282
283void
379d08a1
AC
284rs6000_software_single_step (enum target_signal signal,
285 int insert_breakpoints_p)
c906108c 286{
7c40d541
KB
287 CORE_ADDR dummy;
288 int breakp_sz;
f4f9705a 289 const char *breakp = rs6000_breakpoint_from_pc (&dummy, &breakp_sz);
c906108c
SS
290 int ii, insn;
291 CORE_ADDR loc;
292 CORE_ADDR breaks[2];
293 int opcode;
294
c5aa993b
JM
295 if (insert_breakpoints_p)
296 {
c906108c 297
c5aa993b 298 loc = read_pc ();
c906108c 299
c5aa993b 300 insn = read_memory_integer (loc, 4);
c906108c 301
7c40d541 302 breaks[0] = loc + breakp_sz;
c5aa993b
JM
303 opcode = insn >> 26;
304 breaks[1] = branch_dest (opcode, insn, loc, breaks[0]);
c906108c 305
c5aa993b
JM
306 /* Don't put two breakpoints on the same address. */
307 if (breaks[1] == breaks[0])
308 breaks[1] = -1;
c906108c 309
c5aa993b 310 stepBreaks[1].address = 0;
c906108c 311
c5aa993b
JM
312 for (ii = 0; ii < 2; ++ii)
313 {
c906108c 314
c5aa993b
JM
315 /* ignore invalid breakpoint. */
316 if (breaks[ii] == -1)
317 continue;
7c40d541 318 target_insert_breakpoint (breaks[ii], stepBreaks[ii].data);
c5aa993b
JM
319 stepBreaks[ii].address = breaks[ii];
320 }
c906108c 321
c5aa993b
JM
322 }
323 else
324 {
c906108c 325
c5aa993b
JM
326 /* remove step breakpoints. */
327 for (ii = 0; ii < 2; ++ii)
328 if (stepBreaks[ii].address != 0)
7c40d541
KB
329 target_remove_breakpoint (stepBreaks[ii].address,
330 stepBreaks[ii].data);
c5aa993b 331 }
c906108c 332 errno = 0; /* FIXME, don't ignore errors! */
c5aa993b 333 /* What errors? {read,write}_memory call error(). */
c906108c
SS
334}
335
336
337/* return pc value after skipping a function prologue and also return
338 information about a function frame.
339
340 in struct rs6000_framedata fdata:
c5aa993b
JM
341 - frameless is TRUE, if function does not have a frame.
342 - nosavedpc is TRUE, if function does not save %pc value in its frame.
343 - offset is the initial size of this stack frame --- the amount by
344 which we decrement the sp to allocate the frame.
345 - saved_gpr is the number of the first saved gpr.
346 - saved_fpr is the number of the first saved fpr.
6be8bc0c 347 - saved_vr is the number of the first saved vr.
96ff0de4 348 - saved_ev is the number of the first saved ev.
c5aa993b
JM
349 - alloca_reg is the number of the register used for alloca() handling.
350 Otherwise -1.
351 - gpr_offset is the offset of the first saved gpr from the previous frame.
352 - fpr_offset is the offset of the first saved fpr from the previous frame.
6be8bc0c 353 - vr_offset is the offset of the first saved vr from the previous frame.
96ff0de4 354 - ev_offset is the offset of the first saved ev from the previous frame.
c5aa993b
JM
355 - lr_offset is the offset of the saved lr
356 - cr_offset is the offset of the saved cr
6be8bc0c 357 - vrsave_offset is the offset of the saved vrsave register
c5aa993b 358 */
c906108c
SS
359
360#define SIGNED_SHORT(x) \
361 ((sizeof (short) == 2) \
362 ? ((int)(short)(x)) \
363 : ((int)((((x) & 0xffff) ^ 0x8000) - 0x8000)))
364
365#define GET_SRC_REG(x) (((x) >> 21) & 0x1f)
366
55d05f3b
KB
367/* Limit the number of skipped non-prologue instructions, as the examining
368 of the prologue is expensive. */
369static int max_skip_non_prologue_insns = 10;
370
371/* Given PC representing the starting address of a function, and
372 LIM_PC which is the (sloppy) limit to which to scan when looking
373 for a prologue, attempt to further refine this limit by using
374 the line data in the symbol table. If successful, a better guess
375 on where the prologue ends is returned, otherwise the previous
376 value of lim_pc is returned. */
634aa483
AC
377
378/* FIXME: cagney/2004-02-14: This function and logic have largely been
379 superseded by skip_prologue_using_sal. */
380
55d05f3b
KB
381static CORE_ADDR
382refine_prologue_limit (CORE_ADDR pc, CORE_ADDR lim_pc)
383{
384 struct symtab_and_line prologue_sal;
385
386 prologue_sal = find_pc_line (pc, 0);
387 if (prologue_sal.line != 0)
388 {
389 int i;
390 CORE_ADDR addr = prologue_sal.end;
391
392 /* Handle the case in which compiler's optimizer/scheduler
393 has moved instructions into the prologue. We scan ahead
394 in the function looking for address ranges whose corresponding
395 line number is less than or equal to the first one that we
396 found for the function. (It can be less than when the
397 scheduler puts a body instruction before the first prologue
398 instruction.) */
399 for (i = 2 * max_skip_non_prologue_insns;
400 i > 0 && (lim_pc == 0 || addr < lim_pc);
401 i--)
402 {
403 struct symtab_and_line sal;
404
405 sal = find_pc_line (addr, 0);
406 if (sal.line == 0)
407 break;
408 if (sal.line <= prologue_sal.line
409 && sal.symtab == prologue_sal.symtab)
410 {
411 prologue_sal = sal;
412 }
413 addr = sal.end;
414 }
415
416 if (lim_pc == 0 || prologue_sal.end < lim_pc)
417 lim_pc = prologue_sal.end;
418 }
419 return lim_pc;
420}
421
422
7a78ae4e 423static CORE_ADDR
077276e8 424skip_prologue (CORE_ADDR pc, CORE_ADDR lim_pc, struct rs6000_framedata *fdata)
c906108c
SS
425{
426 CORE_ADDR orig_pc = pc;
55d05f3b 427 CORE_ADDR last_prologue_pc = pc;
6be8bc0c 428 CORE_ADDR li_found_pc = 0;
c906108c
SS
429 char buf[4];
430 unsigned long op;
431 long offset = 0;
6be8bc0c 432 long vr_saved_offset = 0;
482ca3f5
KB
433 int lr_reg = -1;
434 int cr_reg = -1;
6be8bc0c 435 int vr_reg = -1;
96ff0de4
EZ
436 int ev_reg = -1;
437 long ev_offset = 0;
6be8bc0c 438 int vrsave_reg = -1;
c906108c
SS
439 int reg;
440 int framep = 0;
441 int minimal_toc_loaded = 0;
ddb20c56 442 int prev_insn_was_prologue_insn = 1;
55d05f3b 443 int num_skip_non_prologue_insns = 0;
96ff0de4 444 const struct bfd_arch_info *arch_info = gdbarch_bfd_arch_info (current_gdbarch);
6f99cb26 445 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
96ff0de4 446
55d05f3b
KB
447 /* Attempt to find the end of the prologue when no limit is specified.
448 Note that refine_prologue_limit() has been written so that it may
449 be used to "refine" the limits of non-zero PC values too, but this
450 is only safe if we 1) trust the line information provided by the
451 compiler and 2) iterate enough to actually find the end of the
452 prologue.
453
454 It may become a good idea at some point (for both performance and
455 accuracy) to unconditionally call refine_prologue_limit(). But,
456 until we can make a clear determination that this is beneficial,
457 we'll play it safe and only use it to obtain a limit when none
458 has been specified. */
459 if (lim_pc == 0)
460 lim_pc = refine_prologue_limit (pc, lim_pc);
c906108c 461
ddb20c56 462 memset (fdata, 0, sizeof (struct rs6000_framedata));
c906108c
SS
463 fdata->saved_gpr = -1;
464 fdata->saved_fpr = -1;
6be8bc0c 465 fdata->saved_vr = -1;
96ff0de4 466 fdata->saved_ev = -1;
c906108c
SS
467 fdata->alloca_reg = -1;
468 fdata->frameless = 1;
469 fdata->nosavedpc = 1;
470
55d05f3b 471 for (;; pc += 4)
c906108c 472 {
ddb20c56
KB
473 /* Sometimes it isn't clear if an instruction is a prologue
474 instruction or not. When we encounter one of these ambiguous
475 cases, we'll set prev_insn_was_prologue_insn to 0 (false).
476 Otherwise, we'll assume that it really is a prologue instruction. */
477 if (prev_insn_was_prologue_insn)
478 last_prologue_pc = pc;
55d05f3b
KB
479
480 /* Stop scanning if we've hit the limit. */
481 if (lim_pc != 0 && pc >= lim_pc)
482 break;
483
ddb20c56
KB
484 prev_insn_was_prologue_insn = 1;
485
55d05f3b 486 /* Fetch the instruction and convert it to an integer. */
ddb20c56
KB
487 if (target_read_memory (pc, buf, 4))
488 break;
489 op = extract_signed_integer (buf, 4);
c906108c 490
c5aa993b
JM
491 if ((op & 0xfc1fffff) == 0x7c0802a6)
492 { /* mflr Rx */
43b1ab88
AC
493 /* Since shared library / PIC code, which needs to get its
494 address at runtime, can appear to save more than one link
495 register vis:
496
497 *INDENT-OFF*
498 stwu r1,-304(r1)
499 mflr r3
500 bl 0xff570d0 (blrl)
501 stw r30,296(r1)
502 mflr r30
503 stw r31,300(r1)
504 stw r3,308(r1);
505 ...
506 *INDENT-ON*
507
508 remember just the first one, but skip over additional
509 ones. */
510 if (lr_reg < 0)
511 lr_reg = (op & 0x03e00000);
c5aa993b 512 continue;
c5aa993b
JM
513 }
514 else if ((op & 0xfc1fffff) == 0x7c000026)
515 { /* mfcr Rx */
98f08d3d 516 cr_reg = (op & 0x03e00000);
c5aa993b 517 continue;
c906108c 518
c906108c 519 }
c5aa993b
JM
520 else if ((op & 0xfc1f0000) == 0xd8010000)
521 { /* stfd Rx,NUM(r1) */
522 reg = GET_SRC_REG (op);
523 if (fdata->saved_fpr == -1 || fdata->saved_fpr > reg)
524 {
525 fdata->saved_fpr = reg;
526 fdata->fpr_offset = SIGNED_SHORT (op) + offset;
527 }
528 continue;
c906108c 529
c5aa993b
JM
530 }
531 else if (((op & 0xfc1f0000) == 0xbc010000) || /* stm Rx, NUM(r1) */
7a78ae4e
ND
532 (((op & 0xfc1f0000) == 0x90010000 || /* st rx,NUM(r1) */
533 (op & 0xfc1f0003) == 0xf8010000) && /* std rx,NUM(r1) */
534 (op & 0x03e00000) >= 0x01a00000)) /* rx >= r13 */
c5aa993b
JM
535 {
536
537 reg = GET_SRC_REG (op);
538 if (fdata->saved_gpr == -1 || fdata->saved_gpr > reg)
539 {
540 fdata->saved_gpr = reg;
7a78ae4e 541 if ((op & 0xfc1f0003) == 0xf8010000)
98f08d3d 542 op &= ~3UL;
c5aa993b
JM
543 fdata->gpr_offset = SIGNED_SHORT (op) + offset;
544 }
545 continue;
c906108c 546
ddb20c56
KB
547 }
548 else if ((op & 0xffff0000) == 0x60000000)
549 {
96ff0de4 550 /* nop */
ddb20c56
KB
551 /* Allow nops in the prologue, but do not consider them to
552 be part of the prologue unless followed by other prologue
553 instructions. */
554 prev_insn_was_prologue_insn = 0;
555 continue;
556
c906108c 557 }
c5aa993b
JM
558 else if ((op & 0xffff0000) == 0x3c000000)
559 { /* addis 0,0,NUM, used
560 for >= 32k frames */
561 fdata->offset = (op & 0x0000ffff) << 16;
562 fdata->frameless = 0;
563 continue;
564
565 }
566 else if ((op & 0xffff0000) == 0x60000000)
567 { /* ori 0,0,NUM, 2nd ha
568 lf of >= 32k frames */
569 fdata->offset |= (op & 0x0000ffff);
570 fdata->frameless = 0;
571 continue;
572
573 }
98f08d3d
KB
574 else if (lr_reg != -1 &&
575 /* std Rx, NUM(r1) || stdu Rx, NUM(r1) */
576 (((op & 0xffff0000) == (lr_reg | 0xf8010000)) ||
577 /* stw Rx, NUM(r1) */
578 ((op & 0xffff0000) == (lr_reg | 0x90010000)) ||
579 /* stwu Rx, NUM(r1) */
580 ((op & 0xffff0000) == (lr_reg | 0x94010000))))
581 { /* where Rx == lr */
582 fdata->lr_offset = offset;
c5aa993b
JM
583 fdata->nosavedpc = 0;
584 lr_reg = 0;
98f08d3d
KB
585 if ((op & 0xfc000003) == 0xf8000000 || /* std */
586 (op & 0xfc000000) == 0x90000000) /* stw */
587 {
588 /* Does not update r1, so add displacement to lr_offset. */
589 fdata->lr_offset += SIGNED_SHORT (op);
590 }
c5aa993b
JM
591 continue;
592
593 }
98f08d3d
KB
594 else if (cr_reg != -1 &&
595 /* std Rx, NUM(r1) || stdu Rx, NUM(r1) */
596 (((op & 0xffff0000) == (cr_reg | 0xf8010000)) ||
597 /* stw Rx, NUM(r1) */
598 ((op & 0xffff0000) == (cr_reg | 0x90010000)) ||
599 /* stwu Rx, NUM(r1) */
600 ((op & 0xffff0000) == (cr_reg | 0x94010000))))
601 { /* where Rx == cr */
602 fdata->cr_offset = offset;
c5aa993b 603 cr_reg = 0;
98f08d3d
KB
604 if ((op & 0xfc000003) == 0xf8000000 ||
605 (op & 0xfc000000) == 0x90000000)
606 {
607 /* Does not update r1, so add displacement to cr_offset. */
608 fdata->cr_offset += SIGNED_SHORT (op);
609 }
c5aa993b
JM
610 continue;
611
612 }
613 else if (op == 0x48000005)
614 { /* bl .+4 used in
615 -mrelocatable */
616 continue;
617
618 }
619 else if (op == 0x48000004)
620 { /* b .+4 (xlc) */
621 break;
622
c5aa993b 623 }
6be8bc0c
EZ
624 else if ((op & 0xffff0000) == 0x3fc00000 || /* addis 30,0,foo@ha, used
625 in V.4 -mminimal-toc */
c5aa993b
JM
626 (op & 0xffff0000) == 0x3bde0000)
627 { /* addi 30,30,foo@l */
628 continue;
c906108c 629
c5aa993b
JM
630 }
631 else if ((op & 0xfc000001) == 0x48000001)
632 { /* bl foo,
633 to save fprs??? */
c906108c 634
c5aa993b 635 fdata->frameless = 0;
6be8bc0c
EZ
636 /* Don't skip over the subroutine call if it is not within
637 the first three instructions of the prologue. */
c5aa993b
JM
638 if ((pc - orig_pc) > 8)
639 break;
640
641 op = read_memory_integer (pc + 4, 4);
642
6be8bc0c
EZ
643 /* At this point, make sure this is not a trampoline
644 function (a function that simply calls another functions,
645 and nothing else). If the next is not a nop, this branch
646 was part of the function prologue. */
c5aa993b
JM
647
648 if (op == 0x4def7b82 || op == 0) /* crorc 15, 15, 15 */
649 break; /* don't skip over
650 this branch */
651 continue;
652
c5aa993b 653 }
98f08d3d
KB
654 /* update stack pointer */
655 else if ((op & 0xfc1f0000) == 0x94010000)
656 { /* stu rX,NUM(r1) || stwu rX,NUM(r1) */
c5aa993b
JM
657 fdata->frameless = 0;
658 fdata->offset = SIGNED_SHORT (op);
659 offset = fdata->offset;
660 continue;
c5aa993b 661 }
98f08d3d
KB
662 else if ((op & 0xfc1f016a) == 0x7c01016e)
663 { /* stwux rX,r1,rY */
664 /* no way to figure out what r1 is going to be */
665 fdata->frameless = 0;
666 offset = fdata->offset;
667 continue;
668 }
669 else if ((op & 0xfc1f0003) == 0xf8010001)
670 { /* stdu rX,NUM(r1) */
671 fdata->frameless = 0;
672 fdata->offset = SIGNED_SHORT (op & ~3UL);
673 offset = fdata->offset;
674 continue;
675 }
676 else if ((op & 0xfc1f016a) == 0x7c01016a)
677 { /* stdux rX,r1,rY */
678 /* no way to figure out what r1 is going to be */
c5aa993b
JM
679 fdata->frameless = 0;
680 offset = fdata->offset;
681 continue;
c5aa993b 682 }
98f08d3d
KB
683 /* Load up minimal toc pointer */
684 else if (((op >> 22) == 0x20f || /* l r31,... or l r30,... */
685 (op >> 22) == 0x3af) /* ld r31,... or ld r30,... */
c5aa993b 686 && !minimal_toc_loaded)
98f08d3d 687 {
c5aa993b
JM
688 minimal_toc_loaded = 1;
689 continue;
690
f6077098
KB
691 /* move parameters from argument registers to local variable
692 registers */
693 }
694 else if ((op & 0xfc0007fe) == 0x7c000378 && /* mr(.) Rx,Ry */
695 (((op >> 21) & 31) >= 3) && /* R3 >= Ry >= R10 */
696 (((op >> 21) & 31) <= 10) &&
96ff0de4 697 ((long) ((op >> 16) & 31) >= fdata->saved_gpr)) /* Rx: local var reg */
f6077098
KB
698 {
699 continue;
700
c5aa993b
JM
701 /* store parameters in stack */
702 }
e802b915
JB
703 /* Move parameters from argument registers to temporary register. */
704 else if ((op & 0xfc0007fe) == 0x7c000378 && /* mr(.) Rx,Ry */
705 (((op >> 21) & 31) >= 3) && /* R3 >= Ry >= R10 */
706 (((op >> 21) & 31) <= 10) &&
707 (((op >> 16) & 31) == 0)) /* Rx: scratch register r0 */
708 {
709 continue;
710 }
6be8bc0c 711 else if ((op & 0xfc1f0003) == 0xf8010000 || /* std rx,NUM(r1) */
c5aa993b 712 (op & 0xfc1f0000) == 0xd8010000 || /* stfd Rx,NUM(r1) */
7a78ae4e
ND
713 (op & 0xfc1f0000) == 0xfc010000) /* frsp, fp?,NUM(r1) */
714 {
c5aa993b 715 continue;
c906108c 716
c5aa993b
JM
717 /* store parameters in stack via frame pointer */
718 }
719 else if (framep &&
e802b915
JB
720 ((op & 0xfc1f0000) == 0x901f0000 || /* st rx,NUM(r31) */
721 (op & 0xfc1f0000) == 0x981f0000 || /* stb Rx,NUM(r31) */
722 (op & 0xfc1f0000) == 0xd81f0000 || /* stfd Rx,NUM(r31) */
723 (op & 0xfc1f0000) == 0xfc1f0000)) /* frsp, fp?,NUM(r31) */
724 {
c5aa993b
JM
725 continue;
726
727 /* Set up frame pointer */
728 }
729 else if (op == 0x603f0000 /* oril r31, r1, 0x0 */
730 || op == 0x7c3f0b78)
731 { /* mr r31, r1 */
732 fdata->frameless = 0;
733 framep = 1;
6f99cb26 734 fdata->alloca_reg = (tdep->ppc_gp0_regnum + 31);
c5aa993b
JM
735 continue;
736
737 /* Another way to set up the frame pointer. */
738 }
739 else if ((op & 0xfc1fffff) == 0x38010000)
740 { /* addi rX, r1, 0x0 */
741 fdata->frameless = 0;
742 framep = 1;
6f99cb26
AC
743 fdata->alloca_reg = (tdep->ppc_gp0_regnum
744 + ((op & ~0x38010000) >> 21));
c5aa993b 745 continue;
c5aa993b 746 }
6be8bc0c
EZ
747 /* AltiVec related instructions. */
748 /* Store the vrsave register (spr 256) in another register for
749 later manipulation, or load a register into the vrsave
750 register. 2 instructions are used: mfvrsave and
751 mtvrsave. They are shorthand notation for mfspr Rn, SPR256
752 and mtspr SPR256, Rn. */
753 /* mfspr Rn SPR256 == 011111 nnnnn 0000001000 01010100110
754 mtspr SPR256 Rn == 011111 nnnnn 0000001000 01110100110 */
755 else if ((op & 0xfc1fffff) == 0x7c0042a6) /* mfvrsave Rn */
756 {
757 vrsave_reg = GET_SRC_REG (op);
758 continue;
759 }
760 else if ((op & 0xfc1fffff) == 0x7c0043a6) /* mtvrsave Rn */
761 {
762 continue;
763 }
764 /* Store the register where vrsave was saved to onto the stack:
765 rS is the register where vrsave was stored in a previous
766 instruction. */
767 /* 100100 sssss 00001 dddddddd dddddddd */
768 else if ((op & 0xfc1f0000) == 0x90010000) /* stw rS, d(r1) */
769 {
770 if (vrsave_reg == GET_SRC_REG (op))
771 {
772 fdata->vrsave_offset = SIGNED_SHORT (op) + offset;
773 vrsave_reg = -1;
774 }
775 continue;
776 }
777 /* Compute the new value of vrsave, by modifying the register
778 where vrsave was saved to. */
779 else if (((op & 0xfc000000) == 0x64000000) /* oris Ra, Rs, UIMM */
780 || ((op & 0xfc000000) == 0x60000000))/* ori Ra, Rs, UIMM */
781 {
782 continue;
783 }
784 /* li r0, SIMM (short for addi r0, 0, SIMM). This is the first
785 in a pair of insns to save the vector registers on the
786 stack. */
787 /* 001110 00000 00000 iiii iiii iiii iiii */
96ff0de4
EZ
788 /* 001110 01110 00000 iiii iiii iiii iiii */
789 else if ((op & 0xffff0000) == 0x38000000 /* li r0, SIMM */
790 || (op & 0xffff0000) == 0x39c00000) /* li r14, SIMM */
6be8bc0c
EZ
791 {
792 li_found_pc = pc;
793 vr_saved_offset = SIGNED_SHORT (op);
794 }
795 /* Store vector register S at (r31+r0) aligned to 16 bytes. */
796 /* 011111 sssss 11111 00000 00111001110 */
797 else if ((op & 0xfc1fffff) == 0x7c1f01ce) /* stvx Vs, R31, R0 */
798 {
799 if (pc == (li_found_pc + 4))
800 {
801 vr_reg = GET_SRC_REG (op);
802 /* If this is the first vector reg to be saved, or if
803 it has a lower number than others previously seen,
804 reupdate the frame info. */
805 if (fdata->saved_vr == -1 || fdata->saved_vr > vr_reg)
806 {
807 fdata->saved_vr = vr_reg;
808 fdata->vr_offset = vr_saved_offset + offset;
809 }
810 vr_saved_offset = -1;
811 vr_reg = -1;
812 li_found_pc = 0;
813 }
814 }
815 /* End AltiVec related instructions. */
96ff0de4
EZ
816
817 /* Start BookE related instructions. */
818 /* Store gen register S at (r31+uimm).
819 Any register less than r13 is volatile, so we don't care. */
820 /* 000100 sssss 11111 iiiii 01100100001 */
821 else if (arch_info->mach == bfd_mach_ppc_e500
822 && (op & 0xfc1f07ff) == 0x101f0321) /* evstdd Rs,uimm(R31) */
823 {
824 if ((op & 0x03e00000) >= 0x01a00000) /* Rs >= r13 */
825 {
826 unsigned int imm;
827 ev_reg = GET_SRC_REG (op);
828 imm = (op >> 11) & 0x1f;
829 ev_offset = imm * 8;
830 /* If this is the first vector reg to be saved, or if
831 it has a lower number than others previously seen,
832 reupdate the frame info. */
833 if (fdata->saved_ev == -1 || fdata->saved_ev > ev_reg)
834 {
835 fdata->saved_ev = ev_reg;
836 fdata->ev_offset = ev_offset + offset;
837 }
838 }
839 continue;
840 }
841 /* Store gen register rS at (r1+rB). */
842 /* 000100 sssss 00001 bbbbb 01100100000 */
843 else if (arch_info->mach == bfd_mach_ppc_e500
844 && (op & 0xffe007ff) == 0x13e00320) /* evstddx RS,R1,Rb */
845 {
846 if (pc == (li_found_pc + 4))
847 {
848 ev_reg = GET_SRC_REG (op);
849 /* If this is the first vector reg to be saved, or if
850 it has a lower number than others previously seen,
851 reupdate the frame info. */
852 /* We know the contents of rB from the previous instruction. */
853 if (fdata->saved_ev == -1 || fdata->saved_ev > ev_reg)
854 {
855 fdata->saved_ev = ev_reg;
856 fdata->ev_offset = vr_saved_offset + offset;
857 }
858 vr_saved_offset = -1;
859 ev_reg = -1;
860 li_found_pc = 0;
861 }
862 continue;
863 }
864 /* Store gen register r31 at (rA+uimm). */
865 /* 000100 11111 aaaaa iiiii 01100100001 */
866 else if (arch_info->mach == bfd_mach_ppc_e500
867 && (op & 0xffe007ff) == 0x13e00321) /* evstdd R31,Ra,UIMM */
868 {
869 /* Wwe know that the source register is 31 already, but
870 it can't hurt to compute it. */
871 ev_reg = GET_SRC_REG (op);
872 ev_offset = ((op >> 11) & 0x1f) * 8;
873 /* If this is the first vector reg to be saved, or if
874 it has a lower number than others previously seen,
875 reupdate the frame info. */
876 if (fdata->saved_ev == -1 || fdata->saved_ev > ev_reg)
877 {
878 fdata->saved_ev = ev_reg;
879 fdata->ev_offset = ev_offset + offset;
880 }
881
882 continue;
883 }
884 /* Store gen register S at (r31+r0).
885 Store param on stack when offset from SP bigger than 4 bytes. */
886 /* 000100 sssss 11111 00000 01100100000 */
887 else if (arch_info->mach == bfd_mach_ppc_e500
888 && (op & 0xfc1fffff) == 0x101f0320) /* evstddx Rs,R31,R0 */
889 {
890 if (pc == (li_found_pc + 4))
891 {
892 if ((op & 0x03e00000) >= 0x01a00000)
893 {
894 ev_reg = GET_SRC_REG (op);
895 /* If this is the first vector reg to be saved, or if
896 it has a lower number than others previously seen,
897 reupdate the frame info. */
898 /* We know the contents of r0 from the previous
899 instruction. */
900 if (fdata->saved_ev == -1 || fdata->saved_ev > ev_reg)
901 {
902 fdata->saved_ev = ev_reg;
903 fdata->ev_offset = vr_saved_offset + offset;
904 }
905 ev_reg = -1;
906 }
907 vr_saved_offset = -1;
908 li_found_pc = 0;
909 continue;
910 }
911 }
912 /* End BookE related instructions. */
913
c5aa993b
JM
914 else
915 {
55d05f3b
KB
916 /* Not a recognized prologue instruction.
917 Handle optimizer code motions into the prologue by continuing
918 the search if we have no valid frame yet or if the return
919 address is not yet saved in the frame. */
920 if (fdata->frameless == 0
921 && (lr_reg == -1 || fdata->nosavedpc == 0))
922 break;
923
924 if (op == 0x4e800020 /* blr */
925 || op == 0x4e800420) /* bctr */
926 /* Do not scan past epilogue in frameless functions or
927 trampolines. */
928 break;
929 if ((op & 0xf4000000) == 0x40000000) /* bxx */
64366f1c 930 /* Never skip branches. */
55d05f3b
KB
931 break;
932
933 if (num_skip_non_prologue_insns++ > max_skip_non_prologue_insns)
934 /* Do not scan too many insns, scanning insns is expensive with
935 remote targets. */
936 break;
937
938 /* Continue scanning. */
939 prev_insn_was_prologue_insn = 0;
940 continue;
c5aa993b 941 }
c906108c
SS
942 }
943
944#if 0
945/* I have problems with skipping over __main() that I need to address
946 * sometime. Previously, I used to use misc_function_vector which
947 * didn't work as well as I wanted to be. -MGO */
948
949 /* If the first thing after skipping a prolog is a branch to a function,
950 this might be a call to an initializer in main(), introduced by gcc2.
64366f1c 951 We'd like to skip over it as well. Fortunately, xlc does some extra
c906108c 952 work before calling a function right after a prologue, thus we can
64366f1c 953 single out such gcc2 behaviour. */
c906108c 954
c906108c 955
c5aa993b
JM
956 if ((op & 0xfc000001) == 0x48000001)
957 { /* bl foo, an initializer function? */
958 op = read_memory_integer (pc + 4, 4);
959
960 if (op == 0x4def7b82)
961 { /* cror 0xf, 0xf, 0xf (nop) */
c906108c 962
64366f1c
EZ
963 /* Check and see if we are in main. If so, skip over this
964 initializer function as well. */
c906108c 965
c5aa993b 966 tmp = find_pc_misc_function (pc);
6314a349
AC
967 if (tmp >= 0
968 && strcmp (misc_function_vector[tmp].name, main_name ()) == 0)
c5aa993b
JM
969 return pc + 8;
970 }
c906108c 971 }
c906108c 972#endif /* 0 */
c5aa993b
JM
973
974 fdata->offset = -fdata->offset;
ddb20c56 975 return last_prologue_pc;
c906108c
SS
976}
977
978
979/*************************************************************************
f6077098 980 Support for creating pushing a dummy frame into the stack, and popping
c906108c
SS
981 frames, etc.
982*************************************************************************/
983
c906108c 984
11269d7e
AC
985/* All the ABI's require 16 byte alignment. */
986static CORE_ADDR
987rs6000_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
988{
989 return (addr & -16);
990}
991
7a78ae4e 992/* Pass the arguments in either registers, or in the stack. In RS/6000,
c906108c
SS
993 the first eight words of the argument list (that might be less than
994 eight parameters if some parameters occupy more than one word) are
7a78ae4e 995 passed in r3..r10 registers. float and double parameters are
64366f1c
EZ
996 passed in fpr's, in addition to that. Rest of the parameters if any
997 are passed in user stack. There might be cases in which half of the
c906108c
SS
998 parameter is copied into registers, the other half is pushed into
999 stack.
1000
7a78ae4e
ND
1001 Stack must be aligned on 64-bit boundaries when synthesizing
1002 function calls.
1003
c906108c
SS
1004 If the function is returning a structure, then the return address is passed
1005 in r3, then the first 7 words of the parameters can be passed in registers,
64366f1c 1006 starting from r4. */
c906108c 1007
7a78ae4e 1008static CORE_ADDR
77b2b6d4
AC
1009rs6000_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
1010 struct regcache *regcache, CORE_ADDR bp_addr,
1011 int nargs, struct value **args, CORE_ADDR sp,
1012 int struct_return, CORE_ADDR struct_addr)
c906108c 1013{
7a41266b 1014 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
c906108c
SS
1015 int ii;
1016 int len = 0;
c5aa993b
JM
1017 int argno; /* current argument number */
1018 int argbytes; /* current argument byte */
1019 char tmp_buffer[50];
1020 int f_argno = 0; /* current floating point argno */
21283beb 1021 int wordsize = gdbarch_tdep (current_gdbarch)->wordsize;
c906108c 1022
ea7c478f 1023 struct value *arg = 0;
c906108c
SS
1024 struct type *type;
1025
1026 CORE_ADDR saved_sp;
1027
64366f1c 1028 /* The first eight words of ther arguments are passed in registers.
7a41266b
AC
1029 Copy them appropriately. */
1030 ii = 0;
1031
1032 /* If the function is returning a `struct', then the first word
1033 (which will be passed in r3) is used for struct return address.
1034 In that case we should advance one word and start from r4
1035 register to copy parameters. */
1036 if (struct_return)
1037 {
1038 regcache_raw_write_unsigned (regcache, tdep->ppc_gp0_regnum + 3,
1039 struct_addr);
1040 ii++;
1041 }
c906108c
SS
1042
1043/*
c5aa993b
JM
1044 effectively indirect call... gcc does...
1045
1046 return_val example( float, int);
1047
1048 eabi:
1049 float in fp0, int in r3
1050 offset of stack on overflow 8/16
1051 for varargs, must go by type.
1052 power open:
1053 float in r3&r4, int in r5
1054 offset of stack on overflow different
1055 both:
1056 return in r3 or f0. If no float, must study how gcc emulates floats;
1057 pay attention to arg promotion.
1058 User may have to cast\args to handle promotion correctly
1059 since gdb won't know if prototype supplied or not.
1060 */
c906108c 1061
c5aa993b
JM
1062 for (argno = 0, argbytes = 0; argno < nargs && ii < 8; ++ii)
1063 {
12c266ea 1064 int reg_size = DEPRECATED_REGISTER_RAW_SIZE (ii + 3);
c5aa993b
JM
1065
1066 arg = args[argno];
1067 type = check_typedef (VALUE_TYPE (arg));
1068 len = TYPE_LENGTH (type);
1069
1070 if (TYPE_CODE (type) == TYPE_CODE_FLT)
1071 {
1072
64366f1c 1073 /* Floating point arguments are passed in fpr's, as well as gpr's.
c5aa993b 1074 There are 13 fpr's reserved for passing parameters. At this point
64366f1c 1075 there is no way we would run out of them. */
c5aa993b
JM
1076
1077 if (len > 8)
1078 printf_unfiltered (
1079 "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
1080
62700349 1081 memcpy (&deprecated_registers[DEPRECATED_REGISTER_BYTE (FP0_REGNUM + 1 + f_argno)],
c5aa993b
JM
1082 VALUE_CONTENTS (arg),
1083 len);
1084 ++f_argno;
1085 }
1086
f6077098 1087 if (len > reg_size)
c5aa993b
JM
1088 {
1089
64366f1c 1090 /* Argument takes more than one register. */
c5aa993b
JM
1091 while (argbytes < len)
1092 {
62700349 1093 memset (&deprecated_registers[DEPRECATED_REGISTER_BYTE (ii + 3)], 0,
524d7c18 1094 reg_size);
62700349 1095 memcpy (&deprecated_registers[DEPRECATED_REGISTER_BYTE (ii + 3)],
c5aa993b 1096 ((char *) VALUE_CONTENTS (arg)) + argbytes,
f6077098
KB
1097 (len - argbytes) > reg_size
1098 ? reg_size : len - argbytes);
1099 ++ii, argbytes += reg_size;
c5aa993b
JM
1100
1101 if (ii >= 8)
1102 goto ran_out_of_registers_for_arguments;
1103 }
1104 argbytes = 0;
1105 --ii;
1106 }
1107 else
64366f1c
EZ
1108 {
1109 /* Argument can fit in one register. No problem. */
d7449b42 1110 int adj = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? reg_size - len : 0;
62700349
AC
1111 memset (&deprecated_registers[DEPRECATED_REGISTER_BYTE (ii + 3)], 0, reg_size);
1112 memcpy ((char *)&deprecated_registers[DEPRECATED_REGISTER_BYTE (ii + 3)] + adj,
f6077098 1113 VALUE_CONTENTS (arg), len);
c5aa993b
JM
1114 }
1115 ++argno;
c906108c 1116 }
c906108c
SS
1117
1118ran_out_of_registers_for_arguments:
1119
7a78ae4e 1120 saved_sp = read_sp ();
cc9836a8 1121
64366f1c 1122 /* Location for 8 parameters are always reserved. */
7a78ae4e 1123 sp -= wordsize * 8;
f6077098 1124
64366f1c 1125 /* Another six words for back chain, TOC register, link register, etc. */
7a78ae4e 1126 sp -= wordsize * 6;
f6077098 1127
64366f1c 1128 /* Stack pointer must be quadword aligned. */
7a78ae4e 1129 sp &= -16;
c906108c 1130
64366f1c
EZ
1131 /* If there are more arguments, allocate space for them in
1132 the stack, then push them starting from the ninth one. */
c906108c 1133
c5aa993b
JM
1134 if ((argno < nargs) || argbytes)
1135 {
1136 int space = 0, jj;
c906108c 1137
c5aa993b
JM
1138 if (argbytes)
1139 {
1140 space += ((len - argbytes + 3) & -4);
1141 jj = argno + 1;
1142 }
1143 else
1144 jj = argno;
c906108c 1145
c5aa993b
JM
1146 for (; jj < nargs; ++jj)
1147 {
ea7c478f 1148 struct value *val = args[jj];
c5aa993b
JM
1149 space += ((TYPE_LENGTH (VALUE_TYPE (val))) + 3) & -4;
1150 }
c906108c 1151
64366f1c 1152 /* Add location required for the rest of the parameters. */
f6077098 1153 space = (space + 15) & -16;
c5aa993b 1154 sp -= space;
c906108c 1155
7aea86e6
AC
1156 /* This is another instance we need to be concerned about
1157 securing our stack space. If we write anything underneath %sp
1158 (r1), we might conflict with the kernel who thinks he is free
1159 to use this area. So, update %sp first before doing anything
1160 else. */
1161
1162 regcache_raw_write_signed (regcache, SP_REGNUM, sp);
1163
64366f1c
EZ
1164 /* If the last argument copied into the registers didn't fit there
1165 completely, push the rest of it into stack. */
c906108c 1166
c5aa993b
JM
1167 if (argbytes)
1168 {
1169 write_memory (sp + 24 + (ii * 4),
1170 ((char *) VALUE_CONTENTS (arg)) + argbytes,
1171 len - argbytes);
1172 ++argno;
1173 ii += ((len - argbytes + 3) & -4) / 4;
1174 }
c906108c 1175
64366f1c 1176 /* Push the rest of the arguments into stack. */
c5aa993b
JM
1177 for (; argno < nargs; ++argno)
1178 {
c906108c 1179
c5aa993b
JM
1180 arg = args[argno];
1181 type = check_typedef (VALUE_TYPE (arg));
1182 len = TYPE_LENGTH (type);
c906108c
SS
1183
1184
64366f1c
EZ
1185 /* Float types should be passed in fpr's, as well as in the
1186 stack. */
c5aa993b
JM
1187 if (TYPE_CODE (type) == TYPE_CODE_FLT && f_argno < 13)
1188 {
c906108c 1189
c5aa993b
JM
1190 if (len > 8)
1191 printf_unfiltered (
1192 "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
c906108c 1193
62700349 1194 memcpy (&deprecated_registers[DEPRECATED_REGISTER_BYTE (FP0_REGNUM + 1 + f_argno)],
c5aa993b
JM
1195 VALUE_CONTENTS (arg),
1196 len);
1197 ++f_argno;
1198 }
c906108c 1199
c5aa993b
JM
1200 write_memory (sp + 24 + (ii * 4), (char *) VALUE_CONTENTS (arg), len);
1201 ii += ((len + 3) & -4) / 4;
1202 }
c906108c 1203 }
c906108c 1204
69517000 1205 /* Set the stack pointer. According to the ABI, the SP is meant to
7aea86e6
AC
1206 be set _before_ the corresponding stack space is used. On AIX,
1207 this even applies when the target has been completely stopped!
1208 Not doing this can lead to conflicts with the kernel which thinks
1209 that it still has control over this not-yet-allocated stack
1210 region. */
33a7c2fc
AC
1211 regcache_raw_write_signed (regcache, SP_REGNUM, sp);
1212
7aea86e6
AC
1213 /* Set back chain properly. */
1214 store_unsigned_integer (tmp_buffer, 4, saved_sp);
1215 write_memory (sp, tmp_buffer, 4);
1216
e56a0ecc
AC
1217 /* Point the inferior function call's return address at the dummy's
1218 breakpoint. */
1219 regcache_raw_write_signed (regcache, tdep->ppc_lr_regnum, bp_addr);
1220
794a477a
AC
1221 /* Set the TOC register, get the value from the objfile reader
1222 which, in turn, gets it from the VMAP table. */
1223 if (rs6000_find_toc_address_hook != NULL)
1224 {
1225 CORE_ADDR tocvalue = (*rs6000_find_toc_address_hook) (func_addr);
1226 regcache_raw_write_signed (regcache, tdep->ppc_toc_regnum, tocvalue);
1227 }
1228
c906108c
SS
1229 target_store_registers (-1);
1230 return sp;
1231}
c906108c 1232
b9ff3018
AC
1233/* PowerOpen always puts structures in memory. Vectors, which were
1234 added later, do get returned in a register though. */
1235
1236static int
1237rs6000_use_struct_convention (int gcc_p, struct type *value_type)
1238{
1239 if ((TYPE_LENGTH (value_type) == 16 || TYPE_LENGTH (value_type) == 8)
1240 && TYPE_VECTOR (value_type))
1241 return 0;
1242 return 1;
1243}
1244
7a78ae4e
ND
1245static void
1246rs6000_extract_return_value (struct type *valtype, char *regbuf, char *valbuf)
c906108c
SS
1247{
1248 int offset = 0;
ace1378a 1249 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
c906108c 1250
c5aa993b
JM
1251 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1252 {
c906108c 1253
c5aa993b
JM
1254 double dd;
1255 float ff;
1256 /* floats and doubles are returned in fpr1. fpr's have a size of 8 bytes.
1257 We need to truncate the return value into float size (4 byte) if
64366f1c 1258 necessary. */
c906108c 1259
c5aa993b
JM
1260 if (TYPE_LENGTH (valtype) > 4) /* this is a double */
1261 memcpy (valbuf,
62700349 1262 &regbuf[DEPRECATED_REGISTER_BYTE (FP0_REGNUM + 1)],
c5aa993b
JM
1263 TYPE_LENGTH (valtype));
1264 else
1265 { /* float */
62700349 1266 memcpy (&dd, &regbuf[DEPRECATED_REGISTER_BYTE (FP0_REGNUM + 1)], 8);
c5aa993b
JM
1267 ff = (float) dd;
1268 memcpy (valbuf, &ff, sizeof (float));
1269 }
1270 }
ace1378a
EZ
1271 else if (TYPE_CODE (valtype) == TYPE_CODE_ARRAY
1272 && TYPE_LENGTH (valtype) == 16
1273 && TYPE_VECTOR (valtype))
1274 {
62700349 1275 memcpy (valbuf, regbuf + DEPRECATED_REGISTER_BYTE (tdep->ppc_vr0_regnum + 2),
ace1378a
EZ
1276 TYPE_LENGTH (valtype));
1277 }
c5aa993b
JM
1278 else
1279 {
1280 /* return value is copied starting from r3. */
d7449b42 1281 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG
12c266ea
AC
1282 && TYPE_LENGTH (valtype) < DEPRECATED_REGISTER_RAW_SIZE (3))
1283 offset = DEPRECATED_REGISTER_RAW_SIZE (3) - TYPE_LENGTH (valtype);
c5aa993b
JM
1284
1285 memcpy (valbuf,
62700349 1286 regbuf + DEPRECATED_REGISTER_BYTE (3) + offset,
c906108c 1287 TYPE_LENGTH (valtype));
c906108c 1288 }
c906108c
SS
1289}
1290
977adac5
ND
1291/* Return whether handle_inferior_event() should proceed through code
1292 starting at PC in function NAME when stepping.
1293
1294 The AIX -bbigtoc linker option generates functions @FIX0, @FIX1, etc. to
1295 handle memory references that are too distant to fit in instructions
1296 generated by the compiler. For example, if 'foo' in the following
1297 instruction:
1298
1299 lwz r9,foo(r2)
1300
1301 is greater than 32767, the linker might replace the lwz with a branch to
1302 somewhere in @FIX1 that does the load in 2 instructions and then branches
1303 back to where execution should continue.
1304
1305 GDB should silently step over @FIX code, just like AIX dbx does.
1306 Unfortunately, the linker uses the "b" instruction for the branches,
1307 meaning that the link register doesn't get set. Therefore, GDB's usual
1308 step_over_function() mechanism won't work.
1309
1310 Instead, use the IN_SOLIB_RETURN_TRAMPOLINE and SKIP_TRAMPOLINE_CODE hooks
1311 in handle_inferior_event() to skip past @FIX code. */
1312
1313int
1314rs6000_in_solib_return_trampoline (CORE_ADDR pc, char *name)
1315{
1316 return name && !strncmp (name, "@FIX", 4);
1317}
1318
1319/* Skip code that the user doesn't want to see when stepping:
1320
1321 1. Indirect function calls use a piece of trampoline code to do context
1322 switching, i.e. to set the new TOC table. Skip such code if we are on
1323 its first instruction (as when we have single-stepped to here).
1324
1325 2. Skip shared library trampoline code (which is different from
c906108c 1326 indirect function call trampolines).
977adac5
ND
1327
1328 3. Skip bigtoc fixup code.
1329
c906108c 1330 Result is desired PC to step until, or NULL if we are not in
977adac5 1331 code that should be skipped. */
c906108c
SS
1332
1333CORE_ADDR
7a78ae4e 1334rs6000_skip_trampoline_code (CORE_ADDR pc)
c906108c 1335{
52f0bd74 1336 unsigned int ii, op;
977adac5 1337 int rel;
c906108c 1338 CORE_ADDR solib_target_pc;
977adac5 1339 struct minimal_symbol *msymbol;
c906108c 1340
c5aa993b
JM
1341 static unsigned trampoline_code[] =
1342 {
1343 0x800b0000, /* l r0,0x0(r11) */
1344 0x90410014, /* st r2,0x14(r1) */
1345 0x7c0903a6, /* mtctr r0 */
1346 0x804b0004, /* l r2,0x4(r11) */
1347 0x816b0008, /* l r11,0x8(r11) */
1348 0x4e800420, /* bctr */
1349 0x4e800020, /* br */
1350 0
c906108c
SS
1351 };
1352
977adac5
ND
1353 /* Check for bigtoc fixup code. */
1354 msymbol = lookup_minimal_symbol_by_pc (pc);
22abf04a 1355 if (msymbol && rs6000_in_solib_return_trampoline (pc, DEPRECATED_SYMBOL_NAME (msymbol)))
977adac5
ND
1356 {
1357 /* Double-check that the third instruction from PC is relative "b". */
1358 op = read_memory_integer (pc + 8, 4);
1359 if ((op & 0xfc000003) == 0x48000000)
1360 {
1361 /* Extract bits 6-29 as a signed 24-bit relative word address and
1362 add it to the containing PC. */
1363 rel = ((int)(op << 6) >> 6);
1364 return pc + 8 + rel;
1365 }
1366 }
1367
c906108c
SS
1368 /* If pc is in a shared library trampoline, return its target. */
1369 solib_target_pc = find_solib_trampoline_target (pc);
1370 if (solib_target_pc)
1371 return solib_target_pc;
1372
c5aa993b
JM
1373 for (ii = 0; trampoline_code[ii]; ++ii)
1374 {
1375 op = read_memory_integer (pc + (ii * 4), 4);
1376 if (op != trampoline_code[ii])
1377 return 0;
1378 }
1379 ii = read_register (11); /* r11 holds destination addr */
21283beb 1380 pc = read_memory_addr (ii, gdbarch_tdep (current_gdbarch)->wordsize); /* (r11) value */
c906108c
SS
1381 return pc;
1382}
1383
7a78ae4e 1384/* Return the size of register REG when words are WORDSIZE bytes long. If REG
64366f1c 1385 isn't available with that word size, return 0. */
7a78ae4e
ND
1386
1387static int
1388regsize (const struct reg *reg, int wordsize)
1389{
1390 return wordsize == 8 ? reg->sz64 : reg->sz32;
1391}
1392
1393/* Return the name of register number N, or null if no such register exists
64366f1c 1394 in the current architecture. */
7a78ae4e 1395
fa88f677 1396static const char *
7a78ae4e
ND
1397rs6000_register_name (int n)
1398{
21283beb 1399 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
7a78ae4e
ND
1400 const struct reg *reg = tdep->regs + n;
1401
1402 if (!regsize (reg, tdep->wordsize))
1403 return NULL;
1404 return reg->name;
1405}
1406
1407/* Index within `registers' of the first byte of the space for
1408 register N. */
1409
1410static int
1411rs6000_register_byte (int n)
1412{
21283beb 1413 return gdbarch_tdep (current_gdbarch)->regoff[n];
7a78ae4e
ND
1414}
1415
1416/* Return the number of bytes of storage in the actual machine representation
64366f1c 1417 for register N if that register is available, else return 0. */
7a78ae4e
ND
1418
1419static int
1420rs6000_register_raw_size (int n)
1421{
21283beb 1422 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
7a78ae4e
ND
1423 const struct reg *reg = tdep->regs + n;
1424 return regsize (reg, tdep->wordsize);
1425}
1426
7a78ae4e
ND
1427/* Return the GDB type object for the "standard" data type
1428 of data in register N. */
1429
1430static struct type *
fba45db2 1431rs6000_register_virtual_type (int n)
7a78ae4e 1432{
21283beb 1433 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
7a78ae4e
ND
1434 const struct reg *reg = tdep->regs + n;
1435
1fcc0bb8
EZ
1436 if (reg->fpr)
1437 return builtin_type_double;
1438 else
1439 {
1440 int size = regsize (reg, tdep->wordsize);
1441 switch (size)
1442 {
449a5da4
AC
1443 case 0:
1444 return builtin_type_int0;
1445 case 4:
ed6edd9b 1446 return builtin_type_uint32;
1fcc0bb8 1447 case 8:
c8001721
EZ
1448 if (tdep->ppc_ev0_regnum <= n && n <= tdep->ppc_ev31_regnum)
1449 return builtin_type_vec64;
1450 else
ed6edd9b 1451 return builtin_type_uint64;
1fcc0bb8
EZ
1452 break;
1453 case 16:
08cf96df 1454 return builtin_type_vec128;
1fcc0bb8
EZ
1455 break;
1456 default:
449a5da4
AC
1457 internal_error (__FILE__, __LINE__, "Register %d size %d unknown",
1458 n, size);
1fcc0bb8
EZ
1459 }
1460 }
7a78ae4e
ND
1461}
1462
7a78ae4e
ND
1463/* Return whether register N requires conversion when moving from raw format
1464 to virtual format.
1465
1466 The register format for RS/6000 floating point registers is always
64366f1c 1467 double, we need a conversion if the memory format is float. */
7a78ae4e
ND
1468
1469static int
1470rs6000_register_convertible (int n)
1471{
21283beb 1472 const struct reg *reg = gdbarch_tdep (current_gdbarch)->regs + n;
7a78ae4e
ND
1473 return reg->fpr;
1474}
1475
1476/* Convert data from raw format for register N in buffer FROM
64366f1c 1477 to virtual format with type TYPE in buffer TO. */
7a78ae4e
ND
1478
1479static void
1480rs6000_register_convert_to_virtual (int n, struct type *type,
1481 char *from, char *to)
1482{
12c266ea 1483 if (TYPE_LENGTH (type) != DEPRECATED_REGISTER_RAW_SIZE (n))
7a292a7a 1484 {
12c266ea 1485 double val = deprecated_extract_floating (from, DEPRECATED_REGISTER_RAW_SIZE (n));
f1908289 1486 deprecated_store_floating (to, TYPE_LENGTH (type), val);
7a78ae4e
ND
1487 }
1488 else
12c266ea 1489 memcpy (to, from, DEPRECATED_REGISTER_RAW_SIZE (n));
7a78ae4e
ND
1490}
1491
1492/* Convert data from virtual format with type TYPE in buffer FROM
64366f1c 1493 to raw format for register N in buffer TO. */
7a292a7a 1494
7a78ae4e
ND
1495static void
1496rs6000_register_convert_to_raw (struct type *type, int n,
781a750d 1497 const char *from, char *to)
7a78ae4e 1498{
12c266ea 1499 if (TYPE_LENGTH (type) != DEPRECATED_REGISTER_RAW_SIZE (n))
7a78ae4e 1500 {
f1908289 1501 double val = deprecated_extract_floating (from, TYPE_LENGTH (type));
12c266ea 1502 deprecated_store_floating (to, DEPRECATED_REGISTER_RAW_SIZE (n), val);
7a292a7a 1503 }
7a78ae4e 1504 else
12c266ea 1505 memcpy (to, from, DEPRECATED_REGISTER_RAW_SIZE (n));
7a78ae4e 1506}
c906108c 1507
c8001721
EZ
1508static void
1509e500_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
1510 int reg_nr, void *buffer)
1511{
1512 int base_regnum;
1513 int offset = 0;
d9d9c31f 1514 char temp_buffer[MAX_REGISTER_SIZE];
c8001721
EZ
1515 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1516
1517 if (reg_nr >= tdep->ppc_gp0_regnum
1518 && reg_nr <= tdep->ppc_gplast_regnum)
1519 {
1520 base_regnum = reg_nr - tdep->ppc_gp0_regnum + tdep->ppc_ev0_regnum;
1521
1522 /* Build the value in the provided buffer. */
1523 /* Read the raw register of which this one is the lower portion. */
1524 regcache_raw_read (regcache, base_regnum, temp_buffer);
1525 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1526 offset = 4;
1527 memcpy ((char *) buffer, temp_buffer + offset, 4);
1528 }
1529}
1530
1531static void
1532e500_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
1533 int reg_nr, const void *buffer)
1534{
1535 int base_regnum;
1536 int offset = 0;
d9d9c31f 1537 char temp_buffer[MAX_REGISTER_SIZE];
c8001721
EZ
1538 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1539
1540 if (reg_nr >= tdep->ppc_gp0_regnum
1541 && reg_nr <= tdep->ppc_gplast_regnum)
1542 {
1543 base_regnum = reg_nr - tdep->ppc_gp0_regnum + tdep->ppc_ev0_regnum;
1544 /* reg_nr is 32 bit here, and base_regnum is 64 bits. */
1545 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1546 offset = 4;
1547
1548 /* Let's read the value of the base register into a temporary
1549 buffer, so that overwriting the last four bytes with the new
1550 value of the pseudo will leave the upper 4 bytes unchanged. */
1551 regcache_raw_read (regcache, base_regnum, temp_buffer);
1552
1553 /* Write as an 8 byte quantity. */
1554 memcpy (temp_buffer + offset, (char *) buffer, 4);
1555 regcache_raw_write (regcache, base_regnum, temp_buffer);
1556 }
1557}
1558
9f744501
JB
1559/* Convert a dbx stab or Dwarf 2 register number (from `r'
1560 declaration) to a gdb REGNUM. */
c8001721 1561static int
9f744501 1562rs6000_dwarf2_stab_reg_to_regnum (int num)
c8001721 1563{
9f744501 1564 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
c8001721 1565
9f744501
JB
1566 if (0 <= num && num <= 31)
1567 return tdep->ppc_gp0_regnum + num;
1568 else if (32 <= num && num <= 63)
1569 return FP0_REGNUM + (num - 32);
1570 else if (1200 <= num && num < 1200 + 32)
1571 return tdep->ppc_ev0_regnum + (num - 1200);
1572 else
1573 switch (num)
1574 {
1575 case 64:
1576 return tdep->ppc_mq_regnum;
1577 case 65:
1578 return tdep->ppc_lr_regnum;
1579 case 66:
1580 return tdep->ppc_ctr_regnum;
1581 case 76:
1582 return tdep->ppc_xer_regnum;
1583 case 109:
1584 return tdep->ppc_vrsave_regnum;
1585 default:
1586 return num;
1587 }
1588
1589 /* FIXME: jimb/2004-03-28: Doesn't something need to be done here
1590 for the Altivec registers, too?
1591
1592 Looking at GCC, the headers in config/rs6000 never define a
1593 DBX_REGISTER_NUMBER macro, so the debug info uses the same
1594 numbers GCC does internally. Then, looking at the REGISTER_NAMES
1595 macro defined in config/rs6000/rs6000.h, it seems that GCC gives
1596 v0 -- v31 the numbers 77 -- 108. But we number them 119 -- 150.
1597
1598 I don't have a way to test this ready to hand, but I noticed it
1599 and thought I should include a note. */
2188cbdd
EZ
1600}
1601
7a78ae4e
ND
1602static void
1603rs6000_store_return_value (struct type *type, char *valbuf)
1604{
ace1378a
EZ
1605 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1606
7a78ae4e
ND
1607 if (TYPE_CODE (type) == TYPE_CODE_FLT)
1608
1609 /* Floating point values are returned starting from FPR1 and up.
1610 Say a double_double_double type could be returned in
64366f1c 1611 FPR1/FPR2/FPR3 triple. */
7a78ae4e 1612
62700349 1613 deprecated_write_register_bytes (DEPRECATED_REGISTER_BYTE (FP0_REGNUM + 1), valbuf,
73937e03 1614 TYPE_LENGTH (type));
ace1378a
EZ
1615 else if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
1616 {
1617 if (TYPE_LENGTH (type) == 16
1618 && TYPE_VECTOR (type))
62700349 1619 deprecated_write_register_bytes (DEPRECATED_REGISTER_BYTE (tdep->ppc_vr0_regnum + 2),
73937e03 1620 valbuf, TYPE_LENGTH (type));
ace1378a 1621 }
7a78ae4e 1622 else
64366f1c 1623 /* Everything else is returned in GPR3 and up. */
62700349 1624 deprecated_write_register_bytes (DEPRECATED_REGISTER_BYTE (gdbarch_tdep (current_gdbarch)->ppc_gp0_regnum + 3),
73937e03 1625 valbuf, TYPE_LENGTH (type));
7a78ae4e
ND
1626}
1627
1628/* Extract from an array REGBUF containing the (raw) register state
1629 the address in which a function should return its structure value,
1630 as a CORE_ADDR (or an expression that can be used as one). */
1631
1632static CORE_ADDR
11269d7e
AC
1633rs6000_extract_struct_value_address (struct regcache *regcache)
1634{
1635 /* FIXME: cagney/2002-09-26: PR gdb/724: When making an inferior
1636 function call GDB knows the address of the struct return value
1637 and hence, should not need to call this function. Unfortunately,
e8a8712a
AC
1638 the current call_function_by_hand() code only saves the most
1639 recent struct address leading to occasional calls. The code
1640 should instead maintain a stack of such addresses (in the dummy
1641 frame object). */
11269d7e
AC
1642 /* NOTE: cagney/2002-09-26: Return 0 which indicates that we've
1643 really got no idea where the return value is being stored. While
1644 r3, on function entry, contained the address it will have since
1645 been reused (scratch) and hence wouldn't be valid */
1646 return 0;
7a78ae4e
ND
1647}
1648
64366f1c 1649/* Hook called when a new child process is started. */
7a78ae4e
ND
1650
1651void
1652rs6000_create_inferior (int pid)
1653{
1654 if (rs6000_set_host_arch_hook)
1655 rs6000_set_host_arch_hook (pid);
c906108c
SS
1656}
1657\f
e2d0e7eb 1658/* Support for CONVERT_FROM_FUNC_PTR_ADDR (ARCH, ADDR, TARG).
7a78ae4e
ND
1659
1660 Usually a function pointer's representation is simply the address
1661 of the function. On the RS/6000 however, a function pointer is
1662 represented by a pointer to a TOC entry. This TOC entry contains
1663 three words, the first word is the address of the function, the
1664 second word is the TOC pointer (r2), and the third word is the
1665 static chain value. Throughout GDB it is currently assumed that a
1666 function pointer contains the address of the function, which is not
1667 easy to fix. In addition, the conversion of a function address to
1668 a function pointer would require allocation of a TOC entry in the
1669 inferior's memory space, with all its drawbacks. To be able to
1670 call C++ virtual methods in the inferior (which are called via
f517ea4e 1671 function pointers), find_function_addr uses this function to get the
7a78ae4e
ND
1672 function address from a function pointer. */
1673
f517ea4e
PS
1674/* Return real function address if ADDR (a function pointer) is in the data
1675 space and is therefore a special function pointer. */
c906108c 1676
b9362cc7 1677static CORE_ADDR
e2d0e7eb
AC
1678rs6000_convert_from_func_ptr_addr (struct gdbarch *gdbarch,
1679 CORE_ADDR addr,
1680 struct target_ops *targ)
c906108c
SS
1681{
1682 struct obj_section *s;
1683
1684 s = find_pc_section (addr);
1685 if (s && s->the_bfd_section->flags & SEC_CODE)
7a78ae4e 1686 return addr;
c906108c 1687
7a78ae4e 1688 /* ADDR is in the data space, so it's a special function pointer. */
21283beb 1689 return read_memory_addr (addr, gdbarch_tdep (current_gdbarch)->wordsize);
c906108c 1690}
c906108c 1691\f
c5aa993b 1692
7a78ae4e 1693/* Handling the various POWER/PowerPC variants. */
c906108c
SS
1694
1695
7a78ae4e
ND
1696/* The arrays here called registers_MUMBLE hold information about available
1697 registers.
c906108c
SS
1698
1699 For each family of PPC variants, I've tried to isolate out the
1700 common registers and put them up front, so that as long as you get
1701 the general family right, GDB will correctly identify the registers
1702 common to that family. The common register sets are:
1703
1704 For the 60x family: hid0 hid1 iabr dabr pir
1705
1706 For the 505 and 860 family: eie eid nri
1707
1708 For the 403 and 403GC: icdbdr esr dear evpr cdbcr tsr tcr pit tbhi
c5aa993b
JM
1709 tblo srr2 srr3 dbsr dbcr iac1 iac2 dac1 dac2 dccr iccr pbl1
1710 pbu1 pbl2 pbu2
c906108c
SS
1711
1712 Most of these register groups aren't anything formal. I arrived at
1713 them by looking at the registers that occurred in more than one
6f5987a6
KB
1714 processor.
1715
1716 Note: kevinb/2002-04-30: Support for the fpscr register was added
1717 during April, 2002. Slot 70 is being used for PowerPC and slot 71
1718 for Power. For PowerPC, slot 70 was unused and was already in the
1719 PPC_UISA_SPRS which is ideally where fpscr should go. For Power,
1720 slot 70 was being used for "mq", so the next available slot (71)
1721 was chosen. It would have been nice to be able to make the
1722 register numbers the same across processor cores, but this wasn't
1723 possible without either 1) renumbering some registers for some
1724 processors or 2) assigning fpscr to a really high slot that's
1725 larger than any current register number. Doing (1) is bad because
1726 existing stubs would break. Doing (2) is undesirable because it
1727 would introduce a really large gap between fpscr and the rest of
1728 the registers for most processors. */
7a78ae4e 1729
64366f1c 1730/* Convenience macros for populating register arrays. */
7a78ae4e 1731
64366f1c 1732/* Within another macro, convert S to a string. */
7a78ae4e
ND
1733
1734#define STR(s) #s
1735
1736/* Return a struct reg defining register NAME that's 32 bits on 32-bit systems
64366f1c 1737 and 64 bits on 64-bit systems. */
489461e2 1738#define R(name) { STR(name), 4, 8, 0, 0 }
7a78ae4e
ND
1739
1740/* Return a struct reg defining register NAME that's 32 bits on all
64366f1c 1741 systems. */
489461e2 1742#define R4(name) { STR(name), 4, 4, 0, 0 }
7a78ae4e
ND
1743
1744/* Return a struct reg defining register NAME that's 64 bits on all
64366f1c 1745 systems. */
489461e2 1746#define R8(name) { STR(name), 8, 8, 0, 0 }
7a78ae4e 1747
1fcc0bb8 1748/* Return a struct reg defining register NAME that's 128 bits on all
64366f1c 1749 systems. */
489461e2 1750#define R16(name) { STR(name), 16, 16, 0, 0 }
1fcc0bb8 1751
64366f1c 1752/* Return a struct reg defining floating-point register NAME. */
489461e2
EZ
1753#define F(name) { STR(name), 8, 8, 1, 0 }
1754
64366f1c 1755/* Return a struct reg defining a pseudo register NAME. */
489461e2 1756#define P(name) { STR(name), 4, 8, 0, 1}
7a78ae4e
ND
1757
1758/* Return a struct reg defining register NAME that's 32 bits on 32-bit
64366f1c 1759 systems and that doesn't exist on 64-bit systems. */
489461e2 1760#define R32(name) { STR(name), 4, 0, 0, 0 }
7a78ae4e
ND
1761
1762/* Return a struct reg defining register NAME that's 64 bits on 64-bit
64366f1c 1763 systems and that doesn't exist on 32-bit systems. */
489461e2 1764#define R64(name) { STR(name), 0, 8, 0, 0 }
7a78ae4e 1765
64366f1c 1766/* Return a struct reg placeholder for a register that doesn't exist. */
489461e2 1767#define R0 { 0, 0, 0, 0, 0 }
7a78ae4e
ND
1768
1769/* UISA registers common across all architectures, including POWER. */
1770
1771#define COMMON_UISA_REGS \
1772 /* 0 */ R(r0), R(r1), R(r2), R(r3), R(r4), R(r5), R(r6), R(r7), \
1773 /* 8 */ R(r8), R(r9), R(r10),R(r11),R(r12),R(r13),R(r14),R(r15), \
1774 /* 16 */ R(r16),R(r17),R(r18),R(r19),R(r20),R(r21),R(r22),R(r23), \
1775 /* 24 */ R(r24),R(r25),R(r26),R(r27),R(r28),R(r29),R(r30),R(r31), \
1776 /* 32 */ F(f0), F(f1), F(f2), F(f3), F(f4), F(f5), F(f6), F(f7), \
1777 /* 40 */ F(f8), F(f9), F(f10),F(f11),F(f12),F(f13),F(f14),F(f15), \
1778 /* 48 */ F(f16),F(f17),F(f18),F(f19),F(f20),F(f21),F(f22),F(f23), \
1779 /* 56 */ F(f24),F(f25),F(f26),F(f27),F(f28),F(f29),F(f30),F(f31), \
1780 /* 64 */ R(pc), R(ps)
1781
ebeac11a
EZ
1782#define COMMON_UISA_NOFP_REGS \
1783 /* 0 */ R(r0), R(r1), R(r2), R(r3), R(r4), R(r5), R(r6), R(r7), \
1784 /* 8 */ R(r8), R(r9), R(r10),R(r11),R(r12),R(r13),R(r14),R(r15), \
1785 /* 16 */ R(r16),R(r17),R(r18),R(r19),R(r20),R(r21),R(r22),R(r23), \
1786 /* 24 */ R(r24),R(r25),R(r26),R(r27),R(r28),R(r29),R(r30),R(r31), \
1787 /* 32 */ R0, R0, R0, R0, R0, R0, R0, R0, \
1788 /* 40 */ R0, R0, R0, R0, R0, R0, R0, R0, \
1789 /* 48 */ R0, R0, R0, R0, R0, R0, R0, R0, \
1790 /* 56 */ R0, R0, R0, R0, R0, R0, R0, R0, \
1791 /* 64 */ R(pc), R(ps)
1792
7a78ae4e
ND
1793/* UISA-level SPRs for PowerPC. */
1794#define PPC_UISA_SPRS \
e3f36dbd 1795 /* 66 */ R4(cr), R(lr), R(ctr), R4(xer), R4(fpscr)
7a78ae4e 1796
c8001721
EZ
1797/* UISA-level SPRs for PowerPC without floating point support. */
1798#define PPC_UISA_NOFP_SPRS \
1799 /* 66 */ R4(cr), R(lr), R(ctr), R4(xer), R0
1800
7a78ae4e
ND
1801/* Segment registers, for PowerPC. */
1802#define PPC_SEGMENT_REGS \
1803 /* 71 */ R32(sr0), R32(sr1), R32(sr2), R32(sr3), \
1804 /* 75 */ R32(sr4), R32(sr5), R32(sr6), R32(sr7), \
1805 /* 79 */ R32(sr8), R32(sr9), R32(sr10), R32(sr11), \
1806 /* 83 */ R32(sr12), R32(sr13), R32(sr14), R32(sr15)
1807
1808/* OEA SPRs for PowerPC. */
1809#define PPC_OEA_SPRS \
1810 /* 87 */ R4(pvr), \
1811 /* 88 */ R(ibat0u), R(ibat0l), R(ibat1u), R(ibat1l), \
1812 /* 92 */ R(ibat2u), R(ibat2l), R(ibat3u), R(ibat3l), \
1813 /* 96 */ R(dbat0u), R(dbat0l), R(dbat1u), R(dbat1l), \
1814 /* 100 */ R(dbat2u), R(dbat2l), R(dbat3u), R(dbat3l), \
1815 /* 104 */ R(sdr1), R64(asr), R(dar), R4(dsisr), \
1816 /* 108 */ R(sprg0), R(sprg1), R(sprg2), R(sprg3), \
1817 /* 112 */ R(srr0), R(srr1), R(tbl), R(tbu), \
1818 /* 116 */ R4(dec), R(dabr), R4(ear)
1819
64366f1c 1820/* AltiVec registers. */
1fcc0bb8
EZ
1821#define PPC_ALTIVEC_REGS \
1822 /*119*/R16(vr0), R16(vr1), R16(vr2), R16(vr3), R16(vr4), R16(vr5), R16(vr6), R16(vr7), \
1823 /*127*/R16(vr8), R16(vr9), R16(vr10),R16(vr11),R16(vr12),R16(vr13),R16(vr14),R16(vr15), \
1824 /*135*/R16(vr16),R16(vr17),R16(vr18),R16(vr19),R16(vr20),R16(vr21),R16(vr22),R16(vr23), \
1825 /*143*/R16(vr24),R16(vr25),R16(vr26),R16(vr27),R16(vr28),R16(vr29),R16(vr30),R16(vr31), \
1826 /*151*/R4(vscr), R4(vrsave)
1827
c8001721
EZ
1828/* Vectors of hi-lo general purpose registers. */
1829#define PPC_EV_REGS \
1830 /* 0*/R8(ev0), R8(ev1), R8(ev2), R8(ev3), R8(ev4), R8(ev5), R8(ev6), R8(ev7), \
1831 /* 8*/R8(ev8), R8(ev9), R8(ev10),R8(ev11),R8(ev12),R8(ev13),R8(ev14),R8(ev15), \
1832 /*16*/R8(ev16),R8(ev17),R8(ev18),R8(ev19),R8(ev20),R8(ev21),R8(ev22),R8(ev23), \
1833 /*24*/R8(ev24),R8(ev25),R8(ev26),R8(ev27),R8(ev28),R8(ev29),R8(ev30),R8(ev31)
1834
1835/* Lower half of the EV registers. */
1836#define PPC_GPRS_PSEUDO_REGS \
1837 /* 0 */ P(r0), P(r1), P(r2), P(r3), P(r4), P(r5), P(r6), P(r7), \
1838 /* 8 */ P(r8), P(r9), P(r10),P(r11),P(r12),P(r13),P(r14),P(r15), \
1839 /* 16 */ P(r16),P(r17),P(r18),P(r19),P(r20),P(r21),P(r22),P(r23), \
338ef23d 1840 /* 24 */ P(r24),P(r25),P(r26),P(r27),P(r28),P(r29),P(r30),P(r31)
c8001721 1841
7a78ae4e 1842/* IBM POWER (pre-PowerPC) architecture, user-level view. We only cover
64366f1c 1843 user-level SPR's. */
7a78ae4e 1844static const struct reg registers_power[] =
c906108c 1845{
7a78ae4e 1846 COMMON_UISA_REGS,
e3f36dbd
KB
1847 /* 66 */ R4(cnd), R(lr), R(cnt), R4(xer), R4(mq),
1848 /* 71 */ R4(fpscr)
c906108c
SS
1849};
1850
7a78ae4e 1851/* PowerPC UISA - a PPC processor as viewed by user-level code. A UISA-only
64366f1c 1852 view of the PowerPC. */
7a78ae4e 1853static const struct reg registers_powerpc[] =
c906108c 1854{
7a78ae4e 1855 COMMON_UISA_REGS,
1fcc0bb8
EZ
1856 PPC_UISA_SPRS,
1857 PPC_ALTIVEC_REGS
c906108c
SS
1858};
1859
ebeac11a
EZ
1860/* PowerPC UISA - a PPC processor as viewed by user-level
1861 code, but without floating point registers. */
1862static const struct reg registers_powerpc_nofp[] =
1863{
1864 COMMON_UISA_NOFP_REGS,
1865 PPC_UISA_SPRS
1866};
1867
64366f1c 1868/* IBM PowerPC 403. */
7a78ae4e 1869static const struct reg registers_403[] =
c5aa993b 1870{
7a78ae4e
ND
1871 COMMON_UISA_REGS,
1872 PPC_UISA_SPRS,
1873 PPC_SEGMENT_REGS,
1874 PPC_OEA_SPRS,
1875 /* 119 */ R(icdbdr), R(esr), R(dear), R(evpr),
1876 /* 123 */ R(cdbcr), R(tsr), R(tcr), R(pit),
1877 /* 127 */ R(tbhi), R(tblo), R(srr2), R(srr3),
1878 /* 131 */ R(dbsr), R(dbcr), R(iac1), R(iac2),
1879 /* 135 */ R(dac1), R(dac2), R(dccr), R(iccr),
1880 /* 139 */ R(pbl1), R(pbu1), R(pbl2), R(pbu2)
c906108c
SS
1881};
1882
64366f1c 1883/* IBM PowerPC 403GC. */
7a78ae4e 1884static const struct reg registers_403GC[] =
c5aa993b 1885{
7a78ae4e
ND
1886 COMMON_UISA_REGS,
1887 PPC_UISA_SPRS,
1888 PPC_SEGMENT_REGS,
1889 PPC_OEA_SPRS,
1890 /* 119 */ R(icdbdr), R(esr), R(dear), R(evpr),
1891 /* 123 */ R(cdbcr), R(tsr), R(tcr), R(pit),
1892 /* 127 */ R(tbhi), R(tblo), R(srr2), R(srr3),
1893 /* 131 */ R(dbsr), R(dbcr), R(iac1), R(iac2),
1894 /* 135 */ R(dac1), R(dac2), R(dccr), R(iccr),
1895 /* 139 */ R(pbl1), R(pbu1), R(pbl2), R(pbu2),
1896 /* 143 */ R(zpr), R(pid), R(sgr), R(dcwr),
1897 /* 147 */ R(tbhu), R(tblu)
c906108c
SS
1898};
1899
64366f1c 1900/* Motorola PowerPC 505. */
7a78ae4e 1901static const struct reg registers_505[] =
c5aa993b 1902{
7a78ae4e
ND
1903 COMMON_UISA_REGS,
1904 PPC_UISA_SPRS,
1905 PPC_SEGMENT_REGS,
1906 PPC_OEA_SPRS,
1907 /* 119 */ R(eie), R(eid), R(nri)
c906108c
SS
1908};
1909
64366f1c 1910/* Motorola PowerPC 860 or 850. */
7a78ae4e 1911static const struct reg registers_860[] =
c5aa993b 1912{
7a78ae4e
ND
1913 COMMON_UISA_REGS,
1914 PPC_UISA_SPRS,
1915 PPC_SEGMENT_REGS,
1916 PPC_OEA_SPRS,
1917 /* 119 */ R(eie), R(eid), R(nri), R(cmpa),
1918 /* 123 */ R(cmpb), R(cmpc), R(cmpd), R(icr),
1919 /* 127 */ R(der), R(counta), R(countb), R(cmpe),
1920 /* 131 */ R(cmpf), R(cmpg), R(cmph), R(lctrl1),
1921 /* 135 */ R(lctrl2), R(ictrl), R(bar), R(ic_cst),
1922 /* 139 */ R(ic_adr), R(ic_dat), R(dc_cst), R(dc_adr),
1923 /* 143 */ R(dc_dat), R(dpdr), R(dpir), R(immr),
1924 /* 147 */ R(mi_ctr), R(mi_ap), R(mi_epn), R(mi_twc),
1925 /* 151 */ R(mi_rpn), R(md_ctr), R(m_casid), R(md_ap),
1926 /* 155 */ R(md_epn), R(md_twb), R(md_twc), R(md_rpn),
1927 /* 159 */ R(m_tw), R(mi_dbcam), R(mi_dbram0), R(mi_dbram1),
1928 /* 163 */ R(md_dbcam), R(md_dbram0), R(md_dbram1)
c906108c
SS
1929};
1930
7a78ae4e
ND
1931/* Motorola PowerPC 601. Note that the 601 has different register numbers
1932 for reading and writing RTCU and RTCL. However, how one reads and writes a
c906108c 1933 register is the stub's problem. */
7a78ae4e 1934static const struct reg registers_601[] =
c5aa993b 1935{
7a78ae4e
ND
1936 COMMON_UISA_REGS,
1937 PPC_UISA_SPRS,
1938 PPC_SEGMENT_REGS,
1939 PPC_OEA_SPRS,
1940 /* 119 */ R(hid0), R(hid1), R(iabr), R(dabr),
1941 /* 123 */ R(pir), R(mq), R(rtcu), R(rtcl)
c906108c
SS
1942};
1943
64366f1c 1944/* Motorola PowerPC 602. */
7a78ae4e 1945static const struct reg registers_602[] =
c5aa993b 1946{
7a78ae4e
ND
1947 COMMON_UISA_REGS,
1948 PPC_UISA_SPRS,
1949 PPC_SEGMENT_REGS,
1950 PPC_OEA_SPRS,
1951 /* 119 */ R(hid0), R(hid1), R(iabr), R0,
1952 /* 123 */ R0, R(tcr), R(ibr), R(esassr),
1953 /* 127 */ R(sebr), R(ser), R(sp), R(lt)
c906108c
SS
1954};
1955
64366f1c 1956/* Motorola/IBM PowerPC 603 or 603e. */
7a78ae4e 1957static const struct reg registers_603[] =
c5aa993b 1958{
7a78ae4e
ND
1959 COMMON_UISA_REGS,
1960 PPC_UISA_SPRS,
1961 PPC_SEGMENT_REGS,
1962 PPC_OEA_SPRS,
1963 /* 119 */ R(hid0), R(hid1), R(iabr), R0,
1964 /* 123 */ R0, R(dmiss), R(dcmp), R(hash1),
1965 /* 127 */ R(hash2), R(imiss), R(icmp), R(rpa)
c906108c
SS
1966};
1967
64366f1c 1968/* Motorola PowerPC 604 or 604e. */
7a78ae4e 1969static const struct reg registers_604[] =
c5aa993b 1970{
7a78ae4e
ND
1971 COMMON_UISA_REGS,
1972 PPC_UISA_SPRS,
1973 PPC_SEGMENT_REGS,
1974 PPC_OEA_SPRS,
1975 /* 119 */ R(hid0), R(hid1), R(iabr), R(dabr),
1976 /* 123 */ R(pir), R(mmcr0), R(pmc1), R(pmc2),
1977 /* 127 */ R(sia), R(sda)
c906108c
SS
1978};
1979
64366f1c 1980/* Motorola/IBM PowerPC 750 or 740. */
7a78ae4e 1981static const struct reg registers_750[] =
c5aa993b 1982{
7a78ae4e
ND
1983 COMMON_UISA_REGS,
1984 PPC_UISA_SPRS,
1985 PPC_SEGMENT_REGS,
1986 PPC_OEA_SPRS,
1987 /* 119 */ R(hid0), R(hid1), R(iabr), R(dabr),
1988 /* 123 */ R0, R(ummcr0), R(upmc1), R(upmc2),
1989 /* 127 */ R(usia), R(ummcr1), R(upmc3), R(upmc4),
1990 /* 131 */ R(mmcr0), R(pmc1), R(pmc2), R(sia),
1991 /* 135 */ R(mmcr1), R(pmc3), R(pmc4), R(l2cr),
1992 /* 139 */ R(ictc), R(thrm1), R(thrm2), R(thrm3)
c906108c
SS
1993};
1994
1995
64366f1c 1996/* Motorola PowerPC 7400. */
1fcc0bb8
EZ
1997static const struct reg registers_7400[] =
1998{
1999 /* gpr0-gpr31, fpr0-fpr31 */
2000 COMMON_UISA_REGS,
13c7b1ca 2001 /* cr, lr, ctr, xer, fpscr */
1fcc0bb8
EZ
2002 PPC_UISA_SPRS,
2003 /* sr0-sr15 */
2004 PPC_SEGMENT_REGS,
2005 PPC_OEA_SPRS,
2006 /* vr0-vr31, vrsave, vscr */
2007 PPC_ALTIVEC_REGS
2008 /* FIXME? Add more registers? */
2009};
2010
c8001721
EZ
2011/* Motorola e500. */
2012static const struct reg registers_e500[] =
2013{
2014 R(pc), R(ps),
2015 /* cr, lr, ctr, xer, "" */
2016 PPC_UISA_NOFP_SPRS,
2017 /* 7...38 */
2018 PPC_EV_REGS,
338ef23d
AC
2019 R8(acc), R(spefscr),
2020 /* NOTE: Add new registers here the end of the raw register
2021 list and just before the first pseudo register. */
13c7b1ca 2022 /* 41...72 */
c8001721
EZ
2023 PPC_GPRS_PSEUDO_REGS
2024};
2025
c906108c 2026/* Information about a particular processor variant. */
7a78ae4e 2027
c906108c 2028struct variant
c5aa993b
JM
2029 {
2030 /* Name of this variant. */
2031 char *name;
c906108c 2032
c5aa993b
JM
2033 /* English description of the variant. */
2034 char *description;
c906108c 2035
64366f1c 2036 /* bfd_arch_info.arch corresponding to variant. */
7a78ae4e
ND
2037 enum bfd_architecture arch;
2038
64366f1c 2039 /* bfd_arch_info.mach corresponding to variant. */
7a78ae4e
ND
2040 unsigned long mach;
2041
489461e2
EZ
2042 /* Number of real registers. */
2043 int nregs;
2044
2045 /* Number of pseudo registers. */
2046 int npregs;
2047
2048 /* Number of total registers (the sum of nregs and npregs). */
2049 int num_tot_regs;
2050
c5aa993b
JM
2051 /* Table of register names; registers[R] is the name of the register
2052 number R. */
7a78ae4e 2053 const struct reg *regs;
c5aa993b 2054 };
c906108c 2055
489461e2
EZ
2056#define tot_num_registers(list) (sizeof (list) / sizeof((list)[0]))
2057
2058static int
2059num_registers (const struct reg *reg_list, int num_tot_regs)
2060{
2061 int i;
2062 int nregs = 0;
2063
2064 for (i = 0; i < num_tot_regs; i++)
2065 if (!reg_list[i].pseudo)
2066 nregs++;
2067
2068 return nregs;
2069}
2070
2071static int
2072num_pseudo_registers (const struct reg *reg_list, int num_tot_regs)
2073{
2074 int i;
2075 int npregs = 0;
2076
2077 for (i = 0; i < num_tot_regs; i++)
2078 if (reg_list[i].pseudo)
2079 npregs ++;
2080
2081 return npregs;
2082}
c906108c 2083
c906108c
SS
2084/* Information in this table comes from the following web sites:
2085 IBM: http://www.chips.ibm.com:80/products/embedded/
2086 Motorola: http://www.mot.com/SPS/PowerPC/
2087
2088 I'm sure I've got some of the variant descriptions not quite right.
2089 Please report any inaccuracies you find to GDB's maintainer.
2090
2091 If you add entries to this table, please be sure to allow the new
2092 value as an argument to the --with-cpu flag, in configure.in. */
2093
489461e2 2094static struct variant variants[] =
c906108c 2095{
489461e2 2096
7a78ae4e 2097 {"powerpc", "PowerPC user-level", bfd_arch_powerpc,
489461e2
EZ
2098 bfd_mach_ppc, -1, -1, tot_num_registers (registers_powerpc),
2099 registers_powerpc},
7a78ae4e 2100 {"power", "POWER user-level", bfd_arch_rs6000,
489461e2
EZ
2101 bfd_mach_rs6k, -1, -1, tot_num_registers (registers_power),
2102 registers_power},
7a78ae4e 2103 {"403", "IBM PowerPC 403", bfd_arch_powerpc,
489461e2
EZ
2104 bfd_mach_ppc_403, -1, -1, tot_num_registers (registers_403),
2105 registers_403},
7a78ae4e 2106 {"601", "Motorola PowerPC 601", bfd_arch_powerpc,
489461e2
EZ
2107 bfd_mach_ppc_601, -1, -1, tot_num_registers (registers_601),
2108 registers_601},
7a78ae4e 2109 {"602", "Motorola PowerPC 602", bfd_arch_powerpc,
489461e2
EZ
2110 bfd_mach_ppc_602, -1, -1, tot_num_registers (registers_602),
2111 registers_602},
7a78ae4e 2112 {"603", "Motorola/IBM PowerPC 603 or 603e", bfd_arch_powerpc,
489461e2
EZ
2113 bfd_mach_ppc_603, -1, -1, tot_num_registers (registers_603),
2114 registers_603},
7a78ae4e 2115 {"604", "Motorola PowerPC 604 or 604e", bfd_arch_powerpc,
489461e2
EZ
2116 604, -1, -1, tot_num_registers (registers_604),
2117 registers_604},
7a78ae4e 2118 {"403GC", "IBM PowerPC 403GC", bfd_arch_powerpc,
489461e2
EZ
2119 bfd_mach_ppc_403gc, -1, -1, tot_num_registers (registers_403GC),
2120 registers_403GC},
7a78ae4e 2121 {"505", "Motorola PowerPC 505", bfd_arch_powerpc,
489461e2
EZ
2122 bfd_mach_ppc_505, -1, -1, tot_num_registers (registers_505),
2123 registers_505},
7a78ae4e 2124 {"860", "Motorola PowerPC 860 or 850", bfd_arch_powerpc,
489461e2
EZ
2125 bfd_mach_ppc_860, -1, -1, tot_num_registers (registers_860),
2126 registers_860},
7a78ae4e 2127 {"750", "Motorola/IBM PowerPC 750 or 740", bfd_arch_powerpc,
489461e2
EZ
2128 bfd_mach_ppc_750, -1, -1, tot_num_registers (registers_750),
2129 registers_750},
1fcc0bb8 2130 {"7400", "Motorola/IBM PowerPC 7400 (G4)", bfd_arch_powerpc,
489461e2
EZ
2131 bfd_mach_ppc_7400, -1, -1, tot_num_registers (registers_7400),
2132 registers_7400},
c8001721
EZ
2133 {"e500", "Motorola PowerPC e500", bfd_arch_powerpc,
2134 bfd_mach_ppc_e500, -1, -1, tot_num_registers (registers_e500),
2135 registers_e500},
7a78ae4e 2136
5d57ee30
KB
2137 /* 64-bit */
2138 {"powerpc64", "PowerPC 64-bit user-level", bfd_arch_powerpc,
489461e2
EZ
2139 bfd_mach_ppc64, -1, -1, tot_num_registers (registers_powerpc),
2140 registers_powerpc},
7a78ae4e 2141 {"620", "Motorola PowerPC 620", bfd_arch_powerpc,
489461e2
EZ
2142 bfd_mach_ppc_620, -1, -1, tot_num_registers (registers_powerpc),
2143 registers_powerpc},
5d57ee30 2144 {"630", "Motorola PowerPC 630", bfd_arch_powerpc,
489461e2
EZ
2145 bfd_mach_ppc_630, -1, -1, tot_num_registers (registers_powerpc),
2146 registers_powerpc},
7a78ae4e 2147 {"a35", "PowerPC A35", bfd_arch_powerpc,
489461e2
EZ
2148 bfd_mach_ppc_a35, -1, -1, tot_num_registers (registers_powerpc),
2149 registers_powerpc},
5d57ee30 2150 {"rs64ii", "PowerPC rs64ii", bfd_arch_powerpc,
489461e2
EZ
2151 bfd_mach_ppc_rs64ii, -1, -1, tot_num_registers (registers_powerpc),
2152 registers_powerpc},
5d57ee30 2153 {"rs64iii", "PowerPC rs64iii", bfd_arch_powerpc,
489461e2
EZ
2154 bfd_mach_ppc_rs64iii, -1, -1, tot_num_registers (registers_powerpc),
2155 registers_powerpc},
5d57ee30 2156
64366f1c 2157 /* FIXME: I haven't checked the register sets of the following. */
7a78ae4e 2158 {"rs1", "IBM POWER RS1", bfd_arch_rs6000,
489461e2
EZ
2159 bfd_mach_rs6k_rs1, -1, -1, tot_num_registers (registers_power),
2160 registers_power},
7a78ae4e 2161 {"rsc", "IBM POWER RSC", bfd_arch_rs6000,
489461e2
EZ
2162 bfd_mach_rs6k_rsc, -1, -1, tot_num_registers (registers_power),
2163 registers_power},
7a78ae4e 2164 {"rs2", "IBM POWER RS2", bfd_arch_rs6000,
489461e2
EZ
2165 bfd_mach_rs6k_rs2, -1, -1, tot_num_registers (registers_power),
2166 registers_power},
7a78ae4e 2167
489461e2 2168 {0, 0, 0, 0, 0, 0, 0, 0}
c906108c
SS
2169};
2170
64366f1c 2171/* Initialize the number of registers and pseudo registers in each variant. */
489461e2
EZ
2172
2173static void
2174init_variants (void)
2175{
2176 struct variant *v;
2177
2178 for (v = variants; v->name; v++)
2179 {
2180 if (v->nregs == -1)
2181 v->nregs = num_registers (v->regs, v->num_tot_regs);
2182 if (v->npregs == -1)
2183 v->npregs = num_pseudo_registers (v->regs, v->num_tot_regs);
2184 }
2185}
c906108c 2186
7a78ae4e 2187/* Return the variant corresponding to architecture ARCH and machine number
64366f1c 2188 MACH. If no such variant exists, return null. */
c906108c 2189
7a78ae4e
ND
2190static const struct variant *
2191find_variant_by_arch (enum bfd_architecture arch, unsigned long mach)
c906108c 2192{
7a78ae4e 2193 const struct variant *v;
c5aa993b 2194
7a78ae4e
ND
2195 for (v = variants; v->name; v++)
2196 if (arch == v->arch && mach == v->mach)
2197 return v;
c906108c 2198
7a78ae4e 2199 return NULL;
c906108c 2200}
9364a0ef
EZ
2201
2202static int
2203gdb_print_insn_powerpc (bfd_vma memaddr, disassemble_info *info)
2204{
2205 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
2206 return print_insn_big_powerpc (memaddr, info);
2207 else
2208 return print_insn_little_powerpc (memaddr, info);
2209}
7a78ae4e 2210\f
61a65099
KB
2211static CORE_ADDR
2212rs6000_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
2213{
2214 return frame_unwind_register_unsigned (next_frame, PC_REGNUM);
2215}
2216
2217static struct frame_id
2218rs6000_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
2219{
2220 return frame_id_build (frame_unwind_register_unsigned (next_frame,
2221 SP_REGNUM),
2222 frame_pc_unwind (next_frame));
2223}
2224
2225struct rs6000_frame_cache
2226{
2227 CORE_ADDR base;
2228 CORE_ADDR initial_sp;
2229 struct trad_frame_saved_reg *saved_regs;
2230};
2231
2232static struct rs6000_frame_cache *
2233rs6000_frame_cache (struct frame_info *next_frame, void **this_cache)
2234{
2235 struct rs6000_frame_cache *cache;
2236 struct gdbarch *gdbarch = get_frame_arch (next_frame);
2237 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2238 struct rs6000_framedata fdata;
2239 int wordsize = tdep->wordsize;
2240
2241 if ((*this_cache) != NULL)
2242 return (*this_cache);
2243 cache = FRAME_OBSTACK_ZALLOC (struct rs6000_frame_cache);
2244 (*this_cache) = cache;
2245 cache->saved_regs = trad_frame_alloc_saved_regs (next_frame);
2246
2247 skip_prologue (frame_func_unwind (next_frame), frame_pc_unwind (next_frame),
2248 &fdata);
2249
2250 /* If there were any saved registers, figure out parent's stack
2251 pointer. */
2252 /* The following is true only if the frame doesn't have a call to
2253 alloca(), FIXME. */
2254
2255 if (fdata.saved_fpr == 0
2256 && fdata.saved_gpr == 0
2257 && fdata.saved_vr == 0
2258 && fdata.saved_ev == 0
2259 && fdata.lr_offset == 0
2260 && fdata.cr_offset == 0
2261 && fdata.vr_offset == 0
2262 && fdata.ev_offset == 0)
2263 cache->base = frame_unwind_register_unsigned (next_frame, SP_REGNUM);
2264 else
2265 {
2266 /* NOTE: cagney/2002-04-14: The ->frame points to the inner-most
2267 address of the current frame. Things might be easier if the
2268 ->frame pointed to the outer-most address of the frame. In
2269 the mean time, the address of the prev frame is used as the
2270 base address of this frame. */
2271 cache->base = frame_unwind_register_unsigned (next_frame, SP_REGNUM);
2272 if (!fdata.frameless)
2273 /* Frameless really means stackless. */
2274 cache->base = read_memory_addr (cache->base, wordsize);
2275 }
2276 trad_frame_set_value (cache->saved_regs, SP_REGNUM, cache->base);
2277
2278 /* if != -1, fdata.saved_fpr is the smallest number of saved_fpr.
2279 All fpr's from saved_fpr to fp31 are saved. */
2280
2281 if (fdata.saved_fpr >= 0)
2282 {
2283 int i;
2284 CORE_ADDR fpr_addr = cache->base + fdata.fpr_offset;
2285 for (i = fdata.saved_fpr; i < 32; i++)
2286 {
2287 cache->saved_regs[FP0_REGNUM + i].addr = fpr_addr;
2288 fpr_addr += 8;
2289 }
2290 }
2291
2292 /* if != -1, fdata.saved_gpr is the smallest number of saved_gpr.
2293 All gpr's from saved_gpr to gpr31 are saved. */
2294
2295 if (fdata.saved_gpr >= 0)
2296 {
2297 int i;
2298 CORE_ADDR gpr_addr = cache->base + fdata.gpr_offset;
2299 for (i = fdata.saved_gpr; i < 32; i++)
2300 {
2301 cache->saved_regs[tdep->ppc_gp0_regnum + i].addr = gpr_addr;
2302 gpr_addr += wordsize;
2303 }
2304 }
2305
2306 /* if != -1, fdata.saved_vr is the smallest number of saved_vr.
2307 All vr's from saved_vr to vr31 are saved. */
2308 if (tdep->ppc_vr0_regnum != -1 && tdep->ppc_vrsave_regnum != -1)
2309 {
2310 if (fdata.saved_vr >= 0)
2311 {
2312 int i;
2313 CORE_ADDR vr_addr = cache->base + fdata.vr_offset;
2314 for (i = fdata.saved_vr; i < 32; i++)
2315 {
2316 cache->saved_regs[tdep->ppc_vr0_regnum + i].addr = vr_addr;
2317 vr_addr += register_size (gdbarch, tdep->ppc_vr0_regnum);
2318 }
2319 }
2320 }
2321
2322 /* if != -1, fdata.saved_ev is the smallest number of saved_ev.
2323 All vr's from saved_ev to ev31 are saved. ????? */
2324 if (tdep->ppc_ev0_regnum != -1 && tdep->ppc_ev31_regnum != -1)
2325 {
2326 if (fdata.saved_ev >= 0)
2327 {
2328 int i;
2329 CORE_ADDR ev_addr = cache->base + fdata.ev_offset;
2330 for (i = fdata.saved_ev; i < 32; i++)
2331 {
2332 cache->saved_regs[tdep->ppc_ev0_regnum + i].addr = ev_addr;
2333 cache->saved_regs[tdep->ppc_gp0_regnum + i].addr = ev_addr + 4;
2334 ev_addr += register_size (gdbarch, tdep->ppc_ev0_regnum);
2335 }
2336 }
2337 }
2338
2339 /* If != 0, fdata.cr_offset is the offset from the frame that
2340 holds the CR. */
2341 if (fdata.cr_offset != 0)
2342 cache->saved_regs[tdep->ppc_cr_regnum].addr = cache->base + fdata.cr_offset;
2343
2344 /* If != 0, fdata.lr_offset is the offset from the frame that
2345 holds the LR. */
2346 if (fdata.lr_offset != 0)
2347 cache->saved_regs[tdep->ppc_lr_regnum].addr = cache->base + fdata.lr_offset;
2348 /* The PC is found in the link register. */
2349 cache->saved_regs[PC_REGNUM] = cache->saved_regs[tdep->ppc_lr_regnum];
2350
2351 /* If != 0, fdata.vrsave_offset is the offset from the frame that
2352 holds the VRSAVE. */
2353 if (fdata.vrsave_offset != 0)
2354 cache->saved_regs[tdep->ppc_vrsave_regnum].addr = cache->base + fdata.vrsave_offset;
2355
2356 if (fdata.alloca_reg < 0)
2357 /* If no alloca register used, then fi->frame is the value of the
2358 %sp for this frame, and it is good enough. */
2359 cache->initial_sp = frame_unwind_register_unsigned (next_frame, SP_REGNUM);
2360 else
2361 cache->initial_sp = frame_unwind_register_unsigned (next_frame,
2362 fdata.alloca_reg);
2363
2364 return cache;
2365}
2366
2367static void
2368rs6000_frame_this_id (struct frame_info *next_frame, void **this_cache,
2369 struct frame_id *this_id)
2370{
2371 struct rs6000_frame_cache *info = rs6000_frame_cache (next_frame,
2372 this_cache);
2373 (*this_id) = frame_id_build (info->base, frame_func_unwind (next_frame));
2374}
2375
2376static void
2377rs6000_frame_prev_register (struct frame_info *next_frame,
2378 void **this_cache,
2379 int regnum, int *optimizedp,
2380 enum lval_type *lvalp, CORE_ADDR *addrp,
2381 int *realnump, void *valuep)
2382{
2383 struct rs6000_frame_cache *info = rs6000_frame_cache (next_frame,
2384 this_cache);
2385 trad_frame_prev_register (next_frame, info->saved_regs, regnum,
2386 optimizedp, lvalp, addrp, realnump, valuep);
2387}
2388
2389static const struct frame_unwind rs6000_frame_unwind =
2390{
2391 NORMAL_FRAME,
2392 rs6000_frame_this_id,
2393 rs6000_frame_prev_register
2394};
2395
2396static const struct frame_unwind *
2397rs6000_frame_sniffer (struct frame_info *next_frame)
2398{
2399 return &rs6000_frame_unwind;
2400}
2401
2402\f
2403
2404static CORE_ADDR
2405rs6000_frame_base_address (struct frame_info *next_frame,
2406 void **this_cache)
2407{
2408 struct rs6000_frame_cache *info = rs6000_frame_cache (next_frame,
2409 this_cache);
2410 return info->initial_sp;
2411}
2412
2413static const struct frame_base rs6000_frame_base = {
2414 &rs6000_frame_unwind,
2415 rs6000_frame_base_address,
2416 rs6000_frame_base_address,
2417 rs6000_frame_base_address
2418};
2419
2420static const struct frame_base *
2421rs6000_frame_base_sniffer (struct frame_info *next_frame)
2422{
2423 return &rs6000_frame_base;
2424}
2425
7a78ae4e
ND
2426/* Initialize the current architecture based on INFO. If possible, re-use an
2427 architecture from ARCHES, which is a list of architectures already created
2428 during this debugging session.
c906108c 2429
7a78ae4e 2430 Called e.g. at program startup, when reading a core file, and when reading
64366f1c 2431 a binary file. */
c906108c 2432
7a78ae4e
ND
2433static struct gdbarch *
2434rs6000_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
2435{
2436 struct gdbarch *gdbarch;
2437 struct gdbarch_tdep *tdep;
9aa1e687 2438 int wordsize, from_xcoff_exec, from_elf_exec, power, i, off;
7a78ae4e
ND
2439 struct reg *regs;
2440 const struct variant *v;
2441 enum bfd_architecture arch;
2442 unsigned long mach;
2443 bfd abfd;
7b112f9c 2444 int sysv_abi;
5bf1c677 2445 asection *sect;
7a78ae4e 2446
9aa1e687 2447 from_xcoff_exec = info.abfd && info.abfd->format == bfd_object &&
7a78ae4e
ND
2448 bfd_get_flavour (info.abfd) == bfd_target_xcoff_flavour;
2449
9aa1e687
KB
2450 from_elf_exec = info.abfd && info.abfd->format == bfd_object &&
2451 bfd_get_flavour (info.abfd) == bfd_target_elf_flavour;
2452
2453 sysv_abi = info.abfd && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour;
2454
e712c1cf 2455 /* Check word size. If INFO is from a binary file, infer it from
64366f1c 2456 that, else choose a likely default. */
9aa1e687 2457 if (from_xcoff_exec)
c906108c 2458 {
11ed25ac 2459 if (bfd_xcoff_is_xcoff64 (info.abfd))
7a78ae4e
ND
2460 wordsize = 8;
2461 else
2462 wordsize = 4;
c906108c 2463 }
9aa1e687
KB
2464 else if (from_elf_exec)
2465 {
2466 if (elf_elfheader (info.abfd)->e_ident[EI_CLASS] == ELFCLASS64)
2467 wordsize = 8;
2468 else
2469 wordsize = 4;
2470 }
c906108c 2471 else
7a78ae4e 2472 {
27b15785
KB
2473 if (info.bfd_arch_info != NULL && info.bfd_arch_info->bits_per_word != 0)
2474 wordsize = info.bfd_arch_info->bits_per_word /
2475 info.bfd_arch_info->bits_per_byte;
2476 else
2477 wordsize = 4;
7a78ae4e 2478 }
c906108c 2479
64366f1c 2480 /* Find a candidate among extant architectures. */
7a78ae4e
ND
2481 for (arches = gdbarch_list_lookup_by_info (arches, &info);
2482 arches != NULL;
2483 arches = gdbarch_list_lookup_by_info (arches->next, &info))
2484 {
2485 /* Word size in the various PowerPC bfd_arch_info structs isn't
2486 meaningful, because 64-bit CPUs can run in 32-bit mode. So, perform
64366f1c 2487 separate word size check. */
7a78ae4e 2488 tdep = gdbarch_tdep (arches->gdbarch);
4be87837 2489 if (tdep && tdep->wordsize == wordsize)
7a78ae4e
ND
2490 return arches->gdbarch;
2491 }
c906108c 2492
7a78ae4e
ND
2493 /* None found, create a new architecture from INFO, whose bfd_arch_info
2494 validity depends on the source:
2495 - executable useless
2496 - rs6000_host_arch() good
2497 - core file good
2498 - "set arch" trust blindly
2499 - GDB startup useless but harmless */
c906108c 2500
9aa1e687 2501 if (!from_xcoff_exec)
c906108c 2502 {
b732d07d 2503 arch = info.bfd_arch_info->arch;
7a78ae4e 2504 mach = info.bfd_arch_info->mach;
c906108c 2505 }
7a78ae4e 2506 else
c906108c 2507 {
7a78ae4e 2508 arch = bfd_arch_powerpc;
35cec841 2509 bfd_default_set_arch_mach (&abfd, arch, 0);
7a78ae4e 2510 info.bfd_arch_info = bfd_get_arch_info (&abfd);
35cec841 2511 mach = info.bfd_arch_info->mach;
7a78ae4e
ND
2512 }
2513 tdep = xmalloc (sizeof (struct gdbarch_tdep));
2514 tdep->wordsize = wordsize;
5bf1c677
EZ
2515
2516 /* For e500 executables, the apuinfo section is of help here. Such
2517 section contains the identifier and revision number of each
2518 Application-specific Processing Unit that is present on the
2519 chip. The content of the section is determined by the assembler
2520 which looks at each instruction and determines which unit (and
2521 which version of it) can execute it. In our case we just look for
2522 the existance of the section. */
2523
2524 if (info.abfd)
2525 {
2526 sect = bfd_get_section_by_name (info.abfd, ".PPC.EMB.apuinfo");
2527 if (sect)
2528 {
2529 arch = info.bfd_arch_info->arch;
2530 mach = bfd_mach_ppc_e500;
2531 bfd_default_set_arch_mach (&abfd, arch, mach);
2532 info.bfd_arch_info = bfd_get_arch_info (&abfd);
2533 }
2534 }
2535
7a78ae4e
ND
2536 gdbarch = gdbarch_alloc (&info, tdep);
2537 power = arch == bfd_arch_rs6000;
2538
489461e2
EZ
2539 /* Initialize the number of real and pseudo registers in each variant. */
2540 init_variants ();
2541
64366f1c 2542 /* Choose variant. */
7a78ae4e
ND
2543 v = find_variant_by_arch (arch, mach);
2544 if (!v)
dd47e6fd
EZ
2545 return NULL;
2546
7a78ae4e
ND
2547 tdep->regs = v->regs;
2548
2188cbdd
EZ
2549 tdep->ppc_gp0_regnum = 0;
2550 tdep->ppc_gplast_regnum = 31;
2551 tdep->ppc_toc_regnum = 2;
2552 tdep->ppc_ps_regnum = 65;
2553 tdep->ppc_cr_regnum = 66;
2554 tdep->ppc_lr_regnum = 67;
2555 tdep->ppc_ctr_regnum = 68;
2556 tdep->ppc_xer_regnum = 69;
2557 if (v->mach == bfd_mach_ppc_601)
2558 tdep->ppc_mq_regnum = 124;
e3f36dbd 2559 else if (power)
2188cbdd 2560 tdep->ppc_mq_regnum = 70;
e3f36dbd
KB
2561 else
2562 tdep->ppc_mq_regnum = -1;
2563 tdep->ppc_fpscr_regnum = power ? 71 : 70;
2188cbdd 2564
c8001721
EZ
2565 set_gdbarch_pc_regnum (gdbarch, 64);
2566 set_gdbarch_sp_regnum (gdbarch, 1);
0ba6dca9 2567 set_gdbarch_deprecated_fp_regnum (gdbarch, 1);
afd48b75 2568 if (sysv_abi && wordsize == 8)
05580c65 2569 set_gdbarch_return_value (gdbarch, ppc64_sysv_abi_return_value);
e754ae69 2570 else if (sysv_abi && wordsize == 4)
05580c65 2571 set_gdbarch_return_value (gdbarch, ppc_sysv_abi_return_value);
afd48b75
AC
2572 else
2573 {
2574 set_gdbarch_deprecated_extract_return_value (gdbarch, rs6000_extract_return_value);
2575 set_gdbarch_deprecated_store_return_value (gdbarch, rs6000_store_return_value);
2576 }
c8001721 2577
1fcc0bb8
EZ
2578 if (v->arch == bfd_arch_powerpc)
2579 switch (v->mach)
2580 {
2581 case bfd_mach_ppc:
2582 tdep->ppc_vr0_regnum = 71;
2583 tdep->ppc_vrsave_regnum = 104;
c8001721
EZ
2584 tdep->ppc_ev0_regnum = -1;
2585 tdep->ppc_ev31_regnum = -1;
1fcc0bb8
EZ
2586 break;
2587 case bfd_mach_ppc_7400:
2588 tdep->ppc_vr0_regnum = 119;
54c2a1e6 2589 tdep->ppc_vrsave_regnum = 152;
c8001721
EZ
2590 tdep->ppc_ev0_regnum = -1;
2591 tdep->ppc_ev31_regnum = -1;
2592 break;
2593 case bfd_mach_ppc_e500:
338ef23d
AC
2594 tdep->ppc_gp0_regnum = 41;
2595 tdep->ppc_gplast_regnum = tdep->ppc_gp0_regnum + 32 - 1;
c8001721
EZ
2596 tdep->ppc_toc_regnum = -1;
2597 tdep->ppc_ps_regnum = 1;
2598 tdep->ppc_cr_regnum = 2;
2599 tdep->ppc_lr_regnum = 3;
2600 tdep->ppc_ctr_regnum = 4;
2601 tdep->ppc_xer_regnum = 5;
2602 tdep->ppc_ev0_regnum = 7;
2603 tdep->ppc_ev31_regnum = 38;
2604 set_gdbarch_pc_regnum (gdbarch, 0);
338ef23d 2605 set_gdbarch_sp_regnum (gdbarch, tdep->ppc_gp0_regnum + 1);
0ba6dca9 2606 set_gdbarch_deprecated_fp_regnum (gdbarch, tdep->ppc_gp0_regnum + 1);
c8001721
EZ
2607 set_gdbarch_pseudo_register_read (gdbarch, e500_pseudo_register_read);
2608 set_gdbarch_pseudo_register_write (gdbarch, e500_pseudo_register_write);
1fcc0bb8
EZ
2609 break;
2610 default:
2611 tdep->ppc_vr0_regnum = -1;
2612 tdep->ppc_vrsave_regnum = -1;
c8001721
EZ
2613 tdep->ppc_ev0_regnum = -1;
2614 tdep->ppc_ev31_regnum = -1;
1fcc0bb8
EZ
2615 break;
2616 }
2617
338ef23d
AC
2618 /* Sanity check on registers. */
2619 gdb_assert (strcmp (tdep->regs[tdep->ppc_gp0_regnum].name, "r0") == 0);
2620
a88376a3
KB
2621 /* Set lr_frame_offset. */
2622 if (wordsize == 8)
2623 tdep->lr_frame_offset = 16;
2624 else if (sysv_abi)
2625 tdep->lr_frame_offset = 4;
2626 else
2627 tdep->lr_frame_offset = 8;
2628
2629 /* Calculate byte offsets in raw register array. */
489461e2
EZ
2630 tdep->regoff = xmalloc (v->num_tot_regs * sizeof (int));
2631 for (i = off = 0; i < v->num_tot_regs; i++)
7a78ae4e
ND
2632 {
2633 tdep->regoff[i] = off;
2634 off += regsize (v->regs + i, wordsize);
c906108c
SS
2635 }
2636
56a6dfb9
KB
2637 /* Select instruction printer. */
2638 if (arch == power)
9364a0ef 2639 set_gdbarch_print_insn (gdbarch, print_insn_rs6000);
56a6dfb9 2640 else
9364a0ef 2641 set_gdbarch_print_insn (gdbarch, gdb_print_insn_powerpc);
7495d1dc 2642
7a78ae4e 2643 set_gdbarch_write_pc (gdbarch, generic_target_write_pc);
7a78ae4e
ND
2644
2645 set_gdbarch_num_regs (gdbarch, v->nregs);
c8001721 2646 set_gdbarch_num_pseudo_regs (gdbarch, v->npregs);
7a78ae4e 2647 set_gdbarch_register_name (gdbarch, rs6000_register_name);
b1e29e33 2648 set_gdbarch_deprecated_register_size (gdbarch, wordsize);
b8b527c5 2649 set_gdbarch_deprecated_register_bytes (gdbarch, off);
9c04cab7
AC
2650 set_gdbarch_deprecated_register_byte (gdbarch, rs6000_register_byte);
2651 set_gdbarch_deprecated_register_raw_size (gdbarch, rs6000_register_raw_size);
9c04cab7 2652 set_gdbarch_deprecated_register_virtual_type (gdbarch, rs6000_register_virtual_type);
7a78ae4e
ND
2653
2654 set_gdbarch_ptr_bit (gdbarch, wordsize * TARGET_CHAR_BIT);
2655 set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT);
2656 set_gdbarch_int_bit (gdbarch, 4 * TARGET_CHAR_BIT);
2657 set_gdbarch_long_bit (gdbarch, wordsize * TARGET_CHAR_BIT);
2658 set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
2659 set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT);
2660 set_gdbarch_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
ab9fe00e
KB
2661 if (sysv_abi)
2662 set_gdbarch_long_double_bit (gdbarch, 16 * TARGET_CHAR_BIT);
2663 else
2664 set_gdbarch_long_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
4e409299 2665 set_gdbarch_char_signed (gdbarch, 0);
7a78ae4e 2666
11269d7e 2667 set_gdbarch_frame_align (gdbarch, rs6000_frame_align);
8b148df9
AC
2668 if (sysv_abi && wordsize == 8)
2669 /* PPC64 SYSV. */
2670 set_gdbarch_frame_red_zone_size (gdbarch, 288);
2671 else if (!sysv_abi && wordsize == 4)
5bffac25
AC
2672 /* PowerOpen / AIX 32 bit. The saved area or red zone consists of
2673 19 4 byte GPRS + 18 8 byte FPRs giving a total of 220 bytes.
2674 Problem is, 220 isn't frame (16 byte) aligned. Round it up to
2675 224. */
2676 set_gdbarch_frame_red_zone_size (gdbarch, 224);
7a78ae4e 2677
781a750d
AC
2678 set_gdbarch_deprecated_register_convertible (gdbarch, rs6000_register_convertible);
2679 set_gdbarch_deprecated_register_convert_to_virtual (gdbarch, rs6000_register_convert_to_virtual);
2680 set_gdbarch_deprecated_register_convert_to_raw (gdbarch, rs6000_register_convert_to_raw);
9f744501
JB
2681 set_gdbarch_stab_reg_to_regnum (gdbarch, rs6000_dwarf2_stab_reg_to_regnum);
2682 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, rs6000_dwarf2_stab_reg_to_regnum);
2ea5f656
KB
2683 /* Note: kevinb/2002-04-12: I'm not convinced that rs6000_push_arguments()
2684 is correct for the SysV ABI when the wordsize is 8, but I'm also
2685 fairly certain that ppc_sysv_abi_push_arguments() will give even
2686 worse results since it only works for 32-bit code. So, for the moment,
2687 we're better off calling rs6000_push_arguments() since it works for
2688 64-bit code. At some point in the future, this matter needs to be
2689 revisited. */
2690 if (sysv_abi && wordsize == 4)
77b2b6d4 2691 set_gdbarch_push_dummy_call (gdbarch, ppc_sysv_abi_push_dummy_call);
8be9034a
AC
2692 else if (sysv_abi && wordsize == 8)
2693 set_gdbarch_push_dummy_call (gdbarch, ppc64_sysv_abi_push_dummy_call);
9aa1e687 2694 else
77b2b6d4 2695 set_gdbarch_push_dummy_call (gdbarch, rs6000_push_dummy_call);
7a78ae4e 2696
74055713 2697 set_gdbarch_deprecated_extract_struct_value_address (gdbarch, rs6000_extract_struct_value_address);
7a78ae4e
ND
2698
2699 set_gdbarch_skip_prologue (gdbarch, rs6000_skip_prologue);
2700 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
7a78ae4e
ND
2701 set_gdbarch_breakpoint_from_pc (gdbarch, rs6000_breakpoint_from_pc);
2702
6066c3de
AC
2703 /* Handle the 64-bit SVR4 minimal-symbol convention of using "FN"
2704 for the descriptor and ".FN" for the entry-point -- a user
2705 specifying "break FN" will unexpectedly end up with a breakpoint
2706 on the descriptor and not the function. This architecture method
2707 transforms any breakpoints on descriptors into breakpoints on the
2708 corresponding entry point. */
2709 if (sysv_abi && wordsize == 8)
2710 set_gdbarch_adjust_breakpoint_address (gdbarch, ppc64_sysv_abi_adjust_breakpoint_address);
2711
7a78ae4e
ND
2712 /* Not sure on this. FIXMEmgo */
2713 set_gdbarch_frame_args_skip (gdbarch, 8);
2714
05580c65 2715 if (!sysv_abi)
7b112f9c 2716 set_gdbarch_use_struct_convention (gdbarch,
b9ff3018 2717 rs6000_use_struct_convention);
8e0662df 2718
15813d3f
AC
2719 if (!sysv_abi)
2720 {
2721 /* Handle RS/6000 function pointers (which are really function
2722 descriptors). */
f517ea4e
PS
2723 set_gdbarch_convert_from_func_ptr_addr (gdbarch,
2724 rs6000_convert_from_func_ptr_addr);
9aa1e687 2725 }
7a78ae4e 2726
143985b7
AF
2727 /* Helpers for function argument information. */
2728 set_gdbarch_fetch_pointer_argument (gdbarch, rs6000_fetch_pointer_argument);
2729
7b112f9c 2730 /* Hook in ABI-specific overrides, if they have been registered. */
4be87837 2731 gdbarch_init_osabi (info, gdbarch);
7b112f9c 2732
61a65099
KB
2733 switch (info.osabi)
2734 {
2735 case GDB_OSABI_NETBSD_AOUT:
2736 case GDB_OSABI_NETBSD_ELF:
2737 case GDB_OSABI_UNKNOWN:
2738 case GDB_OSABI_LINUX:
2739 set_gdbarch_unwind_pc (gdbarch, rs6000_unwind_pc);
2740 frame_unwind_append_sniffer (gdbarch, rs6000_frame_sniffer);
2741 set_gdbarch_unwind_dummy_id (gdbarch, rs6000_unwind_dummy_id);
2742 frame_base_append_sniffer (gdbarch, rs6000_frame_base_sniffer);
2743 break;
2744 default:
2745 set_gdbarch_deprecated_save_dummy_frame_tos (gdbarch, generic_save_dummy_frame_tos);
2746 set_gdbarch_believe_pcc_promotion (gdbarch, 1);
81332287
KB
2747
2748 set_gdbarch_unwind_pc (gdbarch, rs6000_unwind_pc);
2749 frame_unwind_append_sniffer (gdbarch, rs6000_frame_sniffer);
2750 set_gdbarch_unwind_dummy_id (gdbarch, rs6000_unwind_dummy_id);
2751 frame_base_append_sniffer (gdbarch, rs6000_frame_base_sniffer);
61a65099
KB
2752 }
2753
ef5200c1
AC
2754 if (from_xcoff_exec)
2755 {
2756 /* NOTE: jimix/2003-06-09: This test should really check for
2757 GDB_OSABI_AIX when that is defined and becomes
2758 available. (Actually, once things are properly split apart,
2759 the test goes away.) */
2760 /* RS6000/AIX does not support PT_STEP. Has to be simulated. */
2761 set_gdbarch_software_single_step (gdbarch, rs6000_software_single_step);
2762 }
2763
7a78ae4e 2764 return gdbarch;
c906108c
SS
2765}
2766
7b112f9c
JT
2767static void
2768rs6000_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
2769{
2770 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
2771
2772 if (tdep == NULL)
2773 return;
2774
4be87837 2775 /* FIXME: Dump gdbarch_tdep. */
7b112f9c
JT
2776}
2777
1fcc0bb8
EZ
2778static struct cmd_list_element *info_powerpc_cmdlist = NULL;
2779
2780static void
2781rs6000_info_powerpc_command (char *args, int from_tty)
2782{
2783 help_list (info_powerpc_cmdlist, "info powerpc ", class_info, gdb_stdout);
2784}
2785
c906108c
SS
2786/* Initialization code. */
2787
a78f21af 2788extern initialize_file_ftype _initialize_rs6000_tdep; /* -Wmissing-prototypes */
b9362cc7 2789
c906108c 2790void
fba45db2 2791_initialize_rs6000_tdep (void)
c906108c 2792{
7b112f9c
JT
2793 gdbarch_register (bfd_arch_rs6000, rs6000_gdbarch_init, rs6000_dump_tdep);
2794 gdbarch_register (bfd_arch_powerpc, rs6000_gdbarch_init, rs6000_dump_tdep);
1fcc0bb8
EZ
2795
2796 /* Add root prefix command for "info powerpc" commands */
2797 add_prefix_cmd ("powerpc", class_info, rs6000_info_powerpc_command,
2798 "Various POWERPC info specific commands.",
2799 &info_powerpc_cmdlist, "info powerpc ", 0, &infolist);
c906108c 2800}
This page took 0.800747 seconds and 4 git commands to generate.