* gas/hppa/unsorted/align4.s: New test.
[deliverable/binutils-gdb.git] / gdb / hppa-tdep.c
CommitLineData
669caa9c
SS
1/* Target-dependent code for the HP PA architecture, for GDB.
2 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
66a1aa07
SG
4
5 Contributed by the Center for Software Science at the
6 University of Utah (pa-gdb-bugs@cs.utah.edu).
7
8This file is part of GDB.
9
10This program is free software; you can redistribute it and/or modify
11it under the terms of the GNU General Public License as published by
12the Free Software Foundation; either version 2 of the License, or
13(at your option) any later version.
14
15This program is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of
17MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18GNU General Public License for more details.
19
20You should have received a copy of the GNU General Public License
21along with this program; if not, write to the Free Software
22Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
23
24#include "defs.h"
25#include "frame.h"
26#include "inferior.h"
27#include "value.h"
28
29/* For argument passing to the inferior */
30#include "symtab.h"
31
32#ifdef USG
33#include <sys/types.h>
34#endif
35
36#include <sys/param.h>
37#include <sys/dir.h>
38#include <signal.h>
66a1aa07
SG
39
40#ifdef COFF_ENCAPSULATE
41#include "a.out.encap.h"
42#else
66a1aa07
SG
43#endif
44#ifndef N_SET_MAGIC
45#define N_SET_MAGIC(exec, val) ((exec).a_magic = (val))
46#endif
47
48/*#include <sys/user.h> After a.out.h */
49#include <sys/file.h>
50#include <sys/stat.h>
66a1aa07
SG
51#include "wait.h"
52
53#include "gdbcore.h"
54#include "gdbcmd.h"
55#include "target.h"
56#include "symfile.h"
57#include "objfiles.h"
58
669caa9c
SS
59static int restore_pc_queue PARAMS ((struct frame_saved_regs *));
60
61static int hppa_alignof PARAMS ((struct type *));
62
63CORE_ADDR frame_saved_pc PARAMS ((struct frame_info *));
64
c598654a 65static int prologue_inst_adjust_sp PARAMS ((unsigned long));
669caa9c 66
c598654a 67static int is_branch PARAMS ((unsigned long));
669caa9c 68
c598654a 69static int inst_saves_gr PARAMS ((unsigned long));
669caa9c 70
c598654a 71static int inst_saves_fr PARAMS ((unsigned long));
669caa9c 72
70e43abe 73static int pc_in_interrupt_handler PARAMS ((CORE_ADDR));
669caa9c 74
70e43abe 75static int pc_in_linker_stub PARAMS ((CORE_ADDR));
669caa9c
SS
76
77static int compare_unwind_entries PARAMS ((const struct unwind_table_entry *,
f81eee9d 78 const struct unwind_table_entry *));
669caa9c 79
c5152d42 80static void read_unwind_info PARAMS ((struct objfile *));
669caa9c 81
c5152d42
JL
82static void internalize_unwinds PARAMS ((struct objfile *,
83 struct unwind_table_entry *,
84 asection *, unsigned int,
bfaef242 85 unsigned int, CORE_ADDR));
66a1aa07
SG
86
87\f
88/* Routines to extract various sized constants out of hppa
89 instructions. */
90
91/* This assumes that no garbage lies outside of the lower bits of
92 value. */
93
94int
95sign_extend (val, bits)
96 unsigned val, bits;
97{
98 return (int)(val >> bits - 1 ? (-1 << bits) | val : val);
99}
100
101/* For many immediate values the sign bit is the low bit! */
102
103int
104low_sign_extend (val, bits)
105 unsigned val, bits;
106{
107 return (int)((val & 0x1 ? (-1 << (bits - 1)) : 0) | val >> 1);
108}
109/* extract the immediate field from a ld{bhw}s instruction */
110
111unsigned
112get_field (val, from, to)
113 unsigned val, from, to;
114{
115 val = val >> 31 - to;
116 return val & ((1 << 32 - from) - 1);
117}
118
119unsigned
120set_field (val, from, to, new_val)
121 unsigned *val, from, to;
122{
123 unsigned mask = ~((1 << (to - from + 1)) << (31 - from));
124 return *val = *val & mask | (new_val << (31 - from));
125}
126
127/* extract a 3-bit space register number from a be, ble, mtsp or mfsp */
128
129extract_3 (word)
130 unsigned word;
131{
132 return GET_FIELD (word, 18, 18) << 2 | GET_FIELD (word, 16, 17);
133}
134
135extract_5_load (word)
136 unsigned word;
137{
138 return low_sign_extend (word >> 16 & MASK_5, 5);
139}
140
141/* extract the immediate field from a st{bhw}s instruction */
142
143int
144extract_5_store (word)
145 unsigned word;
146{
147 return low_sign_extend (word & MASK_5, 5);
148}
149
68c8d698
SG
150/* extract the immediate field from a break instruction */
151
152unsigned
153extract_5r_store (word)
154 unsigned word;
155{
156 return (word & MASK_5);
157}
158
159/* extract the immediate field from a {sr}sm instruction */
160
161unsigned
162extract_5R_store (word)
163 unsigned word;
164{
165 return (word >> 16 & MASK_5);
166}
167
66a1aa07
SG
168/* extract an 11 bit immediate field */
169
170int
171extract_11 (word)
172 unsigned word;
173{
174 return low_sign_extend (word & MASK_11, 11);
175}
176
177/* extract a 14 bit immediate field */
178
179int
180extract_14 (word)
181 unsigned word;
182{
183 return low_sign_extend (word & MASK_14, 14);
184}
185
186/* deposit a 14 bit constant in a word */
187
188unsigned
189deposit_14 (opnd, word)
190 int opnd;
191 unsigned word;
192{
193 unsigned sign = (opnd < 0 ? 1 : 0);
194
195 return word | ((unsigned)opnd << 1 & MASK_14) | sign;
196}
197
198/* extract a 21 bit constant */
199
200int
201extract_21 (word)
202 unsigned word;
203{
204 int val;
205
206 word &= MASK_21;
207 word <<= 11;
208 val = GET_FIELD (word, 20, 20);
209 val <<= 11;
210 val |= GET_FIELD (word, 9, 19);
211 val <<= 2;
212 val |= GET_FIELD (word, 5, 6);
213 val <<= 5;
214 val |= GET_FIELD (word, 0, 4);
215 val <<= 2;
216 val |= GET_FIELD (word, 7, 8);
217 return sign_extend (val, 21) << 11;
218}
219
220/* deposit a 21 bit constant in a word. Although 21 bit constants are
221 usually the top 21 bits of a 32 bit constant, we assume that only
222 the low 21 bits of opnd are relevant */
223
224unsigned
225deposit_21 (opnd, word)
226 unsigned opnd, word;
227{
228 unsigned val = 0;
229
230 val |= GET_FIELD (opnd, 11 + 14, 11 + 18);
231 val <<= 2;
232 val |= GET_FIELD (opnd, 11 + 12, 11 + 13);
233 val <<= 2;
234 val |= GET_FIELD (opnd, 11 + 19, 11 + 20);
235 val <<= 11;
236 val |= GET_FIELD (opnd, 11 + 1, 11 + 11);
237 val <<= 1;
238 val |= GET_FIELD (opnd, 11 + 0, 11 + 0);
239 return word | val;
240}
241
242/* extract a 12 bit constant from branch instructions */
243
244int
245extract_12 (word)
246 unsigned word;
247{
248 return sign_extend (GET_FIELD (word, 19, 28) |
249 GET_FIELD (word, 29, 29) << 10 |
250 (word & 0x1) << 11, 12) << 2;
251}
252
253/* extract a 17 bit constant from branch instructions, returning the
254 19 bit signed value. */
255
256int
257extract_17 (word)
258 unsigned word;
259{
260 return sign_extend (GET_FIELD (word, 19, 28) |
261 GET_FIELD (word, 29, 29) << 10 |
262 GET_FIELD (word, 11, 15) << 11 |
263 (word & 0x1) << 16, 17) << 2;
264}
265\f
c5152d42
JL
266
267/* Compare the start address for two unwind entries returning 1 if
268 the first address is larger than the second, -1 if the second is
269 larger than the first, and zero if they are equal. */
270
271static int
272compare_unwind_entries (a, b)
f81eee9d
JL
273 const struct unwind_table_entry *a;
274 const struct unwind_table_entry *b;
c5152d42
JL
275{
276 if (a->region_start > b->region_start)
277 return 1;
278 else if (a->region_start < b->region_start)
279 return -1;
280 else
281 return 0;
282}
283
284static void
bfaef242 285internalize_unwinds (objfile, table, section, entries, size, text_offset)
c5152d42
JL
286 struct objfile *objfile;
287 struct unwind_table_entry *table;
288 asection *section;
289 unsigned int entries, size;
bfaef242 290 CORE_ADDR text_offset;
c5152d42
JL
291{
292 /* We will read the unwind entries into temporary memory, then
293 fill in the actual unwind table. */
294 if (size > 0)
295 {
296 unsigned long tmp;
297 unsigned i;
298 char *buf = alloca (size);
299
300 bfd_get_section_contents (objfile->obfd, section, buf, 0, size);
301
302 /* Now internalize the information being careful to handle host/target
303 endian issues. */
304 for (i = 0; i < entries; i++)
305 {
306 table[i].region_start = bfd_get_32 (objfile->obfd,
307 (bfd_byte *)buf);
bfaef242 308 table[i].region_start += text_offset;
c5152d42
JL
309 buf += 4;
310 table[i].region_end = bfd_get_32 (objfile->obfd, (bfd_byte *)buf);
bfaef242 311 table[i].region_end += text_offset;
c5152d42
JL
312 buf += 4;
313 tmp = bfd_get_32 (objfile->obfd, (bfd_byte *)buf);
314 buf += 4;
315 table[i].Cannot_unwind = (tmp >> 31) & 0x1;;
316 table[i].Millicode = (tmp >> 30) & 0x1;
317 table[i].Millicode_save_sr0 = (tmp >> 29) & 0x1;
318 table[i].Region_description = (tmp >> 27) & 0x3;
319 table[i].reserved1 = (tmp >> 26) & 0x1;
320 table[i].Entry_SR = (tmp >> 25) & 0x1;
321 table[i].Entry_FR = (tmp >> 21) & 0xf;
322 table[i].Entry_GR = (tmp >> 16) & 0x1f;
323 table[i].Args_stored = (tmp >> 15) & 0x1;
324 table[i].Variable_Frame = (tmp >> 14) & 0x1;
325 table[i].Separate_Package_Body = (tmp >> 13) & 0x1;
326 table[i].Frame_Extension_Millicode = (tmp >> 12 ) & 0x1;
327 table[i].Stack_Overflow_Check = (tmp >> 11) & 0x1;
328 table[i].Two_Instruction_SP_Increment = (tmp >> 10) & 0x1;
329 table[i].Ada_Region = (tmp >> 9) & 0x1;
330 table[i].reserved2 = (tmp >> 5) & 0xf;
331 table[i].Save_SP = (tmp >> 4) & 0x1;
332 table[i].Save_RP = (tmp >> 3) & 0x1;
333 table[i].Save_MRP_in_frame = (tmp >> 2) & 0x1;
334 table[i].extn_ptr_defined = (tmp >> 1) & 0x1;
335 table[i].Cleanup_defined = tmp & 0x1;
336 tmp = bfd_get_32 (objfile->obfd, (bfd_byte *)buf);
337 buf += 4;
338 table[i].MPE_XL_interrupt_marker = (tmp >> 31) & 0x1;
339 table[i].HP_UX_interrupt_marker = (tmp >> 30) & 0x1;
340 table[i].Large_frame = (tmp >> 29) & 0x1;
341 table[i].reserved4 = (tmp >> 27) & 0x3;
342 table[i].Total_frame_size = tmp & 0x7ffffff;
343 }
344 }
345}
346
347/* Read in the backtrace information stored in the `$UNWIND_START$' section of
348 the object file. This info is used mainly by find_unwind_entry() to find
349 out the stack frame size and frame pointer used by procedures. We put
350 everything on the psymbol obstack in the objfile so that it automatically
351 gets freed when the objfile is destroyed. */
352
9c842e0c 353static void
c5152d42
JL
354read_unwind_info (objfile)
355 struct objfile *objfile;
356{
357 asection *unwind_sec, *elf_unwind_sec, *stub_unwind_sec;
358 unsigned unwind_size, elf_unwind_size, stub_unwind_size, total_size;
359 unsigned index, unwind_entries, elf_unwind_entries;
360 unsigned stub_entries, total_entries;
bfaef242 361 CORE_ADDR text_offset;
c5152d42
JL
362 struct obj_unwind_info *ui;
363
bfaef242 364 text_offset = ANOFFSET (objfile->section_offsets, 0);
c5152d42
JL
365 ui = obstack_alloc (&objfile->psymbol_obstack,
366 sizeof (struct obj_unwind_info));
367
368 ui->table = NULL;
369 ui->cache = NULL;
370 ui->last = -1;
371
372 /* Get hooks to all unwind sections. Note there is no linker-stub unwind
373 section in ELF at the moment. */
374 unwind_sec = bfd_get_section_by_name (objfile->obfd, "$UNWIND_START$");
0fc27289 375 elf_unwind_sec = bfd_get_section_by_name (objfile->obfd, ".PARISC.unwind");
c5152d42
JL
376 stub_unwind_sec = bfd_get_section_by_name (objfile->obfd, "$UNWIND_END$");
377
378 /* Get sizes and unwind counts for all sections. */
379 if (unwind_sec)
380 {
381 unwind_size = bfd_section_size (objfile->obfd, unwind_sec);
382 unwind_entries = unwind_size / UNWIND_ENTRY_SIZE;
383 }
384 else
385 {
386 unwind_size = 0;
387 unwind_entries = 0;
388 }
389
390 if (elf_unwind_sec)
391 {
392 elf_unwind_size = bfd_section_size (objfile->obfd, elf_unwind_sec);
393 elf_unwind_entries = elf_unwind_size / UNWIND_ENTRY_SIZE;
394 }
f55179cb
JL
395 else
396 {
397 elf_unwind_size = 0;
398 elf_unwind_entries = 0;
399 }
c5152d42
JL
400
401 if (stub_unwind_sec)
402 {
403 stub_unwind_size = bfd_section_size (objfile->obfd, stub_unwind_sec);
404 stub_entries = stub_unwind_size / STUB_UNWIND_ENTRY_SIZE;
405 }
406 else
407 {
408 stub_unwind_size = 0;
409 stub_entries = 0;
410 }
411
412 /* Compute total number of unwind entries and their total size. */
413 total_entries = unwind_entries + elf_unwind_entries + stub_entries;
414 total_size = total_entries * sizeof (struct unwind_table_entry);
415
416 /* Allocate memory for the unwind table. */
417 ui->table = obstack_alloc (&objfile->psymbol_obstack, total_size);
418 ui->last = total_entries - 1;
419
420 /* Internalize the standard unwind entries. */
421 index = 0;
422 internalize_unwinds (objfile, &ui->table[index], unwind_sec,
bfaef242 423 unwind_entries, unwind_size, text_offset);
c5152d42
JL
424 index += unwind_entries;
425 internalize_unwinds (objfile, &ui->table[index], elf_unwind_sec,
bfaef242 426 elf_unwind_entries, elf_unwind_size, text_offset);
c5152d42
JL
427 index += elf_unwind_entries;
428
429 /* Now internalize the stub unwind entries. */
430 if (stub_unwind_size > 0)
431 {
432 unsigned int i;
433 char *buf = alloca (stub_unwind_size);
434
435 /* Read in the stub unwind entries. */
436 bfd_get_section_contents (objfile->obfd, stub_unwind_sec, buf,
437 0, stub_unwind_size);
438
439 /* Now convert them into regular unwind entries. */
440 for (i = 0; i < stub_entries; i++, index++)
441 {
442 /* Clear out the next unwind entry. */
443 memset (&ui->table[index], 0, sizeof (struct unwind_table_entry));
444
445 /* Convert offset & size into region_start and region_end.
446 Stuff away the stub type into "reserved" fields. */
447 ui->table[index].region_start = bfd_get_32 (objfile->obfd,
448 (bfd_byte *) buf);
73a25072 449 ui->table[index].region_start += text_offset;
c5152d42
JL
450 buf += 4;
451 ui->table[index].stub_type = bfd_get_8 (objfile->obfd,
452 (bfd_byte *) buf);
453 buf += 2;
454 ui->table[index].region_end
455 = ui->table[index].region_start + 4 *
456 (bfd_get_16 (objfile->obfd, (bfd_byte *) buf) - 1);
457 buf += 2;
458 }
459
460 }
461
462 /* Unwind table needs to be kept sorted. */
463 qsort (ui->table, total_entries, sizeof (struct unwind_table_entry),
464 compare_unwind_entries);
465
466 /* Keep a pointer to the unwind information. */
467 objfile->obj_private = (PTR) ui;
468}
469
66a1aa07
SG
470/* Lookup the unwind (stack backtrace) info for the given PC. We search all
471 of the objfiles seeking the unwind table entry for this PC. Each objfile
472 contains a sorted list of struct unwind_table_entry. Since we do a binary
473 search of the unwind tables, we depend upon them to be sorted. */
474
475static struct unwind_table_entry *
476find_unwind_entry(pc)
477 CORE_ADDR pc;
478{
479 int first, middle, last;
480 struct objfile *objfile;
481
482 ALL_OBJFILES (objfile)
483 {
484 struct obj_unwind_info *ui;
485
486 ui = OBJ_UNWIND_INFO (objfile);
487
488 if (!ui)
c5152d42
JL
489 {
490 read_unwind_info (objfile);
491 ui = OBJ_UNWIND_INFO (objfile);
492 }
66a1aa07
SG
493
494 /* First, check the cache */
495
496 if (ui->cache
497 && pc >= ui->cache->region_start
498 && pc <= ui->cache->region_end)
499 return ui->cache;
500
501 /* Not in the cache, do a binary search */
502
503 first = 0;
504 last = ui->last;
505
506 while (first <= last)
507 {
508 middle = (first + last) / 2;
509 if (pc >= ui->table[middle].region_start
510 && pc <= ui->table[middle].region_end)
511 {
512 ui->cache = &ui->table[middle];
513 return &ui->table[middle];
514 }
515
516 if (pc < ui->table[middle].region_start)
517 last = middle - 1;
518 else
519 first = middle + 1;
520 }
521 } /* ALL_OBJFILES() */
522 return NULL;
523}
524
98c0e047
JL
525/* start-sanitize-hpread */
526/* Return the adjustment necessary to make for addresses on the stack
527 as presented by hpread.c.
528
529 This is necessary because of the stack direction on the PA and the
530 bizarre way in which someone (?) decided they wanted to handle
531 frame pointerless code in GDB. */
532int
533hpread_adjust_stack_address (func_addr)
534 CORE_ADDR func_addr;
535{
536 struct unwind_table_entry *u;
537
538 u = find_unwind_entry (func_addr);
539 if (!u)
540 return 0;
541 else
542 return u->Total_frame_size << 3;
543}
544/* end-sanitize-hpread */
545
70e43abe
JL
546/* Called to determine if PC is in an interrupt handler of some
547 kind. */
548
549static int
550pc_in_interrupt_handler (pc)
551 CORE_ADDR pc;
552{
553 struct unwind_table_entry *u;
554 struct minimal_symbol *msym_us;
555
556 u = find_unwind_entry (pc);
557 if (!u)
558 return 0;
559
560 /* Oh joys. HPUX sets the interrupt bit for _sigreturn even though
561 its frame isn't a pure interrupt frame. Deal with this. */
562 msym_us = lookup_minimal_symbol_by_pc (pc);
563
564 return u->HP_UX_interrupt_marker && !IN_SIGTRAMP (pc, SYMBOL_NAME (msym_us));
565}
566
5ac7f56e
JK
567/* Called when no unwind descriptor was found for PC. Returns 1 if it
568 appears that PC is in a linker stub. */
5ac7f56e
JK
569
570static int
571pc_in_linker_stub (pc)
572 CORE_ADDR pc;
573{
5ac7f56e
JK
574 int found_magic_instruction = 0;
575 int i;
08ecd8f3
JK
576 char buf[4];
577
578 /* If unable to read memory, assume pc is not in a linker stub. */
579 if (target_read_memory (pc, buf, 4) != 0)
580 return 0;
5ac7f56e 581
d08c6f4c
JK
582 /* We are looking for something like
583
584 ; $$dyncall jams RP into this special spot in the frame (RP')
585 ; before calling the "call stub"
586 ldw -18(sp),rp
587
588 ldsid (rp),r1 ; Get space associated with RP into r1
589 mtsp r1,sp ; Move it into space register 0
590 be,n 0(sr0),rp) ; back to your regularly scheduled program
591 */
592
5ac7f56e
JK
593 /* Maximum known linker stub size is 4 instructions. Search forward
594 from the given PC, then backward. */
595 for (i = 0; i < 4; i++)
596 {
6e35b037 597 /* If we hit something with an unwind, stop searching this direction. */
5ac7f56e
JK
598
599 if (find_unwind_entry (pc + i * 4) != 0)
600 break;
601
602 /* Check for ldsid (rp),r1 which is the magic instruction for a
603 return from a cross-space function call. */
604 if (read_memory_integer (pc + i * 4, 4) == 0x004010a1)
605 {
606 found_magic_instruction = 1;
607 break;
608 }
609 /* Add code to handle long call/branch and argument relocation stubs
610 here. */
611 }
612
613 if (found_magic_instruction != 0)
614 return 1;
615
616 /* Now look backward. */
617 for (i = 0; i < 4; i++)
618 {
6e35b037 619 /* If we hit something with an unwind, stop searching this direction. */
5ac7f56e
JK
620
621 if (find_unwind_entry (pc - i * 4) != 0)
622 break;
623
624 /* Check for ldsid (rp),r1 which is the magic instruction for a
625 return from a cross-space function call. */
626 if (read_memory_integer (pc - i * 4, 4) == 0x004010a1)
627 {
628 found_magic_instruction = 1;
629 break;
630 }
631 /* Add code to handle long call/branch and argument relocation stubs
632 here. */
633 }
634 return found_magic_instruction;
635}
636
66a1aa07
SG
637static int
638find_return_regnum(pc)
639 CORE_ADDR pc;
640{
641 struct unwind_table_entry *u;
642
643 u = find_unwind_entry (pc);
644
645 if (!u)
646 return RP_REGNUM;
647
648 if (u->Millicode)
649 return 31;
650
651 return RP_REGNUM;
652}
653
5ac7f56e 654/* Return size of frame, or -1 if we should use a frame pointer. */
66a1aa07 655int
70e43abe 656find_proc_framesize (pc)
66a1aa07
SG
657 CORE_ADDR pc;
658{
659 struct unwind_table_entry *u;
70e43abe 660 struct minimal_symbol *msym_us;
66a1aa07 661
66a1aa07
SG
662 u = find_unwind_entry (pc);
663
664 if (!u)
5ac7f56e
JK
665 {
666 if (pc_in_linker_stub (pc))
667 /* Linker stubs have a zero size frame. */
668 return 0;
669 else
670 return -1;
671 }
66a1aa07 672
70e43abe
JL
673 msym_us = lookup_minimal_symbol_by_pc (pc);
674
675 /* If Save_SP is set, and we're not in an interrupt or signal caller,
676 then we have a frame pointer. Use it. */
677 if (u->Save_SP && !pc_in_interrupt_handler (pc)
678 && !IN_SIGTRAMP (pc, SYMBOL_NAME (msym_us)))
eabbe766
JK
679 return -1;
680
66a1aa07
SG
681 return u->Total_frame_size << 3;
682}
683
5ac7f56e
JK
684/* Return offset from sp at which rp is saved, or 0 if not saved. */
685static int rp_saved PARAMS ((CORE_ADDR));
686
687static int
688rp_saved (pc)
689 CORE_ADDR pc;
66a1aa07
SG
690{
691 struct unwind_table_entry *u;
692
693 u = find_unwind_entry (pc);
694
695 if (!u)
5ac7f56e
JK
696 {
697 if (pc_in_linker_stub (pc))
698 /* This is the so-called RP'. */
699 return -24;
700 else
701 return 0;
702 }
66a1aa07
SG
703
704 if (u->Save_RP)
5ac7f56e 705 return -20;
c7f3b703
JL
706 else if (u->stub_type != 0)
707 {
708 switch (u->stub_type)
709 {
710 case EXPORT:
c2e00af6 711 case IMPORT:
c7f3b703
JL
712 return -24;
713 case PARAMETER_RELOCATION:
714 return -8;
715 default:
716 return 0;
717 }
718 }
66a1aa07
SG
719 else
720 return 0;
721}
722\f
8fa74880
SG
723int
724frameless_function_invocation (frame)
669caa9c 725 struct frame_info *frame;
8fa74880 726{
b8ec9a79 727 struct unwind_table_entry *u;
8fa74880 728
b8ec9a79 729 u = find_unwind_entry (frame->pc);
8fa74880 730
b8ec9a79 731 if (u == 0)
7f43b9b7 732 return 0;
b8ec9a79 733
c7f3b703 734 return (u->Total_frame_size == 0 && u->stub_type == 0);
8fa74880
SG
735}
736
66a1aa07
SG
737CORE_ADDR
738saved_pc_after_call (frame)
669caa9c 739 struct frame_info *frame;
66a1aa07
SG
740{
741 int ret_regnum;
edd86fb0
JL
742 CORE_ADDR pc;
743 struct unwind_table_entry *u;
66a1aa07
SG
744
745 ret_regnum = find_return_regnum (get_frame_pc (frame));
edd86fb0
JL
746 pc = read_register (ret_regnum) & ~0x3;
747
748 /* If PC is in a linker stub, then we need to dig the address
749 the stub will return to out of the stack. */
750 u = find_unwind_entry (pc);
751 if (u && u->stub_type != 0)
752 return frame_saved_pc (frame);
753 else
754 return pc;
66a1aa07
SG
755}
756\f
757CORE_ADDR
758frame_saved_pc (frame)
669caa9c 759 struct frame_info *frame;
66a1aa07
SG
760{
761 CORE_ADDR pc = get_frame_pc (frame);
7f43b9b7 762 struct unwind_table_entry *u;
66a1aa07 763
70e43abe
JL
764 /* BSD, HPUX & OSF1 all lay out the hardware state in the same manner
765 at the base of the frame in an interrupt handler. Registers within
766 are saved in the exact same order as GDB numbers registers. How
767 convienent. */
768 if (pc_in_interrupt_handler (pc))
769 return read_memory_integer (frame->frame + PC_REGNUM * 4, 4) & ~0x3;
770
771 /* Deal with signal handler caller frames too. */
772 if (frame->signal_handler_caller)
773 {
774 CORE_ADDR rp;
775 FRAME_SAVED_PC_IN_SIGTRAMP (frame, &rp);
54b2555b 776 return rp & ~0x3;
70e43abe
JL
777 }
778
8fa74880 779 if (frameless_function_invocation (frame))
66a1aa07
SG
780 {
781 int ret_regnum;
782
783 ret_regnum = find_return_regnum (pc);
784
70e43abe
JL
785 /* If the next frame is an interrupt frame or a signal
786 handler caller, then we need to look in the saved
787 register area to get the return pointer (the values
788 in the registers may not correspond to anything useful). */
789 if (frame->next
790 && (frame->next->signal_handler_caller
791 || pc_in_interrupt_handler (frame->next->pc)))
792 {
70e43abe
JL
793 struct frame_saved_regs saved_regs;
794
54b2555b 795 get_frame_saved_regs (frame->next, &saved_regs);
471fb8d8 796 if (read_memory_integer (saved_regs.regs[FLAGS_REGNUM], 4) & 0x2)
54b2555b
JL
797 {
798 pc = read_memory_integer (saved_regs.regs[31], 4) & ~0x3;
799
800 /* Syscalls are really two frames. The syscall stub itself
801 with a return pointer in %rp and the kernel call with
802 a return pointer in %r31. We return the %rp variant
803 if %r31 is the same as frame->pc. */
804 if (pc == frame->pc)
805 pc = read_memory_integer (saved_regs.regs[RP_REGNUM], 4) & ~0x3;
806 }
70e43abe 807 else
7f43b9b7 808 pc = read_memory_integer (saved_regs.regs[RP_REGNUM], 4) & ~0x3;
70e43abe
JL
809 }
810 else
7f43b9b7 811 pc = read_register (ret_regnum) & ~0x3;
66a1aa07 812 }
66a1aa07 813 else
5ac7f56e 814 {
edd86fb0 815 int rp_offset;
5ac7f56e 816
edd86fb0
JL
817restart:
818 rp_offset = rp_saved (pc);
70e43abe
JL
819 /* Similar to code in frameless function case. If the next
820 frame is a signal or interrupt handler, then dig the right
821 information out of the saved register info. */
822 if (rp_offset == 0
823 && frame->next
824 && (frame->next->signal_handler_caller
825 || pc_in_interrupt_handler (frame->next->pc)))
826 {
70e43abe
JL
827 struct frame_saved_regs saved_regs;
828
669caa9c 829 get_frame_saved_regs (frame->next, &saved_regs);
471fb8d8 830 if (read_memory_integer (saved_regs.regs[FLAGS_REGNUM], 4) & 0x2)
54b2555b
JL
831 {
832 pc = read_memory_integer (saved_regs.regs[31], 4) & ~0x3;
833
834 /* Syscalls are really two frames. The syscall stub itself
835 with a return pointer in %rp and the kernel call with
836 a return pointer in %r31. We return the %rp variant
837 if %r31 is the same as frame->pc. */
838 if (pc == frame->pc)
839 pc = read_memory_integer (saved_regs.regs[RP_REGNUM], 4) & ~0x3;
840 }
70e43abe 841 else
7f43b9b7 842 pc = read_memory_integer (saved_regs.regs[RP_REGNUM], 4) & ~0x3;
70e43abe
JL
843 }
844 else if (rp_offset == 0)
7f43b9b7 845 pc = read_register (RP_REGNUM) & ~0x3;
5ac7f56e 846 else
7f43b9b7 847 pc = read_memory_integer (frame->frame + rp_offset, 4) & ~0x3;
5ac7f56e 848 }
7f43b9b7
JL
849
850 /* If PC is inside a linker stub, then dig out the address the stub
851 will return to. */
852 u = find_unwind_entry (pc);
853 if (u && u->stub_type != 0)
854 goto restart;
855
856 return pc;
66a1aa07
SG
857}
858\f
859/* We need to correct the PC and the FP for the outermost frame when we are
860 in a system call. */
861
862void
863init_extra_frame_info (fromleaf, frame)
864 int fromleaf;
865 struct frame_info *frame;
866{
867 int flags;
868 int framesize;
869
192c3eeb 870 if (frame->next && !fromleaf)
66a1aa07
SG
871 return;
872
192c3eeb
JL
873 /* If the next frame represents a frameless function invocation
874 then we have to do some adjustments that are normally done by
875 FRAME_CHAIN. (FRAME_CHAIN is not called in this case.) */
876 if (fromleaf)
877 {
878 /* Find the framesize of *this* frame without peeking at the PC
879 in the current frame structure (it isn't set yet). */
880 framesize = find_proc_framesize (FRAME_SAVED_PC (get_next_frame (frame)));
881
882 /* Now adjust our base frame accordingly. If we have a frame pointer
883 use it, else subtract the size of this frame from the current
884 frame. (we always want frame->frame to point at the lowest address
885 in the frame). */
886 if (framesize == -1)
887 frame->frame = read_register (FP_REGNUM);
888 else
889 frame->frame -= framesize;
890 return;
891 }
892
66a1aa07
SG
893 flags = read_register (FLAGS_REGNUM);
894 if (flags & 2) /* In system call? */
895 frame->pc = read_register (31) & ~0x3;
896
192c3eeb
JL
897 /* The outermost frame is always derived from PC-framesize
898
899 One might think frameless innermost frames should have
900 a frame->frame that is the same as the parent's frame->frame.
901 That is wrong; frame->frame in that case should be the *high*
902 address of the parent's frame. It's complicated as hell to
903 explain, but the parent *always* creates some stack space for
904 the child. So the child actually does have a frame of some
905 sorts, and its base is the high address in its parent's frame. */
66a1aa07
SG
906 framesize = find_proc_framesize(frame->pc);
907 if (framesize == -1)
908 frame->frame = read_register (FP_REGNUM);
909 else
910 frame->frame = read_register (SP_REGNUM) - framesize;
66a1aa07
SG
911}
912\f
8966221d
JK
913/* Given a GDB frame, determine the address of the calling function's frame.
914 This will be used to create a new GDB frame struct, and then
915 INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.
916
917 This may involve searching through prologues for several functions
918 at boundaries where GCC calls HP C code, or where code which has
919 a frame pointer calls code without a frame pointer. */
8966221d 920
669caa9c 921CORE_ADDR
66a1aa07
SG
922frame_chain (frame)
923 struct frame_info *frame;
924{
8966221d
JK
925 int my_framesize, caller_framesize;
926 struct unwind_table_entry *u;
70e43abe
JL
927 CORE_ADDR frame_base;
928
929 /* Handle HPUX, BSD, and OSF1 style interrupt frames first. These
930 are easy; at *sp we have a full save state strucutre which we can
931 pull the old stack pointer from. Also see frame_saved_pc for
932 code to dig a saved PC out of the save state structure. */
933 if (pc_in_interrupt_handler (frame->pc))
934 frame_base = read_memory_integer (frame->frame + SP_REGNUM * 4, 4);
935 else if (frame->signal_handler_caller)
936 {
937 FRAME_BASE_BEFORE_SIGTRAMP (frame, &frame_base);
938 }
939 else
940 frame_base = frame->frame;
66a1aa07 941
8966221d
JK
942 /* Get frame sizes for the current frame and the frame of the
943 caller. */
944 my_framesize = find_proc_framesize (frame->pc);
945 caller_framesize = find_proc_framesize (FRAME_SAVED_PC(frame));
66a1aa07 946
8966221d
JK
947 /* If caller does not have a frame pointer, then its frame
948 can be found at current_frame - caller_framesize. */
949 if (caller_framesize != -1)
70e43abe 950 return frame_base - caller_framesize;
8966221d
JK
951
952 /* Both caller and callee have frame pointers and are GCC compiled
953 (SAVE_SP bit in unwind descriptor is on for both functions.
954 The previous frame pointer is found at the top of the current frame. */
955 if (caller_framesize == -1 && my_framesize == -1)
70e43abe 956 return read_memory_integer (frame_base, 4);
8966221d
JK
957
958 /* Caller has a frame pointer, but callee does not. This is a little
959 more difficult as GCC and HP C lay out locals and callee register save
960 areas very differently.
961
962 The previous frame pointer could be in a register, or in one of
963 several areas on the stack.
964
965 Walk from the current frame to the innermost frame examining
2f8c3639 966 unwind descriptors to determine if %r3 ever gets saved into the
8966221d 967 stack. If so return whatever value got saved into the stack.
2f8c3639 968 If it was never saved in the stack, then the value in %r3 is still
8966221d
JK
969 valid, so use it.
970
2f8c3639 971 We use information from unwind descriptors to determine if %r3
8966221d
JK
972 is saved into the stack (Entry_GR field has this information). */
973
974 while (frame)
975 {
976 u = find_unwind_entry (frame->pc);
977
978 if (!u)
979 {
01a03545
JK
980 /* We could find this information by examining prologues. I don't
981 think anyone has actually written any tools (not even "strip")
982 which leave them out of an executable, so maybe this is a moot
983 point. */
8966221d
JK
984 warning ("Unable to find unwind for PC 0x%x -- Help!", frame->pc);
985 return 0;
986 }
987
988 /* Entry_GR specifies the number of callee-saved general registers
2f8c3639 989 saved in the stack. It starts at %r3, so %r3 would be 1. */
70e43abe
JL
990 if (u->Entry_GR >= 1 || u->Save_SP
991 || frame->signal_handler_caller
992 || pc_in_interrupt_handler (frame->pc))
8966221d
JK
993 break;
994 else
995 frame = frame->next;
996 }
997
998 if (frame)
999 {
1000 /* We may have walked down the chain into a function with a frame
1001 pointer. */
70e43abe
JL
1002 if (u->Save_SP
1003 && !frame->signal_handler_caller
1004 && !pc_in_interrupt_handler (frame->pc))
8966221d 1005 return read_memory_integer (frame->frame, 4);
2f8c3639 1006 /* %r3 was saved somewhere in the stack. Dig it out. */
8966221d 1007 else
c598654a 1008 {
c598654a
JL
1009 struct frame_saved_regs saved_regs;
1010
669caa9c 1011 get_frame_saved_regs (frame, &saved_regs);
c598654a
JL
1012 return read_memory_integer (saved_regs.regs[FP_REGNUM], 4);
1013 }
8966221d
JK
1014 }
1015 else
1016 {
2f8c3639 1017 /* The value in %r3 was never saved into the stack (thus %r3 still
8966221d 1018 holds the value of the previous frame pointer). */
2f8c3639 1019 return read_register (FP_REGNUM);
8966221d
JK
1020 }
1021}
66a1aa07 1022
66a1aa07
SG
1023\f
1024/* To see if a frame chain is valid, see if the caller looks like it
1025 was compiled with gcc. */
1026
1027int
1028frame_chain_valid (chain, thisframe)
669caa9c
SS
1029 CORE_ADDR chain;
1030 struct frame_info *thisframe;
66a1aa07 1031{
247145e6
JK
1032 struct minimal_symbol *msym_us;
1033 struct minimal_symbol *msym_start;
70e43abe 1034 struct unwind_table_entry *u, *next_u = NULL;
669caa9c 1035 struct frame_info *next;
66a1aa07
SG
1036
1037 if (!chain)
1038 return 0;
1039
b8ec9a79 1040 u = find_unwind_entry (thisframe->pc);
4b01383b 1041
70e43abe
JL
1042 if (u == NULL)
1043 return 1;
1044
247145e6
JK
1045 /* We can't just check that the same of msym_us is "_start", because
1046 someone idiotically decided that they were going to make a Ltext_end
1047 symbol with the same address. This Ltext_end symbol is totally
1048 indistinguishable (as nearly as I can tell) from the symbol for a function
1049 which is (legitimately, since it is in the user's namespace)
1050 named Ltext_end, so we can't just ignore it. */
1051 msym_us = lookup_minimal_symbol_by_pc (FRAME_SAVED_PC (thisframe));
1052 msym_start = lookup_minimal_symbol ("_start", NULL);
1053 if (msym_us
1054 && msym_start
1055 && SYMBOL_VALUE_ADDRESS (msym_us) == SYMBOL_VALUE_ADDRESS (msym_start))
b8ec9a79 1056 return 0;
5ac7f56e 1057
70e43abe
JL
1058 next = get_next_frame (thisframe);
1059 if (next)
1060 next_u = find_unwind_entry (next->pc);
5ac7f56e 1061
70e43abe
JL
1062 /* If this frame does not save SP, has no stack, isn't a stub,
1063 and doesn't "call" an interrupt routine or signal handler caller,
1064 then its not valid. */
1065 if (u->Save_SP || u->Total_frame_size || u->stub_type != 0
1066 || (thisframe->next && thisframe->next->signal_handler_caller)
1067 || (next_u && next_u->HP_UX_interrupt_marker))
b8ec9a79 1068 return 1;
5ac7f56e 1069
b8ec9a79
JK
1070 if (pc_in_linker_stub (thisframe->pc))
1071 return 1;
4b01383b 1072
b8ec9a79 1073 return 0;
66a1aa07
SG
1074}
1075
66a1aa07
SG
1076/*
1077 * These functions deal with saving and restoring register state
1078 * around a function call in the inferior. They keep the stack
1079 * double-word aligned; eventually, on an hp700, the stack will have
1080 * to be aligned to a 64-byte boundary.
1081 */
1082
1083int
1084push_dummy_frame ()
1085{
1086 register CORE_ADDR sp;
1087 register int regnum;
1088 int int_buffer;
1089 double freg_buffer;
1090
1091 /* Space for "arguments"; the RP goes in here. */
1092 sp = read_register (SP_REGNUM) + 48;
1093 int_buffer = read_register (RP_REGNUM) | 0x3;
1094 write_memory (sp - 20, (char *)&int_buffer, 4);
1095
1096 int_buffer = read_register (FP_REGNUM);
1097 write_memory (sp, (char *)&int_buffer, 4);
1098
1099 write_register (FP_REGNUM, sp);
1100
1101 sp += 8;
1102
1103 for (regnum = 1; regnum < 32; regnum++)
1104 if (regnum != RP_REGNUM && regnum != FP_REGNUM)
1105 sp = push_word (sp, read_register (regnum));
1106
1107 sp += 4;
1108
1109 for (regnum = FP0_REGNUM; regnum < NUM_REGS; regnum++)
1110 {
1111 read_register_bytes (REGISTER_BYTE (regnum), (char *)&freg_buffer, 8);
1112 sp = push_bytes (sp, (char *)&freg_buffer, 8);
1113 }
1114 sp = push_word (sp, read_register (IPSW_REGNUM));
1115 sp = push_word (sp, read_register (SAR_REGNUM));
1116 sp = push_word (sp, read_register (PCOQ_HEAD_REGNUM));
1117 sp = push_word (sp, read_register (PCSQ_HEAD_REGNUM));
1118 sp = push_word (sp, read_register (PCOQ_TAIL_REGNUM));
1119 sp = push_word (sp, read_register (PCSQ_TAIL_REGNUM));
1120 write_register (SP_REGNUM, sp);
1121}
1122
1123find_dummy_frame_regs (frame, frame_saved_regs)
1124 struct frame_info *frame;
1125 struct frame_saved_regs *frame_saved_regs;
1126{
1127 CORE_ADDR fp = frame->frame;
1128 int i;
1129
1130 frame_saved_regs->regs[RP_REGNUM] = fp - 20 & ~0x3;
1131 frame_saved_regs->regs[FP_REGNUM] = fp;
1132 frame_saved_regs->regs[1] = fp + 8;
66a1aa07 1133
b227992a
SG
1134 for (fp += 12, i = 3; i < 32; i++)
1135 {
1136 if (i != FP_REGNUM)
1137 {
1138 frame_saved_regs->regs[i] = fp;
1139 fp += 4;
1140 }
1141 }
66a1aa07
SG
1142
1143 fp += 4;
1144 for (i = FP0_REGNUM; i < NUM_REGS; i++, fp += 8)
1145 frame_saved_regs->regs[i] = fp;
1146
1147 frame_saved_regs->regs[IPSW_REGNUM] = fp;
b227992a
SG
1148 frame_saved_regs->regs[SAR_REGNUM] = fp + 4;
1149 frame_saved_regs->regs[PCOQ_HEAD_REGNUM] = fp + 8;
1150 frame_saved_regs->regs[PCSQ_HEAD_REGNUM] = fp + 12;
1151 frame_saved_regs->regs[PCOQ_TAIL_REGNUM] = fp + 16;
1152 frame_saved_regs->regs[PCSQ_TAIL_REGNUM] = fp + 20;
66a1aa07
SG
1153}
1154
1155int
1156hppa_pop_frame ()
1157{
669caa9c 1158 register struct frame_info *frame = get_current_frame ();
66a1aa07
SG
1159 register CORE_ADDR fp;
1160 register int regnum;
1161 struct frame_saved_regs fsr;
66a1aa07
SG
1162 double freg_buffer;
1163
669caa9c
SS
1164 fp = FRAME_FP (frame);
1165 get_frame_saved_regs (frame, &fsr);
66a1aa07 1166
0a64709e 1167#ifndef NO_PC_SPACE_QUEUE_RESTORE
66a1aa07
SG
1168 if (fsr.regs[IPSW_REGNUM]) /* Restoring a call dummy frame */
1169 restore_pc_queue (&fsr);
0a64709e 1170#endif
66a1aa07
SG
1171
1172 for (regnum = 31; regnum > 0; regnum--)
1173 if (fsr.regs[regnum])
1174 write_register (regnum, read_memory_integer (fsr.regs[regnum], 4));
1175
1176 for (regnum = NUM_REGS - 1; regnum >= FP0_REGNUM ; regnum--)
1177 if (fsr.regs[regnum])
1178 {
1179 read_memory (fsr.regs[regnum], (char *)&freg_buffer, 8);
1180 write_register_bytes (REGISTER_BYTE (regnum), (char *)&freg_buffer, 8);
1181 }
1182
1183 if (fsr.regs[IPSW_REGNUM])
1184 write_register (IPSW_REGNUM,
1185 read_memory_integer (fsr.regs[IPSW_REGNUM], 4));
1186
1187 if (fsr.regs[SAR_REGNUM])
1188 write_register (SAR_REGNUM,
1189 read_memory_integer (fsr.regs[SAR_REGNUM], 4));
1190
ed1a07ad 1191 /* If the PC was explicitly saved, then just restore it. */
66a1aa07
SG
1192 if (fsr.regs[PCOQ_TAIL_REGNUM])
1193 write_register (PCOQ_TAIL_REGNUM,
1194 read_memory_integer (fsr.regs[PCOQ_TAIL_REGNUM], 4));
1195
ed1a07ad
JK
1196 /* Else use the value in %rp to set the new PC. */
1197 else
e9a3cde8 1198 target_write_pc (read_register (RP_REGNUM), 0);
ed1a07ad 1199
66a1aa07
SG
1200 write_register (FP_REGNUM, read_memory_integer (fp, 4));
1201
1202 if (fsr.regs[IPSW_REGNUM]) /* call dummy */
1203 write_register (SP_REGNUM, fp - 48);
1204 else
1205 write_register (SP_REGNUM, fp);
1206
1207 flush_cached_frames ();
66a1aa07
SG
1208}
1209
1210/*
1211 * After returning to a dummy on the stack, restore the instruction
1212 * queue space registers. */
1213
1214static int
1215restore_pc_queue (fsr)
1216 struct frame_saved_regs *fsr;
1217{
1218 CORE_ADDR pc = read_pc ();
1219 CORE_ADDR new_pc = read_memory_integer (fsr->regs[PCOQ_HEAD_REGNUM], 4);
1220 int pid;
67ac9759 1221 struct target_waitstatus w;
66a1aa07
SG
1222 int insn_count;
1223
1224 /* Advance past break instruction in the call dummy. */
1225 write_register (PCOQ_HEAD_REGNUM, pc + 4);
1226 write_register (PCOQ_TAIL_REGNUM, pc + 8);
1227
1228 /*
1229 * HPUX doesn't let us set the space registers or the space
1230 * registers of the PC queue through ptrace. Boo, hiss.
1231 * Conveniently, the call dummy has this sequence of instructions
1232 * after the break:
1233 * mtsp r21, sr0
1234 * ble,n 0(sr0, r22)
1235 *
1236 * So, load up the registers and single step until we are in the
1237 * right place.
1238 */
1239
1240 write_register (21, read_memory_integer (fsr->regs[PCSQ_HEAD_REGNUM], 4));
1241 write_register (22, new_pc);
1242
1243 for (insn_count = 0; insn_count < 3; insn_count++)
1244 {
8c5e0021
JK
1245 /* FIXME: What if the inferior gets a signal right now? Want to
1246 merge this into wait_for_inferior (as a special kind of
1247 watchpoint? By setting a breakpoint at the end? Is there
1248 any other choice? Is there *any* way to do this stuff with
1249 ptrace() or some equivalent?). */
66a1aa07 1250 resume (1, 0);
67ac9759 1251 target_wait (inferior_pid, &w);
66a1aa07 1252
67ac9759 1253 if (w.kind == TARGET_WAITKIND_SIGNALLED)
66a1aa07 1254 {
67ac9759 1255 stop_signal = w.value.sig;
66a1aa07 1256 terminal_ours_for_output ();
67ac9759
JK
1257 printf_unfiltered ("\nProgram terminated with signal %s, %s.\n",
1258 target_signal_to_name (stop_signal),
1259 target_signal_to_string (stop_signal));
199b2450 1260 gdb_flush (gdb_stdout);
66a1aa07
SG
1261 return 0;
1262 }
1263 }
8c5e0021 1264 target_terminal_ours ();
cad1498f 1265 target_fetch_registers (-1);
66a1aa07
SG
1266 return 1;
1267}
1268
1269CORE_ADDR
1270hppa_push_arguments (nargs, args, sp, struct_return, struct_addr)
1271 int nargs;
4fd5eed4 1272 value_ptr *args;
66a1aa07
SG
1273 CORE_ADDR sp;
1274 int struct_return;
1275 CORE_ADDR struct_addr;
1276{
1277 /* array of arguments' offsets */
1edc5cd2 1278 int *offset = (int *)alloca(nargs * sizeof (int));
66a1aa07
SG
1279 int cum = 0;
1280 int i, alignment;
1281
1282 for (i = 0; i < nargs; i++)
1283 {
1284 /* Coerce chars to int & float to double if necessary */
1285 args[i] = value_arg_coerce (args[i]);
1286
1287 cum += TYPE_LENGTH (VALUE_TYPE (args[i]));
1288
1289 /* value must go at proper alignment. Assume alignment is a
1290 power of two.*/
1291 alignment = hppa_alignof (VALUE_TYPE (args[i]));
1292 if (cum % alignment)
1293 cum = (cum + alignment) & -alignment;
1294 offset[i] = -cum;
1295 }
558f4183 1296 sp += max ((cum + 7) & -8, 16);
66a1aa07
SG
1297
1298 for (i = 0; i < nargs; i++)
1299 write_memory (sp + offset[i], VALUE_CONTENTS (args[i]),
1300 TYPE_LENGTH (VALUE_TYPE (args[i])));
1301
1302 if (struct_return)
1303 write_register (28, struct_addr);
1304 return sp + 32;
1305}
1306
1307/*
1308 * Insert the specified number of args and function address
1309 * into a call sequence of the above form stored at DUMMYNAME.
1310 *
1311 * On the hppa we need to call the stack dummy through $$dyncall.
1312 * Therefore our version of FIX_CALL_DUMMY takes an extra argument,
1313 * real_pc, which is the location where gdb should start up the
1314 * inferior to do the function call.
1315 */
1316
1317CORE_ADDR
1318hppa_fix_call_dummy (dummy, pc, fun, nargs, args, type, gcc_p)
f4f0d174 1319 char *dummy;
66a1aa07
SG
1320 CORE_ADDR pc;
1321 CORE_ADDR fun;
1322 int nargs;
4fd5eed4 1323 value_ptr *args;
66a1aa07
SG
1324 struct type *type;
1325 int gcc_p;
1326{
1327 CORE_ADDR dyncall_addr, sr4export_addr;
1328 struct minimal_symbol *msymbol;
6cfec929 1329 int flags = read_register (FLAGS_REGNUM);
19cd0c1f 1330 struct unwind_table_entry *u;
66a1aa07
SG
1331
1332 msymbol = lookup_minimal_symbol ("$$dyncall", (struct objfile *) NULL);
1333 if (msymbol == NULL)
1334 error ("Can't find an address for $$dyncall trampoline");
1335
1336 dyncall_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1337
4f915914
JL
1338 /* FUN could be a procedure label, in which case we have to get
1339 its real address and the value of its GOT/DP. */
1340 if (fun & 0x2)
1341 {
1342 /* Get the GOT/DP value for the target function. It's
1343 at *(fun+4). Note the call dummy is *NOT* allowed to
1344 trash %r19 before calling the target function. */
1345 write_register (19, read_memory_integer ((fun & ~0x3) + 4, 4));
1346
1347 /* Now get the real address for the function we are calling, it's
1348 at *fun. */
1349 fun = (CORE_ADDR) read_memory_integer (fun & ~0x3, 4);
1350 }
1351
19cd0c1f
JL
1352 /* If we are calling an import stub (eg calling into a dynamic library)
1353 then have sr4export call the magic __d_plt_call routine which is linked
1354 in from end.o. (You can't use _sr4export to call the import stub as
1355 the value in sp-24 will get fried and you end up returning to the
1356 wrong location. You can't call the import stub directly as the code
1357 to bind the PLT entry to a function can't return to a stack address.) */
1358 u = find_unwind_entry (fun);
1359 if (u && u->stub_type == IMPORT)
1360 {
1361 CORE_ADDR new_fun;
1362 msymbol = lookup_minimal_symbol ("__d_plt_call", (struct objfile *) NULL);
1363 if (msymbol == NULL)
1364 error ("Can't find an address for __d_plt_call trampoline");
1365
1366 /* This is where sr4export will jump to. */
1367 new_fun = SYMBOL_VALUE_ADDRESS (msymbol);
1368
1369 /* We have to store the address of the stub in __shlib_funcptr. */
1370 msymbol = lookup_minimal_symbol ("__shlib_funcptr",
1371 (struct objfile *)NULL);
1372 if (msymbol == NULL)
1373 error ("Can't find an address for __shlib_funcptr");
1374
1375 target_write_memory (SYMBOL_VALUE_ADDRESS (msymbol), (char *)&fun, 4);
1376 fun = new_fun;
1377
1378 }
1379
1380 /* We still need sr4export's address too. */
66a1aa07
SG
1381 msymbol = lookup_minimal_symbol ("_sr4export", (struct objfile *) NULL);
1382 if (msymbol == NULL)
1383 error ("Can't find an address for _sr4export trampoline");
1384
1385 sr4export_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1386
f4f0d174
JK
1387 store_unsigned_integer
1388 (&dummy[9*REGISTER_SIZE],
1389 REGISTER_SIZE,
1390 deposit_21 (fun >> 11,
1391 extract_unsigned_integer (&dummy[9*REGISTER_SIZE],
1392 REGISTER_SIZE)));
1393 store_unsigned_integer
1394 (&dummy[10*REGISTER_SIZE],
1395 REGISTER_SIZE,
1396 deposit_14 (fun & MASK_11,
1397 extract_unsigned_integer (&dummy[10*REGISTER_SIZE],
1398 REGISTER_SIZE)));
1399 store_unsigned_integer
1400 (&dummy[12*REGISTER_SIZE],
1401 REGISTER_SIZE,
1402 deposit_21 (sr4export_addr >> 11,
1403 extract_unsigned_integer (&dummy[12*REGISTER_SIZE],
1404 REGISTER_SIZE)));
1405 store_unsigned_integer
1406 (&dummy[13*REGISTER_SIZE],
1407 REGISTER_SIZE,
1408 deposit_14 (sr4export_addr & MASK_11,
1409 extract_unsigned_integer (&dummy[13*REGISTER_SIZE],
1410 REGISTER_SIZE)));
66a1aa07
SG
1411
1412 write_register (22, pc);
1413
6cfec929
JK
1414 /* If we are in a syscall, then we should call the stack dummy
1415 directly. $$dyncall is not needed as the kernel sets up the
1416 space id registers properly based on the value in %r31. In
1417 fact calling $$dyncall will not work because the value in %r22
1418 will be clobbered on the syscall exit path. */
1419 if (flags & 2)
1420 return pc;
1421 else
1422 return dyncall_addr;
1423
66a1aa07
SG
1424}
1425
d3862cae
JK
1426/* Get the PC from %r31 if currently in a syscall. Also mask out privilege
1427 bits. */
669caa9c 1428
d3862cae 1429CORE_ADDR
e9a3cde8
JL
1430target_read_pc (pid)
1431 int pid;
d3862cae
JK
1432{
1433 int flags = read_register (FLAGS_REGNUM);
1434
1435 if (flags & 2)
1436 return read_register (31) & ~0x3;
1437 return read_register (PC_REGNUM) & ~0x3;
1438}
1439
6cfec929
JK
1440/* Write out the PC. If currently in a syscall, then also write the new
1441 PC value into %r31. */
669caa9c 1442
6cfec929 1443void
e9a3cde8 1444target_write_pc (v, pid)
6cfec929 1445 CORE_ADDR v;
e9a3cde8 1446 int pid;
6cfec929
JK
1447{
1448 int flags = read_register (FLAGS_REGNUM);
1449
1450 /* If in a syscall, then set %r31. Also make sure to get the
1451 privilege bits set correctly. */
1452 if (flags & 2)
1453 write_register (31, (long) (v | 0x3));
1454
1455 write_register (PC_REGNUM, (long) v);
1456 write_register (NPC_REGNUM, (long) v + 4);
1457}
1458
66a1aa07
SG
1459/* return the alignment of a type in bytes. Structures have the maximum
1460 alignment required by their fields. */
1461
1462static int
1463hppa_alignof (arg)
1464 struct type *arg;
1465{
1466 int max_align, align, i;
1467 switch (TYPE_CODE (arg))
1468 {
1469 case TYPE_CODE_PTR:
1470 case TYPE_CODE_INT:
1471 case TYPE_CODE_FLT:
1472 return TYPE_LENGTH (arg);
1473 case TYPE_CODE_ARRAY:
1474 return hppa_alignof (TYPE_FIELD_TYPE (arg, 0));
1475 case TYPE_CODE_STRUCT:
1476 case TYPE_CODE_UNION:
1477 max_align = 2;
1478 for (i = 0; i < TYPE_NFIELDS (arg); i++)
1479 {
1480 /* Bit fields have no real alignment. */
1481 if (!TYPE_FIELD_BITPOS (arg, i))
1482 {
1483 align = hppa_alignof (TYPE_FIELD_TYPE (arg, i));
1484 max_align = max (max_align, align);
1485 }
1486 }
1487 return max_align;
1488 default:
1489 return 4;
1490 }
1491}
1492
1493/* Print the register regnum, or all registers if regnum is -1 */
1494
1495pa_do_registers_info (regnum, fpregs)
1496 int regnum;
1497 int fpregs;
1498{
1499 char raw_regs [REGISTER_BYTES];
1500 int i;
1501
1502 for (i = 0; i < NUM_REGS; i++)
1503 read_relative_register_raw_bytes (i, raw_regs + REGISTER_BYTE (i));
1504 if (regnum == -1)
1505 pa_print_registers (raw_regs, regnum, fpregs);
1506 else if (regnum < FP0_REGNUM)
199b2450 1507 printf_unfiltered ("%s %x\n", reg_names[regnum], *(long *)(raw_regs +
66a1aa07
SG
1508 REGISTER_BYTE (regnum)));
1509 else
1510 pa_print_fp_reg (regnum);
1511}
1512
1513pa_print_registers (raw_regs, regnum, fpregs)
1514 char *raw_regs;
1515 int regnum;
1516 int fpregs;
1517{
1518 int i;
1519
1520 for (i = 0; i < 18; i++)
199b2450 1521 printf_unfiltered ("%8.8s: %8x %8.8s: %8x %8.8s: %8x %8.8s: %8x\n",
66a1aa07
SG
1522 reg_names[i],
1523 *(int *)(raw_regs + REGISTER_BYTE (i)),
1524 reg_names[i + 18],
1525 *(int *)(raw_regs + REGISTER_BYTE (i + 18)),
1526 reg_names[i + 36],
1527 *(int *)(raw_regs + REGISTER_BYTE (i + 36)),
1528 reg_names[i + 54],
1529 *(int *)(raw_regs + REGISTER_BYTE (i + 54)));
1530
1531 if (fpregs)
1532 for (i = 72; i < NUM_REGS; i++)
1533 pa_print_fp_reg (i);
1534}
1535
1536pa_print_fp_reg (i)
1537 int i;
1538{
1539 unsigned char raw_buffer[MAX_REGISTER_RAW_SIZE];
1540 unsigned char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
66a1aa07 1541
eb1167c6 1542 /* Get 32bits of data. */
66a1aa07 1543 read_relative_register_raw_bytes (i, raw_buffer);
ad09cb2b 1544
eb1167c6
JL
1545 /* Put it in the buffer. No conversions are ever necessary. */
1546 memcpy (virtual_buffer, raw_buffer, REGISTER_RAW_SIZE (i));
66a1aa07 1547
199b2450 1548 fputs_filtered (reg_names[i], gdb_stdout);
eb1167c6
JL
1549 print_spaces_filtered (8 - strlen (reg_names[i]), gdb_stdout);
1550 fputs_filtered ("(single precision) ", gdb_stdout);
66a1aa07 1551
199b2450 1552 val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0, gdb_stdout, 0,
66a1aa07
SG
1553 1, 0, Val_pretty_default);
1554 printf_filtered ("\n");
eb1167c6
JL
1555
1556 /* If "i" is even, then this register can also be a double-precision
1557 FP register. Dump it out as such. */
1558 if ((i % 2) == 0)
1559 {
1560 /* Get the data in raw format for the 2nd half. */
1561 read_relative_register_raw_bytes (i + 1, raw_buffer);
1562
1563 /* Copy it into the appropriate part of the virtual buffer. */
1564 memcpy (virtual_buffer + REGISTER_RAW_SIZE (i), raw_buffer,
1565 REGISTER_RAW_SIZE (i));
1566
1567 /* Dump it as a double. */
1568 fputs_filtered (reg_names[i], gdb_stdout);
1569 print_spaces_filtered (8 - strlen (reg_names[i]), gdb_stdout);
1570 fputs_filtered ("(double precision) ", gdb_stdout);
1571
1572 val_print (builtin_type_double, virtual_buffer, 0, gdb_stdout, 0,
1573 1, 0, Val_pretty_default);
1574 printf_filtered ("\n");
1575 }
66a1aa07
SG
1576}
1577
de482138
JL
1578/* Figure out if PC is in a trampoline, and if so find out where
1579 the trampoline will jump to. If not in a trampoline, return zero.
66a1aa07 1580
de482138
JL
1581 Simple code examination probably is not a good idea since the code
1582 sequences in trampolines can also appear in user code.
1583
1584 We use unwinds and information from the minimal symbol table to
1585 determine when we're in a trampoline. This won't work for ELF
1586 (yet) since it doesn't create stub unwind entries. Whether or
1587 not ELF will create stub unwinds or normal unwinds for linker
1588 stubs is still being debated.
1589
1590 This should handle simple calls through dyncall or sr4export,
1591 long calls, argument relocation stubs, and dyncall/sr4export
1592 calling an argument relocation stub. It even handles some stubs
1593 used in dynamic executables. */
66a1aa07
SG
1594
1595CORE_ADDR
1596skip_trampoline_code (pc, name)
1597 CORE_ADDR pc;
1598 char *name;
1599{
de482138
JL
1600 long orig_pc = pc;
1601 long prev_inst, curr_inst, loc;
66a1aa07 1602 static CORE_ADDR dyncall = 0;
de482138 1603 static CORE_ADDR sr4export = 0;
66a1aa07 1604 struct minimal_symbol *msym;
de482138 1605 struct unwind_table_entry *u;
66a1aa07 1606
de482138
JL
1607/* FIXME XXX - dyncall and sr4export must be initialized whenever we get a
1608 new exec file */
66a1aa07
SG
1609
1610 if (!dyncall)
1611 {
1612 msym = lookup_minimal_symbol ("$$dyncall", NULL);
1613 if (msym)
1614 dyncall = SYMBOL_VALUE_ADDRESS (msym);
1615 else
1616 dyncall = -1;
1617 }
1618
de482138
JL
1619 if (!sr4export)
1620 {
1621 msym = lookup_minimal_symbol ("_sr4export", NULL);
1622 if (msym)
1623 sr4export = SYMBOL_VALUE_ADDRESS (msym);
1624 else
1625 sr4export = -1;
1626 }
1627
1628 /* Addresses passed to dyncall may *NOT* be the actual address
669caa9c 1629 of the function. So we may have to do something special. */
66a1aa07 1630 if (pc == dyncall)
de482138
JL
1631 {
1632 pc = (CORE_ADDR) read_register (22);
66a1aa07 1633
de482138
JL
1634 /* If bit 30 (counting from the left) is on, then pc is the address of
1635 the PLT entry for this function, not the address of the function
1636 itself. Bit 31 has meaning too, but only for MPE. */
1637 if (pc & 0x2)
1638 pc = (CORE_ADDR) read_memory_integer (pc & ~0x3, 4);
1639 }
1640 else if (pc == sr4export)
1641 pc = (CORE_ADDR) (read_register (22));
66a1aa07 1642
de482138
JL
1643 /* Get the unwind descriptor corresponding to PC, return zero
1644 if no unwind was found. */
1645 u = find_unwind_entry (pc);
1646 if (!u)
1647 return 0;
1648
1649 /* If this isn't a linker stub, then return now. */
1650 if (u->stub_type == 0)
1651 return orig_pc == pc ? 0 : pc & ~0x3;
1652
1653 /* It's a stub. Search for a branch and figure out where it goes.
1654 Note we have to handle multi insn branch sequences like ldil;ble.
1655 Most (all?) other branches can be determined by examining the contents
1656 of certain registers and the stack. */
1657 loc = pc;
1658 curr_inst = 0;
1659 prev_inst = 0;
1660 while (1)
1661 {
1662 /* Make sure we haven't walked outside the range of this stub. */
1663 if (u != find_unwind_entry (loc))
1664 {
1665 warning ("Unable to find branch in linker stub");
1666 return orig_pc == pc ? 0 : pc & ~0x3;
1667 }
1668
1669 prev_inst = curr_inst;
1670 curr_inst = read_memory_integer (loc, 4);
66a1aa07 1671
de482138
JL
1672 /* Does it look like a branch external using %r1? Then it's the
1673 branch from the stub to the actual function. */
1674 if ((curr_inst & 0xffe0e000) == 0xe0202000)
1675 {
1676 /* Yup. See if the previous instruction loaded
1677 a value into %r1. If so compute and return the jump address. */
4cbc4bf1 1678 if ((prev_inst & 0xffe00000) == 0x20200000)
de482138
JL
1679 return (extract_21 (prev_inst) + extract_17 (curr_inst)) & ~0x3;
1680 else
1681 {
1682 warning ("Unable to find ldil X,%%r1 before ble Y(%%sr4,%%r1).");
1683 return orig_pc == pc ? 0 : pc & ~0x3;
1684 }
1685 }
1686
88b91d4a
JL
1687 /* Does it look like bl X,%rp or bl X,%r0? Another way to do a
1688 branch from the stub to the actual function. */
1689 else if ((curr_inst & 0xffe0e000) == 0xe8400000
1690 || (curr_inst & 0xffe0e000) == 0xe8000000)
de482138
JL
1691 return (loc + extract_17 (curr_inst) + 8) & ~0x3;
1692
1693 /* Does it look like bv (rp)? Note this depends on the
1694 current stack pointer being the same as the stack
1695 pointer in the stub itself! This is a branch on from the
1696 stub back to the original caller. */
1697 else if ((curr_inst & 0xffe0e000) == 0xe840c000)
1698 {
1699 /* Yup. See if the previous instruction loaded
1700 rp from sp - 8. */
1701 if (prev_inst == 0x4bc23ff1)
1702 return (read_memory_integer
1703 (read_register (SP_REGNUM) - 8, 4)) & ~0x3;
1704 else
1705 {
1706 warning ("Unable to find restore of %%rp before bv (%%rp).");
1707 return orig_pc == pc ? 0 : pc & ~0x3;
1708 }
1709 }
1710
1711 /* What about be,n 0(sr0,%rp)? It's just another way we return to
1712 the original caller from the stub. Used in dynamic executables. */
1713 else if (curr_inst == 0xe0400002)
1714 {
1715 /* The value we jump to is sitting in sp - 24. But that's
1716 loaded several instructions before the be instruction.
1717 I guess we could check for the previous instruction being
1718 mtsp %r1,%sr0 if we want to do sanity checking. */
1719 return (read_memory_integer
1720 (read_register (SP_REGNUM) - 24, 4)) & ~0x3;
1721 }
1722
1723 /* Haven't found the branch yet, but we're still in the stub.
1724 Keep looking. */
1725 loc += 4;
1726 }
66a1aa07
SG
1727}
1728
c598654a
JL
1729/* For the given instruction (INST), return any adjustment it makes
1730 to the stack pointer or zero for no adjustment.
1731
1732 This only handles instructions commonly found in prologues. */
1733
1734static int
1735prologue_inst_adjust_sp (inst)
1736 unsigned long inst;
1737{
1738 /* This must persist across calls. */
1739 static int save_high21;
1740
1741 /* The most common way to perform a stack adjustment ldo X(sp),sp */
1742 if ((inst & 0xffffc000) == 0x37de0000)
1743 return extract_14 (inst);
1744
1745 /* stwm X,D(sp) */
1746 if ((inst & 0xffe00000) == 0x6fc00000)
1747 return extract_14 (inst);
1748
1749 /* addil high21,%r1; ldo low11,(%r1),%r30)
1750 save high bits in save_high21 for later use. */
1751 if ((inst & 0xffe00000) == 0x28200000)
1752 {
1753 save_high21 = extract_21 (inst);
1754 return 0;
1755 }
1756
1757 if ((inst & 0xffff0000) == 0x343e0000)
1758 return save_high21 + extract_14 (inst);
1759
1760 /* fstws as used by the HP compilers. */
1761 if ((inst & 0xffffffe0) == 0x2fd01220)
1762 return extract_5_load (inst);
1763
1764 /* No adjustment. */
1765 return 0;
1766}
1767
1768/* Return nonzero if INST is a branch of some kind, else return zero. */
1769
1770static int
1771is_branch (inst)
1772 unsigned long inst;
1773{
1774 switch (inst >> 26)
1775 {
1776 case 0x20:
1777 case 0x21:
1778 case 0x22:
1779 case 0x23:
1780 case 0x28:
1781 case 0x29:
1782 case 0x2a:
1783 case 0x2b:
1784 case 0x30:
1785 case 0x31:
1786 case 0x32:
1787 case 0x33:
1788 case 0x38:
1789 case 0x39:
1790 case 0x3a:
1791 return 1;
1792
1793 default:
1794 return 0;
1795 }
1796}
1797
1798/* Return the register number for a GR which is saved by INST or
edd86fb0 1799 zero it INST does not save a GR. */
c598654a
JL
1800
1801static int
1802inst_saves_gr (inst)
1803 unsigned long inst;
1804{
1805 /* Does it look like a stw? */
1806 if ((inst >> 26) == 0x1a)
1807 return extract_5R_store (inst);
1808
edd86fb0 1809 /* Does it look like a stwm? GCC & HPC may use this in prologues. */
c598654a
JL
1810 if ((inst >> 26) == 0x1b)
1811 return extract_5R_store (inst);
1812
edd86fb0
JL
1813 /* Does it look like sth or stb? HPC versions 9.0 and later use these
1814 too. */
1815 if ((inst >> 26) == 0x19 || (inst >> 26) == 0x18)
1816 return extract_5R_store (inst);
1817
c598654a
JL
1818 return 0;
1819}
1820
1821/* Return the register number for a FR which is saved by INST or
1822 zero it INST does not save a FR.
1823
1824 Note we only care about full 64bit register stores (that's the only
edd86fb0
JL
1825 kind of stores the prologue will use).
1826
1827 FIXME: What about argument stores with the HP compiler in ANSI mode? */
c598654a
JL
1828
1829static int
1830inst_saves_fr (inst)
1831 unsigned long inst;
1832{
edd86fb0 1833 if ((inst & 0xfc00dfc0) == 0x2c001200)
c598654a
JL
1834 return extract_5r_store (inst);
1835 return 0;
1836}
1837
66a1aa07 1838/* Advance PC across any function entry prologue instructions
c598654a 1839 to reach some "real" code.
66a1aa07 1840
c598654a
JL
1841 Use information in the unwind table to determine what exactly should
1842 be in the prologue. */
66a1aa07
SG
1843
1844CORE_ADDR
de482138 1845skip_prologue (pc)
66a1aa07
SG
1846 CORE_ADDR pc;
1847{
34df79fc 1848 char buf[4];
c598654a 1849 unsigned long inst, stack_remaining, save_gr, save_fr, save_rp, save_sp;
edd86fb0 1850 unsigned long args_stored, status, i;
c598654a 1851 struct unwind_table_entry *u;
66a1aa07 1852
c598654a
JL
1853 u = find_unwind_entry (pc);
1854 if (!u)
fdafbfad 1855 return pc;
c598654a 1856
de482138
JL
1857 /* If we are not at the beginning of a function, then return now. */
1858 if ((pc & ~0x3) != u->region_start)
1859 return pc;
1860
c598654a
JL
1861 /* This is how much of a frame adjustment we need to account for. */
1862 stack_remaining = u->Total_frame_size << 3;
66a1aa07 1863
c598654a
JL
1864 /* Magic register saves we want to know about. */
1865 save_rp = u->Save_RP;
1866 save_sp = u->Save_SP;
1867
edd86fb0
JL
1868 /* An indication that args may be stored into the stack. Unfortunately
1869 the HPUX compilers tend to set this in cases where no args were
1870 stored too!. */
1871 args_stored = u->Args_stored;
1872
c598654a
JL
1873 /* Turn the Entry_GR field into a bitmask. */
1874 save_gr = 0;
1875 for (i = 3; i < u->Entry_GR + 3; i++)
66a1aa07 1876 {
c598654a
JL
1877 /* Frame pointer gets saved into a special location. */
1878 if (u->Save_SP && i == FP_REGNUM)
1879 continue;
1880
1881 save_gr |= (1 << i);
1882 }
1883
1884 /* Turn the Entry_FR field into a bitmask too. */
1885 save_fr = 0;
1886 for (i = 12; i < u->Entry_FR + 12; i++)
1887 save_fr |= (1 << i);
1888
1889 /* Loop until we find everything of interest or hit a branch.
1890
1891 For unoptimized GCC code and for any HP CC code this will never ever
1892 examine any user instructions.
1893
1894 For optimzied GCC code we're faced with problems. GCC will schedule
1895 its prologue and make prologue instructions available for delay slot
1896 filling. The end result is user code gets mixed in with the prologue
1897 and a prologue instruction may be in the delay slot of the first branch
1898 or call.
1899
1900 Some unexpected things are expected with debugging optimized code, so
1901 we allow this routine to walk past user instructions in optimized
1902 GCC code. */
edd86fb0
JL
1903 while (save_gr || save_fr || save_rp || save_sp || stack_remaining > 0
1904 || args_stored)
c598654a 1905 {
edd86fb0
JL
1906 unsigned int reg_num;
1907 unsigned long old_stack_remaining, old_save_gr, old_save_fr;
1908 unsigned long old_save_rp, old_save_sp, old_args_stored, next_inst;
1909
1910 /* Save copies of all the triggers so we can compare them later
1911 (only for HPC). */
1912 old_save_gr = save_gr;
1913 old_save_fr = save_fr;
1914 old_save_rp = save_rp;
1915 old_save_sp = save_sp;
1916 old_stack_remaining = stack_remaining;
1917
c598654a
JL
1918 status = target_read_memory (pc, buf, 4);
1919 inst = extract_unsigned_integer (buf, 4);
edd86fb0 1920
c598654a
JL
1921 /* Yow! */
1922 if (status != 0)
1923 return pc;
1924
1925 /* Note the interesting effects of this instruction. */
1926 stack_remaining -= prologue_inst_adjust_sp (inst);
1927
1928 /* There is only one instruction used for saving RP into the stack. */
1929 if (inst == 0x6bc23fd9)
1930 save_rp = 0;
1931
1932 /* This is the only way we save SP into the stack. At this time
1933 the HP compilers never bother to save SP into the stack. */
1934 if ((inst & 0xffffc000) == 0x6fc10000)
1935 save_sp = 0;
1936
1937 /* Account for general and floating-point register saves. */
edd86fb0
JL
1938 reg_num = inst_saves_gr (inst);
1939 save_gr &= ~(1 << reg_num);
1940
1941 /* Ugh. Also account for argument stores into the stack.
1942 Unfortunately args_stored only tells us that some arguments
1943 where stored into the stack. Not how many or what kind!
1944
1945 This is a kludge as on the HP compiler sets this bit and it
1946 never does prologue scheduling. So once we see one, skip past
1947 all of them. We have similar code for the fp arg stores below.
1948
1949 FIXME. Can still die if we have a mix of GR and FR argument
1950 stores! */
1951 if (reg_num >= 23 && reg_num <= 26)
1952 {
1953 while (reg_num >= 23 && reg_num <= 26)
1954 {
1955 pc += 4;
1956 status = target_read_memory (pc, buf, 4);
1957 inst = extract_unsigned_integer (buf, 4);
1958 if (status != 0)
1959 return pc;
1960 reg_num = inst_saves_gr (inst);
1961 }
1962 args_stored = 0;
1963 continue;
1964 }
1965
1966 reg_num = inst_saves_fr (inst);
1967 save_fr &= ~(1 << reg_num);
1968
1969 status = target_read_memory (pc + 4, buf, 4);
1970 next_inst = extract_unsigned_integer (buf, 4);
1971
1972 /* Yow! */
1973 if (status != 0)
1974 return pc;
1975
1976 /* We've got to be read to handle the ldo before the fp register
1977 save. */
1978 if ((inst & 0xfc000000) == 0x34000000
1979 && inst_saves_fr (next_inst) >= 4
1980 && inst_saves_fr (next_inst) <= 7)
1981 {
1982 /* So we drop into the code below in a reasonable state. */
1983 reg_num = inst_saves_fr (next_inst);
1984 pc -= 4;
1985 }
1986
1987 /* Ugh. Also account for argument stores into the stack.
1988 This is a kludge as on the HP compiler sets this bit and it
1989 never does prologue scheduling. So once we see one, skip past
1990 all of them. */
1991 if (reg_num >= 4 && reg_num <= 7)
1992 {
1993 while (reg_num >= 4 && reg_num <= 7)
1994 {
1995 pc += 8;
1996 status = target_read_memory (pc, buf, 4);
1997 inst = extract_unsigned_integer (buf, 4);
1998 if (status != 0)
1999 return pc;
2000 if ((inst & 0xfc000000) != 0x34000000)
2001 break;
2002 status = target_read_memory (pc + 4, buf, 4);
2003 next_inst = extract_unsigned_integer (buf, 4);
2004 if (status != 0)
2005 return pc;
2006 reg_num = inst_saves_fr (next_inst);
2007 }
2008 args_stored = 0;
2009 continue;
2010 }
c598654a
JL
2011
2012 /* Quit if we hit any kind of branch. This can happen if a prologue
2013 instruction is in the delay slot of the first call/branch. */
2014 if (is_branch (inst))
2015 break;
2016
edd86fb0
JL
2017 /* What a crock. The HP compilers set args_stored even if no
2018 arguments were stored into the stack (boo hiss). This could
2019 cause this code to then skip a bunch of user insns (up to the
2020 first branch).
2021
2022 To combat this we try to identify when args_stored was bogusly
2023 set and clear it. We only do this when args_stored is nonzero,
2024 all other resources are accounted for, and nothing changed on
2025 this pass. */
2026 if (args_stored
2027 && ! (save_gr || save_fr || save_rp || save_sp || stack_remaining > 0)
2028 && old_save_gr == save_gr && old_save_fr == save_fr
2029 && old_save_rp == save_rp && old_save_sp == save_sp
2030 && old_stack_remaining == stack_remaining)
2031 break;
2032
c598654a
JL
2033 /* Bump the PC. */
2034 pc += 4;
66a1aa07 2035 }
66a1aa07
SG
2036
2037 return pc;
2038}
2039
c598654a
JL
2040/* Put here the code to store, into a struct frame_saved_regs,
2041 the addresses of the saved registers of frame described by FRAME_INFO.
2042 This includes special registers such as pc and fp saved in special
2043 ways in the stack frame. sp is even more special:
2044 the address we return for it IS the sp for the next frame. */
2045
2046void
2047hppa_frame_find_saved_regs (frame_info, frame_saved_regs)
cb5f7128 2048 struct frame_info *frame_info;
c598654a
JL
2049 struct frame_saved_regs *frame_saved_regs;
2050{
2051 CORE_ADDR pc;
2052 struct unwind_table_entry *u;
2053 unsigned long inst, stack_remaining, save_gr, save_fr, save_rp, save_sp;
2054 int status, i, reg;
2055 char buf[4];
2056 int fp_loc = -1;
2057
2058 /* Zero out everything. */
2059 memset (frame_saved_regs, '\0', sizeof (struct frame_saved_regs));
2060
2061 /* Call dummy frames always look the same, so there's no need to
2062 examine the dummy code to determine locations of saved registers;
2063 instead, let find_dummy_frame_regs fill in the correct offsets
2064 for the saved registers. */
cb5f7128
JL
2065 if ((frame_info->pc >= frame_info->frame
2066 && frame_info->pc <= (frame_info->frame + CALL_DUMMY_LENGTH
2067 + 32 * 4 + (NUM_REGS - FP0_REGNUM) * 8
2068 + 6 * 4)))
2069 find_dummy_frame_regs (frame_info, frame_saved_regs);
c598654a 2070
70e43abe
JL
2071 /* Interrupt handlers are special too. They lay out the register
2072 state in the exact same order as the register numbers in GDB. */
cb5f7128 2073 if (pc_in_interrupt_handler (frame_info->pc))
70e43abe
JL
2074 {
2075 for (i = 0; i < NUM_REGS; i++)
2076 {
2077 /* SP is a little special. */
2078 if (i == SP_REGNUM)
2079 frame_saved_regs->regs[SP_REGNUM]
cb5f7128 2080 = read_memory_integer (frame_info->frame + SP_REGNUM * 4, 4);
70e43abe 2081 else
cb5f7128 2082 frame_saved_regs->regs[i] = frame_info->frame + i * 4;
70e43abe
JL
2083 }
2084 return;
2085 }
2086
2087 /* Handle signal handler callers. */
cb5f7128 2088 if (frame_info->signal_handler_caller)
70e43abe 2089 {
cb5f7128 2090 FRAME_FIND_SAVED_REGS_IN_SIGTRAMP (frame_info, frame_saved_regs);
70e43abe
JL
2091 return;
2092 }
2093
c598654a 2094 /* Get the starting address of the function referred to by the PC
669caa9c 2095 saved in frame. */
cb5f7128 2096 pc = get_pc_function_start (frame_info->pc);
c598654a
JL
2097
2098 /* Yow! */
2099 u = find_unwind_entry (pc);
2100 if (!u)
2101 return;
2102
2103 /* This is how much of a frame adjustment we need to account for. */
2104 stack_remaining = u->Total_frame_size << 3;
2105
2106 /* Magic register saves we want to know about. */
2107 save_rp = u->Save_RP;
2108 save_sp = u->Save_SP;
2109
2110 /* Turn the Entry_GR field into a bitmask. */
2111 save_gr = 0;
2112 for (i = 3; i < u->Entry_GR + 3; i++)
2113 {
2114 /* Frame pointer gets saved into a special location. */
2115 if (u->Save_SP && i == FP_REGNUM)
2116 continue;
2117
2118 save_gr |= (1 << i);
2119 }
2120
2121 /* Turn the Entry_FR field into a bitmask too. */
2122 save_fr = 0;
2123 for (i = 12; i < u->Entry_FR + 12; i++)
2124 save_fr |= (1 << i);
2125
70e43abe
JL
2126 /* The frame always represents the value of %sp at entry to the
2127 current function (and is thus equivalent to the "saved" stack
2128 pointer. */
cb5f7128 2129 frame_saved_regs->regs[SP_REGNUM] = frame_info->frame;
70e43abe 2130
c598654a
JL
2131 /* Loop until we find everything of interest or hit a branch.
2132
2133 For unoptimized GCC code and for any HP CC code this will never ever
2134 examine any user instructions.
2135
2136 For optimzied GCC code we're faced with problems. GCC will schedule
2137 its prologue and make prologue instructions available for delay slot
2138 filling. The end result is user code gets mixed in with the prologue
2139 and a prologue instruction may be in the delay slot of the first branch
2140 or call.
2141
2142 Some unexpected things are expected with debugging optimized code, so
2143 we allow this routine to walk past user instructions in optimized
2144 GCC code. */
2145 while (save_gr || save_fr || save_rp || save_sp || stack_remaining > 0)
2146 {
2147 status = target_read_memory (pc, buf, 4);
2148 inst = extract_unsigned_integer (buf, 4);
2149
2150 /* Yow! */
2151 if (status != 0)
2152 return;
2153
2154 /* Note the interesting effects of this instruction. */
2155 stack_remaining -= prologue_inst_adjust_sp (inst);
2156
2157 /* There is only one instruction used for saving RP into the stack. */
2158 if (inst == 0x6bc23fd9)
2159 {
2160 save_rp = 0;
cb5f7128 2161 frame_saved_regs->regs[RP_REGNUM] = frame_info->frame - 20;
c598654a
JL
2162 }
2163
70e43abe
JL
2164 /* Just note that we found the save of SP into the stack. The
2165 value for frame_saved_regs was computed above. */
c598654a 2166 if ((inst & 0xffffc000) == 0x6fc10000)
70e43abe 2167 save_sp = 0;
c598654a
JL
2168
2169 /* Account for general and floating-point register saves. */
2170 reg = inst_saves_gr (inst);
2171 if (reg >= 3 && reg <= 18
2172 && (!u->Save_SP || reg != FP_REGNUM))
2173 {
2174 save_gr &= ~(1 << reg);
2175
2176 /* stwm with a positive displacement is a *post modify*. */
2177 if ((inst >> 26) == 0x1b
2178 && extract_14 (inst) >= 0)
cb5f7128 2179 frame_saved_regs->regs[reg] = frame_info->frame;
c598654a
JL
2180 else
2181 {
2182 /* Handle code with and without frame pointers. */
2183 if (u->Save_SP)
2184 frame_saved_regs->regs[reg]
cb5f7128 2185 = frame_info->frame + extract_14 (inst);
c598654a
JL
2186 else
2187 frame_saved_regs->regs[reg]
cb5f7128 2188 = frame_info->frame + (u->Total_frame_size << 3)
c598654a
JL
2189 + extract_14 (inst);
2190 }
2191 }
2192
2193
2194 /* GCC handles callee saved FP regs a little differently.
2195
2196 It emits an instruction to put the value of the start of
2197 the FP store area into %r1. It then uses fstds,ma with
2198 a basereg of %r1 for the stores.
2199
2200 HP CC emits them at the current stack pointer modifying
2201 the stack pointer as it stores each register. */
2202
2203 /* ldo X(%r3),%r1 or ldo X(%r30),%r1. */
2204 if ((inst & 0xffffc000) == 0x34610000
2205 || (inst & 0xffffc000) == 0x37c10000)
2206 fp_loc = extract_14 (inst);
2207
2208 reg = inst_saves_fr (inst);
2209 if (reg >= 12 && reg <= 21)
2210 {
2211 /* Note +4 braindamage below is necessary because the FP status
2212 registers are internally 8 registers rather than the expected
2213 4 registers. */
2214 save_fr &= ~(1 << reg);
2215 if (fp_loc == -1)
2216 {
2217 /* 1st HP CC FP register store. After this instruction
2218 we've set enough state that the GCC and HPCC code are
2219 both handled in the same manner. */
cb5f7128 2220 frame_saved_regs->regs[reg + FP4_REGNUM + 4] = frame_info->frame;
c598654a
JL
2221 fp_loc = 8;
2222 }
2223 else
2224 {
2225 frame_saved_regs->regs[reg + FP0_REGNUM + 4]
cb5f7128 2226 = frame_info->frame + fp_loc;
c598654a
JL
2227 fp_loc += 8;
2228 }
2229 }
2230
2231 /* Quit if we hit any kind of branch. This can happen if a prologue
2232 instruction is in the delay slot of the first call/branch. */
2233 if (is_branch (inst))
2234 break;
2235
2236 /* Bump the PC. */
2237 pc += 4;
2238 }
2239}
2240
63757ecd
JK
2241#ifdef MAINTENANCE_CMDS
2242
66a1aa07
SG
2243static void
2244unwind_command (exp, from_tty)
2245 char *exp;
2246 int from_tty;
2247{
2248 CORE_ADDR address;
2249 union
2250 {
2251 int *foo;
2252 struct unwind_table_entry *u;
2253 } xxx;
2254
2255 /* If we have an expression, evaluate it and use it as the address. */
2256
2257 if (exp != 0 && *exp != 0)
2258 address = parse_and_eval_address (exp);
2259 else
2260 return;
2261
2262 xxx.u = find_unwind_entry (address);
2263
2264 if (!xxx.u)
2265 {
199b2450 2266 printf_unfiltered ("Can't find unwind table entry for PC 0x%x\n", address);
66a1aa07
SG
2267 return;
2268 }
2269
199b2450 2270 printf_unfiltered ("%08x\n%08X\n%08X\n%08X\n", xxx.foo[0], xxx.foo[1], xxx.foo[2],
66a1aa07
SG
2271 xxx.foo[3]);
2272}
976bb0be 2273#endif /* MAINTENANCE_CMDS */
63757ecd
JK
2274
2275void
2276_initialize_hppa_tdep ()
2277{
976bb0be 2278#ifdef MAINTENANCE_CMDS
63757ecd
JK
2279 add_cmd ("unwind", class_maintenance, unwind_command,
2280 "Print unwind table entry at given address.",
2281 &maintenanceprintlist);
63757ecd 2282#endif /* MAINTENANCE_CMDS */
976bb0be 2283}
This page took 0.223333 seconds and 4 git commands to generate.