ca4bb72a0d0c563c4901f91aa8f79ff4e83a601c
[deliverable/binutils-gdb.git] / gdb / rs6000-tdep.c
1 /* Target-dependent code for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995
3 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #include "defs.h"
22 #include "frame.h"
23 #include "inferior.h"
24 #include "symtab.h"
25 #include "target.h"
26 #include "gdbcore.h"
27 #include "symfile.h"
28 #include "objfiles.h"
29
30 #include "xcoffsolib.h"
31
32 #include <a.out.h>
33
34 extern struct obstack frame_cache_obstack;
35
36 extern int errno;
37
38 /* Nonzero if we just simulated a single step break. */
39 int one_stepped;
40
41 /* Breakpoint shadows for the single step instructions will be kept here. */
42
43 static struct sstep_breaks {
44 /* Address, or 0 if this is not in use. */
45 CORE_ADDR address;
46 /* Shadow contents. */
47 char data[4];
48 } stepBreaks[2];
49
50 /* Static function prototypes */
51
52 static CORE_ADDR
53 find_toc_address PARAMS ((CORE_ADDR pc));
54
55 static CORE_ADDR
56 branch_dest PARAMS ((int opcode, int instr, CORE_ADDR pc, CORE_ADDR safety));
57
58 static void
59 frame_get_cache_fsr PARAMS ((struct frame_info *fi,
60 struct rs6000_framedata *fdatap));
61
62 /*
63 * Calculate the destination of a branch/jump. Return -1 if not a branch.
64 */
65 static CORE_ADDR
66 branch_dest (opcode, instr, pc, safety)
67 int opcode;
68 int instr;
69 CORE_ADDR pc;
70 CORE_ADDR safety;
71 {
72 register long offset;
73 CORE_ADDR dest;
74 int immediate;
75 int absolute;
76 int ext_op;
77
78 absolute = (int) ((instr >> 1) & 1);
79
80 switch (opcode) {
81 case 18 :
82 immediate = ((instr & ~3) << 6) >> 6; /* br unconditional */
83 if (absolute)
84 dest = immediate;
85 else
86 dest = pc + immediate;
87 break;
88
89 case 16 :
90 immediate = ((instr & ~3) << 16) >> 16; /* br conditional */
91 if (absolute)
92 dest = immediate;
93 else
94 dest = pc + immediate;
95 break;
96
97 case 19 :
98 ext_op = (instr>>1) & 0x3ff;
99
100 if (ext_op == 16) /* br conditional register */
101 dest = read_register (LR_REGNUM) & ~3;
102
103 else if (ext_op == 528) /* br cond to count reg */
104 {
105 dest = read_register (CTR_REGNUM) & ~3;
106
107 /* If we are about to execute a system call, dest is something
108 like 0x22fc or 0x3b00. Upon completion the system call
109 will return to the address in the link register. */
110 if (dest < TEXT_SEGMENT_BASE)
111 dest = read_register (LR_REGNUM) & ~3;
112 }
113 else return -1;
114 break;
115
116 default: return -1;
117 }
118 return (dest < TEXT_SEGMENT_BASE) ? safety : dest;
119 }
120
121
122
123 /* AIX does not support PT_STEP. Simulate it. */
124
125 void
126 single_step (signal)
127 int signal;
128 {
129 #define INSNLEN(OPCODE) 4
130
131 static char le_breakp[] = LITTLE_BREAKPOINT;
132 static char be_breakp[] = BIG_BREAKPOINT;
133 char *breakp = TARGET_BYTE_ORDER == BIG_ENDIAN ? be_breakp : le_breakp;
134 int ii, insn;
135 CORE_ADDR loc;
136 CORE_ADDR breaks[2];
137 int opcode;
138
139 if (!one_stepped) {
140 loc = read_pc ();
141
142 insn = read_memory_integer (loc, 4);
143
144 breaks[0] = loc + INSNLEN(insn);
145 opcode = insn >> 26;
146 breaks[1] = branch_dest (opcode, insn, loc, breaks[0]);
147
148 /* Don't put two breakpoints on the same address. */
149 if (breaks[1] == breaks[0])
150 breaks[1] = -1;
151
152 stepBreaks[1].address = 0;
153
154 for (ii=0; ii < 2; ++ii) {
155
156 /* ignore invalid breakpoint. */
157 if ( breaks[ii] == -1)
158 continue;
159
160 read_memory (breaks[ii], stepBreaks[ii].data, 4);
161
162 write_memory (breaks[ii], breakp, 4);
163 stepBreaks[ii].address = breaks[ii];
164 }
165
166 one_stepped = 1;
167 } else {
168
169 /* remove step breakpoints. */
170 for (ii=0; ii < 2; ++ii)
171 if (stepBreaks[ii].address != 0)
172 write_memory
173 (stepBreaks[ii].address, stepBreaks[ii].data, 4);
174
175 one_stepped = 0;
176 }
177 errno = 0; /* FIXME, don't ignore errors! */
178 /* What errors? {read,write}_memory call error(). */
179 }
180
181
182 /* return pc value after skipping a function prologue and also return
183 information about a function frame.
184
185 in struct rs6000_frameinfo fdata:
186 - frameless is TRUE, if function does not have a frame.
187 - nosavedpc is TRUE, if function does not save %pc value in its frame.
188 - offset is the number of bytes used in the frame to save registers.
189 - saved_gpr is the number of the first saved gpr.
190 - saved_fpr is the number of the first saved fpr.
191 - alloca_reg is the number of the register used for alloca() handling.
192 Otherwise -1.
193 - gpr_offset is the offset of the saved gprs
194 - fpr_offset is the offset of the saved fprs
195 - lr_offset is the offset of the saved lr
196 - cr_offset is the offset of the saved cr
197 */
198
199 #define SIGNED_SHORT(x) \
200 ((sizeof (short) == 2) \
201 ? ((int)(short)(x)) \
202 : ((int)((((x) & 0xffff) ^ 0x8000) - 0x8000)))
203
204 #define GET_SRC_REG(x) (((x) >> 21) & 0x1f)
205
206 CORE_ADDR
207 skip_prologue (pc, fdata)
208 CORE_ADDR pc;
209 struct rs6000_framedata *fdata;
210 {
211 CORE_ADDR orig_pc = pc;
212 char buf[4];
213 unsigned long op;
214 long offset = 0;
215 int lr_reg = 0;
216 int cr_reg = 0;
217 int reg;
218 int framep = 0;
219 int minimal_toc_loaded = 0;
220 static struct rs6000_framedata zero_frame;
221
222 *fdata = zero_frame;
223 fdata->saved_gpr = -1;
224 fdata->saved_fpr = -1;
225 fdata->alloca_reg = -1;
226 fdata->frameless = 1;
227 fdata->nosavedpc = 1;
228
229 if (target_read_memory (pc, buf, 4))
230 return pc; /* Can't access it -- assume no prologue. */
231
232 /* Assume that subsequent fetches can fail with low probability. */
233 pc -= 4;
234 for (;;)
235 {
236 pc += 4;
237 op = read_memory_integer (pc, 4);
238
239 if ((op & 0xfc1fffff) == 0x7c0802a6) { /* mflr Rx */
240 lr_reg = (op & 0x03e00000) | 0x90010000;
241 continue;
242
243 } else if ((op & 0xfc1fffff) == 0x7c000026) { /* mfcr Rx */
244 cr_reg = (op & 0x03e00000) | 0x90010000;
245 continue;
246
247 } else if ((op & 0xfc1f0000) == 0xd8010000) { /* stfd Rx,NUM(r1) */
248 reg = GET_SRC_REG (op);
249 if (fdata->saved_fpr == -1 || fdata->saved_fpr > reg) {
250 fdata->saved_fpr = reg;
251 fdata->fpr_offset = SIGNED_SHORT (op) + offset;
252 }
253 continue;
254
255 } else if (((op & 0xfc1f0000) == 0xbc010000) || /* stm Rx, NUM(r1) */
256 ((op & 0xfc1f0000) == 0x90010000 && /* st rx,NUM(r1), rx >= r13 */
257 (op & 0x03e00000) >= 0x01a00000)) {
258
259 reg = GET_SRC_REG (op);
260 if (fdata->saved_gpr == -1 || fdata->saved_gpr > reg) {
261 fdata->saved_gpr = reg;
262 fdata->gpr_offset = SIGNED_SHORT (op) + offset;
263 }
264 continue;
265
266 } else if ((op & 0xffff0000) == 0x3c000000) { /* addis 0,0,NUM, used for >= 32k frames */
267 fdata->offset = (op & 0x0000ffff) << 16;
268 fdata->frameless = 0;
269 continue;
270
271 } else if ((op & 0xffff0000) == 0x60000000) { /* ori 0,0,NUM, 2nd half of >= 32k frames */
272 fdata->offset |= (op & 0x0000ffff);
273 fdata->frameless = 0;
274 continue;
275
276 } else if ((op & 0xffff0000) == lr_reg) { /* st Rx,NUM(r1) where Rx == lr */
277 fdata->lr_offset = SIGNED_SHORT (op) + offset;
278 fdata->nosavedpc = 0;
279 lr_reg = 0;
280 continue;
281
282 } else if ((op & 0xffff0000) == cr_reg) { /* st Rx,NUM(r1) where Rx == cr */
283 fdata->cr_offset = SIGNED_SHORT (op) + offset;
284 cr_reg = 0;
285 continue;
286
287 } else if (op == 0x48000005) { /* bl .+4 used in -mrelocatable */
288 continue;
289
290 } else if (op == 0x48000004) { /* b .+4 (xlc) */
291 break;
292
293 } else if (((op & 0xffff0000) == 0x801e0000 || /* lwz 0,NUM(r30), used in V.4 -mrelocatable */
294 op == 0x7fc0f214) && /* add r30,r0,r30, used in V.4 -mrelocatable */
295 lr_reg == 0x901e0000) {
296 continue;
297
298 } else if ((op & 0xffff0000) == 0x3fc00000 || /* addis 30,0,foo@ha, used in V.4 -mminimal-toc */
299 (op & 0xffff0000) == 0x3bde0000) { /* addi 30,30,foo@l */
300 continue;
301
302 } else if ((op & 0xfc000000) == 0x48000000) { /* bl foo, to save fprs??? */
303
304 fdata->frameless = 0;
305 /* Don't skip over the subroutine call if it is not within the first
306 three instructions of the prologue. */
307 if ((pc - orig_pc) > 8)
308 break;
309
310 op = read_memory_integer (pc+4, 4);
311
312 /* At this point, make sure this is not a trampoline function
313 (a function that simply calls another functions, and nothing else).
314 If the next is not a nop, this branch was part of the function
315 prologue. */
316
317 if (op == 0x4def7b82 || op == 0) /* crorc 15, 15, 15 */
318 break; /* don't skip over this branch */
319
320 continue;
321
322 /* update stack pointer */
323 } else if ((op & 0xffff0000) == 0x94210000) { /* stu r1,NUM(r1) */
324 fdata->frameless = 0;
325 fdata->offset = SIGNED_SHORT (op);
326 offset = fdata->offset;
327 continue;
328
329 } else if (op == 0x7c21016e) { /* stwux 1,1,0 */
330 fdata->frameless = 0;
331 offset = fdata->offset;
332 continue;
333
334 /* Load up minimal toc pointer */
335 } else if ((op >> 22) == 0x20f
336 && ! minimal_toc_loaded) { /* l r31,... or l r30,... */
337 minimal_toc_loaded = 1;
338 continue;
339
340 /* store parameters in stack */
341 } else if ((op & 0xfc1f0000) == 0x90010000 || /* st rx,NUM(r1) */
342 (op & 0xfc1f0000) == 0xd8010000 || /* stfd Rx,NUM(r1) */
343 (op & 0xfc1f0000) == 0xfc010000) { /* frsp, fp?,NUM(r1) */
344 continue;
345
346 /* store parameters in stack via frame pointer */
347 } else if (framep &&
348 (op & 0xfc1f0000) == 0x901f0000 || /* st rx,NUM(r1) */
349 (op & 0xfc1f0000) == 0xd81f0000 || /* stfd Rx,NUM(r1) */
350 (op & 0xfc1f0000) == 0xfc1f0000) { /* frsp, fp?,NUM(r1) */
351 continue;
352
353 /* Set up frame pointer */
354 } else if (op == 0x603f0000 /* oril r31, r1, 0x0 */
355 || op == 0x7c3f0b78) { /* mr r31, r1 */
356 fdata->frameless = 0;
357 framep = 1;
358 fdata->alloca_reg = 31;
359 continue;
360
361 /* Another way to set up the frame pointer. */
362 } else if ((op & 0xfc1fffff) == 0x38010000) { /* addi rX, r1, 0x0 */
363 fdata->frameless = 0;
364 framep = 1;
365 fdata->alloca_reg = (op & ~0x38010000) >> 21;
366 continue;
367
368 } else {
369 break;
370 }
371 }
372
373 #if 0
374 /* I have problems with skipping over __main() that I need to address
375 * sometime. Previously, I used to use misc_function_vector which
376 * didn't work as well as I wanted to be. -MGO */
377
378 /* If the first thing after skipping a prolog is a branch to a function,
379 this might be a call to an initializer in main(), introduced by gcc2.
380 We'd like to skip over it as well. Fortunately, xlc does some extra
381 work before calling a function right after a prologue, thus we can
382 single out such gcc2 behaviour. */
383
384
385 if ((op & 0xfc000001) == 0x48000001) { /* bl foo, an initializer function? */
386 op = read_memory_integer (pc+4, 4);
387
388 if (op == 0x4def7b82) { /* cror 0xf, 0xf, 0xf (nop) */
389
390 /* check and see if we are in main. If so, skip over this initializer
391 function as well. */
392
393 tmp = find_pc_misc_function (pc);
394 if (tmp >= 0 && STREQ (misc_function_vector [tmp].name, "main"))
395 return pc + 8;
396 }
397 }
398 #endif /* 0 */
399
400 fdata->offset = - fdata->offset;
401 return pc;
402 }
403
404
405 /*************************************************************************
406 Support for creating pushind a dummy frame into the stack, and popping
407 frames, etc.
408 *************************************************************************/
409
410 /* The total size of dummy frame is 436, which is;
411
412 32 gpr's - 128 bytes
413 32 fpr's - 256 "
414 7 the rest - 28 "
415 and 24 extra bytes for the callee's link area. The last 24 bytes
416 for the link area might not be necessary, since it will be taken
417 care of by push_arguments(). */
418
419 #define DUMMY_FRAME_SIZE 436
420
421 #define DUMMY_FRAME_ADDR_SIZE 10
422
423 /* Make sure you initialize these in somewhere, in case gdb gives up what it
424 was debugging and starts debugging something else. FIXMEibm */
425
426 static int dummy_frame_count = 0;
427 static int dummy_frame_size = 0;
428 static CORE_ADDR *dummy_frame_addr = 0;
429
430 extern int stop_stack_dummy;
431
432 /* push a dummy frame into stack, save all register. Currently we are saving
433 only gpr's and fpr's, which is not good enough! FIXMEmgo */
434
435 void
436 push_dummy_frame ()
437 {
438 /* stack pointer. */
439 CORE_ADDR sp;
440 /* Same thing, target byte order. */
441 char sp_targ[4];
442
443 /* link register. */
444 CORE_ADDR pc;
445 /* Same thing, target byte order. */
446 char pc_targ[4];
447
448 /* Needed to figure out where to save the dummy link area.
449 FIXME: There should be an easier way to do this, no? tiemann 9/9/95. */
450 struct rs6000_framedata fdata;
451
452 int ii;
453
454 target_fetch_registers (-1);
455
456 if (dummy_frame_count >= dummy_frame_size) {
457 dummy_frame_size += DUMMY_FRAME_ADDR_SIZE;
458 if (dummy_frame_addr)
459 dummy_frame_addr = (CORE_ADDR*) xrealloc
460 (dummy_frame_addr, sizeof(CORE_ADDR) * (dummy_frame_size));
461 else
462 dummy_frame_addr = (CORE_ADDR*)
463 xmalloc (sizeof(CORE_ADDR) * (dummy_frame_size));
464 }
465
466 sp = read_register(SP_REGNUM);
467 pc = read_register(PC_REGNUM);
468 store_address (pc_targ, 4, pc);
469
470 (void) skip_prologue (get_pc_function_start (pc) + FUNCTION_START_OFFSET, &fdata);
471
472 dummy_frame_addr [dummy_frame_count++] = sp;
473
474 /* Be careful! If the stack pointer is not decremented first, then kernel
475 thinks he is free to use the space underneath it. And kernel actually
476 uses that area for IPC purposes when executing ptrace(2) calls. So
477 before writing register values into the new frame, decrement and update
478 %sp first in order to secure your frame. */
479
480 /* FIXME: We don't check if the stack really has this much space.
481 This is a problem on the ppc simulator (which only grants one page
482 (4096 bytes) by default. */
483
484 write_register (SP_REGNUM, sp-DUMMY_FRAME_SIZE);
485
486 /* gdb relies on the state of current_frame. We'd better update it,
487 otherwise things like do_registers_info() wouldn't work properly! */
488
489 flush_cached_frames ();
490
491 /* save program counter in link register's space. */
492 write_memory (sp+fdata.lr_offset, pc_targ, 4);
493
494 /* save all floating point and general purpose registers here. */
495
496 /* fpr's, f0..f31 */
497 for (ii = 0; ii < 32; ++ii)
498 write_memory (sp-8-(ii*8), &registers[REGISTER_BYTE (31-ii+FP0_REGNUM)], 8);
499
500 /* gpr's r0..r31 */
501 for (ii=1; ii <=32; ++ii)
502 write_memory (sp-256-(ii*4), &registers[REGISTER_BYTE (32-ii)], 4);
503
504 /* so far, 32*2 + 32 words = 384 bytes have been written.
505 7 extra registers in our register set: pc, ps, cnd, lr, cnt, xer, mq */
506
507 for (ii=1; ii <= (LAST_SP_REGNUM-FIRST_SP_REGNUM+1); ++ii) {
508 write_memory (sp-384-(ii*4),
509 &registers[REGISTER_BYTE (FPLAST_REGNUM + ii)], 4);
510 }
511
512 /* Save sp or so called back chain right here. */
513 store_address (sp_targ, 4, sp);
514 write_memory (sp-DUMMY_FRAME_SIZE, sp_targ, 4);
515 sp -= DUMMY_FRAME_SIZE;
516
517 /* And finally, this is the back chain. */
518 write_memory (sp+8, pc_targ, 4);
519 }
520
521
522 /* Pop a dummy frame.
523
524 In rs6000 when we push a dummy frame, we save all of the registers. This
525 is usually done before user calls a function explicitly.
526
527 After a dummy frame is pushed, some instructions are copied into stack,
528 and stack pointer is decremented even more. Since we don't have a frame
529 pointer to get back to the parent frame of the dummy, we start having
530 trouble poping it. Therefore, we keep a dummy frame stack, keeping
531 addresses of dummy frames as such. When poping happens and when we
532 detect that was a dummy frame, we pop it back to its parent by using
533 dummy frame stack (`dummy_frame_addr' array).
534
535 FIXME: This whole concept is broken. You should be able to detect
536 a dummy stack frame *on the user's stack itself*. When you do,
537 then you know the format of that stack frame -- including its
538 saved SP register! There should *not* be a separate stack in the
539 GDB process that keeps track of these dummy frames! -- gnu@cygnus.com Aug92
540 */
541
542 pop_dummy_frame ()
543 {
544 CORE_ADDR sp, pc;
545 int ii;
546 sp = dummy_frame_addr [--dummy_frame_count];
547
548 /* restore all fpr's. */
549 for (ii = 1; ii <= 32; ++ii)
550 read_memory (sp-(ii*8), &registers[REGISTER_BYTE (32-ii+FP0_REGNUM)], 8);
551
552 /* restore all gpr's */
553 for (ii=1; ii <= 32; ++ii) {
554 read_memory (sp-256-(ii*4), &registers[REGISTER_BYTE (32-ii)], 4);
555 }
556
557 /* restore the rest of the registers. */
558 for (ii=1; ii <=(LAST_SP_REGNUM-FIRST_SP_REGNUM+1); ++ii)
559 read_memory (sp-384-(ii*4),
560 &registers[REGISTER_BYTE (FPLAST_REGNUM + ii)], 4);
561
562 read_memory (sp-(DUMMY_FRAME_SIZE-8),
563 &registers [REGISTER_BYTE(PC_REGNUM)], 4);
564
565 /* when a dummy frame was being pushed, we had to decrement %sp first, in
566 order to secure astack space. Thus, saved %sp (or %r1) value, is not the
567 one we should restore. Change it with the one we need. */
568
569 *(int*)&registers [REGISTER_BYTE(FP_REGNUM)] = sp;
570
571 /* Now we can restore all registers. */
572
573 target_store_registers (-1);
574 pc = read_pc ();
575 flush_cached_frames ();
576 }
577
578
579 /* pop the innermost frame, go back to the caller. */
580
581 void
582 pop_frame ()
583 {
584 CORE_ADDR pc, lr, sp, prev_sp; /* %pc, %lr, %sp */
585 struct rs6000_framedata fdata;
586 struct frame_info *frame = get_current_frame ();
587 int addr, ii;
588
589 pc = read_pc ();
590 sp = FRAME_FP (frame);
591
592 if (stop_stack_dummy && dummy_frame_count) {
593 pop_dummy_frame ();
594 return;
595 }
596
597 /* Make sure that all registers are valid. */
598 read_register_bytes (0, NULL, REGISTER_BYTES);
599
600 /* figure out previous %pc value. If the function is frameless, it is
601 still in the link register, otherwise walk the frames and retrieve the
602 saved %pc value in the previous frame. */
603
604 addr = get_pc_function_start (frame->pc) + FUNCTION_START_OFFSET;
605 (void) skip_prologue (addr, &fdata);
606
607 if (fdata.frameless)
608 prev_sp = sp;
609 else
610 prev_sp = read_memory_integer (sp, 4);
611 if (fdata.lr_offset == 0)
612 lr = read_register (LR_REGNUM);
613 else
614 lr = read_memory_integer (prev_sp + fdata.lr_offset, 4);
615
616 /* reset %pc value. */
617 write_register (PC_REGNUM, lr);
618
619 /* reset register values if any was saved earlier. */
620 addr = prev_sp - fdata.offset;
621
622 if (fdata.saved_gpr != -1)
623 for (ii = fdata.saved_gpr; ii <= 31; ++ii) {
624 read_memory (addr, &registers [REGISTER_BYTE (ii)], 4);
625 addr += 4;
626 }
627
628 if (fdata.saved_fpr != -1)
629 for (ii = fdata.saved_fpr; ii <= 31; ++ii) {
630 read_memory (addr, &registers [REGISTER_BYTE (ii+FP0_REGNUM)], 8);
631 addr += 8;
632 }
633
634 write_register (SP_REGNUM, prev_sp);
635 target_store_registers (-1);
636 flush_cached_frames ();
637 }
638
639 /* fixup the call sequence of a dummy function, with the real function address.
640 its argumets will be passed by gdb. */
641
642 void
643 fix_call_dummy(dummyname, pc, fun, nargs, type)
644 char *dummyname;
645 CORE_ADDR pc;
646 CORE_ADDR fun;
647 int nargs; /* not used */
648 int type; /* not used */
649 {
650 #define TOC_ADDR_OFFSET 20
651 #define TARGET_ADDR_OFFSET 28
652
653 int ii;
654 CORE_ADDR target_addr;
655 CORE_ADDR tocvalue;
656
657 target_addr = fun;
658 tocvalue = find_toc_address (target_addr);
659
660 ii = *(int*)((char*)dummyname + TOC_ADDR_OFFSET);
661 ii = (ii & 0xffff0000) | (tocvalue >> 16);
662 *(int*)((char*)dummyname + TOC_ADDR_OFFSET) = ii;
663
664 ii = *(int*)((char*)dummyname + TOC_ADDR_OFFSET+4);
665 ii = (ii & 0xffff0000) | (tocvalue & 0x0000ffff);
666 *(int*)((char*)dummyname + TOC_ADDR_OFFSET+4) = ii;
667
668 ii = *(int*)((char*)dummyname + TARGET_ADDR_OFFSET);
669 ii = (ii & 0xffff0000) | (target_addr >> 16);
670 *(int*)((char*)dummyname + TARGET_ADDR_OFFSET) = ii;
671
672 ii = *(int*)((char*)dummyname + TARGET_ADDR_OFFSET+4);
673 ii = (ii & 0xffff0000) | (target_addr & 0x0000ffff);
674 *(int*)((char*)dummyname + TARGET_ADDR_OFFSET+4) = ii;
675 }
676
677 /* Pass the arguments in either registers, or in the stack. In RS6000, the first
678 eight words of the argument list (that might be less than eight parameters if
679 some parameters occupy more than one word) are passed in r3..r11 registers.
680 float and double parameters are passed in fpr's, in addition to that. Rest of
681 the parameters if any are passed in user stack. There might be cases in which
682 half of the parameter is copied into registers, the other half is pushed into
683 stack.
684
685 If the function is returning a structure, then the return address is passed
686 in r3, then the first 7 words of the parametes can be passed in registers,
687 starting from r4. */
688
689 CORE_ADDR
690 push_arguments (nargs, args, sp, struct_return, struct_addr)
691 int nargs;
692 value_ptr *args;
693 CORE_ADDR sp;
694 int struct_return;
695 CORE_ADDR struct_addr;
696 {
697 int ii, len;
698 int argno; /* current argument number */
699 int argbytes; /* current argument byte */
700 char tmp_buffer [50];
701 value_ptr arg;
702 int f_argno = 0; /* current floating point argno */
703
704 CORE_ADDR saved_sp, pc;
705
706 if ( dummy_frame_count <= 0)
707 printf_unfiltered ("FATAL ERROR -push_arguments()! frame not found!!\n");
708
709 /* The first eight words of ther arguments are passed in registers. Copy
710 them appropriately.
711
712 If the function is returning a `struct', then the first word (which
713 will be passed in r3) is used for struct return address. In that
714 case we should advance one word and start from r4 register to copy
715 parameters. */
716
717 ii = struct_return ? 1 : 0;
718
719 for (argno=0, argbytes=0; argno < nargs && ii<8; ++ii) {
720
721 arg = args[argno];
722 len = TYPE_LENGTH (VALUE_TYPE (arg));
723
724 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_FLT) {
725
726 /* floating point arguments are passed in fpr's, as well as gpr's.
727 There are 13 fpr's reserved for passing parameters. At this point
728 there is no way we would run out of them. */
729
730 if (len > 8)
731 printf_unfiltered (
732 "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
733
734 memcpy (&registers[REGISTER_BYTE(FP0_REGNUM + 1 + f_argno)], VALUE_CONTENTS (arg),
735 len);
736 ++f_argno;
737 }
738
739 if (len > 4) {
740
741 /* Argument takes more than one register. */
742 while (argbytes < len) {
743
744 *(int*)&registers[REGISTER_BYTE(ii+3)] = 0;
745 memcpy (&registers[REGISTER_BYTE(ii+3)],
746 ((char*)VALUE_CONTENTS (arg))+argbytes,
747 (len - argbytes) > 4 ? 4 : len - argbytes);
748 ++ii, argbytes += 4;
749
750 if (ii >= 8)
751 goto ran_out_of_registers_for_arguments;
752 }
753 argbytes = 0;
754 --ii;
755 }
756 else { /* Argument can fit in one register. No problem. */
757 *(int*)&registers[REGISTER_BYTE(ii+3)] = 0;
758 memcpy (&registers[REGISTER_BYTE(ii+3)], VALUE_CONTENTS (arg), len);
759 }
760 ++argno;
761 }
762
763 ran_out_of_registers_for_arguments:
764
765 /* location for 8 parameters are always reserved. */
766 sp -= 4 * 8;
767
768 /* another six words for back chain, TOC register, link register, etc. */
769 sp -= 24;
770
771 /* if there are more arguments, allocate space for them in
772 the stack, then push them starting from the ninth one. */
773
774 if ((argno < nargs) || argbytes) {
775 int space = 0, jj;
776 value_ptr val;
777
778 if (argbytes) {
779 space += ((len - argbytes + 3) & -4);
780 jj = argno + 1;
781 }
782 else
783 jj = argno;
784
785 for (; jj < nargs; ++jj) {
786 val = args[jj];
787 space += ((TYPE_LENGTH (VALUE_TYPE (val))) + 3) & -4;
788 }
789
790 /* add location required for the rest of the parameters */
791 space = (space + 7) & -8;
792 sp -= space;
793
794 /* This is another instance we need to be concerned about securing our
795 stack space. If we write anything underneath %sp (r1), we might conflict
796 with the kernel who thinks he is free to use this area. So, update %sp
797 first before doing anything else. */
798
799 write_register (SP_REGNUM, sp);
800
801 /* if the last argument copied into the registers didn't fit there
802 completely, push the rest of it into stack. */
803
804 if (argbytes) {
805 write_memory (
806 sp+24+(ii*4), ((char*)VALUE_CONTENTS (arg))+argbytes, len - argbytes);
807 ++argno;
808 ii += ((len - argbytes + 3) & -4) / 4;
809 }
810
811 /* push the rest of the arguments into stack. */
812 for (; argno < nargs; ++argno) {
813
814 arg = args[argno];
815 len = TYPE_LENGTH (VALUE_TYPE (arg));
816
817
818 /* float types should be passed in fpr's, as well as in the stack. */
819 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_FLT && f_argno < 13) {
820
821 if (len > 8)
822 printf_unfiltered (
823 "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
824
825 memcpy (&registers[REGISTER_BYTE(FP0_REGNUM + 1 + f_argno)], VALUE_CONTENTS (arg),
826 len);
827 ++f_argno;
828 }
829
830 write_memory (sp+24+(ii*4), (char *) VALUE_CONTENTS (arg), len);
831 ii += ((len + 3) & -4) / 4;
832 }
833 }
834 else
835 /* Secure stack areas first, before doing anything else. */
836 write_register (SP_REGNUM, sp);
837
838 saved_sp = dummy_frame_addr [dummy_frame_count - 1];
839 read_memory (saved_sp, tmp_buffer, 24);
840 write_memory (sp, tmp_buffer, 24);
841
842 /* set back chain properly */
843 store_address (tmp_buffer, 4, saved_sp);
844 write_memory (sp, tmp_buffer, 4);
845
846 target_store_registers (-1);
847 return sp;
848 }
849
850 /* a given return value in `regbuf' with a type `valtype', extract and copy its
851 value into `valbuf' */
852
853 void
854 extract_return_value (valtype, regbuf, valbuf)
855 struct type *valtype;
856 char regbuf[REGISTER_BYTES];
857 char *valbuf;
858 {
859 int offset = 0;
860
861 if (TYPE_CODE (valtype) == TYPE_CODE_FLT) {
862
863 double dd; float ff;
864 /* floats and doubles are returned in fpr1. fpr's have a size of 8 bytes.
865 We need to truncate the return value into float size (4 byte) if
866 necessary. */
867
868 if (TYPE_LENGTH (valtype) > 4) /* this is a double */
869 memcpy (valbuf, &regbuf[REGISTER_BYTE (FP0_REGNUM + 1)],
870 TYPE_LENGTH (valtype));
871 else { /* float */
872 memcpy (&dd, &regbuf[REGISTER_BYTE (FP0_REGNUM + 1)], 8);
873 ff = (float)dd;
874 memcpy (valbuf, &ff, sizeof(float));
875 }
876 }
877 else {
878 /* return value is copied starting from r3. */
879 if (TARGET_BYTE_ORDER == BIG_ENDIAN
880 && TYPE_LENGTH (valtype) < REGISTER_RAW_SIZE (3))
881 offset = REGISTER_RAW_SIZE (3) - TYPE_LENGTH (valtype);
882
883 memcpy (valbuf, regbuf + REGISTER_BYTE (3) + offset,
884 TYPE_LENGTH (valtype));
885 }
886 }
887
888
889 /* keep structure return address in this variable.
890 FIXME: This is a horrid kludge which should not be allowed to continue
891 living. This only allows a single nested call to a structure-returning
892 function. Come on, guys! -- gnu@cygnus.com, Aug 92 */
893
894 CORE_ADDR rs6000_struct_return_address;
895
896
897 /* Indirect function calls use a piece of trampoline code to do context
898 switching, i.e. to set the new TOC table. Skip such code if we are on
899 its first instruction (as when we have single-stepped to here).
900 Also skip shared library trampoline code (which is different from
901 indirect function call trampolines).
902 Result is desired PC to step until, or NULL if we are not in
903 trampoline code. */
904
905 CORE_ADDR
906 skip_trampoline_code (pc)
907 CORE_ADDR pc;
908 {
909 register unsigned int ii, op;
910 CORE_ADDR solib_target_pc;
911
912 static unsigned trampoline_code[] = {
913 0x800b0000, /* l r0,0x0(r11) */
914 0x90410014, /* st r2,0x14(r1) */
915 0x7c0903a6, /* mtctr r0 */
916 0x804b0004, /* l r2,0x4(r11) */
917 0x816b0008, /* l r11,0x8(r11) */
918 0x4e800420, /* bctr */
919 0x4e800020, /* br */
920 0
921 };
922
923 /* If pc is in a shared library trampoline, return its target. */
924 solib_target_pc = find_solib_trampoline_target (pc);
925 if (solib_target_pc)
926 return solib_target_pc;
927
928 for (ii=0; trampoline_code[ii]; ++ii) {
929 op = read_memory_integer (pc + (ii*4), 4);
930 if (op != trampoline_code [ii])
931 return 0;
932 }
933 ii = read_register (11); /* r11 holds destination addr */
934 pc = read_memory_integer (ii, 4); /* (r11) value */
935 return pc;
936 }
937
938
939 /* Determines whether the function FI has a frame on the stack or not. */
940 int
941 frameless_function_invocation (fi)
942 struct frame_info *fi;
943 {
944 CORE_ADDR func_start;
945 struct rs6000_framedata fdata;
946
947 if (fi->next != NULL)
948 /* Don't even think about framelessness except on the innermost frame. */
949 /* FIXME: Can also be frameless if fi->next->signal_handler_caller (if
950 a signal happens while executing in a frameless function). */
951 return 0;
952
953 func_start = get_pc_function_start (fi->pc) + FUNCTION_START_OFFSET;
954
955 /* If we failed to find the start of the function, it is a mistake
956 to inspect the instructions. */
957
958 if (!func_start)
959 return 0;
960
961 (void) skip_prologue (func_start, &fdata);
962 return fdata.frameless;
963 }
964
965 /* Return the PC saved in a frame */
966 unsigned long
967 frame_saved_pc (fi)
968 struct frame_info *fi;
969 {
970 CORE_ADDR func_start;
971 struct rs6000_framedata fdata;
972 int frameless;
973
974 if (fi->signal_handler_caller)
975 return read_memory_integer (fi->frame + SIG_FRAME_PC_OFFSET, 4);
976
977 func_start = get_pc_function_start (fi->pc) + FUNCTION_START_OFFSET;
978
979 /* If we failed to find the start of the function, it is a mistake
980 to inspect the instructions. */
981 if (!func_start)
982 return 0;
983
984 (void) skip_prologue (func_start, &fdata);
985
986 if (fdata.lr_offset == 0 && fi->next != NULL)
987 return read_memory_integer (rs6000_frame_chain (fi) + DEFAULT_LR_SAVE, 4);
988
989 if (fdata.lr_offset == 0)
990 return read_register (LR_REGNUM);
991
992 return read_memory_integer (rs6000_frame_chain (fi) + fdata.lr_offset, 4);
993 }
994
995 /* If saved registers of frame FI are not known yet, read and cache them.
996 &FDATAP contains rs6000_framedata; TDATAP can be NULL,
997 in which case the framedata are read. */
998
999 static void
1000 frame_get_cache_fsr (fi, fdatap)
1001 struct frame_info *fi;
1002 struct rs6000_framedata *fdatap;
1003 {
1004 int ii;
1005 CORE_ADDR frame_addr;
1006 struct rs6000_framedata work_fdata;
1007
1008 if (fi->cache_fsr)
1009 return;
1010
1011 if (fdatap == NULL) {
1012 fdatap = &work_fdata;
1013 (void) skip_prologue (get_pc_function_start (fi->pc), fdatap);
1014 }
1015
1016 fi->cache_fsr = (struct frame_saved_regs *)
1017 obstack_alloc (&frame_cache_obstack, sizeof (struct frame_saved_regs));
1018 memset (fi->cache_fsr, '\0', sizeof (struct frame_saved_regs));
1019
1020 if (fi->prev && fi->prev->frame)
1021 frame_addr = fi->prev->frame;
1022 else
1023 frame_addr = read_memory_integer (fi->frame, 4);
1024
1025 /* if != -1, fdatap->saved_fpr is the smallest number of saved_fpr.
1026 All fpr's from saved_fpr to fp31 are saved. */
1027
1028 if (fdatap->saved_fpr >= 0) {
1029 int fpr_offset = frame_addr + fdatap->fpr_offset;
1030 for (ii = fdatap->saved_fpr; ii < 32; ii++) {
1031 fi->cache_fsr->regs [FP0_REGNUM + ii] = fpr_offset;
1032 fpr_offset += 8;
1033 }
1034 }
1035
1036 /* if != -1, fdatap->saved_gpr is the smallest number of saved_gpr.
1037 All gpr's from saved_gpr to gpr31 are saved. */
1038
1039 if (fdatap->saved_gpr >= 0) {
1040 int gpr_offset = frame_addr + fdatap->gpr_offset;
1041 for (ii = fdatap->saved_gpr; ii < 32; ii++) {
1042 fi->cache_fsr->regs [ii] = gpr_offset;
1043 gpr_offset += 4;
1044 }
1045 }
1046
1047 /* If != 0, fdatap->cr_offset is the offset from the frame that holds
1048 the CR. */
1049 if (fdatap->cr_offset != 0)
1050 fi->cache_fsr->regs [CR_REGNUM] = frame_addr + fdatap->cr_offset;
1051
1052 /* If != 0, fdatap->lr_offset is the offset from the frame that holds
1053 the LR. */
1054 if (fdatap->lr_offset != 0)
1055 fi->cache_fsr->regs [LR_REGNUM] = frame_addr + fdatap->lr_offset;
1056 }
1057
1058 /* Return the address of a frame. This is the inital %sp value when the frame
1059 was first allocated. For functions calling alloca(), it might be saved in
1060 an alloca register. */
1061
1062 CORE_ADDR
1063 frame_initial_stack_address (fi)
1064 struct frame_info *fi;
1065 {
1066 CORE_ADDR tmpaddr;
1067 struct rs6000_framedata fdata;
1068 struct frame_info *callee_fi;
1069
1070 /* if the initial stack pointer (frame address) of this frame is known,
1071 just return it. */
1072
1073 if (fi->initial_sp)
1074 return fi->initial_sp;
1075
1076 /* find out if this function is using an alloca register.. */
1077
1078 (void) skip_prologue (get_pc_function_start (fi->pc), &fdata);
1079
1080 /* if saved registers of this frame are not known yet, read and cache them. */
1081
1082 if (!fi->cache_fsr)
1083 frame_get_cache_fsr (fi, &fdata);
1084
1085 /* If no alloca register used, then fi->frame is the value of the %sp for
1086 this frame, and it is good enough. */
1087
1088 if (fdata.alloca_reg < 0) {
1089 fi->initial_sp = fi->frame;
1090 return fi->initial_sp;
1091 }
1092
1093 /* This function has an alloca register. If this is the top-most frame
1094 (with the lowest address), the value in alloca register is good. */
1095
1096 if (!fi->next)
1097 return fi->initial_sp = read_register (fdata.alloca_reg);
1098
1099 /* Otherwise, this is a caller frame. Callee has usually already saved
1100 registers, but there are exceptions (such as when the callee
1101 has no parameters). Find the address in which caller's alloca
1102 register is saved. */
1103
1104 for (callee_fi = fi->next; callee_fi; callee_fi = callee_fi->next) {
1105
1106 if (!callee_fi->cache_fsr)
1107 frame_get_cache_fsr (callee_fi, NULL);
1108
1109 /* this is the address in which alloca register is saved. */
1110
1111 tmpaddr = callee_fi->cache_fsr->regs [fdata.alloca_reg];
1112 if (tmpaddr) {
1113 fi->initial_sp = read_memory_integer (tmpaddr, 4);
1114 return fi->initial_sp;
1115 }
1116
1117 /* Go look into deeper levels of the frame chain to see if any one of
1118 the callees has saved alloca register. */
1119 }
1120
1121 /* If alloca register was not saved, by the callee (or any of its callees)
1122 then the value in the register is still good. */
1123
1124 return fi->initial_sp = read_register (fdata.alloca_reg);
1125 }
1126
1127 CORE_ADDR
1128 rs6000_frame_chain (thisframe)
1129 struct frame_info *thisframe;
1130 {
1131 CORE_ADDR fp;
1132 if (inside_entry_file ((thisframe)->pc))
1133 return 0;
1134 if (thisframe->signal_handler_caller)
1135 fp = read_memory_integer (thisframe->frame + SIG_FRAME_FP_OFFSET, 4);
1136 else
1137 fp = read_memory_integer ((thisframe)->frame, 4);
1138
1139 return fp;
1140 }
1141 \f
1142 /* Keep an array of load segment information and their TOC table addresses.
1143 This info will be useful when calling a shared library function by hand. */
1144
1145 struct loadinfo {
1146 CORE_ADDR textorg, dataorg;
1147 unsigned long toc_offset;
1148 };
1149
1150 #define LOADINFOLEN 10
1151
1152 static struct loadinfo *loadinfo = NULL;
1153 static int loadinfolen = 0;
1154 static int loadinfotocindex = 0;
1155 static int loadinfotextindex = 0;
1156
1157
1158 void
1159 xcoff_init_loadinfo ()
1160 {
1161 loadinfotocindex = 0;
1162 loadinfotextindex = 0;
1163
1164 if (loadinfolen == 0) {
1165 loadinfo = (struct loadinfo *)
1166 xmalloc (sizeof (struct loadinfo) * LOADINFOLEN);
1167 loadinfolen = LOADINFOLEN;
1168 }
1169 }
1170
1171
1172 /* FIXME -- this is never called! */
1173 void
1174 free_loadinfo ()
1175 {
1176 if (loadinfo)
1177 free (loadinfo);
1178 loadinfo = NULL;
1179 loadinfolen = 0;
1180 loadinfotocindex = 0;
1181 loadinfotextindex = 0;
1182 }
1183
1184 /* this is called from xcoffread.c */
1185
1186 void
1187 xcoff_add_toc_to_loadinfo (tocoff)
1188 unsigned long tocoff;
1189 {
1190 while (loadinfotocindex >= loadinfolen) {
1191 loadinfolen += LOADINFOLEN;
1192 loadinfo = (struct loadinfo *)
1193 xrealloc (loadinfo, sizeof(struct loadinfo) * loadinfolen);
1194 }
1195 loadinfo [loadinfotocindex++].toc_offset = tocoff;
1196 }
1197
1198 void
1199 add_text_to_loadinfo (textaddr, dataaddr)
1200 CORE_ADDR textaddr;
1201 CORE_ADDR dataaddr;
1202 {
1203 while (loadinfotextindex >= loadinfolen) {
1204 loadinfolen += LOADINFOLEN;
1205 loadinfo = (struct loadinfo *)
1206 xrealloc (loadinfo, sizeof(struct loadinfo) * loadinfolen);
1207 }
1208 loadinfo [loadinfotextindex].textorg = textaddr;
1209 loadinfo [loadinfotextindex].dataorg = dataaddr;
1210 ++loadinfotextindex;
1211 }
1212
1213
1214 /* Note that this assumes that the "textorg" and "dataorg" elements
1215 of a member of this array are correlated with the "toc_offset"
1216 element of the same member. This is taken care of because the loops
1217 which assign the former (in xcoff_relocate_symtab or xcoff_relocate_core)
1218 and the latter (in scan_xcoff_symtab, via vmap_symtab, in vmap_ldinfo
1219 or xcoff_relocate_core) traverse the same objfiles in the same order. */
1220
1221 static CORE_ADDR
1222 find_toc_address (pc)
1223 CORE_ADDR pc;
1224 {
1225 int ii, toc_entry, tocbase = 0;
1226
1227 toc_entry = -1;
1228 for (ii=0; ii < loadinfotextindex; ++ii)
1229 if (pc > loadinfo[ii].textorg && loadinfo[ii].textorg > tocbase) {
1230 toc_entry = ii;
1231 tocbase = loadinfo[ii].textorg;
1232 }
1233
1234 if (toc_entry == -1)
1235 error ("Unable to find TOC entry for pc 0x%x\n", pc);
1236 return loadinfo[toc_entry].dataorg + loadinfo[toc_entry].toc_offset;
1237 }
1238
1239 /* Return nonzero if ADDR (a function pointer) is in the data space and
1240 is therefore a special function pointer. */
1241
1242 int
1243 is_magic_function_pointer (addr)
1244 CORE_ADDR addr;
1245 {
1246 struct obj_section *s;
1247
1248 s = find_pc_section (addr);
1249 if (s && s->the_bfd_section->flags & SEC_CODE)
1250 return 0;
1251 else
1252 return 1;
1253 }
1254
1255 #ifdef GDB_TARGET_POWERPC
1256 int
1257 gdb_print_insn_powerpc (memaddr, info)
1258 bfd_vma memaddr;
1259 disassemble_info *info;
1260 {
1261 if (TARGET_BYTE_ORDER == BIG_ENDIAN)
1262 return print_insn_big_powerpc (memaddr, info);
1263 else
1264 return print_insn_little_powerpc (memaddr, info);
1265 }
1266 #endif
1267
1268 void
1269 _initialize_rs6000_tdep ()
1270 {
1271 /* FIXME, this should not be decided via ifdef. */
1272 #ifdef GDB_TARGET_POWERPC
1273 tm_print_insn = gdb_print_insn_powerpc;
1274 #else
1275 tm_print_insn = print_insn_rs6000;
1276 #endif
1277 }
This page took 0.057667 seconds and 4 git commands to generate.