]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/rs6000-tdep.c
Approved by Jim Blandy:
[thirdparty/binutils-gdb.git] / gdb / rs6000-tdep.c
CommitLineData
c906108c 1/* Target-dependent code for GDB, the GNU debugger.
b6ba6518
KB
2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001
c906108c
SS
4 Free Software Foundation, Inc.
5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
24#include "frame.h"
25#include "inferior.h"
26#include "symtab.h"
27#include "target.h"
28#include "gdbcore.h"
29#include "gdbcmd.h"
30#include "symfile.h"
31#include "objfiles.h"
7a78ae4e 32#include "arch-utils.h"
4e052eda 33#include "regcache.h"
d16aafd8 34#include "doublest.h"
fd0407d6 35#include "value.h"
7a78ae4e
ND
36
37#include "bfd/libbfd.h" /* for bfd_default_set_arch_mach */
38#include "coff/internal.h" /* for libcoff.h */
39#include "bfd/libcoff.h" /* for xcoff_data */
40
9aa1e687 41#include "elf-bfd.h"
7a78ae4e 42
6ded7999 43#include "solib-svr4.h"
9aa1e687 44#include "ppc-tdep.h"
7a78ae4e
ND
45
46/* If the kernel has to deliver a signal, it pushes a sigcontext
47 structure on the stack and then calls the signal handler, passing
48 the address of the sigcontext in an argument register. Usually
49 the signal handler doesn't save this register, so we have to
50 access the sigcontext structure via an offset from the signal handler
51 frame.
52 The following constants were determined by experimentation on AIX 3.2. */
53#define SIG_FRAME_PC_OFFSET 96
54#define SIG_FRAME_LR_OFFSET 108
55#define SIG_FRAME_FP_OFFSET 284
56
7a78ae4e
ND
57/* To be used by skip_prologue. */
58
59struct rs6000_framedata
60 {
61 int offset; /* total size of frame --- the distance
62 by which we decrement sp to allocate
63 the frame */
64 int saved_gpr; /* smallest # of saved gpr */
65 int saved_fpr; /* smallest # of saved fpr */
66 int alloca_reg; /* alloca register number (frame ptr) */
67 char frameless; /* true if frameless functions. */
68 char nosavedpc; /* true if pc not saved. */
69 int gpr_offset; /* offset of saved gprs from prev sp */
70 int fpr_offset; /* offset of saved fprs from prev sp */
71 int lr_offset; /* offset of saved lr */
72 int cr_offset; /* offset of saved cr */
73 };
74
75/* Description of a single register. */
76
77struct reg
78 {
79 char *name; /* name of register */
80 unsigned char sz32; /* size on 32-bit arch, 0 if nonextant */
81 unsigned char sz64; /* size on 64-bit arch, 0 if nonextant */
82 unsigned char fpr; /* whether register is floating-point */
83 };
84
85/* Private data that this module attaches to struct gdbarch. */
86
87struct gdbarch_tdep
88 {
89 int wordsize; /* size in bytes of fixed-point word */
9aa1e687 90 int osabi; /* OS / ABI from ELF header */
7a78ae4e
ND
91 int *regoff; /* byte offsets in register arrays */
92 const struct reg *regs; /* from current variant */
93 };
c906108c 94
7a78ae4e
ND
95/* Return the current architecture's gdbarch_tdep structure. */
96
97#define TDEP gdbarch_tdep (current_gdbarch)
c906108c
SS
98
99/* Breakpoint shadows for the single step instructions will be kept here. */
100
c5aa993b
JM
101static struct sstep_breaks
102 {
103 /* Address, or 0 if this is not in use. */
104 CORE_ADDR address;
105 /* Shadow contents. */
106 char data[4];
107 }
108stepBreaks[2];
c906108c
SS
109
110/* Hook for determining the TOC address when calling functions in the
111 inferior under AIX. The initialization code in rs6000-nat.c sets
112 this hook to point to find_toc_address. */
113
7a78ae4e
ND
114CORE_ADDR (*rs6000_find_toc_address_hook) (CORE_ADDR) = NULL;
115
116/* Hook to set the current architecture when starting a child process.
117 rs6000-nat.c sets this. */
118
119void (*rs6000_set_host_arch_hook) (int) = NULL;
c906108c
SS
120
121/* Static function prototypes */
122
a14ed312
KB
123static CORE_ADDR branch_dest (int opcode, int instr, CORE_ADDR pc,
124 CORE_ADDR safety);
077276e8
KB
125static CORE_ADDR skip_prologue (CORE_ADDR, CORE_ADDR,
126 struct rs6000_framedata *);
7a78ae4e
ND
127static void frame_get_saved_regs (struct frame_info * fi,
128 struct rs6000_framedata * fdatap);
129static CORE_ADDR frame_initial_stack_address (struct frame_info *);
c906108c 130
7a78ae4e 131/* Read a LEN-byte address from debugged memory address MEMADDR. */
c906108c 132
7a78ae4e
ND
133static CORE_ADDR
134read_memory_addr (CORE_ADDR memaddr, int len)
135{
136 return read_memory_unsigned_integer (memaddr, len);
137}
c906108c 138
7a78ae4e
ND
139static CORE_ADDR
140rs6000_skip_prologue (CORE_ADDR pc)
b83266a0
SS
141{
142 struct rs6000_framedata frame;
077276e8 143 pc = skip_prologue (pc, 0, &frame);
b83266a0
SS
144 return pc;
145}
146
147
c906108c
SS
148/* Fill in fi->saved_regs */
149
150struct frame_extra_info
151{
152 /* Functions calling alloca() change the value of the stack
153 pointer. We need to use initial stack pointer (which is saved in
154 r31 by gcc) in such cases. If a compiler emits traceback table,
155 then we should use the alloca register specified in traceback
156 table. FIXME. */
c5aa993b 157 CORE_ADDR initial_sp; /* initial stack pointer. */
c906108c
SS
158};
159
9aa1e687 160void
7a78ae4e 161rs6000_init_extra_frame_info (int fromleaf, struct frame_info *fi)
c906108c 162{
c5aa993b 163 fi->extra_info = (struct frame_extra_info *)
c906108c
SS
164 frame_obstack_alloc (sizeof (struct frame_extra_info));
165 fi->extra_info->initial_sp = 0;
166 if (fi->next != (CORE_ADDR) 0
167 && fi->pc < TEXT_SEGMENT_BASE)
7a292a7a 168 /* We're in get_prev_frame */
c906108c
SS
169 /* and this is a special signal frame. */
170 /* (fi->pc will be some low address in the kernel, */
171 /* to which the signal handler returns). */
172 fi->signal_handler_caller = 1;
173}
174
7a78ae4e
ND
175/* Put here the code to store, into a struct frame_saved_regs,
176 the addresses of the saved registers of frame described by FRAME_INFO.
177 This includes special registers such as pc and fp saved in special
178 ways in the stack frame. sp is even more special:
179 the address we return for it IS the sp for the next frame. */
c906108c 180
7a78ae4e
ND
181/* In this implementation for RS/6000, we do *not* save sp. I am
182 not sure if it will be needed. The following function takes care of gpr's
183 and fpr's only. */
184
9aa1e687 185void
7a78ae4e 186rs6000_frame_init_saved_regs (struct frame_info *fi)
c906108c
SS
187{
188 frame_get_saved_regs (fi, NULL);
189}
190
7a78ae4e
ND
191static CORE_ADDR
192rs6000_frame_args_address (struct frame_info *fi)
c906108c
SS
193{
194 if (fi->extra_info->initial_sp != 0)
195 return fi->extra_info->initial_sp;
196 else
197 return frame_initial_stack_address (fi);
198}
199
7a78ae4e
ND
200/* Immediately after a function call, return the saved pc.
201 Can't go through the frames for this because on some machines
202 the new frame is not set up until the new function executes
203 some instructions. */
204
205static CORE_ADDR
206rs6000_saved_pc_after_call (struct frame_info *fi)
207{
9aa1e687 208 return read_register (PPC_LR_REGNUM);
7a78ae4e 209}
c906108c
SS
210
211/* Calculate the destination of a branch/jump. Return -1 if not a branch. */
212
213static CORE_ADDR
7a78ae4e 214branch_dest (int opcode, int instr, CORE_ADDR pc, CORE_ADDR safety)
c906108c
SS
215{
216 CORE_ADDR dest;
217 int immediate;
218 int absolute;
219 int ext_op;
220
221 absolute = (int) ((instr >> 1) & 1);
222
c5aa993b
JM
223 switch (opcode)
224 {
225 case 18:
226 immediate = ((instr & ~3) << 6) >> 6; /* br unconditional */
227 if (absolute)
228 dest = immediate;
229 else
230 dest = pc + immediate;
231 break;
232
233 case 16:
234 immediate = ((instr & ~3) << 16) >> 16; /* br conditional */
235 if (absolute)
236 dest = immediate;
237 else
238 dest = pc + immediate;
239 break;
240
241 case 19:
242 ext_op = (instr >> 1) & 0x3ff;
243
244 if (ext_op == 16) /* br conditional register */
245 {
9aa1e687 246 dest = read_register (PPC_LR_REGNUM) & ~3;
c5aa993b
JM
247
248 /* If we are about to return from a signal handler, dest is
249 something like 0x3c90. The current frame is a signal handler
250 caller frame, upon completion of the sigreturn system call
251 execution will return to the saved PC in the frame. */
252 if (dest < TEXT_SEGMENT_BASE)
253 {
254 struct frame_info *fi;
255
256 fi = get_current_frame ();
257 if (fi != NULL)
7a78ae4e
ND
258 dest = read_memory_addr (fi->frame + SIG_FRAME_PC_OFFSET,
259 TDEP->wordsize);
c5aa993b
JM
260 }
261 }
262
263 else if (ext_op == 528) /* br cond to count reg */
264 {
9aa1e687 265 dest = read_register (PPC_CTR_REGNUM) & ~3;
c5aa993b
JM
266
267 /* If we are about to execute a system call, dest is something
268 like 0x22fc or 0x3b00. Upon completion the system call
269 will return to the address in the link register. */
270 if (dest < TEXT_SEGMENT_BASE)
9aa1e687 271 dest = read_register (PPC_LR_REGNUM) & ~3;
c5aa993b
JM
272 }
273 else
274 return -1;
275 break;
c906108c 276
c5aa993b
JM
277 default:
278 return -1;
279 }
c906108c
SS
280 return (dest < TEXT_SEGMENT_BASE) ? safety : dest;
281}
282
283
284/* Sequence of bytes for breakpoint instruction. */
285
286#define BIG_BREAKPOINT { 0x7d, 0x82, 0x10, 0x08 }
287#define LITTLE_BREAKPOINT { 0x08, 0x10, 0x82, 0x7d }
288
7a78ae4e
ND
289static unsigned char *
290rs6000_breakpoint_from_pc (CORE_ADDR *bp_addr, int *bp_size)
c906108c
SS
291{
292 static unsigned char big_breakpoint[] = BIG_BREAKPOINT;
293 static unsigned char little_breakpoint[] = LITTLE_BREAKPOINT;
294 *bp_size = 4;
295 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
296 return big_breakpoint;
297 else
298 return little_breakpoint;
299}
300
301
302/* AIX does not support PT_STEP. Simulate it. */
303
304void
379d08a1
AC
305rs6000_software_single_step (enum target_signal signal,
306 int insert_breakpoints_p)
c906108c
SS
307{
308#define INSNLEN(OPCODE) 4
309
310 static char le_breakp[] = LITTLE_BREAKPOINT;
311 static char be_breakp[] = BIG_BREAKPOINT;
312 char *breakp = TARGET_BYTE_ORDER == BIG_ENDIAN ? be_breakp : le_breakp;
313 int ii, insn;
314 CORE_ADDR loc;
315 CORE_ADDR breaks[2];
316 int opcode;
317
c5aa993b
JM
318 if (insert_breakpoints_p)
319 {
c906108c 320
c5aa993b 321 loc = read_pc ();
c906108c 322
c5aa993b 323 insn = read_memory_integer (loc, 4);
c906108c 324
c5aa993b
JM
325 breaks[0] = loc + INSNLEN (insn);
326 opcode = insn >> 26;
327 breaks[1] = branch_dest (opcode, insn, loc, breaks[0]);
c906108c 328
c5aa993b
JM
329 /* Don't put two breakpoints on the same address. */
330 if (breaks[1] == breaks[0])
331 breaks[1] = -1;
c906108c 332
c5aa993b 333 stepBreaks[1].address = 0;
c906108c 334
c5aa993b
JM
335 for (ii = 0; ii < 2; ++ii)
336 {
c906108c 337
c5aa993b
JM
338 /* ignore invalid breakpoint. */
339 if (breaks[ii] == -1)
340 continue;
c906108c 341
c5aa993b 342 read_memory (breaks[ii], stepBreaks[ii].data, 4);
c906108c 343
c5aa993b
JM
344 write_memory (breaks[ii], breakp, 4);
345 stepBreaks[ii].address = breaks[ii];
346 }
c906108c 347
c5aa993b
JM
348 }
349 else
350 {
c906108c 351
c5aa993b
JM
352 /* remove step breakpoints. */
353 for (ii = 0; ii < 2; ++ii)
354 if (stepBreaks[ii].address != 0)
355 write_memory
356 (stepBreaks[ii].address, stepBreaks[ii].data, 4);
c906108c 357
c5aa993b 358 }
c906108c 359 errno = 0; /* FIXME, don't ignore errors! */
c5aa993b 360 /* What errors? {read,write}_memory call error(). */
c906108c
SS
361}
362
363
364/* return pc value after skipping a function prologue and also return
365 information about a function frame.
366
367 in struct rs6000_framedata fdata:
c5aa993b
JM
368 - frameless is TRUE, if function does not have a frame.
369 - nosavedpc is TRUE, if function does not save %pc value in its frame.
370 - offset is the initial size of this stack frame --- the amount by
371 which we decrement the sp to allocate the frame.
372 - saved_gpr is the number of the first saved gpr.
373 - saved_fpr is the number of the first saved fpr.
374 - alloca_reg is the number of the register used for alloca() handling.
375 Otherwise -1.
376 - gpr_offset is the offset of the first saved gpr from the previous frame.
377 - fpr_offset is the offset of the first saved fpr from the previous frame.
378 - lr_offset is the offset of the saved lr
379 - cr_offset is the offset of the saved cr
380 */
c906108c
SS
381
382#define SIGNED_SHORT(x) \
383 ((sizeof (short) == 2) \
384 ? ((int)(short)(x)) \
385 : ((int)((((x) & 0xffff) ^ 0x8000) - 0x8000)))
386
387#define GET_SRC_REG(x) (((x) >> 21) & 0x1f)
388
55d05f3b
KB
389/* Limit the number of skipped non-prologue instructions, as the examining
390 of the prologue is expensive. */
391static int max_skip_non_prologue_insns = 10;
392
393/* Given PC representing the starting address of a function, and
394 LIM_PC which is the (sloppy) limit to which to scan when looking
395 for a prologue, attempt to further refine this limit by using
396 the line data in the symbol table. If successful, a better guess
397 on where the prologue ends is returned, otherwise the previous
398 value of lim_pc is returned. */
399static CORE_ADDR
400refine_prologue_limit (CORE_ADDR pc, CORE_ADDR lim_pc)
401{
402 struct symtab_and_line prologue_sal;
403
404 prologue_sal = find_pc_line (pc, 0);
405 if (prologue_sal.line != 0)
406 {
407 int i;
408 CORE_ADDR addr = prologue_sal.end;
409
410 /* Handle the case in which compiler's optimizer/scheduler
411 has moved instructions into the prologue. We scan ahead
412 in the function looking for address ranges whose corresponding
413 line number is less than or equal to the first one that we
414 found for the function. (It can be less than when the
415 scheduler puts a body instruction before the first prologue
416 instruction.) */
417 for (i = 2 * max_skip_non_prologue_insns;
418 i > 0 && (lim_pc == 0 || addr < lim_pc);
419 i--)
420 {
421 struct symtab_and_line sal;
422
423 sal = find_pc_line (addr, 0);
424 if (sal.line == 0)
425 break;
426 if (sal.line <= prologue_sal.line
427 && sal.symtab == prologue_sal.symtab)
428 {
429 prologue_sal = sal;
430 }
431 addr = sal.end;
432 }
433
434 if (lim_pc == 0 || prologue_sal.end < lim_pc)
435 lim_pc = prologue_sal.end;
436 }
437 return lim_pc;
438}
439
440
7a78ae4e 441static CORE_ADDR
077276e8 442skip_prologue (CORE_ADDR pc, CORE_ADDR lim_pc, struct rs6000_framedata *fdata)
c906108c
SS
443{
444 CORE_ADDR orig_pc = pc;
55d05f3b 445 CORE_ADDR last_prologue_pc = pc;
c906108c
SS
446 char buf[4];
447 unsigned long op;
448 long offset = 0;
482ca3f5
KB
449 int lr_reg = -1;
450 int cr_reg = -1;
c906108c
SS
451 int reg;
452 int framep = 0;
453 int minimal_toc_loaded = 0;
ddb20c56 454 int prev_insn_was_prologue_insn = 1;
55d05f3b
KB
455 int num_skip_non_prologue_insns = 0;
456
457 /* Attempt to find the end of the prologue when no limit is specified.
458 Note that refine_prologue_limit() has been written so that it may
459 be used to "refine" the limits of non-zero PC values too, but this
460 is only safe if we 1) trust the line information provided by the
461 compiler and 2) iterate enough to actually find the end of the
462 prologue.
463
464 It may become a good idea at some point (for both performance and
465 accuracy) to unconditionally call refine_prologue_limit(). But,
466 until we can make a clear determination that this is beneficial,
467 we'll play it safe and only use it to obtain a limit when none
468 has been specified. */
469 if (lim_pc == 0)
470 lim_pc = refine_prologue_limit (pc, lim_pc);
c906108c 471
ddb20c56 472 memset (fdata, 0, sizeof (struct rs6000_framedata));
c906108c
SS
473 fdata->saved_gpr = -1;
474 fdata->saved_fpr = -1;
475 fdata->alloca_reg = -1;
476 fdata->frameless = 1;
477 fdata->nosavedpc = 1;
478
55d05f3b 479 for (;; pc += 4)
c906108c 480 {
ddb20c56
KB
481 /* Sometimes it isn't clear if an instruction is a prologue
482 instruction or not. When we encounter one of these ambiguous
483 cases, we'll set prev_insn_was_prologue_insn to 0 (false).
484 Otherwise, we'll assume that it really is a prologue instruction. */
485 if (prev_insn_was_prologue_insn)
486 last_prologue_pc = pc;
55d05f3b
KB
487
488 /* Stop scanning if we've hit the limit. */
489 if (lim_pc != 0 && pc >= lim_pc)
490 break;
491
ddb20c56
KB
492 prev_insn_was_prologue_insn = 1;
493
55d05f3b 494 /* Fetch the instruction and convert it to an integer. */
ddb20c56
KB
495 if (target_read_memory (pc, buf, 4))
496 break;
497 op = extract_signed_integer (buf, 4);
c906108c 498
c5aa993b
JM
499 if ((op & 0xfc1fffff) == 0x7c0802a6)
500 { /* mflr Rx */
501 lr_reg = (op & 0x03e00000) | 0x90010000;
502 continue;
c906108c 503
c5aa993b
JM
504 }
505 else if ((op & 0xfc1fffff) == 0x7c000026)
506 { /* mfcr Rx */
507 cr_reg = (op & 0x03e00000) | 0x90010000;
508 continue;
c906108c 509
c906108c 510 }
c5aa993b
JM
511 else if ((op & 0xfc1f0000) == 0xd8010000)
512 { /* stfd Rx,NUM(r1) */
513 reg = GET_SRC_REG (op);
514 if (fdata->saved_fpr == -1 || fdata->saved_fpr > reg)
515 {
516 fdata->saved_fpr = reg;
517 fdata->fpr_offset = SIGNED_SHORT (op) + offset;
518 }
519 continue;
c906108c 520
c5aa993b
JM
521 }
522 else if (((op & 0xfc1f0000) == 0xbc010000) || /* stm Rx, NUM(r1) */
7a78ae4e
ND
523 (((op & 0xfc1f0000) == 0x90010000 || /* st rx,NUM(r1) */
524 (op & 0xfc1f0003) == 0xf8010000) && /* std rx,NUM(r1) */
525 (op & 0x03e00000) >= 0x01a00000)) /* rx >= r13 */
c5aa993b
JM
526 {
527
528 reg = GET_SRC_REG (op);
529 if (fdata->saved_gpr == -1 || fdata->saved_gpr > reg)
530 {
531 fdata->saved_gpr = reg;
7a78ae4e
ND
532 if ((op & 0xfc1f0003) == 0xf8010000)
533 op = (op >> 1) << 1;
c5aa993b
JM
534 fdata->gpr_offset = SIGNED_SHORT (op) + offset;
535 }
536 continue;
c906108c 537
ddb20c56
KB
538 }
539 else if ((op & 0xffff0000) == 0x60000000)
540 {
541 /* nop */
542 /* Allow nops in the prologue, but do not consider them to
543 be part of the prologue unless followed by other prologue
544 instructions. */
545 prev_insn_was_prologue_insn = 0;
546 continue;
547
c906108c 548 }
c5aa993b
JM
549 else if ((op & 0xffff0000) == 0x3c000000)
550 { /* addis 0,0,NUM, used
551 for >= 32k frames */
552 fdata->offset = (op & 0x0000ffff) << 16;
553 fdata->frameless = 0;
554 continue;
555
556 }
557 else if ((op & 0xffff0000) == 0x60000000)
558 { /* ori 0,0,NUM, 2nd ha
559 lf of >= 32k frames */
560 fdata->offset |= (op & 0x0000ffff);
561 fdata->frameless = 0;
562 continue;
563
564 }
482ca3f5 565 else if (lr_reg != -1 && (op & 0xffff0000) == lr_reg)
c5aa993b
JM
566 { /* st Rx,NUM(r1)
567 where Rx == lr */
568 fdata->lr_offset = SIGNED_SHORT (op) + offset;
569 fdata->nosavedpc = 0;
570 lr_reg = 0;
571 continue;
572
573 }
482ca3f5 574 else if (cr_reg != -1 && (op & 0xffff0000) == cr_reg)
c5aa993b
JM
575 { /* st Rx,NUM(r1)
576 where Rx == cr */
577 fdata->cr_offset = SIGNED_SHORT (op) + offset;
578 cr_reg = 0;
579 continue;
580
581 }
582 else if (op == 0x48000005)
583 { /* bl .+4 used in
584 -mrelocatable */
585 continue;
586
587 }
588 else if (op == 0x48000004)
589 { /* b .+4 (xlc) */
590 break;
591
592 }
593 else if (((op & 0xffff0000) == 0x801e0000 || /* lwz 0,NUM(r30), used
c906108c 594 in V.4 -mrelocatable */
c5aa993b
JM
595 op == 0x7fc0f214) && /* add r30,r0,r30, used
596 in V.4 -mrelocatable */
597 lr_reg == 0x901e0000)
598 {
599 continue;
c906108c 600
c5aa993b
JM
601 }
602 else if ((op & 0xffff0000) == 0x3fc00000 || /* addis 30,0,foo@ha, used
c906108c 603 in V.4 -mminimal-toc */
c5aa993b
JM
604 (op & 0xffff0000) == 0x3bde0000)
605 { /* addi 30,30,foo@l */
606 continue;
c906108c 607
c5aa993b
JM
608 }
609 else if ((op & 0xfc000001) == 0x48000001)
610 { /* bl foo,
611 to save fprs??? */
c906108c 612
c5aa993b
JM
613 fdata->frameless = 0;
614 /* Don't skip over the subroutine call if it is not within the first
615 three instructions of the prologue. */
616 if ((pc - orig_pc) > 8)
617 break;
618
619 op = read_memory_integer (pc + 4, 4);
620
621 /* At this point, make sure this is not a trampoline function
622 (a function that simply calls another functions, and nothing else).
623 If the next is not a nop, this branch was part of the function
624 prologue. */
625
626 if (op == 0x4def7b82 || op == 0) /* crorc 15, 15, 15 */
627 break; /* don't skip over
628 this branch */
629 continue;
630
631 /* update stack pointer */
632 }
7a78ae4e
ND
633 else if ((op & 0xffff0000) == 0x94210000 || /* stu r1,NUM(r1) */
634 (op & 0xffff0003) == 0xf8210001) /* stdu r1,NUM(r1) */
635 {
c5aa993b 636 fdata->frameless = 0;
7a78ae4e
ND
637 if ((op & 0xffff0003) == 0xf8210001)
638 op = (op >> 1) << 1;
c5aa993b
JM
639 fdata->offset = SIGNED_SHORT (op);
640 offset = fdata->offset;
641 continue;
642
643 }
644 else if (op == 0x7c21016e)
645 { /* stwux 1,1,0 */
646 fdata->frameless = 0;
647 offset = fdata->offset;
648 continue;
649
650 /* Load up minimal toc pointer */
651 }
652 else if ((op >> 22) == 0x20f
653 && !minimal_toc_loaded)
654 { /* l r31,... or l r30,... */
655 minimal_toc_loaded = 1;
656 continue;
657
f6077098
KB
658 /* move parameters from argument registers to local variable
659 registers */
660 }
661 else if ((op & 0xfc0007fe) == 0x7c000378 && /* mr(.) Rx,Ry */
662 (((op >> 21) & 31) >= 3) && /* R3 >= Ry >= R10 */
663 (((op >> 21) & 31) <= 10) &&
664 (((op >> 16) & 31) >= fdata->saved_gpr)) /* Rx: local var reg */
665 {
666 continue;
667
c5aa993b
JM
668 /* store parameters in stack */
669 }
670 else if ((op & 0xfc1f0000) == 0x90010000 || /* st rx,NUM(r1) */
7a78ae4e 671 (op & 0xfc1f0003) == 0xf8010000 || /* std rx,NUM(r1) */
c5aa993b 672 (op & 0xfc1f0000) == 0xd8010000 || /* stfd Rx,NUM(r1) */
7a78ae4e
ND
673 (op & 0xfc1f0000) == 0xfc010000) /* frsp, fp?,NUM(r1) */
674 {
c5aa993b 675 continue;
c906108c 676
c5aa993b
JM
677 /* store parameters in stack via frame pointer */
678 }
679 else if (framep &&
680 ((op & 0xfc1f0000) == 0x901f0000 || /* st rx,NUM(r1) */
681 (op & 0xfc1f0000) == 0xd81f0000 || /* stfd Rx,NUM(r1) */
682 (op & 0xfc1f0000) == 0xfc1f0000))
683 { /* frsp, fp?,NUM(r1) */
684 continue;
685
686 /* Set up frame pointer */
687 }
688 else if (op == 0x603f0000 /* oril r31, r1, 0x0 */
689 || op == 0x7c3f0b78)
690 { /* mr r31, r1 */
691 fdata->frameless = 0;
692 framep = 1;
693 fdata->alloca_reg = 31;
694 continue;
695
696 /* Another way to set up the frame pointer. */
697 }
698 else if ((op & 0xfc1fffff) == 0x38010000)
699 { /* addi rX, r1, 0x0 */
700 fdata->frameless = 0;
701 framep = 1;
702 fdata->alloca_reg = (op & ~0x38010000) >> 21;
703 continue;
704
705 }
706 else
707 {
55d05f3b
KB
708 /* Not a recognized prologue instruction.
709 Handle optimizer code motions into the prologue by continuing
710 the search if we have no valid frame yet or if the return
711 address is not yet saved in the frame. */
712 if (fdata->frameless == 0
713 && (lr_reg == -1 || fdata->nosavedpc == 0))
714 break;
715
716 if (op == 0x4e800020 /* blr */
717 || op == 0x4e800420) /* bctr */
718 /* Do not scan past epilogue in frameless functions or
719 trampolines. */
720 break;
721 if ((op & 0xf4000000) == 0x40000000) /* bxx */
722 /* Never skip branches. */
723 break;
724
725 if (num_skip_non_prologue_insns++ > max_skip_non_prologue_insns)
726 /* Do not scan too many insns, scanning insns is expensive with
727 remote targets. */
728 break;
729
730 /* Continue scanning. */
731 prev_insn_was_prologue_insn = 0;
732 continue;
c5aa993b 733 }
c906108c
SS
734 }
735
736#if 0
737/* I have problems with skipping over __main() that I need to address
738 * sometime. Previously, I used to use misc_function_vector which
739 * didn't work as well as I wanted to be. -MGO */
740
741 /* If the first thing after skipping a prolog is a branch to a function,
742 this might be a call to an initializer in main(), introduced by gcc2.
743 We'd like to skip over it as well. Fortunately, xlc does some extra
744 work before calling a function right after a prologue, thus we can
745 single out such gcc2 behaviour. */
c906108c 746
c906108c 747
c5aa993b
JM
748 if ((op & 0xfc000001) == 0x48000001)
749 { /* bl foo, an initializer function? */
750 op = read_memory_integer (pc + 4, 4);
751
752 if (op == 0x4def7b82)
753 { /* cror 0xf, 0xf, 0xf (nop) */
c906108c 754
c5aa993b
JM
755 /* check and see if we are in main. If so, skip over this initializer
756 function as well. */
c906108c 757
c5aa993b 758 tmp = find_pc_misc_function (pc);
51cc5b07 759 if (tmp >= 0 && STREQ (misc_function_vector[tmp].name, main_name ()))
c5aa993b
JM
760 return pc + 8;
761 }
c906108c 762 }
c906108c 763#endif /* 0 */
c5aa993b
JM
764
765 fdata->offset = -fdata->offset;
ddb20c56 766 return last_prologue_pc;
c906108c
SS
767}
768
769
770/*************************************************************************
f6077098 771 Support for creating pushing a dummy frame into the stack, and popping
c906108c
SS
772 frames, etc.
773*************************************************************************/
774
c906108c 775
7a78ae4e 776/* Pop the innermost frame, go back to the caller. */
c5aa993b 777
c906108c 778static void
7a78ae4e 779rs6000_pop_frame (void)
c906108c 780{
470d5666 781 CORE_ADDR pc, lr, sp, prev_sp, addr; /* %pc, %lr, %sp */
c906108c
SS
782 struct rs6000_framedata fdata;
783 struct frame_info *frame = get_current_frame ();
470d5666 784 int ii, wordsize;
c906108c
SS
785
786 pc = read_pc ();
787 sp = FRAME_FP (frame);
788
58223630 789 if (PC_IN_CALL_DUMMY (frame->pc, frame->frame, frame->frame))
c906108c 790 {
7a78ae4e
ND
791 generic_pop_dummy_frame ();
792 flush_cached_frames ();
793 return;
c906108c
SS
794 }
795
796 /* Make sure that all registers are valid. */
797 read_register_bytes (0, NULL, REGISTER_BYTES);
798
799 /* figure out previous %pc value. If the function is frameless, it is
800 still in the link register, otherwise walk the frames and retrieve the
801 saved %pc value in the previous frame. */
802
803 addr = get_pc_function_start (frame->pc);
077276e8 804 (void) skip_prologue (addr, frame->pc, &fdata);
c906108c 805
7a78ae4e 806 wordsize = TDEP->wordsize;
c906108c
SS
807 if (fdata.frameless)
808 prev_sp = sp;
809 else
7a78ae4e 810 prev_sp = read_memory_addr (sp, wordsize);
c906108c 811 if (fdata.lr_offset == 0)
9aa1e687 812 lr = read_register (PPC_LR_REGNUM);
c906108c 813 else
7a78ae4e 814 lr = read_memory_addr (prev_sp + fdata.lr_offset, wordsize);
c906108c
SS
815
816 /* reset %pc value. */
817 write_register (PC_REGNUM, lr);
818
819 /* reset register values if any was saved earlier. */
820
821 if (fdata.saved_gpr != -1)
822 {
823 addr = prev_sp + fdata.gpr_offset;
c5aa993b
JM
824 for (ii = fdata.saved_gpr; ii <= 31; ++ii)
825 {
7a78ae4e
ND
826 read_memory (addr, &registers[REGISTER_BYTE (ii)], wordsize);
827 addr += wordsize;
c5aa993b 828 }
c906108c
SS
829 }
830
831 if (fdata.saved_fpr != -1)
832 {
833 addr = prev_sp + fdata.fpr_offset;
c5aa993b
JM
834 for (ii = fdata.saved_fpr; ii <= 31; ++ii)
835 {
836 read_memory (addr, &registers[REGISTER_BYTE (ii + FP0_REGNUM)], 8);
837 addr += 8;
838 }
c906108c
SS
839 }
840
841 write_register (SP_REGNUM, prev_sp);
842 target_store_registers (-1);
843 flush_cached_frames ();
844}
845
7a78ae4e
ND
846/* Fixup the call sequence of a dummy function, with the real function
847 address. Its arguments will be passed by gdb. */
c906108c 848
7a78ae4e
ND
849static void
850rs6000_fix_call_dummy (char *dummyname, CORE_ADDR pc, CORE_ADDR fun,
ea7c478f 851 int nargs, struct value **args, struct type *type,
7a78ae4e 852 int gcc_p)
c906108c
SS
853{
854#define TOC_ADDR_OFFSET 20
855#define TARGET_ADDR_OFFSET 28
856
857 int ii;
858 CORE_ADDR target_addr;
859
7a78ae4e 860 if (rs6000_find_toc_address_hook != NULL)
f6077098 861 {
7a78ae4e 862 CORE_ADDR tocvalue = (*rs6000_find_toc_address_hook) (fun);
9aa1e687 863 write_register (PPC_TOC_REGNUM, tocvalue);
f6077098 864 }
c906108c
SS
865}
866
7a78ae4e 867/* Pass the arguments in either registers, or in the stack. In RS/6000,
c906108c
SS
868 the first eight words of the argument list (that might be less than
869 eight parameters if some parameters occupy more than one word) are
7a78ae4e 870 passed in r3..r10 registers. float and double parameters are
c906108c
SS
871 passed in fpr's, in addition to that. Rest of the parameters if any
872 are passed in user stack. There might be cases in which half of the
873 parameter is copied into registers, the other half is pushed into
874 stack.
875
7a78ae4e
ND
876 Stack must be aligned on 64-bit boundaries when synthesizing
877 function calls.
878
c906108c
SS
879 If the function is returning a structure, then the return address is passed
880 in r3, then the first 7 words of the parameters can be passed in registers,
881 starting from r4. */
882
7a78ae4e 883static CORE_ADDR
ea7c478f 884rs6000_push_arguments (int nargs, struct value **args, CORE_ADDR sp,
7a78ae4e 885 int struct_return, CORE_ADDR struct_addr)
c906108c
SS
886{
887 int ii;
888 int len = 0;
c5aa993b
JM
889 int argno; /* current argument number */
890 int argbytes; /* current argument byte */
891 char tmp_buffer[50];
892 int f_argno = 0; /* current floating point argno */
7a78ae4e 893 int wordsize = TDEP->wordsize;
c906108c 894
ea7c478f 895 struct value *arg = 0;
c906108c
SS
896 struct type *type;
897
898 CORE_ADDR saved_sp;
899
c906108c
SS
900 /* The first eight words of ther arguments are passed in registers. Copy
901 them appropriately.
902
903 If the function is returning a `struct', then the first word (which
904 will be passed in r3) is used for struct return address. In that
905 case we should advance one word and start from r4 register to copy
906 parameters. */
907
c5aa993b 908 ii = struct_return ? 1 : 0;
c906108c
SS
909
910/*
c5aa993b
JM
911 effectively indirect call... gcc does...
912
913 return_val example( float, int);
914
915 eabi:
916 float in fp0, int in r3
917 offset of stack on overflow 8/16
918 for varargs, must go by type.
919 power open:
920 float in r3&r4, int in r5
921 offset of stack on overflow different
922 both:
923 return in r3 or f0. If no float, must study how gcc emulates floats;
924 pay attention to arg promotion.
925 User may have to cast\args to handle promotion correctly
926 since gdb won't know if prototype supplied or not.
927 */
c906108c 928
c5aa993b
JM
929 for (argno = 0, argbytes = 0; argno < nargs && ii < 8; ++ii)
930 {
f6077098 931 int reg_size = REGISTER_RAW_SIZE (ii + 3);
c5aa993b
JM
932
933 arg = args[argno];
934 type = check_typedef (VALUE_TYPE (arg));
935 len = TYPE_LENGTH (type);
936
937 if (TYPE_CODE (type) == TYPE_CODE_FLT)
938 {
939
940 /* floating point arguments are passed in fpr's, as well as gpr's.
941 There are 13 fpr's reserved for passing parameters. At this point
942 there is no way we would run out of them. */
943
944 if (len > 8)
945 printf_unfiltered (
946 "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
947
948 memcpy (&registers[REGISTER_BYTE (FP0_REGNUM + 1 + f_argno)],
949 VALUE_CONTENTS (arg),
950 len);
951 ++f_argno;
952 }
953
f6077098 954 if (len > reg_size)
c5aa993b
JM
955 {
956
957 /* Argument takes more than one register. */
958 while (argbytes < len)
959 {
f6077098 960 memset (&registers[REGISTER_BYTE (ii + 3)], 0, reg_size);
c5aa993b
JM
961 memcpy (&registers[REGISTER_BYTE (ii + 3)],
962 ((char *) VALUE_CONTENTS (arg)) + argbytes,
f6077098
KB
963 (len - argbytes) > reg_size
964 ? reg_size : len - argbytes);
965 ++ii, argbytes += reg_size;
c5aa993b
JM
966
967 if (ii >= 8)
968 goto ran_out_of_registers_for_arguments;
969 }
970 argbytes = 0;
971 --ii;
972 }
973 else
974 { /* Argument can fit in one register. No problem. */
f6077098
KB
975 int adj = TARGET_BYTE_ORDER == BIG_ENDIAN ? reg_size - len : 0;
976 memset (&registers[REGISTER_BYTE (ii + 3)], 0, reg_size);
977 memcpy ((char *)&registers[REGISTER_BYTE (ii + 3)] + adj,
978 VALUE_CONTENTS (arg), len);
c5aa993b
JM
979 }
980 ++argno;
c906108c 981 }
c906108c
SS
982
983ran_out_of_registers_for_arguments:
984
7a78ae4e 985 saved_sp = read_sp ();
f6077098 986#ifndef ELF_OBJECT_FORMAT
7a78ae4e
ND
987 /* location for 8 parameters are always reserved. */
988 sp -= wordsize * 8;
f6077098 989
7a78ae4e
ND
990 /* another six words for back chain, TOC register, link register, etc. */
991 sp -= wordsize * 6;
f6077098 992
7a78ae4e
ND
993 /* stack pointer must be quadword aligned */
994 sp &= -16;
f6077098 995#endif
c906108c 996
c906108c
SS
997 /* if there are more arguments, allocate space for them in
998 the stack, then push them starting from the ninth one. */
999
c5aa993b
JM
1000 if ((argno < nargs) || argbytes)
1001 {
1002 int space = 0, jj;
c906108c 1003
c5aa993b
JM
1004 if (argbytes)
1005 {
1006 space += ((len - argbytes + 3) & -4);
1007 jj = argno + 1;
1008 }
1009 else
1010 jj = argno;
c906108c 1011
c5aa993b
JM
1012 for (; jj < nargs; ++jj)
1013 {
ea7c478f 1014 struct value *val = args[jj];
c5aa993b
JM
1015 space += ((TYPE_LENGTH (VALUE_TYPE (val))) + 3) & -4;
1016 }
c906108c 1017
c5aa993b 1018 /* add location required for the rest of the parameters */
f6077098 1019 space = (space + 15) & -16;
c5aa993b 1020 sp -= space;
c906108c 1021
c5aa993b
JM
1022 /* This is another instance we need to be concerned about securing our
1023 stack space. If we write anything underneath %sp (r1), we might conflict
1024 with the kernel who thinks he is free to use this area. So, update %sp
1025 first before doing anything else. */
c906108c 1026
c5aa993b 1027 write_register (SP_REGNUM, sp);
c906108c 1028
c5aa993b
JM
1029 /* if the last argument copied into the registers didn't fit there
1030 completely, push the rest of it into stack. */
c906108c 1031
c5aa993b
JM
1032 if (argbytes)
1033 {
1034 write_memory (sp + 24 + (ii * 4),
1035 ((char *) VALUE_CONTENTS (arg)) + argbytes,
1036 len - argbytes);
1037 ++argno;
1038 ii += ((len - argbytes + 3) & -4) / 4;
1039 }
c906108c 1040
c5aa993b
JM
1041 /* push the rest of the arguments into stack. */
1042 for (; argno < nargs; ++argno)
1043 {
c906108c 1044
c5aa993b
JM
1045 arg = args[argno];
1046 type = check_typedef (VALUE_TYPE (arg));
1047 len = TYPE_LENGTH (type);
c906108c
SS
1048
1049
c5aa993b
JM
1050 /* float types should be passed in fpr's, as well as in the stack. */
1051 if (TYPE_CODE (type) == TYPE_CODE_FLT && f_argno < 13)
1052 {
c906108c 1053
c5aa993b
JM
1054 if (len > 8)
1055 printf_unfiltered (
1056 "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
c906108c 1057
c5aa993b
JM
1058 memcpy (&registers[REGISTER_BYTE (FP0_REGNUM + 1 + f_argno)],
1059 VALUE_CONTENTS (arg),
1060 len);
1061 ++f_argno;
1062 }
c906108c 1063
c5aa993b
JM
1064 write_memory (sp + 24 + (ii * 4), (char *) VALUE_CONTENTS (arg), len);
1065 ii += ((len + 3) & -4) / 4;
1066 }
c906108c 1067 }
c906108c
SS
1068 else
1069 /* Secure stack areas first, before doing anything else. */
1070 write_register (SP_REGNUM, sp);
1071
c906108c
SS
1072 /* set back chain properly */
1073 store_address (tmp_buffer, 4, saved_sp);
1074 write_memory (sp, tmp_buffer, 4);
1075
1076 target_store_registers (-1);
1077 return sp;
1078}
c906108c
SS
1079
1080/* Function: ppc_push_return_address (pc, sp)
1081 Set up the return address for the inferior function call. */
1082
7a78ae4e
ND
1083static CORE_ADDR
1084ppc_push_return_address (CORE_ADDR pc, CORE_ADDR sp)
c906108c 1085{
9aa1e687 1086 write_register (PPC_LR_REGNUM, CALL_DUMMY_ADDRESS ());
c906108c
SS
1087 return sp;
1088}
1089
7a78ae4e
ND
1090/* Extract a function return value of type TYPE from raw register array
1091 REGBUF, and copy that return value into VALBUF in virtual format. */
c906108c 1092
7a78ae4e
ND
1093static void
1094rs6000_extract_return_value (struct type *valtype, char *regbuf, char *valbuf)
c906108c
SS
1095{
1096 int offset = 0;
1097
c5aa993b
JM
1098 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1099 {
c906108c 1100
c5aa993b
JM
1101 double dd;
1102 float ff;
1103 /* floats and doubles are returned in fpr1. fpr's have a size of 8 bytes.
1104 We need to truncate the return value into float size (4 byte) if
1105 necessary. */
c906108c 1106
c5aa993b
JM
1107 if (TYPE_LENGTH (valtype) > 4) /* this is a double */
1108 memcpy (valbuf,
1109 &regbuf[REGISTER_BYTE (FP0_REGNUM + 1)],
1110 TYPE_LENGTH (valtype));
1111 else
1112 { /* float */
1113 memcpy (&dd, &regbuf[REGISTER_BYTE (FP0_REGNUM + 1)], 8);
1114 ff = (float) dd;
1115 memcpy (valbuf, &ff, sizeof (float));
1116 }
1117 }
1118 else
1119 {
1120 /* return value is copied starting from r3. */
1121 if (TARGET_BYTE_ORDER == BIG_ENDIAN
1122 && TYPE_LENGTH (valtype) < REGISTER_RAW_SIZE (3))
1123 offset = REGISTER_RAW_SIZE (3) - TYPE_LENGTH (valtype);
1124
1125 memcpy (valbuf,
1126 regbuf + REGISTER_BYTE (3) + offset,
c906108c 1127 TYPE_LENGTH (valtype));
c906108c 1128 }
c906108c
SS
1129}
1130
7a78ae4e 1131/* Keep structure return address in this variable.
c906108c
SS
1132 FIXME: This is a horrid kludge which should not be allowed to continue
1133 living. This only allows a single nested call to a structure-returning
1134 function. Come on, guys! -- gnu@cygnus.com, Aug 92 */
1135
7a78ae4e 1136static CORE_ADDR rs6000_struct_return_address;
c906108c 1137
977adac5
ND
1138/* Return whether handle_inferior_event() should proceed through code
1139 starting at PC in function NAME when stepping.
1140
1141 The AIX -bbigtoc linker option generates functions @FIX0, @FIX1, etc. to
1142 handle memory references that are too distant to fit in instructions
1143 generated by the compiler. For example, if 'foo' in the following
1144 instruction:
1145
1146 lwz r9,foo(r2)
1147
1148 is greater than 32767, the linker might replace the lwz with a branch to
1149 somewhere in @FIX1 that does the load in 2 instructions and then branches
1150 back to where execution should continue.
1151
1152 GDB should silently step over @FIX code, just like AIX dbx does.
1153 Unfortunately, the linker uses the "b" instruction for the branches,
1154 meaning that the link register doesn't get set. Therefore, GDB's usual
1155 step_over_function() mechanism won't work.
1156
1157 Instead, use the IN_SOLIB_RETURN_TRAMPOLINE and SKIP_TRAMPOLINE_CODE hooks
1158 in handle_inferior_event() to skip past @FIX code. */
1159
1160int
1161rs6000_in_solib_return_trampoline (CORE_ADDR pc, char *name)
1162{
1163 return name && !strncmp (name, "@FIX", 4);
1164}
1165
1166/* Skip code that the user doesn't want to see when stepping:
1167
1168 1. Indirect function calls use a piece of trampoline code to do context
1169 switching, i.e. to set the new TOC table. Skip such code if we are on
1170 its first instruction (as when we have single-stepped to here).
1171
1172 2. Skip shared library trampoline code (which is different from
c906108c 1173 indirect function call trampolines).
977adac5
ND
1174
1175 3. Skip bigtoc fixup code.
1176
c906108c 1177 Result is desired PC to step until, or NULL if we are not in
977adac5 1178 code that should be skipped. */
c906108c
SS
1179
1180CORE_ADDR
7a78ae4e 1181rs6000_skip_trampoline_code (CORE_ADDR pc)
c906108c
SS
1182{
1183 register unsigned int ii, op;
977adac5 1184 int rel;
c906108c 1185 CORE_ADDR solib_target_pc;
977adac5 1186 struct minimal_symbol *msymbol;
c906108c 1187
c5aa993b
JM
1188 static unsigned trampoline_code[] =
1189 {
1190 0x800b0000, /* l r0,0x0(r11) */
1191 0x90410014, /* st r2,0x14(r1) */
1192 0x7c0903a6, /* mtctr r0 */
1193 0x804b0004, /* l r2,0x4(r11) */
1194 0x816b0008, /* l r11,0x8(r11) */
1195 0x4e800420, /* bctr */
1196 0x4e800020, /* br */
1197 0
c906108c
SS
1198 };
1199
977adac5
ND
1200 /* Check for bigtoc fixup code. */
1201 msymbol = lookup_minimal_symbol_by_pc (pc);
1202 if (msymbol && rs6000_in_solib_return_trampoline (pc, SYMBOL_NAME (msymbol)))
1203 {
1204 /* Double-check that the third instruction from PC is relative "b". */
1205 op = read_memory_integer (pc + 8, 4);
1206 if ((op & 0xfc000003) == 0x48000000)
1207 {
1208 /* Extract bits 6-29 as a signed 24-bit relative word address and
1209 add it to the containing PC. */
1210 rel = ((int)(op << 6) >> 6);
1211 return pc + 8 + rel;
1212 }
1213 }
1214
c906108c
SS
1215 /* If pc is in a shared library trampoline, return its target. */
1216 solib_target_pc = find_solib_trampoline_target (pc);
1217 if (solib_target_pc)
1218 return solib_target_pc;
1219
c5aa993b
JM
1220 for (ii = 0; trampoline_code[ii]; ++ii)
1221 {
1222 op = read_memory_integer (pc + (ii * 4), 4);
1223 if (op != trampoline_code[ii])
1224 return 0;
1225 }
1226 ii = read_register (11); /* r11 holds destination addr */
7a78ae4e 1227 pc = read_memory_addr (ii, TDEP->wordsize); /* (r11) value */
c906108c
SS
1228 return pc;
1229}
1230
1231/* Determines whether the function FI has a frame on the stack or not. */
1232
9aa1e687 1233int
c877c8e6 1234rs6000_frameless_function_invocation (struct frame_info *fi)
c906108c
SS
1235{
1236 CORE_ADDR func_start;
1237 struct rs6000_framedata fdata;
1238
1239 /* Don't even think about framelessness except on the innermost frame
1240 or if the function was interrupted by a signal. */
1241 if (fi->next != NULL && !fi->next->signal_handler_caller)
1242 return 0;
c5aa993b 1243
c906108c
SS
1244 func_start = get_pc_function_start (fi->pc);
1245
1246 /* If we failed to find the start of the function, it is a mistake
1247 to inspect the instructions. */
1248
1249 if (!func_start)
1250 {
1251 /* A frame with a zero PC is usually created by dereferencing a NULL
c5aa993b
JM
1252 function pointer, normally causing an immediate core dump of the
1253 inferior. Mark function as frameless, as the inferior has no chance
1254 of setting up a stack frame. */
c906108c
SS
1255 if (fi->pc == 0)
1256 return 1;
1257 else
1258 return 0;
1259 }
1260
077276e8 1261 (void) skip_prologue (func_start, fi->pc, &fdata);
c906108c
SS
1262 return fdata.frameless;
1263}
1264
1265/* Return the PC saved in a frame */
1266
9aa1e687 1267CORE_ADDR
c877c8e6 1268rs6000_frame_saved_pc (struct frame_info *fi)
c906108c
SS
1269{
1270 CORE_ADDR func_start;
1271 struct rs6000_framedata fdata;
7a78ae4e 1272 int wordsize = TDEP->wordsize;
c906108c
SS
1273
1274 if (fi->signal_handler_caller)
7a78ae4e 1275 return read_memory_addr (fi->frame + SIG_FRAME_PC_OFFSET, wordsize);
c906108c 1276
7a78ae4e
ND
1277 if (PC_IN_CALL_DUMMY (fi->pc, fi->frame, fi->frame))
1278 return generic_read_register_dummy (fi->pc, fi->frame, PC_REGNUM);
c906108c
SS
1279
1280 func_start = get_pc_function_start (fi->pc);
1281
1282 /* If we failed to find the start of the function, it is a mistake
1283 to inspect the instructions. */
1284 if (!func_start)
1285 return 0;
1286
077276e8 1287 (void) skip_prologue (func_start, fi->pc, &fdata);
c906108c
SS
1288
1289 if (fdata.lr_offset == 0 && fi->next != NULL)
1290 {
1291 if (fi->next->signal_handler_caller)
7a78ae4e
ND
1292 return read_memory_addr (fi->next->frame + SIG_FRAME_LR_OFFSET,
1293 wordsize);
c906108c 1294 else
7a78ae4e
ND
1295 return read_memory_addr (FRAME_CHAIN (fi) + DEFAULT_LR_SAVE,
1296 wordsize);
c906108c
SS
1297 }
1298
1299 if (fdata.lr_offset == 0)
9aa1e687 1300 return read_register (PPC_LR_REGNUM);
c906108c 1301
7a78ae4e 1302 return read_memory_addr (FRAME_CHAIN (fi) + fdata.lr_offset, wordsize);
c906108c
SS
1303}
1304
1305/* If saved registers of frame FI are not known yet, read and cache them.
1306 &FDATAP contains rs6000_framedata; TDATAP can be NULL,
1307 in which case the framedata are read. */
1308
1309static void
7a78ae4e 1310frame_get_saved_regs (struct frame_info *fi, struct rs6000_framedata *fdatap)
c906108c 1311{
c5aa993b 1312 CORE_ADDR frame_addr;
c906108c 1313 struct rs6000_framedata work_fdata;
7a78ae4e 1314 int wordsize = TDEP->wordsize;
c906108c
SS
1315
1316 if (fi->saved_regs)
1317 return;
c5aa993b 1318
c906108c
SS
1319 if (fdatap == NULL)
1320 {
1321 fdatap = &work_fdata;
077276e8 1322 (void) skip_prologue (get_pc_function_start (fi->pc), fi->pc, fdatap);
c906108c
SS
1323 }
1324
1325 frame_saved_regs_zalloc (fi);
1326
1327 /* If there were any saved registers, figure out parent's stack
1328 pointer. */
1329 /* The following is true only if the frame doesn't have a call to
1330 alloca(), FIXME. */
1331
1332 if (fdatap->saved_fpr == 0 && fdatap->saved_gpr == 0
1333 && fdatap->lr_offset == 0 && fdatap->cr_offset == 0)
1334 frame_addr = 0;
1335 else if (fi->prev && fi->prev->frame)
1336 frame_addr = fi->prev->frame;
1337 else
7a78ae4e 1338 frame_addr = read_memory_addr (fi->frame, wordsize);
c5aa993b 1339
c906108c
SS
1340 /* if != -1, fdatap->saved_fpr is the smallest number of saved_fpr.
1341 All fpr's from saved_fpr to fp31 are saved. */
1342
1343 if (fdatap->saved_fpr >= 0)
1344 {
1345 int i;
7a78ae4e 1346 CORE_ADDR fpr_addr = frame_addr + fdatap->fpr_offset;
c906108c
SS
1347 for (i = fdatap->saved_fpr; i < 32; i++)
1348 {
7a78ae4e
ND
1349 fi->saved_regs[FP0_REGNUM + i] = fpr_addr;
1350 fpr_addr += 8;
c906108c
SS
1351 }
1352 }
1353
1354 /* if != -1, fdatap->saved_gpr is the smallest number of saved_gpr.
1355 All gpr's from saved_gpr to gpr31 are saved. */
1356
1357 if (fdatap->saved_gpr >= 0)
1358 {
1359 int i;
7a78ae4e 1360 CORE_ADDR gpr_addr = frame_addr + fdatap->gpr_offset;
c906108c
SS
1361 for (i = fdatap->saved_gpr; i < 32; i++)
1362 {
7a78ae4e
ND
1363 fi->saved_regs[i] = gpr_addr;
1364 gpr_addr += wordsize;
c906108c
SS
1365 }
1366 }
1367
1368 /* If != 0, fdatap->cr_offset is the offset from the frame that holds
1369 the CR. */
1370 if (fdatap->cr_offset != 0)
9aa1e687 1371 fi->saved_regs[PPC_CR_REGNUM] = frame_addr + fdatap->cr_offset;
c906108c
SS
1372
1373 /* If != 0, fdatap->lr_offset is the offset from the frame that holds
1374 the LR. */
1375 if (fdatap->lr_offset != 0)
9aa1e687 1376 fi->saved_regs[PPC_LR_REGNUM] = frame_addr + fdatap->lr_offset;
c906108c
SS
1377}
1378
1379/* Return the address of a frame. This is the inital %sp value when the frame
1380 was first allocated. For functions calling alloca(), it might be saved in
1381 an alloca register. */
1382
1383static CORE_ADDR
7a78ae4e 1384frame_initial_stack_address (struct frame_info *fi)
c906108c
SS
1385{
1386 CORE_ADDR tmpaddr;
1387 struct rs6000_framedata fdata;
1388 struct frame_info *callee_fi;
1389
1390 /* if the initial stack pointer (frame address) of this frame is known,
1391 just return it. */
1392
1393 if (fi->extra_info->initial_sp)
1394 return fi->extra_info->initial_sp;
1395
1396 /* find out if this function is using an alloca register.. */
1397
077276e8 1398 (void) skip_prologue (get_pc_function_start (fi->pc), fi->pc, &fdata);
c906108c
SS
1399
1400 /* if saved registers of this frame are not known yet, read and cache them. */
1401
1402 if (!fi->saved_regs)
1403 frame_get_saved_regs (fi, &fdata);
1404
1405 /* If no alloca register used, then fi->frame is the value of the %sp for
1406 this frame, and it is good enough. */
1407
1408 if (fdata.alloca_reg < 0)
1409 {
1410 fi->extra_info->initial_sp = fi->frame;
1411 return fi->extra_info->initial_sp;
1412 }
1413
1414 /* This function has an alloca register. If this is the top-most frame
1415 (with the lowest address), the value in alloca register is good. */
1416
1417 if (!fi->next)
c5aa993b 1418 return fi->extra_info->initial_sp = read_register (fdata.alloca_reg);
c906108c
SS
1419
1420 /* Otherwise, this is a caller frame. Callee has usually already saved
1421 registers, but there are exceptions (such as when the callee
1422 has no parameters). Find the address in which caller's alloca
1423 register is saved. */
1424
c5aa993b
JM
1425 for (callee_fi = fi->next; callee_fi; callee_fi = callee_fi->next)
1426 {
c906108c 1427
c5aa993b
JM
1428 if (!callee_fi->saved_regs)
1429 frame_get_saved_regs (callee_fi, NULL);
c906108c 1430
c5aa993b 1431 /* this is the address in which alloca register is saved. */
c906108c 1432
c5aa993b
JM
1433 tmpaddr = callee_fi->saved_regs[fdata.alloca_reg];
1434 if (tmpaddr)
1435 {
7a78ae4e
ND
1436 fi->extra_info->initial_sp =
1437 read_memory_addr (tmpaddr, TDEP->wordsize);
c5aa993b
JM
1438 return fi->extra_info->initial_sp;
1439 }
c906108c 1440
c5aa993b
JM
1441 /* Go look into deeper levels of the frame chain to see if any one of
1442 the callees has saved alloca register. */
1443 }
c906108c
SS
1444
1445 /* If alloca register was not saved, by the callee (or any of its callees)
1446 then the value in the register is still good. */
1447
1448 fi->extra_info->initial_sp = read_register (fdata.alloca_reg);
1449 return fi->extra_info->initial_sp;
1450}
1451
7a78ae4e
ND
1452/* Describe the pointer in each stack frame to the previous stack frame
1453 (its caller). */
1454
1455/* FRAME_CHAIN takes a frame's nominal address
1456 and produces the frame's chain-pointer. */
1457
1458/* In the case of the RS/6000, the frame's nominal address
1459 is the address of a 4-byte word containing the calling frame's address. */
1460
9aa1e687 1461CORE_ADDR
7a78ae4e 1462rs6000_frame_chain (struct frame_info *thisframe)
c906108c 1463{
7a78ae4e
ND
1464 CORE_ADDR fp, fpp, lr;
1465 int wordsize = TDEP->wordsize;
c906108c 1466
7a78ae4e
ND
1467 if (PC_IN_CALL_DUMMY (thisframe->pc, thisframe->frame, thisframe->frame))
1468 return thisframe->frame; /* dummy frame same as caller's frame */
c906108c 1469
c5aa993b 1470 if (inside_entry_file (thisframe->pc) ||
c906108c
SS
1471 thisframe->pc == entry_point_address ())
1472 return 0;
1473
1474 if (thisframe->signal_handler_caller)
7a78ae4e
ND
1475 fp = read_memory_addr (thisframe->frame + SIG_FRAME_FP_OFFSET,
1476 wordsize);
c906108c
SS
1477 else if (thisframe->next != NULL
1478 && thisframe->next->signal_handler_caller
c877c8e6 1479 && FRAMELESS_FUNCTION_INVOCATION (thisframe))
c906108c
SS
1480 /* A frameless function interrupted by a signal did not change the
1481 frame pointer. */
1482 fp = FRAME_FP (thisframe);
1483 else
7a78ae4e 1484 fp = read_memory_addr ((thisframe)->frame, wordsize);
c906108c 1485
9aa1e687 1486 lr = read_register (PPC_LR_REGNUM);
7a78ae4e
ND
1487 if (lr == entry_point_address ())
1488 if (fp != 0 && (fpp = read_memory_addr (fp, wordsize)) != 0)
1489 if (PC_IN_CALL_DUMMY (lr, fpp, fpp))
1490 return fpp;
1491
1492 return fp;
1493}
1494
1495/* Return the size of register REG when words are WORDSIZE bytes long. If REG
1496 isn't available with that word size, return 0. */
1497
1498static int
1499regsize (const struct reg *reg, int wordsize)
1500{
1501 return wordsize == 8 ? reg->sz64 : reg->sz32;
1502}
1503
1504/* Return the name of register number N, or null if no such register exists
1505 in the current architecture. */
1506
1507static char *
1508rs6000_register_name (int n)
1509{
1510 struct gdbarch_tdep *tdep = TDEP;
1511 const struct reg *reg = tdep->regs + n;
1512
1513 if (!regsize (reg, tdep->wordsize))
1514 return NULL;
1515 return reg->name;
1516}
1517
1518/* Index within `registers' of the first byte of the space for
1519 register N. */
1520
1521static int
1522rs6000_register_byte (int n)
1523{
1524 return TDEP->regoff[n];
1525}
1526
1527/* Return the number of bytes of storage in the actual machine representation
1528 for register N if that register is available, else return 0. */
1529
1530static int
1531rs6000_register_raw_size (int n)
1532{
1533 struct gdbarch_tdep *tdep = TDEP;
1534 const struct reg *reg = tdep->regs + n;
1535 return regsize (reg, tdep->wordsize);
1536}
1537
1538/* Number of bytes of storage in the program's representation
1539 for register N. */
1540
1541static int
1542rs6000_register_virtual_size (int n)
1543{
1544 return TYPE_LENGTH (REGISTER_VIRTUAL_TYPE (n));
1545}
1546
1547/* Return the GDB type object for the "standard" data type
1548 of data in register N. */
1549
1550static struct type *
fba45db2 1551rs6000_register_virtual_type (int n)
7a78ae4e
ND
1552{
1553 struct gdbarch_tdep *tdep = TDEP;
1554 const struct reg *reg = tdep->regs + n;
1555
1556 return reg->fpr ? builtin_type_double :
1557 regsize (reg, tdep->wordsize) == 8 ? builtin_type_int64 :
1558 builtin_type_int32;
1559}
1560
1561/* For the PowerPC, it appears that the debug info marks float parameters as
1562 floats regardless of whether the function is prototyped, but the actual
1563 values are always passed in as doubles. Tell gdb to always assume that
1564 floats are passed as doubles and then converted in the callee. */
1565
1566static int
1567rs6000_coerce_float_to_double (struct type *formal, struct type *actual)
1568{
1569 return 1;
1570}
1571
1572/* Return whether register N requires conversion when moving from raw format
1573 to virtual format.
1574
1575 The register format for RS/6000 floating point registers is always
1576 double, we need a conversion if the memory format is float. */
1577
1578static int
1579rs6000_register_convertible (int n)
1580{
1581 const struct reg *reg = TDEP->regs + n;
1582 return reg->fpr;
1583}
1584
1585/* Convert data from raw format for register N in buffer FROM
1586 to virtual format with type TYPE in buffer TO. */
1587
1588static void
1589rs6000_register_convert_to_virtual (int n, struct type *type,
1590 char *from, char *to)
1591{
1592 if (TYPE_LENGTH (type) != REGISTER_RAW_SIZE (n))
7a292a7a 1593 {
7a78ae4e
ND
1594 double val = extract_floating (from, REGISTER_RAW_SIZE (n));
1595 store_floating (to, TYPE_LENGTH (type), val);
1596 }
1597 else
1598 memcpy (to, from, REGISTER_RAW_SIZE (n));
1599}
1600
1601/* Convert data from virtual format with type TYPE in buffer FROM
1602 to raw format for register N in buffer TO. */
7a292a7a 1603
7a78ae4e
ND
1604static void
1605rs6000_register_convert_to_raw (struct type *type, int n,
1606 char *from, char *to)
1607{
1608 if (TYPE_LENGTH (type) != REGISTER_RAW_SIZE (n))
1609 {
1610 double val = extract_floating (from, TYPE_LENGTH (type));
1611 store_floating (to, REGISTER_RAW_SIZE (n), val);
7a292a7a 1612 }
7a78ae4e
ND
1613 else
1614 memcpy (to, from, REGISTER_RAW_SIZE (n));
1615}
c906108c 1616
7a78ae4e
ND
1617/* Store the address of the place in which to copy the structure the
1618 subroutine will return. This is called from call_function.
1619
1620 In RS/6000, struct return addresses are passed as an extra parameter in r3.
1621 In function return, callee is not responsible of returning this address
1622 back. Since gdb needs to find it, we will store in a designated variable
1623 `rs6000_struct_return_address'. */
1624
1625static void
1626rs6000_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
1627{
1628 write_register (3, addr);
1629 rs6000_struct_return_address = addr;
1630}
1631
1632/* Write into appropriate registers a function return value
1633 of type TYPE, given in virtual format. */
1634
1635static void
1636rs6000_store_return_value (struct type *type, char *valbuf)
1637{
1638 if (TYPE_CODE (type) == TYPE_CODE_FLT)
1639
1640 /* Floating point values are returned starting from FPR1 and up.
1641 Say a double_double_double type could be returned in
1642 FPR1/FPR2/FPR3 triple. */
1643
1644 write_register_bytes (REGISTER_BYTE (FP0_REGNUM + 1), valbuf,
1645 TYPE_LENGTH (type));
1646 else
1647 /* Everything else is returned in GPR3 and up. */
9aa1e687 1648 write_register_bytes (REGISTER_BYTE (PPC_GP0_REGNUM + 3), valbuf,
7a78ae4e
ND
1649 TYPE_LENGTH (type));
1650}
1651
1652/* Extract from an array REGBUF containing the (raw) register state
1653 the address in which a function should return its structure value,
1654 as a CORE_ADDR (or an expression that can be used as one). */
1655
1656static CORE_ADDR
1657rs6000_extract_struct_value_address (char *regbuf)
1658{
1659 return rs6000_struct_return_address;
1660}
1661
1662/* Return whether PC is in a dummy function call.
1663
1664 FIXME: This just checks for the end of the stack, which is broken
1665 for things like stepping through gcc nested function stubs. */
1666
1667static int
1668rs6000_pc_in_call_dummy (CORE_ADDR pc, CORE_ADDR sp, CORE_ADDR fp)
1669{
1670 return sp < pc && pc < fp;
1671}
1672
1673/* Hook called when a new child process is started. */
1674
1675void
1676rs6000_create_inferior (int pid)
1677{
1678 if (rs6000_set_host_arch_hook)
1679 rs6000_set_host_arch_hook (pid);
c906108c
SS
1680}
1681\f
7a78ae4e
ND
1682/* Support for CONVERT_FROM_FUNC_PTR_ADDR(ADDR).
1683
1684 Usually a function pointer's representation is simply the address
1685 of the function. On the RS/6000 however, a function pointer is
1686 represented by a pointer to a TOC entry. This TOC entry contains
1687 three words, the first word is the address of the function, the
1688 second word is the TOC pointer (r2), and the third word is the
1689 static chain value. Throughout GDB it is currently assumed that a
1690 function pointer contains the address of the function, which is not
1691 easy to fix. In addition, the conversion of a function address to
1692 a function pointer would require allocation of a TOC entry in the
1693 inferior's memory space, with all its drawbacks. To be able to
1694 call C++ virtual methods in the inferior (which are called via
f517ea4e 1695 function pointers), find_function_addr uses this function to get the
7a78ae4e
ND
1696 function address from a function pointer. */
1697
f517ea4e
PS
1698/* Return real function address if ADDR (a function pointer) is in the data
1699 space and is therefore a special function pointer. */
c906108c 1700
7a78ae4e
ND
1701CORE_ADDR
1702rs6000_convert_from_func_ptr_addr (CORE_ADDR addr)
c906108c
SS
1703{
1704 struct obj_section *s;
1705
1706 s = find_pc_section (addr);
1707 if (s && s->the_bfd_section->flags & SEC_CODE)
7a78ae4e 1708 return addr;
c906108c 1709
7a78ae4e
ND
1710 /* ADDR is in the data space, so it's a special function pointer. */
1711 return read_memory_addr (addr, TDEP->wordsize);
c906108c 1712}
c906108c 1713\f
c5aa993b 1714
7a78ae4e 1715/* Handling the various POWER/PowerPC variants. */
c906108c
SS
1716
1717
7a78ae4e
ND
1718/* The arrays here called registers_MUMBLE hold information about available
1719 registers.
c906108c
SS
1720
1721 For each family of PPC variants, I've tried to isolate out the
1722 common registers and put them up front, so that as long as you get
1723 the general family right, GDB will correctly identify the registers
1724 common to that family. The common register sets are:
1725
1726 For the 60x family: hid0 hid1 iabr dabr pir
1727
1728 For the 505 and 860 family: eie eid nri
1729
1730 For the 403 and 403GC: icdbdr esr dear evpr cdbcr tsr tcr pit tbhi
c5aa993b
JM
1731 tblo srr2 srr3 dbsr dbcr iac1 iac2 dac1 dac2 dccr iccr pbl1
1732 pbu1 pbl2 pbu2
c906108c
SS
1733
1734 Most of these register groups aren't anything formal. I arrived at
1735 them by looking at the registers that occurred in more than one
7a78ae4e
ND
1736 processor. */
1737
1738/* Convenience macros for populating register arrays. */
1739
1740/* Within another macro, convert S to a string. */
1741
1742#define STR(s) #s
1743
1744/* Return a struct reg defining register NAME that's 32 bits on 32-bit systems
1745 and 64 bits on 64-bit systems. */
1746#define R(name) { STR(name), 4, 8, 0 }
1747
1748/* Return a struct reg defining register NAME that's 32 bits on all
1749 systems. */
1750#define R4(name) { STR(name), 4, 4, 0 }
1751
1752/* Return a struct reg defining register NAME that's 64 bits on all
1753 systems. */
1754#define R8(name) { STR(name), 8, 8, 0 }
1755
1756/* Return a struct reg defining floating-point register NAME. */
1757#define F(name) { STR(name), 8, 8, 1 }
1758
1759/* Return a struct reg defining register NAME that's 32 bits on 32-bit
1760 systems and that doesn't exist on 64-bit systems. */
1761#define R32(name) { STR(name), 4, 0, 0 }
1762
1763/* Return a struct reg defining register NAME that's 64 bits on 64-bit
1764 systems and that doesn't exist on 32-bit systems. */
1765#define R64(name) { STR(name), 0, 8, 0 }
1766
1767/* Return a struct reg placeholder for a register that doesn't exist. */
1768#define R0 { 0, 0, 0, 0 }
1769
1770/* UISA registers common across all architectures, including POWER. */
1771
1772#define COMMON_UISA_REGS \
1773 /* 0 */ R(r0), R(r1), R(r2), R(r3), R(r4), R(r5), R(r6), R(r7), \
1774 /* 8 */ R(r8), R(r9), R(r10),R(r11),R(r12),R(r13),R(r14),R(r15), \
1775 /* 16 */ R(r16),R(r17),R(r18),R(r19),R(r20),R(r21),R(r22),R(r23), \
1776 /* 24 */ R(r24),R(r25),R(r26),R(r27),R(r28),R(r29),R(r30),R(r31), \
1777 /* 32 */ F(f0), F(f1), F(f2), F(f3), F(f4), F(f5), F(f6), F(f7), \
1778 /* 40 */ F(f8), F(f9), F(f10),F(f11),F(f12),F(f13),F(f14),F(f15), \
1779 /* 48 */ F(f16),F(f17),F(f18),F(f19),F(f20),F(f21),F(f22),F(f23), \
1780 /* 56 */ F(f24),F(f25),F(f26),F(f27),F(f28),F(f29),F(f30),F(f31), \
1781 /* 64 */ R(pc), R(ps)
1782
1783/* UISA-level SPRs for PowerPC. */
1784#define PPC_UISA_SPRS \
1785 /* 66 */ R4(cr), R(lr), R(ctr), R4(xer), R0
1786
1787/* Segment registers, for PowerPC. */
1788#define PPC_SEGMENT_REGS \
1789 /* 71 */ R32(sr0), R32(sr1), R32(sr2), R32(sr3), \
1790 /* 75 */ R32(sr4), R32(sr5), R32(sr6), R32(sr7), \
1791 /* 79 */ R32(sr8), R32(sr9), R32(sr10), R32(sr11), \
1792 /* 83 */ R32(sr12), R32(sr13), R32(sr14), R32(sr15)
1793
1794/* OEA SPRs for PowerPC. */
1795#define PPC_OEA_SPRS \
1796 /* 87 */ R4(pvr), \
1797 /* 88 */ R(ibat0u), R(ibat0l), R(ibat1u), R(ibat1l), \
1798 /* 92 */ R(ibat2u), R(ibat2l), R(ibat3u), R(ibat3l), \
1799 /* 96 */ R(dbat0u), R(dbat0l), R(dbat1u), R(dbat1l), \
1800 /* 100 */ R(dbat2u), R(dbat2l), R(dbat3u), R(dbat3l), \
1801 /* 104 */ R(sdr1), R64(asr), R(dar), R4(dsisr), \
1802 /* 108 */ R(sprg0), R(sprg1), R(sprg2), R(sprg3), \
1803 /* 112 */ R(srr0), R(srr1), R(tbl), R(tbu), \
1804 /* 116 */ R4(dec), R(dabr), R4(ear)
1805
1806/* IBM POWER (pre-PowerPC) architecture, user-level view. We only cover
1807 user-level SPR's. */
1808static const struct reg registers_power[] =
c906108c 1809{
7a78ae4e
ND
1810 COMMON_UISA_REGS,
1811 /* 66 */ R4(cnd), R(lr), R(cnt), R4(xer), R4(mq)
c906108c
SS
1812};
1813
7a78ae4e
ND
1814/* PowerPC UISA - a PPC processor as viewed by user-level code. A UISA-only
1815 view of the PowerPC. */
1816static const struct reg registers_powerpc[] =
c906108c 1817{
7a78ae4e
ND
1818 COMMON_UISA_REGS,
1819 PPC_UISA_SPRS
c906108c
SS
1820};
1821
7a78ae4e
ND
1822/* IBM PowerPC 403. */
1823static const struct reg registers_403[] =
c5aa993b 1824{
7a78ae4e
ND
1825 COMMON_UISA_REGS,
1826 PPC_UISA_SPRS,
1827 PPC_SEGMENT_REGS,
1828 PPC_OEA_SPRS,
1829 /* 119 */ R(icdbdr), R(esr), R(dear), R(evpr),
1830 /* 123 */ R(cdbcr), R(tsr), R(tcr), R(pit),
1831 /* 127 */ R(tbhi), R(tblo), R(srr2), R(srr3),
1832 /* 131 */ R(dbsr), R(dbcr), R(iac1), R(iac2),
1833 /* 135 */ R(dac1), R(dac2), R(dccr), R(iccr),
1834 /* 139 */ R(pbl1), R(pbu1), R(pbl2), R(pbu2)
c906108c
SS
1835};
1836
7a78ae4e
ND
1837/* IBM PowerPC 403GC. */
1838static const struct reg registers_403GC[] =
c5aa993b 1839{
7a78ae4e
ND
1840 COMMON_UISA_REGS,
1841 PPC_UISA_SPRS,
1842 PPC_SEGMENT_REGS,
1843 PPC_OEA_SPRS,
1844 /* 119 */ R(icdbdr), R(esr), R(dear), R(evpr),
1845 /* 123 */ R(cdbcr), R(tsr), R(tcr), R(pit),
1846 /* 127 */ R(tbhi), R(tblo), R(srr2), R(srr3),
1847 /* 131 */ R(dbsr), R(dbcr), R(iac1), R(iac2),
1848 /* 135 */ R(dac1), R(dac2), R(dccr), R(iccr),
1849 /* 139 */ R(pbl1), R(pbu1), R(pbl2), R(pbu2),
1850 /* 143 */ R(zpr), R(pid), R(sgr), R(dcwr),
1851 /* 147 */ R(tbhu), R(tblu)
c906108c
SS
1852};
1853
7a78ae4e
ND
1854/* Motorola PowerPC 505. */
1855static const struct reg registers_505[] =
c5aa993b 1856{
7a78ae4e
ND
1857 COMMON_UISA_REGS,
1858 PPC_UISA_SPRS,
1859 PPC_SEGMENT_REGS,
1860 PPC_OEA_SPRS,
1861 /* 119 */ R(eie), R(eid), R(nri)
c906108c
SS
1862};
1863
7a78ae4e
ND
1864/* Motorola PowerPC 860 or 850. */
1865static const struct reg registers_860[] =
c5aa993b 1866{
7a78ae4e
ND
1867 COMMON_UISA_REGS,
1868 PPC_UISA_SPRS,
1869 PPC_SEGMENT_REGS,
1870 PPC_OEA_SPRS,
1871 /* 119 */ R(eie), R(eid), R(nri), R(cmpa),
1872 /* 123 */ R(cmpb), R(cmpc), R(cmpd), R(icr),
1873 /* 127 */ R(der), R(counta), R(countb), R(cmpe),
1874 /* 131 */ R(cmpf), R(cmpg), R(cmph), R(lctrl1),
1875 /* 135 */ R(lctrl2), R(ictrl), R(bar), R(ic_cst),
1876 /* 139 */ R(ic_adr), R(ic_dat), R(dc_cst), R(dc_adr),
1877 /* 143 */ R(dc_dat), R(dpdr), R(dpir), R(immr),
1878 /* 147 */ R(mi_ctr), R(mi_ap), R(mi_epn), R(mi_twc),
1879 /* 151 */ R(mi_rpn), R(md_ctr), R(m_casid), R(md_ap),
1880 /* 155 */ R(md_epn), R(md_twb), R(md_twc), R(md_rpn),
1881 /* 159 */ R(m_tw), R(mi_dbcam), R(mi_dbram0), R(mi_dbram1),
1882 /* 163 */ R(md_dbcam), R(md_dbram0), R(md_dbram1)
c906108c
SS
1883};
1884
7a78ae4e
ND
1885/* Motorola PowerPC 601. Note that the 601 has different register numbers
1886 for reading and writing RTCU and RTCL. However, how one reads and writes a
c906108c 1887 register is the stub's problem. */
7a78ae4e 1888static const struct reg registers_601[] =
c5aa993b 1889{
7a78ae4e
ND
1890 COMMON_UISA_REGS,
1891 PPC_UISA_SPRS,
1892 PPC_SEGMENT_REGS,
1893 PPC_OEA_SPRS,
1894 /* 119 */ R(hid0), R(hid1), R(iabr), R(dabr),
1895 /* 123 */ R(pir), R(mq), R(rtcu), R(rtcl)
c906108c
SS
1896};
1897
7a78ae4e
ND
1898/* Motorola PowerPC 602. */
1899static const struct reg registers_602[] =
c5aa993b 1900{
7a78ae4e
ND
1901 COMMON_UISA_REGS,
1902 PPC_UISA_SPRS,
1903 PPC_SEGMENT_REGS,
1904 PPC_OEA_SPRS,
1905 /* 119 */ R(hid0), R(hid1), R(iabr), R0,
1906 /* 123 */ R0, R(tcr), R(ibr), R(esassr),
1907 /* 127 */ R(sebr), R(ser), R(sp), R(lt)
c906108c
SS
1908};
1909
7a78ae4e
ND
1910/* Motorola/IBM PowerPC 603 or 603e. */
1911static const struct reg registers_603[] =
c5aa993b 1912{
7a78ae4e
ND
1913 COMMON_UISA_REGS,
1914 PPC_UISA_SPRS,
1915 PPC_SEGMENT_REGS,
1916 PPC_OEA_SPRS,
1917 /* 119 */ R(hid0), R(hid1), R(iabr), R0,
1918 /* 123 */ R0, R(dmiss), R(dcmp), R(hash1),
1919 /* 127 */ R(hash2), R(imiss), R(icmp), R(rpa)
c906108c
SS
1920};
1921
7a78ae4e
ND
1922/* Motorola PowerPC 604 or 604e. */
1923static const struct reg registers_604[] =
c5aa993b 1924{
7a78ae4e
ND
1925 COMMON_UISA_REGS,
1926 PPC_UISA_SPRS,
1927 PPC_SEGMENT_REGS,
1928 PPC_OEA_SPRS,
1929 /* 119 */ R(hid0), R(hid1), R(iabr), R(dabr),
1930 /* 123 */ R(pir), R(mmcr0), R(pmc1), R(pmc2),
1931 /* 127 */ R(sia), R(sda)
c906108c
SS
1932};
1933
7a78ae4e
ND
1934/* Motorola/IBM PowerPC 750 or 740. */
1935static const struct reg registers_750[] =
c5aa993b 1936{
7a78ae4e
ND
1937 COMMON_UISA_REGS,
1938 PPC_UISA_SPRS,
1939 PPC_SEGMENT_REGS,
1940 PPC_OEA_SPRS,
1941 /* 119 */ R(hid0), R(hid1), R(iabr), R(dabr),
1942 /* 123 */ R0, R(ummcr0), R(upmc1), R(upmc2),
1943 /* 127 */ R(usia), R(ummcr1), R(upmc3), R(upmc4),
1944 /* 131 */ R(mmcr0), R(pmc1), R(pmc2), R(sia),
1945 /* 135 */ R(mmcr1), R(pmc3), R(pmc4), R(l2cr),
1946 /* 139 */ R(ictc), R(thrm1), R(thrm2), R(thrm3)
c906108c
SS
1947};
1948
1949
1950/* Information about a particular processor variant. */
7a78ae4e 1951
c906108c 1952struct variant
c5aa993b
JM
1953 {
1954 /* Name of this variant. */
1955 char *name;
c906108c 1956
c5aa993b
JM
1957 /* English description of the variant. */
1958 char *description;
c906108c 1959
7a78ae4e
ND
1960 /* bfd_arch_info.arch corresponding to variant. */
1961 enum bfd_architecture arch;
1962
1963 /* bfd_arch_info.mach corresponding to variant. */
1964 unsigned long mach;
1965
c5aa993b
JM
1966 /* Table of register names; registers[R] is the name of the register
1967 number R. */
7a78ae4e
ND
1968 int nregs;
1969 const struct reg *regs;
c5aa993b 1970 };
c906108c
SS
1971
1972#define num_registers(list) (sizeof (list) / sizeof((list)[0]))
1973
1974
1975/* Information in this table comes from the following web sites:
1976 IBM: http://www.chips.ibm.com:80/products/embedded/
1977 Motorola: http://www.mot.com/SPS/PowerPC/
1978
1979 I'm sure I've got some of the variant descriptions not quite right.
1980 Please report any inaccuracies you find to GDB's maintainer.
1981
1982 If you add entries to this table, please be sure to allow the new
1983 value as an argument to the --with-cpu flag, in configure.in. */
1984
7a78ae4e 1985static const struct variant variants[] =
c906108c 1986{
7a78ae4e
ND
1987 {"powerpc", "PowerPC user-level", bfd_arch_powerpc,
1988 bfd_mach_ppc, num_registers (registers_powerpc), registers_powerpc},
1989 {"power", "POWER user-level", bfd_arch_rs6000,
1990 bfd_mach_rs6k, num_registers (registers_power), registers_power},
1991 {"403", "IBM PowerPC 403", bfd_arch_powerpc,
1992 bfd_mach_ppc_403, num_registers (registers_403), registers_403},
1993 {"601", "Motorola PowerPC 601", bfd_arch_powerpc,
1994 bfd_mach_ppc_601, num_registers (registers_601), registers_601},
1995 {"602", "Motorola PowerPC 602", bfd_arch_powerpc,
1996 bfd_mach_ppc_602, num_registers (registers_602), registers_602},
1997 {"603", "Motorola/IBM PowerPC 603 or 603e", bfd_arch_powerpc,
1998 bfd_mach_ppc_603, num_registers (registers_603), registers_603},
1999 {"604", "Motorola PowerPC 604 or 604e", bfd_arch_powerpc,
2000 604, num_registers (registers_604), registers_604},
2001 {"403GC", "IBM PowerPC 403GC", bfd_arch_powerpc,
2002 bfd_mach_ppc_403gc, num_registers (registers_403GC), registers_403GC},
2003 {"505", "Motorola PowerPC 505", bfd_arch_powerpc,
2004 bfd_mach_ppc_505, num_registers (registers_505), registers_505},
2005 {"860", "Motorola PowerPC 860 or 850", bfd_arch_powerpc,
2006 bfd_mach_ppc_860, num_registers (registers_860), registers_860},
2007 {"750", "Motorola/IBM PowerPC 750 or 740", bfd_arch_powerpc,
2008 bfd_mach_ppc_750, num_registers (registers_750), registers_750},
2009
2010 /* FIXME: I haven't checked the register sets of the following. */
2011 {"620", "Motorola PowerPC 620", bfd_arch_powerpc,
2012 bfd_mach_ppc_620, num_registers (registers_powerpc), registers_powerpc},
2013 {"a35", "PowerPC A35", bfd_arch_powerpc,
2014 bfd_mach_ppc_a35, num_registers (registers_powerpc), registers_powerpc},
2015 {"rs1", "IBM POWER RS1", bfd_arch_rs6000,
2016 bfd_mach_rs6k_rs1, num_registers (registers_power), registers_power},
2017 {"rsc", "IBM POWER RSC", bfd_arch_rs6000,
2018 bfd_mach_rs6k_rsc, num_registers (registers_power), registers_power},
2019 {"rs2", "IBM POWER RS2", bfd_arch_rs6000,
2020 bfd_mach_rs6k_rs2, num_registers (registers_power), registers_power},
2021
c5aa993b 2022 {0, 0, 0, 0}
c906108c
SS
2023};
2024
7a78ae4e 2025#undef num_registers
c906108c 2026
7a78ae4e
ND
2027/* Look up the variant named NAME in the `variants' table. Return a
2028 pointer to the struct variant, or null if we couldn't find it. */
c906108c 2029
7a78ae4e
ND
2030static const struct variant *
2031find_variant_by_name (char *name)
c906108c 2032{
7a78ae4e 2033 const struct variant *v;
c906108c 2034
7a78ae4e
ND
2035 for (v = variants; v->name; v++)
2036 if (!strcmp (name, v->name))
2037 return v;
c906108c 2038
7a78ae4e 2039 return NULL;
c906108c
SS
2040}
2041
7a78ae4e
ND
2042/* Return the variant corresponding to architecture ARCH and machine number
2043 MACH. If no such variant exists, return null. */
c906108c 2044
7a78ae4e
ND
2045static const struct variant *
2046find_variant_by_arch (enum bfd_architecture arch, unsigned long mach)
c906108c 2047{
7a78ae4e 2048 const struct variant *v;
c5aa993b 2049
7a78ae4e
ND
2050 for (v = variants; v->name; v++)
2051 if (arch == v->arch && mach == v->mach)
2052 return v;
c906108c 2053
7a78ae4e 2054 return NULL;
c906108c
SS
2055}
2056
9aa1e687
KB
2057
2058
2059\f
2060static void
2061process_note_abi_tag_sections (bfd *abfd, asection *sect, void *obj)
2062{
2063 int *os_ident_ptr = obj;
2064 const char *name;
2065 unsigned int sectsize;
2066
2067 name = bfd_get_section_name (abfd, sect);
2068 sectsize = bfd_section_size (abfd, sect);
2069 if (strcmp (name, ".note.ABI-tag") == 0 && sectsize > 0)
2070 {
2071 unsigned int name_length, data_length, note_type;
2072 char *note = alloca (sectsize);
2073
2074 bfd_get_section_contents (abfd, sect, note,
2075 (file_ptr) 0, (bfd_size_type) sectsize);
2076
2077 name_length = bfd_h_get_32 (abfd, note);
2078 data_length = bfd_h_get_32 (abfd, note + 4);
2079 note_type = bfd_h_get_32 (abfd, note + 8);
2080
2081 if (name_length == 4 && data_length == 16 && note_type == 1
2082 && strcmp (note + 12, "GNU") == 0)
2083 {
2084 int os_number = bfd_h_get_32 (abfd, note + 16);
2085
2086 /* The case numbers are from abi-tags in glibc */
2087 switch (os_number)
2088 {
2089 case 0 :
2090 *os_ident_ptr = ELFOSABI_LINUX;
2091 break;
2092 case 1 :
2093 *os_ident_ptr = ELFOSABI_HURD;
2094 break;
2095 case 2 :
2096 *os_ident_ptr = ELFOSABI_SOLARIS;
2097 break;
2098 default :
8e65ff28
AC
2099 internal_error (__FILE__, __LINE__,
2100 "process_note_abi_sections: unknown OS number %d",
2101 os_number);
9aa1e687
KB
2102 break;
2103 }
2104 }
2105 }
2106}
2107
2108/* Return one of the ELFOSABI_ constants for BFDs representing ELF
2109 executables. If it's not an ELF executable or if the OS/ABI couldn't
2110 be determined, simply return -1. */
2111
2112static int
2113get_elfosabi (bfd *abfd)
2114{
2115 int elfosabi = -1;
2116
2117 if (abfd != NULL && bfd_get_flavour (abfd) == bfd_target_elf_flavour)
2118 {
2119 elfosabi = elf_elfheader (abfd)->e_ident[EI_OSABI];
2120
2121 /* When elfosabi is 0 (ELFOSABI_NONE), this is supposed to indicate
2122 that we're on a SYSV system. However, GNU/Linux uses a note section
2123 to record OS/ABI info, but leaves e_ident[EI_OSABI] zero. So we
2124 have to check the note sections too. */
2125 if (elfosabi == 0)
2126 {
2127 bfd_map_over_sections (abfd,
2128 process_note_abi_tag_sections,
2129 &elfosabi);
2130 }
2131 }
2132
2133 return elfosabi;
2134}
2135
7a78ae4e 2136\f
c906108c 2137
7a78ae4e
ND
2138/* Initialize the current architecture based on INFO. If possible, re-use an
2139 architecture from ARCHES, which is a list of architectures already created
2140 during this debugging session.
c906108c 2141
7a78ae4e
ND
2142 Called e.g. at program startup, when reading a core file, and when reading
2143 a binary file. */
c906108c 2144
7a78ae4e
ND
2145static struct gdbarch *
2146rs6000_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
2147{
2148 struct gdbarch *gdbarch;
2149 struct gdbarch_tdep *tdep;
9aa1e687 2150 int wordsize, from_xcoff_exec, from_elf_exec, power, i, off;
7a78ae4e
ND
2151 struct reg *regs;
2152 const struct variant *v;
2153 enum bfd_architecture arch;
2154 unsigned long mach;
2155 bfd abfd;
9aa1e687 2156 int osabi, sysv_abi;
7a78ae4e 2157
9aa1e687 2158 from_xcoff_exec = info.abfd && info.abfd->format == bfd_object &&
7a78ae4e
ND
2159 bfd_get_flavour (info.abfd) == bfd_target_xcoff_flavour;
2160
9aa1e687
KB
2161 from_elf_exec = info.abfd && info.abfd->format == bfd_object &&
2162 bfd_get_flavour (info.abfd) == bfd_target_elf_flavour;
2163
2164 sysv_abi = info.abfd && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour;
2165
2166 osabi = get_elfosabi (info.abfd);
2167
e712c1cf
AC
2168 /* Check word size. If INFO is from a binary file, infer it from
2169 that, else choose a likely default. */
9aa1e687 2170 if (from_xcoff_exec)
c906108c 2171 {
7a78ae4e
ND
2172 if (xcoff_data (info.abfd)->xcoff64)
2173 wordsize = 8;
2174 else
2175 wordsize = 4;
c906108c 2176 }
9aa1e687
KB
2177 else if (from_elf_exec)
2178 {
2179 if (elf_elfheader (info.abfd)->e_ident[EI_CLASS] == ELFCLASS64)
2180 wordsize = 8;
2181 else
2182 wordsize = 4;
2183 }
c906108c 2184 else
7a78ae4e 2185 {
e712c1cf 2186 wordsize = 4;
7a78ae4e 2187 }
c906108c 2188
7a78ae4e
ND
2189 /* Find a candidate among extant architectures. */
2190 for (arches = gdbarch_list_lookup_by_info (arches, &info);
2191 arches != NULL;
2192 arches = gdbarch_list_lookup_by_info (arches->next, &info))
2193 {
2194 /* Word size in the various PowerPC bfd_arch_info structs isn't
2195 meaningful, because 64-bit CPUs can run in 32-bit mode. So, perform
2196 separate word size check. */
2197 tdep = gdbarch_tdep (arches->gdbarch);
9aa1e687 2198 if (tdep && tdep->wordsize == wordsize && tdep->osabi == osabi)
7a78ae4e
ND
2199 return arches->gdbarch;
2200 }
c906108c 2201
7a78ae4e
ND
2202 /* None found, create a new architecture from INFO, whose bfd_arch_info
2203 validity depends on the source:
2204 - executable useless
2205 - rs6000_host_arch() good
2206 - core file good
2207 - "set arch" trust blindly
2208 - GDB startup useless but harmless */
c906108c 2209
9aa1e687 2210 if (!from_xcoff_exec)
c906108c 2211 {
b732d07d 2212 arch = info.bfd_arch_info->arch;
7a78ae4e 2213 mach = info.bfd_arch_info->mach;
c906108c 2214 }
7a78ae4e 2215 else
c906108c 2216 {
7a78ae4e
ND
2217 arch = bfd_arch_powerpc;
2218 mach = 0;
2219 bfd_default_set_arch_mach (&abfd, arch, mach);
2220 info.bfd_arch_info = bfd_get_arch_info (&abfd);
2221 }
2222 tdep = xmalloc (sizeof (struct gdbarch_tdep));
2223 tdep->wordsize = wordsize;
9aa1e687 2224 tdep->osabi = osabi;
7a78ae4e
ND
2225 gdbarch = gdbarch_alloc (&info, tdep);
2226 power = arch == bfd_arch_rs6000;
2227
2228 /* Select instruction printer. */
2229 tm_print_insn = arch == power ? print_insn_rs6000 :
2230 info.byte_order == BIG_ENDIAN ? print_insn_big_powerpc :
2231 print_insn_little_powerpc;
2232
2233 /* Choose variant. */
2234 v = find_variant_by_arch (arch, mach);
2235 if (!v)
2236 v = find_variant_by_name (power ? "power" : "powerpc");
2237 tdep->regs = v->regs;
2238
2239 /* Calculate byte offsets in raw register array. */
2240 tdep->regoff = xmalloc (v->nregs * sizeof (int));
2241 for (i = off = 0; i < v->nregs; i++)
2242 {
2243 tdep->regoff[i] = off;
2244 off += regsize (v->regs + i, wordsize);
c906108c
SS
2245 }
2246
7a78ae4e
ND
2247 set_gdbarch_read_pc (gdbarch, generic_target_read_pc);
2248 set_gdbarch_write_pc (gdbarch, generic_target_write_pc);
2249 set_gdbarch_read_fp (gdbarch, generic_target_read_fp);
2250 set_gdbarch_write_fp (gdbarch, generic_target_write_fp);
2251 set_gdbarch_read_sp (gdbarch, generic_target_read_sp);
2252 set_gdbarch_write_sp (gdbarch, generic_target_write_sp);
2253
2254 set_gdbarch_num_regs (gdbarch, v->nregs);
2255 set_gdbarch_sp_regnum (gdbarch, 1);
2256 set_gdbarch_fp_regnum (gdbarch, 1);
2257 set_gdbarch_pc_regnum (gdbarch, 64);
2258 set_gdbarch_register_name (gdbarch, rs6000_register_name);
2259 set_gdbarch_register_size (gdbarch, wordsize);
2260 set_gdbarch_register_bytes (gdbarch, off);
2261 set_gdbarch_register_byte (gdbarch, rs6000_register_byte);
2262 set_gdbarch_register_raw_size (gdbarch, rs6000_register_raw_size);
2263 set_gdbarch_max_register_raw_size (gdbarch, 8);
2264 set_gdbarch_register_virtual_size (gdbarch, rs6000_register_virtual_size);
2265 set_gdbarch_max_register_virtual_size (gdbarch, 8);
2266 set_gdbarch_register_virtual_type (gdbarch, rs6000_register_virtual_type);
2267
2268 set_gdbarch_ptr_bit (gdbarch, wordsize * TARGET_CHAR_BIT);
2269 set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT);
2270 set_gdbarch_int_bit (gdbarch, 4 * TARGET_CHAR_BIT);
2271 set_gdbarch_long_bit (gdbarch, wordsize * TARGET_CHAR_BIT);
2272 set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
2273 set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT);
2274 set_gdbarch_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
2275 set_gdbarch_long_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
2276
2277 set_gdbarch_use_generic_dummy_frames (gdbarch, 1);
2278 set_gdbarch_call_dummy_length (gdbarch, 0);
2279 set_gdbarch_call_dummy_location (gdbarch, AT_ENTRY_POINT);
2280 set_gdbarch_call_dummy_address (gdbarch, entry_point_address);
2281 set_gdbarch_call_dummy_breakpoint_offset_p (gdbarch, 1);
2282 set_gdbarch_call_dummy_breakpoint_offset (gdbarch, 0);
2283 set_gdbarch_call_dummy_start_offset (gdbarch, 0);
fe794dc6 2284 set_gdbarch_pc_in_call_dummy (gdbarch, generic_pc_in_call_dummy);
7a78ae4e
ND
2285 set_gdbarch_call_dummy_p (gdbarch, 1);
2286 set_gdbarch_call_dummy_stack_adjust_p (gdbarch, 0);
2287 set_gdbarch_get_saved_register (gdbarch, generic_get_saved_register);
2288 set_gdbarch_fix_call_dummy (gdbarch, rs6000_fix_call_dummy);
2289 set_gdbarch_push_dummy_frame (gdbarch, generic_push_dummy_frame);
58223630 2290 set_gdbarch_save_dummy_frame_tos (gdbarch, generic_save_dummy_frame_tos);
7a78ae4e
ND
2291 set_gdbarch_push_return_address (gdbarch, ppc_push_return_address);
2292 set_gdbarch_believe_pcc_promotion (gdbarch, 1);
2293 set_gdbarch_coerce_float_to_double (gdbarch, rs6000_coerce_float_to_double);
2294
2295 set_gdbarch_register_convertible (gdbarch, rs6000_register_convertible);
2296 set_gdbarch_register_convert_to_virtual (gdbarch, rs6000_register_convert_to_virtual);
2297 set_gdbarch_register_convert_to_raw (gdbarch, rs6000_register_convert_to_raw);
2298
2299 set_gdbarch_extract_return_value (gdbarch, rs6000_extract_return_value);
9aa1e687
KB
2300
2301 if (sysv_abi)
2302 set_gdbarch_push_arguments (gdbarch, ppc_sysv_abi_push_arguments);
2303 else
2304 set_gdbarch_push_arguments (gdbarch, rs6000_push_arguments);
7a78ae4e
ND
2305
2306 set_gdbarch_store_struct_return (gdbarch, rs6000_store_struct_return);
2307 set_gdbarch_store_return_value (gdbarch, rs6000_store_return_value);
2308 set_gdbarch_extract_struct_value_address (gdbarch, rs6000_extract_struct_value_address);
2309 set_gdbarch_use_struct_convention (gdbarch, generic_use_struct_convention);
2310
7a78ae4e
ND
2311 set_gdbarch_pop_frame (gdbarch, rs6000_pop_frame);
2312
2313 set_gdbarch_skip_prologue (gdbarch, rs6000_skip_prologue);
2314 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
2315 set_gdbarch_decr_pc_after_break (gdbarch, 0);
2316 set_gdbarch_function_start_offset (gdbarch, 0);
2317 set_gdbarch_breakpoint_from_pc (gdbarch, rs6000_breakpoint_from_pc);
2318
2319 /* Not sure on this. FIXMEmgo */
2320 set_gdbarch_frame_args_skip (gdbarch, 8);
2321
7a78ae4e 2322 set_gdbarch_frame_chain_valid (gdbarch, file_frame_chain_valid);
9aa1e687
KB
2323 if (osabi == ELFOSABI_LINUX)
2324 {
2325 set_gdbarch_frameless_function_invocation (gdbarch,
2326 ppc_linux_frameless_function_invocation);
2327 set_gdbarch_frame_chain (gdbarch, ppc_linux_frame_chain);
2328 set_gdbarch_frame_saved_pc (gdbarch, ppc_linux_frame_saved_pc);
2329
2330 set_gdbarch_frame_init_saved_regs (gdbarch,
2331 ppc_linux_frame_init_saved_regs);
2332 set_gdbarch_init_extra_frame_info (gdbarch,
2333 ppc_linux_init_extra_frame_info);
2334
2335 set_gdbarch_memory_remove_breakpoint (gdbarch,
2336 ppc_linux_memory_remove_breakpoint);
6ded7999
KB
2337 set_solib_svr4_fetch_link_map_offsets
2338 (gdbarch, ppc_linux_svr4_fetch_link_map_offsets);
9aa1e687
KB
2339 }
2340 else
2341 {
2342 set_gdbarch_frameless_function_invocation (gdbarch,
2343 rs6000_frameless_function_invocation);
2344 set_gdbarch_frame_chain (gdbarch, rs6000_frame_chain);
2345 set_gdbarch_frame_saved_pc (gdbarch, rs6000_frame_saved_pc);
2346
2347 set_gdbarch_frame_init_saved_regs (gdbarch, rs6000_frame_init_saved_regs);
2348 set_gdbarch_init_extra_frame_info (gdbarch, rs6000_init_extra_frame_info);
f517ea4e
PS
2349
2350 /* Handle RS/6000 function pointers. */
2351 set_gdbarch_convert_from_func_ptr_addr (gdbarch,
2352 rs6000_convert_from_func_ptr_addr);
9aa1e687 2353 }
7a78ae4e
ND
2354 set_gdbarch_frame_args_address (gdbarch, rs6000_frame_args_address);
2355 set_gdbarch_frame_locals_address (gdbarch, rs6000_frame_args_address);
2356 set_gdbarch_saved_pc_after_call (gdbarch, rs6000_saved_pc_after_call);
2357
2358 /* We can't tell how many args there are
2359 now that the C compiler delays popping them. */
2360 set_gdbarch_frame_num_args (gdbarch, frame_num_args_unknown);
2361
2362 return gdbarch;
c906108c
SS
2363}
2364
c906108c
SS
2365/* Initialization code. */
2366
2367void
fba45db2 2368_initialize_rs6000_tdep (void)
c906108c 2369{
7a78ae4e
ND
2370 register_gdbarch_init (bfd_arch_rs6000, rs6000_gdbarch_init);
2371 register_gdbarch_init (bfd_arch_powerpc, rs6000_gdbarch_init);
c906108c 2372}