1 /* Target-dependent code for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
31 #include "xcoffsolib.h"
35 /* Breakpoint shadows for the single step instructions will be kept here. */
37 static struct sstep_breaks
39 /* Address, or 0 if this is not in use. */
41 /* Shadow contents. */
46 /* Hook for determining the TOC address when calling functions in the
47 inferior under AIX. The initialization code in rs6000-nat.c sets
48 this hook to point to find_toc_address. */
50 CORE_ADDR (*find_toc_address_hook) PARAMS ((CORE_ADDR)) = NULL;
52 /* Static function prototypes */
54 static CORE_ADDR branch_dest PARAMS ((int opcode, int instr, CORE_ADDR pc,
57 static void frame_get_saved_regs PARAMS ((struct frame_info * fi,
58 struct rs6000_framedata * fdatap));
60 static void pop_dummy_frame PARAMS ((void));
62 static CORE_ADDR frame_initial_stack_address PARAMS ((struct frame_info *));
65 rs6000_skip_prologue (pc)
68 struct rs6000_framedata frame;
69 pc = skip_prologue (pc, &frame);
74 /* Fill in fi->saved_regs */
76 struct frame_extra_info
78 /* Functions calling alloca() change the value of the stack
79 pointer. We need to use initial stack pointer (which is saved in
80 r31 by gcc) in such cases. If a compiler emits traceback table,
81 then we should use the alloca register specified in traceback
83 CORE_ADDR initial_sp; /* initial stack pointer. */
87 rs6000_init_extra_frame_info (fromleaf, fi)
89 struct frame_info *fi;
91 fi->extra_info = (struct frame_extra_info *)
92 frame_obstack_alloc (sizeof (struct frame_extra_info));
93 fi->extra_info->initial_sp = 0;
94 if (fi->next != (CORE_ADDR) 0
95 && fi->pc < TEXT_SEGMENT_BASE)
96 /* We're in get_prev_frame */
97 /* and this is a special signal frame. */
98 /* (fi->pc will be some low address in the kernel, */
99 /* to which the signal handler returns). */
100 fi->signal_handler_caller = 1;
105 rs6000_frame_init_saved_regs (fi)
106 struct frame_info *fi;
108 frame_get_saved_regs (fi, NULL);
112 rs6000_frame_args_address (fi)
113 struct frame_info *fi;
115 if (fi->extra_info->initial_sp != 0)
116 return fi->extra_info->initial_sp;
118 return frame_initial_stack_address (fi);
122 /* Calculate the destination of a branch/jump. Return -1 if not a branch. */
125 branch_dest (opcode, instr, pc, safety)
136 absolute = (int) ((instr >> 1) & 1);
141 immediate = ((instr & ~3) << 6) >> 6; /* br unconditional */
145 dest = pc + immediate;
149 immediate = ((instr & ~3) << 16) >> 16; /* br conditional */
153 dest = pc + immediate;
157 ext_op = (instr >> 1) & 0x3ff;
159 if (ext_op == 16) /* br conditional register */
161 dest = read_register (LR_REGNUM) & ~3;
163 /* If we are about to return from a signal handler, dest is
164 something like 0x3c90. The current frame is a signal handler
165 caller frame, upon completion of the sigreturn system call
166 execution will return to the saved PC in the frame. */
167 if (dest < TEXT_SEGMENT_BASE)
169 struct frame_info *fi;
171 fi = get_current_frame ();
173 dest = read_memory_integer (fi->frame + SIG_FRAME_PC_OFFSET,
178 else if (ext_op == 528) /* br cond to count reg */
180 dest = read_register (CTR_REGNUM) & ~3;
182 /* If we are about to execute a system call, dest is something
183 like 0x22fc or 0x3b00. Upon completion the system call
184 will return to the address in the link register. */
185 if (dest < TEXT_SEGMENT_BASE)
186 dest = read_register (LR_REGNUM) & ~3;
195 return (dest < TEXT_SEGMENT_BASE) ? safety : dest;
199 /* Sequence of bytes for breakpoint instruction. */
201 #define BIG_BREAKPOINT { 0x7d, 0x82, 0x10, 0x08 }
202 #define LITTLE_BREAKPOINT { 0x08, 0x10, 0x82, 0x7d }
205 rs6000_breakpoint_from_pc (bp_addr, bp_size)
209 static unsigned char big_breakpoint[] = BIG_BREAKPOINT;
210 static unsigned char little_breakpoint[] = LITTLE_BREAKPOINT;
212 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
213 return big_breakpoint;
215 return little_breakpoint;
219 /* AIX does not support PT_STEP. Simulate it. */
222 rs6000_software_single_step (signal, insert_breakpoints_p)
224 int insert_breakpoints_p;
226 #define INSNLEN(OPCODE) 4
228 static char le_breakp[] = LITTLE_BREAKPOINT;
229 static char be_breakp[] = BIG_BREAKPOINT;
230 char *breakp = TARGET_BYTE_ORDER == BIG_ENDIAN ? be_breakp : le_breakp;
236 if (insert_breakpoints_p)
241 insn = read_memory_integer (loc, 4);
243 breaks[0] = loc + INSNLEN (insn);
245 breaks[1] = branch_dest (opcode, insn, loc, breaks[0]);
247 /* Don't put two breakpoints on the same address. */
248 if (breaks[1] == breaks[0])
251 stepBreaks[1].address = 0;
253 for (ii = 0; ii < 2; ++ii)
256 /* ignore invalid breakpoint. */
257 if (breaks[ii] == -1)
260 read_memory (breaks[ii], stepBreaks[ii].data, 4);
262 write_memory (breaks[ii], breakp, 4);
263 stepBreaks[ii].address = breaks[ii];
270 /* remove step breakpoints. */
271 for (ii = 0; ii < 2; ++ii)
272 if (stepBreaks[ii].address != 0)
274 (stepBreaks[ii].address, stepBreaks[ii].data, 4);
277 errno = 0; /* FIXME, don't ignore errors! */
278 /* What errors? {read,write}_memory call error(). */
282 /* return pc value after skipping a function prologue and also return
283 information about a function frame.
285 in struct rs6000_framedata fdata:
286 - frameless is TRUE, if function does not have a frame.
287 - nosavedpc is TRUE, if function does not save %pc value in its frame.
288 - offset is the initial size of this stack frame --- the amount by
289 which we decrement the sp to allocate the frame.
290 - saved_gpr is the number of the first saved gpr.
291 - saved_fpr is the number of the first saved fpr.
292 - alloca_reg is the number of the register used for alloca() handling.
294 - gpr_offset is the offset of the first saved gpr from the previous frame.
295 - fpr_offset is the offset of the first saved fpr from the previous frame.
296 - lr_offset is the offset of the saved lr
297 - cr_offset is the offset of the saved cr
300 #define SIGNED_SHORT(x) \
301 ((sizeof (short) == 2) \
302 ? ((int)(short)(x)) \
303 : ((int)((((x) & 0xffff) ^ 0x8000) - 0x8000)))
305 #define GET_SRC_REG(x) (((x) >> 21) & 0x1f)
308 skip_prologue (pc, fdata)
310 struct rs6000_framedata *fdata;
312 CORE_ADDR orig_pc = pc;
320 int minimal_toc_loaded = 0;
321 static struct rs6000_framedata zero_frame;
324 fdata->saved_gpr = -1;
325 fdata->saved_fpr = -1;
326 fdata->alloca_reg = -1;
327 fdata->frameless = 1;
328 fdata->nosavedpc = 1;
330 if (target_read_memory (pc, buf, 4))
331 return pc; /* Can't access it -- assume no prologue. */
333 /* Assume that subsequent fetches can fail with low probability. */
338 op = read_memory_integer (pc, 4);
340 if ((op & 0xfc1fffff) == 0x7c0802a6)
342 lr_reg = (op & 0x03e00000) | 0x90010000;
346 else if ((op & 0xfc1fffff) == 0x7c000026)
348 cr_reg = (op & 0x03e00000) | 0x90010000;
352 else if ((op & 0xfc1f0000) == 0xd8010000)
353 { /* stfd Rx,NUM(r1) */
354 reg = GET_SRC_REG (op);
355 if (fdata->saved_fpr == -1 || fdata->saved_fpr > reg)
357 fdata->saved_fpr = reg;
358 fdata->fpr_offset = SIGNED_SHORT (op) + offset;
363 else if (((op & 0xfc1f0000) == 0xbc010000) || /* stm Rx, NUM(r1) */
364 ((op & 0xfc1f0000) == 0x90010000 && /* st rx,NUM(r1),
366 (op & 0x03e00000) >= 0x01a00000))
369 reg = GET_SRC_REG (op);
370 if (fdata->saved_gpr == -1 || fdata->saved_gpr > reg)
372 fdata->saved_gpr = reg;
373 fdata->gpr_offset = SIGNED_SHORT (op) + offset;
378 else if ((op & 0xffff0000) == 0x3c000000)
379 { /* addis 0,0,NUM, used
381 fdata->offset = (op & 0x0000ffff) << 16;
382 fdata->frameless = 0;
386 else if ((op & 0xffff0000) == 0x60000000)
387 { /* ori 0,0,NUM, 2nd ha
388 lf of >= 32k frames */
389 fdata->offset |= (op & 0x0000ffff);
390 fdata->frameless = 0;
394 else if ((op & 0xffff0000) == lr_reg)
397 fdata->lr_offset = SIGNED_SHORT (op) + offset;
398 fdata->nosavedpc = 0;
403 else if ((op & 0xffff0000) == cr_reg)
406 fdata->cr_offset = SIGNED_SHORT (op) + offset;
411 else if (op == 0x48000005)
417 else if (op == 0x48000004)
422 else if (((op & 0xffff0000) == 0x801e0000 || /* lwz 0,NUM(r30), used
423 in V.4 -mrelocatable */
424 op == 0x7fc0f214) && /* add r30,r0,r30, used
425 in V.4 -mrelocatable */
426 lr_reg == 0x901e0000)
431 else if ((op & 0xffff0000) == 0x3fc00000 || /* addis 30,0,foo@ha, used
432 in V.4 -mminimal-toc */
433 (op & 0xffff0000) == 0x3bde0000)
434 { /* addi 30,30,foo@l */
438 else if ((op & 0xfc000001) == 0x48000001)
442 fdata->frameless = 0;
443 /* Don't skip over the subroutine call if it is not within the first
444 three instructions of the prologue. */
445 if ((pc - orig_pc) > 8)
448 op = read_memory_integer (pc + 4, 4);
450 /* At this point, make sure this is not a trampoline function
451 (a function that simply calls another functions, and nothing else).
452 If the next is not a nop, this branch was part of the function
455 if (op == 0x4def7b82 || op == 0) /* crorc 15, 15, 15 */
456 break; /* don't skip over
460 /* update stack pointer */
462 else if ((op & 0xffff0000) == 0x94210000)
463 { /* stu r1,NUM(r1) */
464 fdata->frameless = 0;
465 fdata->offset = SIGNED_SHORT (op);
466 offset = fdata->offset;
470 else if (op == 0x7c21016e)
472 fdata->frameless = 0;
473 offset = fdata->offset;
476 /* Load up minimal toc pointer */
478 else if ((op >> 22) == 0x20f
479 && !minimal_toc_loaded)
480 { /* l r31,... or l r30,... */
481 minimal_toc_loaded = 1;
484 /* store parameters in stack */
486 else if ((op & 0xfc1f0000) == 0x90010000 || /* st rx,NUM(r1) */
487 (op & 0xfc1f0000) == 0xd8010000 || /* stfd Rx,NUM(r1) */
488 (op & 0xfc1f0000) == 0xfc010000)
489 { /* frsp, fp?,NUM(r1) */
492 /* store parameters in stack via frame pointer */
495 ((op & 0xfc1f0000) == 0x901f0000 || /* st rx,NUM(r1) */
496 (op & 0xfc1f0000) == 0xd81f0000 || /* stfd Rx,NUM(r1) */
497 (op & 0xfc1f0000) == 0xfc1f0000))
498 { /* frsp, fp?,NUM(r1) */
501 /* Set up frame pointer */
503 else if (op == 0x603f0000 /* oril r31, r1, 0x0 */
506 fdata->frameless = 0;
508 fdata->alloca_reg = 31;
511 /* Another way to set up the frame pointer. */
513 else if ((op & 0xfc1fffff) == 0x38010000)
514 { /* addi rX, r1, 0x0 */
515 fdata->frameless = 0;
517 fdata->alloca_reg = (op & ~0x38010000) >> 21;
528 /* I have problems with skipping over __main() that I need to address
529 * sometime. Previously, I used to use misc_function_vector which
530 * didn't work as well as I wanted to be. -MGO */
532 /* If the first thing after skipping a prolog is a branch to a function,
533 this might be a call to an initializer in main(), introduced by gcc2.
534 We'd like to skip over it as well. Fortunately, xlc does some extra
535 work before calling a function right after a prologue, thus we can
536 single out such gcc2 behaviour. */
539 if ((op & 0xfc000001) == 0x48000001)
540 { /* bl foo, an initializer function? */
541 op = read_memory_integer (pc + 4, 4);
543 if (op == 0x4def7b82)
544 { /* cror 0xf, 0xf, 0xf (nop) */
546 /* check and see if we are in main. If so, skip over this initializer
549 tmp = find_pc_misc_function (pc);
550 if (tmp >= 0 && STREQ (misc_function_vector[tmp].name, "main"))
556 fdata->offset = -fdata->offset;
561 /*************************************************************************
562 Support for creating pushind a dummy frame into the stack, and popping
564 *************************************************************************/
566 /* The total size of dummy frame is 436, which is;
571 and 24 extra bytes for the callee's link area. The last 24 bytes
572 for the link area might not be necessary, since it will be taken
573 care of by push_arguments(). */
575 #define DUMMY_FRAME_SIZE 436
577 #define DUMMY_FRAME_ADDR_SIZE 10
579 /* Make sure you initialize these in somewhere, in case gdb gives up what it
580 was debugging and starts debugging something else. FIXMEibm */
582 static int dummy_frame_count = 0;
583 static int dummy_frame_size = 0;
584 static CORE_ADDR *dummy_frame_addr = 0;
586 extern int stop_stack_dummy;
588 /* push a dummy frame into stack, save all register. Currently we are saving
589 only gpr's and fpr's, which is not good enough! FIXMEmgo */
596 /* Same thing, target byte order. */
601 /* Same thing, target byte order. */
604 /* Needed to figure out where to save the dummy link area.
605 FIXME: There should be an easier way to do this, no? tiemann 9/9/95. */
606 struct rs6000_framedata fdata;
610 target_fetch_registers (-1);
612 if (dummy_frame_count >= dummy_frame_size)
614 dummy_frame_size += DUMMY_FRAME_ADDR_SIZE;
615 if (dummy_frame_addr)
616 dummy_frame_addr = (CORE_ADDR *) xrealloc
617 (dummy_frame_addr, sizeof (CORE_ADDR) * (dummy_frame_size));
619 dummy_frame_addr = (CORE_ADDR *)
620 xmalloc (sizeof (CORE_ADDR) * (dummy_frame_size));
623 sp = read_register (SP_REGNUM);
624 pc = read_register (PC_REGNUM);
625 store_address (pc_targ, 4, pc);
627 skip_prologue (get_pc_function_start (pc), &fdata);
629 dummy_frame_addr[dummy_frame_count++] = sp;
631 /* Be careful! If the stack pointer is not decremented first, then kernel
632 thinks he is free to use the space underneath it. And kernel actually
633 uses that area for IPC purposes when executing ptrace(2) calls. So
634 before writing register values into the new frame, decrement and update
635 %sp first in order to secure your frame. */
637 /* FIXME: We don't check if the stack really has this much space.
638 This is a problem on the ppc simulator (which only grants one page
639 (4096 bytes) by default. */
641 write_register (SP_REGNUM, sp - DUMMY_FRAME_SIZE);
643 /* gdb relies on the state of current_frame. We'd better update it,
644 otherwise things like do_registers_info() wouldn't work properly! */
646 flush_cached_frames ();
648 /* save program counter in link register's space. */
649 write_memory (sp + (fdata.lr_offset ? fdata.lr_offset : DEFAULT_LR_SAVE),
652 /* save all floating point and general purpose registers here. */
655 for (ii = 0; ii < 32; ++ii)
656 write_memory (sp - 8 - (ii * 8), ®isters[REGISTER_BYTE (31 - ii + FP0_REGNUM)], 8);
659 for (ii = 1; ii <= 32; ++ii)
660 write_memory (sp - 256 - (ii * 4), ®isters[REGISTER_BYTE (32 - ii)], 4);
662 /* so far, 32*2 + 32 words = 384 bytes have been written.
663 7 extra registers in our register set: pc, ps, cnd, lr, cnt, xer, mq */
665 for (ii = 1; ii <= (LAST_UISA_SP_REGNUM - FIRST_UISA_SP_REGNUM + 1); ++ii)
667 write_memory (sp - 384 - (ii * 4),
668 ®isters[REGISTER_BYTE (FPLAST_REGNUM + ii)], 4);
671 /* Save sp or so called back chain right here. */
672 store_address (sp_targ, 4, sp);
673 write_memory (sp - DUMMY_FRAME_SIZE, sp_targ, 4);
674 sp -= DUMMY_FRAME_SIZE;
676 /* And finally, this is the back chain. */
677 write_memory (sp + 8, pc_targ, 4);
681 /* Pop a dummy frame.
683 In rs6000 when we push a dummy frame, we save all of the registers. This
684 is usually done before user calls a function explicitly.
686 After a dummy frame is pushed, some instructions are copied into stack,
687 and stack pointer is decremented even more. Since we don't have a frame
688 pointer to get back to the parent frame of the dummy, we start having
689 trouble poping it. Therefore, we keep a dummy frame stack, keeping
690 addresses of dummy frames as such. When poping happens and when we
691 detect that was a dummy frame, we pop it back to its parent by using
692 dummy frame stack (`dummy_frame_addr' array).
694 FIXME: This whole concept is broken. You should be able to detect
695 a dummy stack frame *on the user's stack itself*. When you do,
696 then you know the format of that stack frame -- including its
697 saved SP register! There should *not* be a separate stack in the
706 sp = dummy_frame_addr[--dummy_frame_count];
708 /* restore all fpr's. */
709 for (ii = 1; ii <= 32; ++ii)
710 read_memory (sp - (ii * 8), ®isters[REGISTER_BYTE (32 - ii + FP0_REGNUM)], 8);
712 /* restore all gpr's */
713 for (ii = 1; ii <= 32; ++ii)
715 read_memory (sp - 256 - (ii * 4), ®isters[REGISTER_BYTE (32 - ii)], 4);
718 /* restore the rest of the registers. */
719 for (ii = 1; ii <= (LAST_UISA_SP_REGNUM - FIRST_UISA_SP_REGNUM + 1); ++ii)
720 read_memory (sp - 384 - (ii * 4),
721 ®isters[REGISTER_BYTE (FPLAST_REGNUM + ii)], 4);
723 read_memory (sp - (DUMMY_FRAME_SIZE - 8),
724 ®isters[REGISTER_BYTE (PC_REGNUM)], 4);
726 /* when a dummy frame was being pushed, we had to decrement %sp first, in
727 order to secure astack space. Thus, saved %sp (or %r1) value, is not the
728 one we should restore. Change it with the one we need. */
730 memcpy (®isters[REGISTER_BYTE (FP_REGNUM)], (char *) &sp, sizeof (int));
732 /* Now we can restore all registers. */
734 target_store_registers (-1);
736 flush_cached_frames ();
740 /* pop the innermost frame, go back to the caller. */
745 CORE_ADDR pc, lr, sp, prev_sp; /* %pc, %lr, %sp */
746 struct rs6000_framedata fdata;
747 struct frame_info *frame = get_current_frame ();
751 sp = FRAME_FP (frame);
753 if (stop_stack_dummy)
755 if (USE_GENERIC_DUMMY_FRAMES)
757 generic_pop_dummy_frame ();
758 flush_cached_frames ();
763 if (dummy_frame_count)
769 /* Make sure that all registers are valid. */
770 read_register_bytes (0, NULL, REGISTER_BYTES);
772 /* figure out previous %pc value. If the function is frameless, it is
773 still in the link register, otherwise walk the frames and retrieve the
774 saved %pc value in the previous frame. */
776 addr = get_pc_function_start (frame->pc);
777 (void) skip_prologue (addr, &fdata);
782 prev_sp = read_memory_integer (sp, 4);
783 if (fdata.lr_offset == 0)
784 lr = read_register (LR_REGNUM);
786 lr = read_memory_integer (prev_sp + fdata.lr_offset, 4);
788 /* reset %pc value. */
789 write_register (PC_REGNUM, lr);
791 /* reset register values if any was saved earlier. */
793 if (fdata.saved_gpr != -1)
795 addr = prev_sp + fdata.gpr_offset;
796 for (ii = fdata.saved_gpr; ii <= 31; ++ii)
798 read_memory (addr, ®isters[REGISTER_BYTE (ii)], 4);
803 if (fdata.saved_fpr != -1)
805 addr = prev_sp + fdata.fpr_offset;
806 for (ii = fdata.saved_fpr; ii <= 31; ++ii)
808 read_memory (addr, ®isters[REGISTER_BYTE (ii + FP0_REGNUM)], 8);
813 write_register (SP_REGNUM, prev_sp);
814 target_store_registers (-1);
815 flush_cached_frames ();
818 /* fixup the call sequence of a dummy function, with the real function address.
819 its argumets will be passed by gdb. */
822 rs6000_fix_call_dummy (dummyname, pc, fun, nargs, args, type, gcc_p)
831 #define TOC_ADDR_OFFSET 20
832 #define TARGET_ADDR_OFFSET 28
835 CORE_ADDR target_addr;
837 if (find_toc_address_hook != NULL)
841 tocvalue = (*find_toc_address_hook) (fun);
842 ii = *(int *) ((char *) dummyname + TOC_ADDR_OFFSET);
843 ii = (ii & 0xffff0000) | (tocvalue >> 16);
844 *(int *) ((char *) dummyname + TOC_ADDR_OFFSET) = ii;
846 ii = *(int *) ((char *) dummyname + TOC_ADDR_OFFSET + 4);
847 ii = (ii & 0xffff0000) | (tocvalue & 0x0000ffff);
848 *(int *) ((char *) dummyname + TOC_ADDR_OFFSET + 4) = ii;
852 ii = *(int *) ((char *) dummyname + TARGET_ADDR_OFFSET);
853 ii = (ii & 0xffff0000) | (target_addr >> 16);
854 *(int *) ((char *) dummyname + TARGET_ADDR_OFFSET) = ii;
856 ii = *(int *) ((char *) dummyname + TARGET_ADDR_OFFSET + 4);
857 ii = (ii & 0xffff0000) | (target_addr & 0x0000ffff);
858 *(int *) ((char *) dummyname + TARGET_ADDR_OFFSET + 4) = ii;
861 /* Pass the arguments in either registers, or in the stack. In RS6000,
862 the first eight words of the argument list (that might be less than
863 eight parameters if some parameters occupy more than one word) are
864 passed in r3..r11 registers. float and double parameters are
865 passed in fpr's, in addition to that. Rest of the parameters if any
866 are passed in user stack. There might be cases in which half of the
867 parameter is copied into registers, the other half is pushed into
870 If the function is returning a structure, then the return address is passed
871 in r3, then the first 7 words of the parameters can be passed in registers,
875 rs6000_push_arguments (nargs, args, sp, struct_return, struct_addr)
880 CORE_ADDR struct_addr;
884 int argno; /* current argument number */
885 int argbytes; /* current argument byte */
887 int f_argno = 0; /* current floating point argno */
894 if (!USE_GENERIC_DUMMY_FRAMES)
896 if (dummy_frame_count <= 0)
897 printf_unfiltered ("FATAL ERROR -push_arguments()! frame not found!!\n");
900 /* The first eight words of ther arguments are passed in registers. Copy
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
908 ii = struct_return ? 1 : 0;
911 effectively indirect call... gcc does...
913 return_val example( float, int);
916 float in fp0, int in r3
917 offset of stack on overflow 8/16
918 for varargs, must go by type.
920 float in r3&r4, int in r5
921 offset of stack on overflow different
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.
929 for (argno = 0, argbytes = 0; argno < nargs && ii < 8; ++ii)
933 type = check_typedef (VALUE_TYPE (arg));
934 len = TYPE_LENGTH (type);
936 if (TYPE_CODE (type) == TYPE_CODE_FLT)
939 /* floating point arguments are passed in fpr's, as well as gpr's.
940 There are 13 fpr's reserved for passing parameters. At this point
941 there is no way we would run out of them. */
945 "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
947 memcpy (®isters[REGISTER_BYTE (FP0_REGNUM + 1 + f_argno)],
948 VALUE_CONTENTS (arg),
956 /* Argument takes more than one register. */
957 while (argbytes < len)
959 memset (®isters[REGISTER_BYTE (ii + 3)], 0, sizeof (int));
960 memcpy (®isters[REGISTER_BYTE (ii + 3)],
961 ((char *) VALUE_CONTENTS (arg)) + argbytes,
962 (len - argbytes) > 4 ? 4 : len - argbytes);
966 goto ran_out_of_registers_for_arguments;
972 { /* Argument can fit in one register. No problem. */
973 memset (®isters[REGISTER_BYTE (ii + 3)], 0, sizeof (int));
974 memcpy (®isters[REGISTER_BYTE (ii + 3)], VALUE_CONTENTS (arg), len);
979 ran_out_of_registers_for_arguments:
981 if (USE_GENERIC_DUMMY_FRAMES)
983 saved_sp = read_sp ();
987 /* location for 8 parameters are always reserved. */
990 /* another six words for back chain, TOC register, link register, etc. */
994 /* if there are more arguments, allocate space for them in
995 the stack, then push them starting from the ninth one. */
997 if ((argno < nargs) || argbytes)
1003 space += ((len - argbytes + 3) & -4);
1009 for (; jj < nargs; ++jj)
1011 value_ptr val = args[jj];
1012 space += ((TYPE_LENGTH (VALUE_TYPE (val))) + 3) & -4;
1015 /* add location required for the rest of the parameters */
1016 space = (space + 7) & -8;
1019 /* This is another instance we need to be concerned about securing our
1020 stack space. If we write anything underneath %sp (r1), we might conflict
1021 with the kernel who thinks he is free to use this area. So, update %sp
1022 first before doing anything else. */
1024 write_register (SP_REGNUM, sp);
1026 /* if the last argument copied into the registers didn't fit there
1027 completely, push the rest of it into stack. */
1031 write_memory (sp + 24 + (ii * 4),
1032 ((char *) VALUE_CONTENTS (arg)) + argbytes,
1035 ii += ((len - argbytes + 3) & -4) / 4;
1038 /* push the rest of the arguments into stack. */
1039 for (; argno < nargs; ++argno)
1043 type = check_typedef (VALUE_TYPE (arg));
1044 len = TYPE_LENGTH (type);
1047 /* float types should be passed in fpr's, as well as in the stack. */
1048 if (TYPE_CODE (type) == TYPE_CODE_FLT && f_argno < 13)
1053 "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
1055 memcpy (®isters[REGISTER_BYTE (FP0_REGNUM + 1 + f_argno)],
1056 VALUE_CONTENTS (arg),
1061 write_memory (sp + 24 + (ii * 4), (char *) VALUE_CONTENTS (arg), len);
1062 ii += ((len + 3) & -4) / 4;
1066 /* Secure stack areas first, before doing anything else. */
1067 write_register (SP_REGNUM, sp);
1069 if (!USE_GENERIC_DUMMY_FRAMES)
1071 /* we want to copy 24 bytes of target's frame to dummy's frame,
1072 then set back chain to point to new frame. */
1074 saved_sp = dummy_frame_addr[dummy_frame_count - 1];
1075 read_memory (saved_sp, tmp_buffer, 24);
1076 write_memory (sp, tmp_buffer, 24);
1079 /* set back chain properly */
1080 store_address (tmp_buffer, 4, saved_sp);
1081 write_memory (sp, tmp_buffer, 4);
1083 target_store_registers (-1);
1086 #ifdef ELF_OBJECT_FORMAT
1088 /* Function: ppc_push_return_address (pc, sp)
1089 Set up the return address for the inferior function call. */
1092 ppc_push_return_address (pc, sp)
1096 write_register (LR_REGNUM, CALL_DUMMY_ADDRESS ());
1102 /* a given return value in `regbuf' with a type `valtype', extract and copy its
1103 value into `valbuf' */
1106 extract_return_value (valtype, regbuf, valbuf)
1107 struct type *valtype;
1108 char regbuf[REGISTER_BYTES];
1113 if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
1118 /* floats and doubles are returned in fpr1. fpr's have a size of 8 bytes.
1119 We need to truncate the return value into float size (4 byte) if
1122 if (TYPE_LENGTH (valtype) > 4) /* this is a double */
1124 ®buf[REGISTER_BYTE (FP0_REGNUM + 1)],
1125 TYPE_LENGTH (valtype));
1128 memcpy (&dd, ®buf[REGISTER_BYTE (FP0_REGNUM + 1)], 8);
1130 memcpy (valbuf, &ff, sizeof (float));
1135 /* return value is copied starting from r3. */
1136 if (TARGET_BYTE_ORDER == BIG_ENDIAN
1137 && TYPE_LENGTH (valtype) < REGISTER_RAW_SIZE (3))
1138 offset = REGISTER_RAW_SIZE (3) - TYPE_LENGTH (valtype);
1141 regbuf + REGISTER_BYTE (3) + offset,
1142 TYPE_LENGTH (valtype));
1147 /* keep structure return address in this variable.
1148 FIXME: This is a horrid kludge which should not be allowed to continue
1149 living. This only allows a single nested call to a structure-returning
1152 CORE_ADDR rs6000_struct_return_address;
1155 /* Indirect function calls use a piece of trampoline code to do context
1156 switching, i.e. to set the new TOC table. Skip such code if we are on
1157 its first instruction (as when we have single-stepped to here).
1158 Also skip shared library trampoline code (which is different from
1159 indirect function call trampolines).
1160 Result is desired PC to step until, or NULL if we are not in
1164 skip_trampoline_code (pc)
1167 register unsigned int ii, op;
1168 CORE_ADDR solib_target_pc;
1170 static unsigned trampoline_code[] =
1172 0x800b0000, /* l r0,0x0(r11) */
1173 0x90410014, /* st r2,0x14(r1) */
1174 0x7c0903a6, /* mtctr r0 */
1175 0x804b0004, /* l r2,0x4(r11) */
1176 0x816b0008, /* l r11,0x8(r11) */
1177 0x4e800420, /* bctr */
1178 0x4e800020, /* br */
1182 /* If pc is in a shared library trampoline, return its target. */
1183 solib_target_pc = find_solib_trampoline_target (pc);
1184 if (solib_target_pc)
1185 return solib_target_pc;
1187 for (ii = 0; trampoline_code[ii]; ++ii)
1189 op = read_memory_integer (pc + (ii * 4), 4);
1190 if (op != trampoline_code[ii])
1193 ii = read_register (11); /* r11 holds destination addr */
1194 pc = read_memory_integer (ii, 4); /* (r11) value */
1198 /* Determines whether the function FI has a frame on the stack or not. */
1201 frameless_function_invocation (fi)
1202 struct frame_info *fi;
1204 CORE_ADDR func_start;
1205 struct rs6000_framedata fdata;
1207 /* Don't even think about framelessness except on the innermost frame
1208 or if the function was interrupted by a signal. */
1209 if (fi->next != NULL && !fi->next->signal_handler_caller)
1212 func_start = get_pc_function_start (fi->pc);
1214 /* If we failed to find the start of the function, it is a mistake
1215 to inspect the instructions. */
1219 /* A frame with a zero PC is usually created by dereferencing a NULL
1220 function pointer, normally causing an immediate core dump of the
1221 inferior. Mark function as frameless, as the inferior has no chance
1222 of setting up a stack frame. */
1229 (void) skip_prologue (func_start, &fdata);
1230 return fdata.frameless;
1233 /* Return the PC saved in a frame */
1237 struct frame_info *fi;
1239 CORE_ADDR func_start;
1240 struct rs6000_framedata fdata;
1242 if (fi->signal_handler_caller)
1243 return read_memory_integer (fi->frame + SIG_FRAME_PC_OFFSET, 4);
1245 if (USE_GENERIC_DUMMY_FRAMES)
1247 if (PC_IN_CALL_DUMMY (fi->pc, fi->frame, fi->frame))
1248 return generic_read_register_dummy (fi->pc, fi->frame, PC_REGNUM);
1251 func_start = get_pc_function_start (fi->pc);
1253 /* If we failed to find the start of the function, it is a mistake
1254 to inspect the instructions. */
1258 (void) skip_prologue (func_start, &fdata);
1260 if (fdata.lr_offset == 0 && fi->next != NULL)
1262 if (fi->next->signal_handler_caller)
1263 return read_memory_integer (fi->next->frame + SIG_FRAME_LR_OFFSET, 4);
1265 return read_memory_integer (rs6000_frame_chain (fi) + DEFAULT_LR_SAVE,
1269 if (fdata.lr_offset == 0)
1270 return read_register (LR_REGNUM);
1272 return read_memory_integer (rs6000_frame_chain (fi) + fdata.lr_offset, 4);
1275 /* If saved registers of frame FI are not known yet, read and cache them.
1276 &FDATAP contains rs6000_framedata; TDATAP can be NULL,
1277 in which case the framedata are read. */
1280 frame_get_saved_regs (fi, fdatap)
1281 struct frame_info *fi;
1282 struct rs6000_framedata *fdatap;
1285 CORE_ADDR frame_addr;
1286 struct rs6000_framedata work_fdata;
1293 fdatap = &work_fdata;
1294 (void) skip_prologue (get_pc_function_start (fi->pc), fdatap);
1297 frame_saved_regs_zalloc (fi);
1299 /* If there were any saved registers, figure out parent's stack
1301 /* The following is true only if the frame doesn't have a call to
1304 if (fdatap->saved_fpr == 0 && fdatap->saved_gpr == 0
1305 && fdatap->lr_offset == 0 && fdatap->cr_offset == 0)
1307 else if (fi->prev && fi->prev->frame)
1308 frame_addr = fi->prev->frame;
1310 frame_addr = read_memory_integer (fi->frame, 4);
1312 /* if != -1, fdatap->saved_fpr is the smallest number of saved_fpr.
1313 All fpr's from saved_fpr to fp31 are saved. */
1315 if (fdatap->saved_fpr >= 0)
1318 int fpr_offset = frame_addr + fdatap->fpr_offset;
1319 for (i = fdatap->saved_fpr; i < 32; i++)
1321 fi->saved_regs[FP0_REGNUM + i] = fpr_offset;
1326 /* if != -1, fdatap->saved_gpr is the smallest number of saved_gpr.
1327 All gpr's from saved_gpr to gpr31 are saved. */
1329 if (fdatap->saved_gpr >= 0)
1332 int gpr_offset = frame_addr + fdatap->gpr_offset;
1333 for (i = fdatap->saved_gpr; i < 32; i++)
1335 fi->saved_regs[i] = gpr_offset;
1340 /* If != 0, fdatap->cr_offset is the offset from the frame that holds
1342 if (fdatap->cr_offset != 0)
1343 fi->saved_regs[CR_REGNUM] = frame_addr + fdatap->cr_offset;
1345 /* If != 0, fdatap->lr_offset is the offset from the frame that holds
1347 if (fdatap->lr_offset != 0)
1348 fi->saved_regs[LR_REGNUM] = frame_addr + fdatap->lr_offset;
1351 /* Return the address of a frame. This is the inital %sp value when the frame
1352 was first allocated. For functions calling alloca(), it might be saved in
1353 an alloca register. */
1356 frame_initial_stack_address (fi)
1357 struct frame_info *fi;
1360 struct rs6000_framedata fdata;
1361 struct frame_info *callee_fi;
1363 /* if the initial stack pointer (frame address) of this frame is known,
1366 if (fi->extra_info->initial_sp)
1367 return fi->extra_info->initial_sp;
1369 /* find out if this function is using an alloca register.. */
1371 (void) skip_prologue (get_pc_function_start (fi->pc), &fdata);
1373 /* if saved registers of this frame are not known yet, read and cache them. */
1375 if (!fi->saved_regs)
1376 frame_get_saved_regs (fi, &fdata);
1378 /* If no alloca register used, then fi->frame is the value of the %sp for
1379 this frame, and it is good enough. */
1381 if (fdata.alloca_reg < 0)
1383 fi->extra_info->initial_sp = fi->frame;
1384 return fi->extra_info->initial_sp;
1387 /* This function has an alloca register. If this is the top-most frame
1388 (with the lowest address), the value in alloca register is good. */
1391 return fi->extra_info->initial_sp = read_register (fdata.alloca_reg);
1393 /* Otherwise, this is a caller frame. Callee has usually already saved
1394 registers, but there are exceptions (such as when the callee
1395 has no parameters). Find the address in which caller's alloca
1396 register is saved. */
1398 for (callee_fi = fi->next; callee_fi; callee_fi = callee_fi->next)
1401 if (!callee_fi->saved_regs)
1402 frame_get_saved_regs (callee_fi, NULL);
1404 /* this is the address in which alloca register is saved. */
1406 tmpaddr = callee_fi->saved_regs[fdata.alloca_reg];
1409 fi->extra_info->initial_sp = read_memory_integer (tmpaddr, 4);
1410 return fi->extra_info->initial_sp;
1413 /* Go look into deeper levels of the frame chain to see if any one of
1414 the callees has saved alloca register. */
1417 /* If alloca register was not saved, by the callee (or any of its callees)
1418 then the value in the register is still good. */
1420 fi->extra_info->initial_sp = read_register (fdata.alloca_reg);
1421 return fi->extra_info->initial_sp;
1425 rs6000_frame_chain (thisframe)
1426 struct frame_info *thisframe;
1430 if (USE_GENERIC_DUMMY_FRAMES)
1432 if (PC_IN_CALL_DUMMY (thisframe->pc, thisframe->frame, thisframe->frame))
1433 return thisframe->frame; /* dummy frame same as caller's frame */
1436 if (inside_entry_file (thisframe->pc) ||
1437 thisframe->pc == entry_point_address ())
1440 if (thisframe->signal_handler_caller)
1441 fp = read_memory_integer (thisframe->frame + SIG_FRAME_FP_OFFSET, 4);
1442 else if (thisframe->next != NULL
1443 && thisframe->next->signal_handler_caller
1444 && frameless_function_invocation (thisframe))
1445 /* A frameless function interrupted by a signal did not change the
1447 fp = FRAME_FP (thisframe);
1449 fp = read_memory_integer ((thisframe)->frame, 4);
1451 if (USE_GENERIC_DUMMY_FRAMES)
1455 lr = read_register (LR_REGNUM);
1456 if (lr == entry_point_address ())
1457 if (fp != 0 && (fpp = read_memory_integer (fp, 4)) != 0)
1458 if (PC_IN_CALL_DUMMY (lr, fpp, fpp))
1465 /* Return nonzero if ADDR (a function pointer) is in the data space and
1466 is therefore a special function pointer. */
1469 is_magic_function_pointer (addr)
1472 struct obj_section *s;
1474 s = find_pc_section (addr);
1475 if (s && s->the_bfd_section->flags & SEC_CODE)
1481 #ifdef GDB_TARGET_POWERPC
1483 gdb_print_insn_powerpc (memaddr, info)
1485 disassemble_info *info;
1487 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
1488 return print_insn_big_powerpc (memaddr, info);
1490 return print_insn_little_powerpc (memaddr, info);
1495 /* Handling the various PowerPC/RS6000 variants. */
1498 /* The arrays here called register_names_MUMBLE hold names that
1499 the rs6000_register_name function returns.
1501 For each family of PPC variants, I've tried to isolate out the
1502 common registers and put them up front, so that as long as you get
1503 the general family right, GDB will correctly identify the registers
1504 common to that family. The common register sets are:
1506 For the 60x family: hid0 hid1 iabr dabr pir
1508 For the 505 and 860 family: eie eid nri
1510 For the 403 and 403GC: icdbdr esr dear evpr cdbcr tsr tcr pit tbhi
1511 tblo srr2 srr3 dbsr dbcr iac1 iac2 dac1 dac2 dccr iccr pbl1
1514 Most of these register groups aren't anything formal. I arrived at
1515 them by looking at the registers that occurred in more than one
1518 /* UISA register names common across all architectures, including POWER. */
1520 #define COMMON_UISA_REG_NAMES \
1521 /* 0 */ "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
1522 /* 8 */ "r8", "r9", "r10","r11","r12","r13","r14","r15", \
1523 /* 16 */ "r16","r17","r18","r19","r20","r21","r22","r23", \
1524 /* 24 */ "r24","r25","r26","r27","r28","r29","r30","r31", \
1525 /* 32 */ "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7", \
1526 /* 40 */ "f8", "f9", "f10","f11","f12","f13","f14","f15", \
1527 /* 48 */ "f16","f17","f18","f19","f20","f21","f22","f23", \
1528 /* 56 */ "f24","f25","f26","f27","f28","f29","f30","f31", \
1531 /* UISA-level SPR names for PowerPC. */
1532 #define PPC_UISA_SPR_NAMES \
1533 /* 66 */ "cr", "lr", "ctr", "xer", ""
1535 /* Segment register names, for PowerPC. */
1536 #define PPC_SEGMENT_REG_NAMES \
1537 /* 71 */ "sr0", "sr1", "sr2", "sr3", "sr4", "sr5", "sr6", "sr7", \
1538 /* 79 */ "sr8", "sr9", "sr10", "sr11", "sr12", "sr13", "sr14", "sr15"
1540 /* OEA SPR names for 32-bit PowerPC implementations.
1541 The blank space is for "asr", which is only present on 64-bit
1543 #define PPC_32_OEA_SPR_NAMES \
1545 /* 88 */ "ibat0u", "ibat0l", "ibat1u", "ibat1l", \
1546 /* 92 */ "ibat2u", "ibat2l", "ibat3u", "ibat3l", \
1547 /* 96 */ "dbat0u", "dbat0l", "dbat1u", "dbat1l", \
1548 /* 100 */ "dbat2u", "dbat2l", "dbat3u", "dbat3l", \
1549 /* 104 */ "sdr1", "", "dar", "dsisr", "sprg0", "sprg1", "sprg2", "sprg3",\
1550 /* 112 */ "srr0", "srr1", "tbl", "tbu", "dec", "dabr", "ear"
1552 /* For the RS6000, we only cover user-level SPR's. */
1553 char *register_names_rs6000[] =
1555 COMMON_UISA_REG_NAMES,
1556 /* 66 */ "cnd", "lr", "cnt", "xer", "mq"
1559 /* a UISA-only view of the PowerPC. */
1560 char *register_names_uisa[] =
1562 COMMON_UISA_REG_NAMES,
1566 char *register_names_403[] =
1568 COMMON_UISA_REG_NAMES,
1570 PPC_SEGMENT_REG_NAMES,
1571 PPC_32_OEA_SPR_NAMES,
1572 /* 119 */ "icdbdr", "esr", "dear", "evpr", "cdbcr", "tsr", "tcr", "pit",
1573 /* 127 */ "tbhi", "tblo", "srr2", "srr3", "dbsr", "dbcr", "iac1", "iac2",
1574 /* 135 */ "dac1", "dac2", "dccr", "iccr", "pbl1", "pbu1", "pbl2", "pbu2"
1577 char *register_names_403GC[] =
1579 COMMON_UISA_REG_NAMES,
1581 PPC_SEGMENT_REG_NAMES,
1582 PPC_32_OEA_SPR_NAMES,
1583 /* 119 */ "icdbdr", "esr", "dear", "evpr", "cdbcr", "tsr", "tcr", "pit",
1584 /* 127 */ "tbhi", "tblo", "srr2", "srr3", "dbsr", "dbcr", "iac1", "iac2",
1585 /* 135 */ "dac1", "dac2", "dccr", "iccr", "pbl1", "pbu1", "pbl2", "pbu2",
1586 /* 143 */ "zpr", "pid", "sgr", "dcwr", "tbhu", "tblu"
1589 char *register_names_505[] =
1591 COMMON_UISA_REG_NAMES,
1593 PPC_SEGMENT_REG_NAMES,
1594 PPC_32_OEA_SPR_NAMES,
1595 /* 119 */ "eie", "eid", "nri"
1598 char *register_names_860[] =
1600 COMMON_UISA_REG_NAMES,
1602 PPC_SEGMENT_REG_NAMES,
1603 PPC_32_OEA_SPR_NAMES,
1604 /* 119 */ "eie", "eid", "nri", "cmpa", "cmpb", "cmpc", "cmpd", "icr",
1605 /* 127 */ "der", "counta", "countb", "cmpe", "cmpf", "cmpg", "cmph",
1606 /* 134 */ "lctrl1", "lctrl2", "ictrl", "bar", "ic_cst", "ic_adr", "ic_dat",
1607 /* 141 */ "dc_cst", "dc_adr", "dc_dat", "dpdr", "dpir", "immr", "mi_ctr",
1608 /* 148 */ "mi_ap", "mi_epn", "mi_twc", "mi_rpn", "md_ctr", "m_casid",
1609 /* 154 */ "md_ap", "md_epn", "md_twb", "md_twc", "md_rpn", "m_tw",
1610 /* 160 */ "mi_dbcam", "mi_dbram0", "mi_dbram1", "md_dbcam", "md_dbram0",
1611 /* 165 */ "md_dbram1"
1614 /* Note that the 601 has different register numbers for reading and
1615 writing RTCU and RTCL. However, how one reads and writes a
1616 register is the stub's problem. */
1617 char *register_names_601[] =
1619 COMMON_UISA_REG_NAMES,
1621 PPC_SEGMENT_REG_NAMES,
1622 PPC_32_OEA_SPR_NAMES,
1623 /* 119 */ "hid0", "hid1", "iabr", "dabr", "pir", "mq", "rtcu",
1627 char *register_names_602[] =
1629 COMMON_UISA_REG_NAMES,
1631 PPC_SEGMENT_REG_NAMES,
1632 PPC_32_OEA_SPR_NAMES,
1633 /* 119 */ "hid0", "hid1", "iabr", "", "", "tcr", "ibr", "esassr", "sebr",
1634 /* 128 */ "ser", "sp", "lt"
1637 char *register_names_603[] =
1639 COMMON_UISA_REG_NAMES,
1641 PPC_SEGMENT_REG_NAMES,
1642 PPC_32_OEA_SPR_NAMES,
1643 /* 119 */ "hid0", "hid1", "iabr", "", "", "dmiss", "dcmp", "hash1",
1644 /* 127 */ "hash2", "imiss", "icmp", "rpa"
1647 char *register_names_604[] =
1649 COMMON_UISA_REG_NAMES,
1651 PPC_SEGMENT_REG_NAMES,
1652 PPC_32_OEA_SPR_NAMES,
1653 /* 119 */ "hid0", "hid1", "iabr", "dabr", "pir", "mmcr0", "pmc1", "pmc2",
1654 /* 127 */ "sia", "sda"
1657 char *register_names_750[] =
1659 COMMON_UISA_REG_NAMES,
1661 PPC_SEGMENT_REG_NAMES,
1662 PPC_32_OEA_SPR_NAMES,
1663 /* 119 */ "hid0", "hid1", "iabr", "dabr", "", "ummcr0", "upmc1", "upmc2",
1664 /* 127 */ "usia", "ummcr1", "upmc3", "upmc4", "mmcr0", "pmc1", "pmc2",
1665 /* 134 */ "sia", "mmcr1", "pmc3", "pmc4", "l2cr", "ictc", "thrm1", "thrm2",
1670 /* Information about a particular processor variant. */
1673 /* Name of this variant. */
1676 /* English description of the variant. */
1679 /* Table of register names; registers[R] is the name of the register
1685 #define num_registers(list) (sizeof (list) / sizeof((list)[0]))
1688 /* Information in this table comes from the following web sites:
1689 IBM: http://www.chips.ibm.com:80/products/embedded/
1690 Motorola: http://www.mot.com/SPS/PowerPC/
1692 I'm sure I've got some of the variant descriptions not quite right.
1693 Please report any inaccuracies you find to GDB's maintainer.
1695 If you add entries to this table, please be sure to allow the new
1696 value as an argument to the --with-cpu flag, in configure.in. */
1698 static struct variant
1701 {"ppc-uisa", "PowerPC UISA - a PPC processor as viewed by user-level code",
1702 num_registers (register_names_uisa), register_names_uisa},
1703 {"rs6000", "IBM RS6000 (\"POWER\") architecture, user-level view",
1704 num_registers (register_names_rs6000), register_names_rs6000},
1705 {"403", "IBM PowerPC 403",
1706 num_registers (register_names_403), register_names_403},
1707 {"403GC", "IBM PowerPC 403GC",
1708 num_registers (register_names_403GC), register_names_403GC},
1709 {"505", "Motorola PowerPC 505",
1710 num_registers (register_names_505), register_names_505},
1711 {"860", "Motorola PowerPC 860 or 850",
1712 num_registers (register_names_860), register_names_860},
1713 {"601", "Motorola PowerPC 601",
1714 num_registers (register_names_601), register_names_601},
1715 {"602", "Motorola PowerPC 602",
1716 num_registers (register_names_602), register_names_602},
1717 {"603", "Motorola/IBM PowerPC 603 or 603e",
1718 num_registers (register_names_603), register_names_603},
1719 {"604", "Motorola PowerPC 604 or 604e",
1720 num_registers (register_names_604), register_names_604},
1721 {"750", "Motorola/IBM PowerPC 750 or 740",
1722 num_registers (register_names_750), register_names_750},
1727 static struct variant *current_variant;
1730 rs6000_register_name (int i)
1732 if (i < 0 || i >= NUM_REGS)
1733 error ("GDB bug: rs6000-tdep.c (rs6000_register_name): strange register number");
1735 return ((i < current_variant->num_registers)
1736 ? current_variant->registers[i]
1742 install_variant (struct variant *v)
1744 current_variant = v;
1748 /* Look up the variant named NAME in the `variants' table. Return a
1749 pointer to the struct variant, or null if we couldn't find it. */
1750 static struct variant *
1751 find_variant_by_name (char *name)
1755 for (i = 0; variants[i].name; i++)
1756 if (!strcmp (name, variants[i].name))
1757 return &variants[i];
1763 /* Install the PPC/RS6000 variant named NAME in the `variants' table.
1764 Return zero if we installed it successfully, or a non-zero value if
1767 This might be useful to code outside this file, which doesn't want
1768 to depend on the exact indices of the entries in the `variants'
1769 table. Just make it non-static if you want that. */
1771 install_variant_by_name (char *name)
1773 struct variant *v = find_variant_by_name (name);
1777 install_variant (v);
1790 printf_filtered ("GDB knows about the following PowerPC and RS6000 variants:\n");
1792 for (i = 0; variants[i].name; i++)
1793 printf_filtered (" %-8s %s\n",
1794 variants[i].name, variants[i].description);
1799 show_current_variant ()
1801 printf_filtered ("PowerPC / RS6000 processor variant is set to `%s'.\n",
1802 current_variant->name);
1807 set_processor (char *arg, int from_tty)
1811 if (!arg || arg[0] == '\0')
1817 if (install_variant_by_name (arg))
1820 fprintf_filtered (gdb_stderr,
1821 "`%s' is not a recognized PowerPC / RS6000 variant name.\n\n", arg);
1823 return_to_top_level (RETURN_ERROR);
1826 show_current_variant ();
1830 show_processor (char *arg, int from_tty)
1832 show_current_variant ();
1837 /* Initialization code. */
1840 _initialize_rs6000_tdep ()
1842 /* FIXME, this should not be decided via ifdef. */
1843 #ifdef GDB_TARGET_POWERPC
1844 tm_print_insn = gdb_print_insn_powerpc;
1846 tm_print_insn = print_insn_rs6000;
1849 /* I don't think we should use the set/show command arrangement
1850 here, because the way that's implemented makes it hard to do the
1851 error checking we want in a reasonable way. So we just add them
1852 as two separate commands. */
1853 add_cmd ("processor", class_support, set_processor,
1854 "`set processor NAME' sets the PowerPC/RS6000 variant to NAME.\n\
1855 If you set this, GDB will know about the special-purpose registers that are\n\
1856 available on the given variant.\n\
1857 Type `set processor' alone for a list of recognized variant names.",
1859 add_cmd ("processor", class_support, show_processor,
1860 "Show the variant of the PowerPC or RS6000 processor in use.\n\
1861 Use `set processor' to change this.",
1864 /* Set the current PPC processor variant. */
1868 #ifdef TARGET_CPU_DEFAULT
1869 status = install_variant_by_name (TARGET_CPU_DEFAULT);
1874 #ifdef GDB_TARGET_POWERPC
1875 install_variant_by_name ("ppc-uisa");
1877 install_variant_by_name ("rs6000");