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