Still some bogus code; checkpoint.
[deliverable/binutils-gdb.git] / gdb / hppa-tdep.c
CommitLineData
669caa9c 1/* Target-dependent code for the HP PA architecture, for GDB.
87273c71 2 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
669caa9c 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
6c9638b4 22Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
66a1aa07
SG
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>
66a1aa07 37#include <signal.h>
66a1aa07
SG
38
39#ifdef COFF_ENCAPSULATE
40#include "a.out.encap.h"
41#else
66a1aa07 42#endif
66a1aa07
SG
43
44/*#include <sys/user.h> After a.out.h */
45#include <sys/file.h>
2b576293 46#include "gdb_stat.h"
66a1aa07
SG
47#include "wait.h"
48
49#include "gdbcore.h"
50#include "gdbcmd.h"
51#include "target.h"
52#include "symfile.h"
53#include "objfiles.h"
54
3f550b59
FF
55static int extract_5_load PARAMS ((unsigned int));
56
57static unsigned extract_5R_store PARAMS ((unsigned int));
58
59static unsigned extract_5r_store PARAMS ((unsigned int));
60
61static void find_dummy_frame_regs PARAMS ((struct frame_info *,
62 struct frame_saved_regs *));
63
64static int find_proc_framesize PARAMS ((CORE_ADDR));
65
66static int find_return_regnum PARAMS ((CORE_ADDR));
67
68struct unwind_table_entry *find_unwind_entry PARAMS ((CORE_ADDR));
69
70static int extract_17 PARAMS ((unsigned int));
71
72static unsigned deposit_21 PARAMS ((unsigned int, unsigned int));
73
74static int extract_21 PARAMS ((unsigned));
75
76static unsigned deposit_14 PARAMS ((int, unsigned int));
77
78static int extract_14 PARAMS ((unsigned));
79
80static void unwind_command PARAMS ((char *, int));
81
82static int low_sign_extend PARAMS ((unsigned int, unsigned int));
83
84static int sign_extend PARAMS ((unsigned int, unsigned int));
85
669caa9c
SS
86static int restore_pc_queue PARAMS ((struct frame_saved_regs *));
87
88static int hppa_alignof PARAMS ((struct type *));
89
c598654a 90static int prologue_inst_adjust_sp PARAMS ((unsigned long));
669caa9c 91
c598654a 92static int is_branch PARAMS ((unsigned long));
669caa9c 93
c598654a 94static int inst_saves_gr PARAMS ((unsigned long));
669caa9c 95
c598654a 96static int inst_saves_fr PARAMS ((unsigned long));
669caa9c 97
70e43abe 98static int pc_in_interrupt_handler PARAMS ((CORE_ADDR));
669caa9c 99
70e43abe 100static int pc_in_linker_stub PARAMS ((CORE_ADDR));
669caa9c 101
5579919f 102static int compare_unwind_entries PARAMS ((const void *, const void *));
669caa9c 103
c5152d42 104static void read_unwind_info PARAMS ((struct objfile *));
669caa9c 105
c5152d42
JL
106static void internalize_unwinds PARAMS ((struct objfile *,
107 struct unwind_table_entry *,
108 asection *, unsigned int,
bfaef242 109 unsigned int, CORE_ADDR));
e43169eb
JL
110static void pa_print_registers PARAMS ((char *, int, int));
111static void pa_print_fp_reg PARAMS ((int));
66a1aa07 112
98760eab
AC
113
114/* Should call_function allocate stack space for a struct return? */
115int
116hppa_use_struct_convention (gcc_p, type)
117 int gcc_p;
118 struct type *type;
119{
120 return (TYPE_LENGTH (type) > 8);
121}
122
66a1aa07
SG
123\f
124/* Routines to extract various sized constants out of hppa
125 instructions. */
126
127/* This assumes that no garbage lies outside of the lower bits of
128 value. */
129
3f550b59 130static int
66a1aa07
SG
131sign_extend (val, bits)
132 unsigned val, bits;
133{
3f550b59 134 return (int)(val >> (bits - 1) ? (-1 << bits) | val : val);
66a1aa07
SG
135}
136
137/* For many immediate values the sign bit is the low bit! */
138
3f550b59 139static int
66a1aa07
SG
140low_sign_extend (val, bits)
141 unsigned val, bits;
142{
143 return (int)((val & 0x1 ? (-1 << (bits - 1)) : 0) | val >> 1);
144}
3f550b59 145
66a1aa07
SG
146/* extract the immediate field from a ld{bhw}s instruction */
147
3f550b59
FF
148#if 0
149
66a1aa07
SG
150unsigned
151get_field (val, from, to)
152 unsigned val, from, to;
153{
154 val = val >> 31 - to;
155 return val & ((1 << 32 - from) - 1);
156}
157
158unsigned
159set_field (val, from, to, new_val)
160 unsigned *val, from, to;
161{
162 unsigned mask = ~((1 << (to - from + 1)) << (31 - from));
163 return *val = *val & mask | (new_val << (31 - from));
164}
165
166/* extract a 3-bit space register number from a be, ble, mtsp or mfsp */
167
3f550b59 168int
66a1aa07
SG
169extract_3 (word)
170 unsigned word;
171{
172 return GET_FIELD (word, 18, 18) << 2 | GET_FIELD (word, 16, 17);
173}
3f550b59
FF
174
175#endif
176
177static int
66a1aa07
SG
178extract_5_load (word)
179 unsigned word;
180{
181 return low_sign_extend (word >> 16 & MASK_5, 5);
182}
183
3f550b59
FF
184#if 0
185
66a1aa07
SG
186/* extract the immediate field from a st{bhw}s instruction */
187
188int
189extract_5_store (word)
190 unsigned word;
191{
192 return low_sign_extend (word & MASK_5, 5);
193}
194
3f550b59
FF
195#endif /* 0 */
196
68c8d698
SG
197/* extract the immediate field from a break instruction */
198
3f550b59 199static unsigned
68c8d698
SG
200extract_5r_store (word)
201 unsigned word;
202{
203 return (word & MASK_5);
204}
205
206/* extract the immediate field from a {sr}sm instruction */
207
3f550b59 208static unsigned
68c8d698
SG
209extract_5R_store (word)
210 unsigned word;
211{
212 return (word >> 16 & MASK_5);
213}
214
66a1aa07
SG
215/* extract an 11 bit immediate field */
216
3f550b59
FF
217#if 0
218
66a1aa07
SG
219int
220extract_11 (word)
221 unsigned word;
222{
223 return low_sign_extend (word & MASK_11, 11);
224}
225
3f550b59
FF
226#endif
227
66a1aa07
SG
228/* extract a 14 bit immediate field */
229
3f550b59 230static int
66a1aa07
SG
231extract_14 (word)
232 unsigned word;
233{
234 return low_sign_extend (word & MASK_14, 14);
235}
236
237/* deposit a 14 bit constant in a word */
238
3f550b59 239static unsigned
66a1aa07
SG
240deposit_14 (opnd, word)
241 int opnd;
242 unsigned word;
243{
244 unsigned sign = (opnd < 0 ? 1 : 0);
245
246 return word | ((unsigned)opnd << 1 & MASK_14) | sign;
247}
248
249/* extract a 21 bit constant */
250
3f550b59 251static int
66a1aa07
SG
252extract_21 (word)
253 unsigned word;
254{
255 int val;
256
257 word &= MASK_21;
258 word <<= 11;
259 val = GET_FIELD (word, 20, 20);
260 val <<= 11;
261 val |= GET_FIELD (word, 9, 19);
262 val <<= 2;
263 val |= GET_FIELD (word, 5, 6);
264 val <<= 5;
265 val |= GET_FIELD (word, 0, 4);
266 val <<= 2;
267 val |= GET_FIELD (word, 7, 8);
268 return sign_extend (val, 21) << 11;
269}
270
271/* deposit a 21 bit constant in a word. Although 21 bit constants are
272 usually the top 21 bits of a 32 bit constant, we assume that only
273 the low 21 bits of opnd are relevant */
274
3f550b59 275static unsigned
66a1aa07
SG
276deposit_21 (opnd, word)
277 unsigned opnd, word;
278{
279 unsigned val = 0;
280
281 val |= GET_FIELD (opnd, 11 + 14, 11 + 18);
282 val <<= 2;
283 val |= GET_FIELD (opnd, 11 + 12, 11 + 13);
284 val <<= 2;
285 val |= GET_FIELD (opnd, 11 + 19, 11 + 20);
286 val <<= 11;
287 val |= GET_FIELD (opnd, 11 + 1, 11 + 11);
288 val <<= 1;
289 val |= GET_FIELD (opnd, 11 + 0, 11 + 0);
290 return word | val;
291}
292
293/* extract a 12 bit constant from branch instructions */
294
3f550b59
FF
295#if 0
296
66a1aa07
SG
297int
298extract_12 (word)
299 unsigned word;
300{
301 return sign_extend (GET_FIELD (word, 19, 28) |
302 GET_FIELD (word, 29, 29) << 10 |
303 (word & 0x1) << 11, 12) << 2;
304}
305
7486c68d
SG
306/* Deposit a 17 bit constant in an instruction (like bl). */
307
308unsigned int
309deposit_17 (opnd, word)
310 unsigned opnd, word;
311{
312 word |= GET_FIELD (opnd, 15 + 0, 15 + 0); /* w */
313 word |= GET_FIELD (opnd, 15 + 1, 15 + 5) << 16; /* w1 */
314 word |= GET_FIELD (opnd, 15 + 6, 15 + 6) << 2; /* w2[10] */
315 word |= GET_FIELD (opnd, 15 + 7, 15 + 16) << 3; /* w2[0..9] */
316
317 return word;
318}
319
3f550b59
FF
320#endif
321
66a1aa07
SG
322/* extract a 17 bit constant from branch instructions, returning the
323 19 bit signed value. */
324
3f550b59 325static int
66a1aa07
SG
326extract_17 (word)
327 unsigned word;
328{
329 return sign_extend (GET_FIELD (word, 19, 28) |
330 GET_FIELD (word, 29, 29) << 10 |
331 GET_FIELD (word, 11, 15) << 11 |
332 (word & 0x1) << 16, 17) << 2;
333}
334\f
c5152d42
JL
335
336/* Compare the start address for two unwind entries returning 1 if
337 the first address is larger than the second, -1 if the second is
338 larger than the first, and zero if they are equal. */
339
340static int
5579919f
FF
341compare_unwind_entries (arg1, arg2)
342 const void *arg1;
343 const void *arg2;
c5152d42 344{
5579919f
FF
345 const struct unwind_table_entry *a = arg1;
346 const struct unwind_table_entry *b = arg2;
347
c5152d42
JL
348 if (a->region_start > b->region_start)
349 return 1;
350 else if (a->region_start < b->region_start)
351 return -1;
352 else
353 return 0;
354}
355
356static void
bfaef242 357internalize_unwinds (objfile, table, section, entries, size, text_offset)
c5152d42
JL
358 struct objfile *objfile;
359 struct unwind_table_entry *table;
360 asection *section;
361 unsigned int entries, size;
bfaef242 362 CORE_ADDR text_offset;
c5152d42
JL
363{
364 /* We will read the unwind entries into temporary memory, then
365 fill in the actual unwind table. */
366 if (size > 0)
367 {
368 unsigned long tmp;
369 unsigned i;
370 char *buf = alloca (size);
371
372 bfd_get_section_contents (objfile->obfd, section, buf, 0, size);
373
374 /* Now internalize the information being careful to handle host/target
375 endian issues. */
376 for (i = 0; i < entries; i++)
377 {
378 table[i].region_start = bfd_get_32 (objfile->obfd,
379 (bfd_byte *)buf);
bfaef242 380 table[i].region_start += text_offset;
c5152d42
JL
381 buf += 4;
382 table[i].region_end = bfd_get_32 (objfile->obfd, (bfd_byte *)buf);
bfaef242 383 table[i].region_end += text_offset;
c5152d42
JL
384 buf += 4;
385 tmp = bfd_get_32 (objfile->obfd, (bfd_byte *)buf);
386 buf += 4;
e43169eb 387 table[i].Cannot_unwind = (tmp >> 31) & 0x1;
c5152d42
JL
388 table[i].Millicode = (tmp >> 30) & 0x1;
389 table[i].Millicode_save_sr0 = (tmp >> 29) & 0x1;
390 table[i].Region_description = (tmp >> 27) & 0x3;
391 table[i].reserved1 = (tmp >> 26) & 0x1;
392 table[i].Entry_SR = (tmp >> 25) & 0x1;
393 table[i].Entry_FR = (tmp >> 21) & 0xf;
394 table[i].Entry_GR = (tmp >> 16) & 0x1f;
395 table[i].Args_stored = (tmp >> 15) & 0x1;
396 table[i].Variable_Frame = (tmp >> 14) & 0x1;
397 table[i].Separate_Package_Body = (tmp >> 13) & 0x1;
398 table[i].Frame_Extension_Millicode = (tmp >> 12 ) & 0x1;
399 table[i].Stack_Overflow_Check = (tmp >> 11) & 0x1;
400 table[i].Two_Instruction_SP_Increment = (tmp >> 10) & 0x1;
401 table[i].Ada_Region = (tmp >> 9) & 0x1;
402 table[i].reserved2 = (tmp >> 5) & 0xf;
403 table[i].Save_SP = (tmp >> 4) & 0x1;
404 table[i].Save_RP = (tmp >> 3) & 0x1;
405 table[i].Save_MRP_in_frame = (tmp >> 2) & 0x1;
406 table[i].extn_ptr_defined = (tmp >> 1) & 0x1;
407 table[i].Cleanup_defined = tmp & 0x1;
408 tmp = bfd_get_32 (objfile->obfd, (bfd_byte *)buf);
409 buf += 4;
410 table[i].MPE_XL_interrupt_marker = (tmp >> 31) & 0x1;
411 table[i].HP_UX_interrupt_marker = (tmp >> 30) & 0x1;
412 table[i].Large_frame = (tmp >> 29) & 0x1;
413 table[i].reserved4 = (tmp >> 27) & 0x3;
414 table[i].Total_frame_size = tmp & 0x7ffffff;
415 }
416 }
417}
418
419/* Read in the backtrace information stored in the `$UNWIND_START$' section of
420 the object file. This info is used mainly by find_unwind_entry() to find
421 out the stack frame size and frame pointer used by procedures. We put
422 everything on the psymbol obstack in the objfile so that it automatically
423 gets freed when the objfile is destroyed. */
424
9c842e0c 425static void
c5152d42
JL
426read_unwind_info (objfile)
427 struct objfile *objfile;
428{
429 asection *unwind_sec, *elf_unwind_sec, *stub_unwind_sec;
430 unsigned unwind_size, elf_unwind_size, stub_unwind_size, total_size;
431 unsigned index, unwind_entries, elf_unwind_entries;
432 unsigned stub_entries, total_entries;
bfaef242 433 CORE_ADDR text_offset;
c5152d42
JL
434 struct obj_unwind_info *ui;
435
bfaef242 436 text_offset = ANOFFSET (objfile->section_offsets, 0);
d8afcce9
SG
437 ui = (struct obj_unwind_info *)obstack_alloc (&objfile->psymbol_obstack,
438 sizeof (struct obj_unwind_info));
c5152d42
JL
439
440 ui->table = NULL;
441 ui->cache = NULL;
442 ui->last = -1;
443
444 /* Get hooks to all unwind sections. Note there is no linker-stub unwind
445 section in ELF at the moment. */
446 unwind_sec = bfd_get_section_by_name (objfile->obfd, "$UNWIND_START$");
0fc27289 447 elf_unwind_sec = bfd_get_section_by_name (objfile->obfd, ".PARISC.unwind");
c5152d42
JL
448 stub_unwind_sec = bfd_get_section_by_name (objfile->obfd, "$UNWIND_END$");
449
450 /* Get sizes and unwind counts for all sections. */
451 if (unwind_sec)
452 {
453 unwind_size = bfd_section_size (objfile->obfd, unwind_sec);
454 unwind_entries = unwind_size / UNWIND_ENTRY_SIZE;
455 }
456 else
457 {
458 unwind_size = 0;
459 unwind_entries = 0;
460 }
461
462 if (elf_unwind_sec)
463 {
464 elf_unwind_size = bfd_section_size (objfile->obfd, elf_unwind_sec);
465 elf_unwind_entries = elf_unwind_size / UNWIND_ENTRY_SIZE;
466 }
f55179cb
JL
467 else
468 {
469 elf_unwind_size = 0;
470 elf_unwind_entries = 0;
471 }
c5152d42
JL
472
473 if (stub_unwind_sec)
474 {
475 stub_unwind_size = bfd_section_size (objfile->obfd, stub_unwind_sec);
476 stub_entries = stub_unwind_size / STUB_UNWIND_ENTRY_SIZE;
477 }
478 else
479 {
480 stub_unwind_size = 0;
481 stub_entries = 0;
482 }
483
484 /* Compute total number of unwind entries and their total size. */
485 total_entries = unwind_entries + elf_unwind_entries + stub_entries;
486 total_size = total_entries * sizeof (struct unwind_table_entry);
487
488 /* Allocate memory for the unwind table. */
489 ui->table = obstack_alloc (&objfile->psymbol_obstack, total_size);
490 ui->last = total_entries - 1;
491
492 /* Internalize the standard unwind entries. */
493 index = 0;
494 internalize_unwinds (objfile, &ui->table[index], unwind_sec,
bfaef242 495 unwind_entries, unwind_size, text_offset);
c5152d42
JL
496 index += unwind_entries;
497 internalize_unwinds (objfile, &ui->table[index], elf_unwind_sec,
bfaef242 498 elf_unwind_entries, elf_unwind_size, text_offset);
c5152d42
JL
499 index += elf_unwind_entries;
500
501 /* Now internalize the stub unwind entries. */
502 if (stub_unwind_size > 0)
503 {
504 unsigned int i;
505 char *buf = alloca (stub_unwind_size);
506
507 /* Read in the stub unwind entries. */
508 bfd_get_section_contents (objfile->obfd, stub_unwind_sec, buf,
509 0, stub_unwind_size);
510
511 /* Now convert them into regular unwind entries. */
512 for (i = 0; i < stub_entries; i++, index++)
513 {
514 /* Clear out the next unwind entry. */
515 memset (&ui->table[index], 0, sizeof (struct unwind_table_entry));
516
517 /* Convert offset & size into region_start and region_end.
518 Stuff away the stub type into "reserved" fields. */
519 ui->table[index].region_start = bfd_get_32 (objfile->obfd,
520 (bfd_byte *) buf);
73a25072 521 ui->table[index].region_start += text_offset;
c5152d42
JL
522 buf += 4;
523 ui->table[index].stub_type = bfd_get_8 (objfile->obfd,
524 (bfd_byte *) buf);
525 buf += 2;
526 ui->table[index].region_end
527 = ui->table[index].region_start + 4 *
528 (bfd_get_16 (objfile->obfd, (bfd_byte *) buf) - 1);
529 buf += 2;
530 }
531
532 }
533
534 /* Unwind table needs to be kept sorted. */
535 qsort (ui->table, total_entries, sizeof (struct unwind_table_entry),
536 compare_unwind_entries);
537
538 /* Keep a pointer to the unwind information. */
539 objfile->obj_private = (PTR) ui;
540}
541
66a1aa07
SG
542/* Lookup the unwind (stack backtrace) info for the given PC. We search all
543 of the objfiles seeking the unwind table entry for this PC. Each objfile
544 contains a sorted list of struct unwind_table_entry. Since we do a binary
545 search of the unwind tables, we depend upon them to be sorted. */
546
87273c71 547struct unwind_table_entry *
66a1aa07
SG
548find_unwind_entry(pc)
549 CORE_ADDR pc;
550{
551 int first, middle, last;
552 struct objfile *objfile;
553
554 ALL_OBJFILES (objfile)
555 {
556 struct obj_unwind_info *ui;
557
558 ui = OBJ_UNWIND_INFO (objfile);
559
560 if (!ui)
c5152d42
JL
561 {
562 read_unwind_info (objfile);
563 ui = OBJ_UNWIND_INFO (objfile);
564 }
66a1aa07
SG
565
566 /* First, check the cache */
567
568 if (ui->cache
569 && pc >= ui->cache->region_start
570 && pc <= ui->cache->region_end)
571 return ui->cache;
572
573 /* Not in the cache, do a binary search */
574
575 first = 0;
576 last = ui->last;
577
578 while (first <= last)
579 {
580 middle = (first + last) / 2;
581 if (pc >= ui->table[middle].region_start
582 && pc <= ui->table[middle].region_end)
583 {
584 ui->cache = &ui->table[middle];
585 return &ui->table[middle];
586 }
587
588 if (pc < ui->table[middle].region_start)
589 last = middle - 1;
590 else
591 first = middle + 1;
592 }
593 } /* ALL_OBJFILES() */
594 return NULL;
595}
596
98c0e047
JL
597/* Return the adjustment necessary to make for addresses on the stack
598 as presented by hpread.c.
599
600 This is necessary because of the stack direction on the PA and the
601 bizarre way in which someone (?) decided they wanted to handle
602 frame pointerless code in GDB. */
603int
604hpread_adjust_stack_address (func_addr)
605 CORE_ADDR func_addr;
606{
607 struct unwind_table_entry *u;
608
609 u = find_unwind_entry (func_addr);
610 if (!u)
611 return 0;
612 else
613 return u->Total_frame_size << 3;
614}
98c0e047 615
70e43abe
JL
616/* Called to determine if PC is in an interrupt handler of some
617 kind. */
618
619static int
620pc_in_interrupt_handler (pc)
621 CORE_ADDR pc;
622{
623 struct unwind_table_entry *u;
624 struct minimal_symbol *msym_us;
625
626 u = find_unwind_entry (pc);
627 if (!u)
628 return 0;
629
630 /* Oh joys. HPUX sets the interrupt bit for _sigreturn even though
631 its frame isn't a pure interrupt frame. Deal with this. */
632 msym_us = lookup_minimal_symbol_by_pc (pc);
633
634 return u->HP_UX_interrupt_marker && !IN_SIGTRAMP (pc, SYMBOL_NAME (msym_us));
635}
636
5ac7f56e
JK
637/* Called when no unwind descriptor was found for PC. Returns 1 if it
638 appears that PC is in a linker stub. */
5ac7f56e
JK
639
640static int
641pc_in_linker_stub (pc)
642 CORE_ADDR pc;
643{
5ac7f56e
JK
644 int found_magic_instruction = 0;
645 int i;
08ecd8f3
JK
646 char buf[4];
647
648 /* If unable to read memory, assume pc is not in a linker stub. */
649 if (target_read_memory (pc, buf, 4) != 0)
650 return 0;
5ac7f56e 651
d08c6f4c
JK
652 /* We are looking for something like
653
654 ; $$dyncall jams RP into this special spot in the frame (RP')
655 ; before calling the "call stub"
656 ldw -18(sp),rp
657
658 ldsid (rp),r1 ; Get space associated with RP into r1
659 mtsp r1,sp ; Move it into space register 0
660 be,n 0(sr0),rp) ; back to your regularly scheduled program
661 */
662
5ac7f56e
JK
663 /* Maximum known linker stub size is 4 instructions. Search forward
664 from the given PC, then backward. */
665 for (i = 0; i < 4; i++)
666 {
6e35b037 667 /* If we hit something with an unwind, stop searching this direction. */
5ac7f56e
JK
668
669 if (find_unwind_entry (pc + i * 4) != 0)
670 break;
671
672 /* Check for ldsid (rp),r1 which is the magic instruction for a
673 return from a cross-space function call. */
674 if (read_memory_integer (pc + i * 4, 4) == 0x004010a1)
675 {
676 found_magic_instruction = 1;
677 break;
678 }
679 /* Add code to handle long call/branch and argument relocation stubs
680 here. */
681 }
682
683 if (found_magic_instruction != 0)
684 return 1;
685
686 /* Now look backward. */
687 for (i = 0; i < 4; i++)
688 {
6e35b037 689 /* If we hit something with an unwind, stop searching this direction. */
5ac7f56e
JK
690
691 if (find_unwind_entry (pc - i * 4) != 0)
692 break;
693
694 /* Check for ldsid (rp),r1 which is the magic instruction for a
695 return from a cross-space function call. */
696 if (read_memory_integer (pc - i * 4, 4) == 0x004010a1)
697 {
698 found_magic_instruction = 1;
699 break;
700 }
701 /* Add code to handle long call/branch and argument relocation stubs
702 here. */
703 }
704 return found_magic_instruction;
705}
706
66a1aa07
SG
707static int
708find_return_regnum(pc)
709 CORE_ADDR pc;
710{
711 struct unwind_table_entry *u;
712
713 u = find_unwind_entry (pc);
714
715 if (!u)
716 return RP_REGNUM;
717
718 if (u->Millicode)
719 return 31;
720
721 return RP_REGNUM;
722}
723
5ac7f56e 724/* Return size of frame, or -1 if we should use a frame pointer. */
3f550b59 725static int
70e43abe 726find_proc_framesize (pc)
66a1aa07
SG
727 CORE_ADDR pc;
728{
729 struct unwind_table_entry *u;
70e43abe 730 struct minimal_symbol *msym_us;
66a1aa07 731
66a1aa07
SG
732 u = find_unwind_entry (pc);
733
734 if (!u)
5ac7f56e
JK
735 {
736 if (pc_in_linker_stub (pc))
737 /* Linker stubs have a zero size frame. */
738 return 0;
739 else
740 return -1;
741 }
66a1aa07 742
70e43abe
JL
743 msym_us = lookup_minimal_symbol_by_pc (pc);
744
745 /* If Save_SP is set, and we're not in an interrupt or signal caller,
746 then we have a frame pointer. Use it. */
747 if (u->Save_SP && !pc_in_interrupt_handler (pc)
748 && !IN_SIGTRAMP (pc, SYMBOL_NAME (msym_us)))
eabbe766
JK
749 return -1;
750
66a1aa07
SG
751 return u->Total_frame_size << 3;
752}
753
5ac7f56e
JK
754/* Return offset from sp at which rp is saved, or 0 if not saved. */
755static int rp_saved PARAMS ((CORE_ADDR));
756
757static int
758rp_saved (pc)
759 CORE_ADDR pc;
66a1aa07
SG
760{
761 struct unwind_table_entry *u;
762
763 u = find_unwind_entry (pc);
764
765 if (!u)
5ac7f56e
JK
766 {
767 if (pc_in_linker_stub (pc))
768 /* This is the so-called RP'. */
769 return -24;
770 else
771 return 0;
772 }
66a1aa07
SG
773
774 if (u->Save_RP)
5ac7f56e 775 return -20;
c7f3b703
JL
776 else if (u->stub_type != 0)
777 {
778 switch (u->stub_type)
779 {
780 case EXPORT:
c2e00af6 781 case IMPORT:
c7f3b703
JL
782 return -24;
783 case PARAMETER_RELOCATION:
784 return -8;
785 default:
786 return 0;
787 }
788 }
66a1aa07
SG
789 else
790 return 0;
791}
792\f
8fa74880
SG
793int
794frameless_function_invocation (frame)
669caa9c 795 struct frame_info *frame;
8fa74880 796{
b8ec9a79 797 struct unwind_table_entry *u;
8fa74880 798
b8ec9a79 799 u = find_unwind_entry (frame->pc);
8fa74880 800
b8ec9a79 801 if (u == 0)
7f43b9b7 802 return 0;
b8ec9a79 803
c7f3b703 804 return (u->Total_frame_size == 0 && u->stub_type == 0);
8fa74880
SG
805}
806
66a1aa07
SG
807CORE_ADDR
808saved_pc_after_call (frame)
669caa9c 809 struct frame_info *frame;
66a1aa07
SG
810{
811 int ret_regnum;
edd86fb0
JL
812 CORE_ADDR pc;
813 struct unwind_table_entry *u;
66a1aa07
SG
814
815 ret_regnum = find_return_regnum (get_frame_pc (frame));
edd86fb0
JL
816 pc = read_register (ret_regnum) & ~0x3;
817
818 /* If PC is in a linker stub, then we need to dig the address
819 the stub will return to out of the stack. */
820 u = find_unwind_entry (pc);
821 if (u && u->stub_type != 0)
5d394f70 822 return FRAME_SAVED_PC (frame);
edd86fb0
JL
823 else
824 return pc;
66a1aa07
SG
825}
826\f
827CORE_ADDR
5d394f70 828hppa_frame_saved_pc (frame)
669caa9c 829 struct frame_info *frame;
66a1aa07
SG
830{
831 CORE_ADDR pc = get_frame_pc (frame);
7f43b9b7 832 struct unwind_table_entry *u;
66a1aa07 833
70e43abe
JL
834 /* BSD, HPUX & OSF1 all lay out the hardware state in the same manner
835 at the base of the frame in an interrupt handler. Registers within
836 are saved in the exact same order as GDB numbers registers. How
837 convienent. */
838 if (pc_in_interrupt_handler (pc))
839 return read_memory_integer (frame->frame + PC_REGNUM * 4, 4) & ~0x3;
840
7486c68d 841#ifdef FRAME_SAVED_PC_IN_SIGTRAMP
70e43abe
JL
842 /* Deal with signal handler caller frames too. */
843 if (frame->signal_handler_caller)
844 {
845 CORE_ADDR rp;
846 FRAME_SAVED_PC_IN_SIGTRAMP (frame, &rp);
54b2555b 847 return rp & ~0x3;
70e43abe 848 }
7486c68d 849#endif
70e43abe 850
8fa74880 851 if (frameless_function_invocation (frame))
66a1aa07
SG
852 {
853 int ret_regnum;
854
855 ret_regnum = find_return_regnum (pc);
856
70e43abe
JL
857 /* If the next frame is an interrupt frame or a signal
858 handler caller, then we need to look in the saved
859 register area to get the return pointer (the values
860 in the registers may not correspond to anything useful). */
861 if (frame->next
862 && (frame->next->signal_handler_caller
863 || pc_in_interrupt_handler (frame->next->pc)))
864 {
70e43abe
JL
865 struct frame_saved_regs saved_regs;
866
54b2555b 867 get_frame_saved_regs (frame->next, &saved_regs);
471fb8d8 868 if (read_memory_integer (saved_regs.regs[FLAGS_REGNUM], 4) & 0x2)
54b2555b
JL
869 {
870 pc = read_memory_integer (saved_regs.regs[31], 4) & ~0x3;
871
872 /* Syscalls are really two frames. The syscall stub itself
873 with a return pointer in %rp and the kernel call with
874 a return pointer in %r31. We return the %rp variant
875 if %r31 is the same as frame->pc. */
876 if (pc == frame->pc)
877 pc = read_memory_integer (saved_regs.regs[RP_REGNUM], 4) & ~0x3;
878 }
70e43abe 879 else
7f43b9b7 880 pc = read_memory_integer (saved_regs.regs[RP_REGNUM], 4) & ~0x3;
70e43abe
JL
881 }
882 else
7f43b9b7 883 pc = read_register (ret_regnum) & ~0x3;
66a1aa07 884 }
66a1aa07 885 else
5ac7f56e 886 {
edd86fb0 887 int rp_offset;
5ac7f56e 888
edd86fb0
JL
889restart:
890 rp_offset = rp_saved (pc);
70e43abe
JL
891 /* Similar to code in frameless function case. If the next
892 frame is a signal or interrupt handler, then dig the right
893 information out of the saved register info. */
894 if (rp_offset == 0
895 && frame->next
896 && (frame->next->signal_handler_caller
897 || pc_in_interrupt_handler (frame->next->pc)))
898 {
70e43abe
JL
899 struct frame_saved_regs saved_regs;
900
669caa9c 901 get_frame_saved_regs (frame->next, &saved_regs);
471fb8d8 902 if (read_memory_integer (saved_regs.regs[FLAGS_REGNUM], 4) & 0x2)
54b2555b
JL
903 {
904 pc = read_memory_integer (saved_regs.regs[31], 4) & ~0x3;
905
906 /* Syscalls are really two frames. The syscall stub itself
907 with a return pointer in %rp and the kernel call with
908 a return pointer in %r31. We return the %rp variant
909 if %r31 is the same as frame->pc. */
910 if (pc == frame->pc)
911 pc = read_memory_integer (saved_regs.regs[RP_REGNUM], 4) & ~0x3;
912 }
70e43abe 913 else
7f43b9b7 914 pc = read_memory_integer (saved_regs.regs[RP_REGNUM], 4) & ~0x3;
70e43abe
JL
915 }
916 else if (rp_offset == 0)
7f43b9b7 917 pc = read_register (RP_REGNUM) & ~0x3;
5ac7f56e 918 else
7f43b9b7 919 pc = read_memory_integer (frame->frame + rp_offset, 4) & ~0x3;
5ac7f56e 920 }
7f43b9b7
JL
921
922 /* If PC is inside a linker stub, then dig out the address the stub
f4eec25c
JL
923 will return to.
924
925 Don't do this for long branch stubs. Why? For some unknown reason
926 _start is marked as a long branch stub in hpux10. */
7f43b9b7 927 u = find_unwind_entry (pc);
f4eec25c
JL
928 if (u && u->stub_type != 0
929 && u->stub_type != LONG_BRANCH)
c38e0b58
JL
930 {
931 unsigned int insn;
932
933 /* If this is a dynamic executable, and we're in a signal handler,
934 then the call chain will eventually point us into the stub for
935 _sigreturn. Unlike most cases, we'll be pointed to the branch
936 to the real sigreturn rather than the code after the real branch!.
937
938 Else, try to dig the address the stub will return to in the normal
939 fashion. */
940 insn = read_memory_integer (pc, 4);
941 if ((insn & 0xfc00e000) == 0xe8000000)
942 return (pc + extract_17 (insn) + 8) & ~0x3;
943 else
944 goto restart;
945 }
7f43b9b7
JL
946
947 return pc;
66a1aa07
SG
948}
949\f
950/* We need to correct the PC and the FP for the outermost frame when we are
951 in a system call. */
952
953void
954init_extra_frame_info (fromleaf, frame)
955 int fromleaf;
956 struct frame_info *frame;
957{
958 int flags;
959 int framesize;
960
192c3eeb 961 if (frame->next && !fromleaf)
66a1aa07
SG
962 return;
963
192c3eeb
JL
964 /* If the next frame represents a frameless function invocation
965 then we have to do some adjustments that are normally done by
966 FRAME_CHAIN. (FRAME_CHAIN is not called in this case.) */
967 if (fromleaf)
968 {
969 /* Find the framesize of *this* frame without peeking at the PC
970 in the current frame structure (it isn't set yet). */
971 framesize = find_proc_framesize (FRAME_SAVED_PC (get_next_frame (frame)));
972
973 /* Now adjust our base frame accordingly. If we have a frame pointer
974 use it, else subtract the size of this frame from the current
975 frame. (we always want frame->frame to point at the lowest address
976 in the frame). */
977 if (framesize == -1)
978 frame->frame = read_register (FP_REGNUM);
979 else
980 frame->frame -= framesize;
981 return;
982 }
983
66a1aa07
SG
984 flags = read_register (FLAGS_REGNUM);
985 if (flags & 2) /* In system call? */
986 frame->pc = read_register (31) & ~0x3;
987
192c3eeb
JL
988 /* The outermost frame is always derived from PC-framesize
989
990 One might think frameless innermost frames should have
991 a frame->frame that is the same as the parent's frame->frame.
992 That is wrong; frame->frame in that case should be the *high*
993 address of the parent's frame. It's complicated as hell to
994 explain, but the parent *always* creates some stack space for
995 the child. So the child actually does have a frame of some
996 sorts, and its base is the high address in its parent's frame. */
66a1aa07
SG
997 framesize = find_proc_framesize(frame->pc);
998 if (framesize == -1)
999 frame->frame = read_register (FP_REGNUM);
1000 else
1001 frame->frame = read_register (SP_REGNUM) - framesize;
66a1aa07
SG
1002}
1003\f
8966221d
JK
1004/* Given a GDB frame, determine the address of the calling function's frame.
1005 This will be used to create a new GDB frame struct, and then
1006 INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.
1007
1008 This may involve searching through prologues for several functions
1009 at boundaries where GCC calls HP C code, or where code which has
1010 a frame pointer calls code without a frame pointer. */
8966221d 1011
669caa9c 1012CORE_ADDR
66a1aa07
SG
1013frame_chain (frame)
1014 struct frame_info *frame;
1015{
8966221d
JK
1016 int my_framesize, caller_framesize;
1017 struct unwind_table_entry *u;
70e43abe 1018 CORE_ADDR frame_base;
b7202faa 1019 struct frame_info *tmp_frame;
70e43abe
JL
1020
1021 /* Handle HPUX, BSD, and OSF1 style interrupt frames first. These
1022 are easy; at *sp we have a full save state strucutre which we can
1023 pull the old stack pointer from. Also see frame_saved_pc for
1024 code to dig a saved PC out of the save state structure. */
1025 if (pc_in_interrupt_handler (frame->pc))
1026 frame_base = read_memory_integer (frame->frame + SP_REGNUM * 4, 4);
7486c68d 1027#ifdef FRAME_BASE_BEFORE_SIGTRAMP
70e43abe
JL
1028 else if (frame->signal_handler_caller)
1029 {
1030 FRAME_BASE_BEFORE_SIGTRAMP (frame, &frame_base);
1031 }
7486c68d 1032#endif
70e43abe
JL
1033 else
1034 frame_base = frame->frame;
66a1aa07 1035
8966221d
JK
1036 /* Get frame sizes for the current frame and the frame of the
1037 caller. */
1038 my_framesize = find_proc_framesize (frame->pc);
1039 caller_framesize = find_proc_framesize (FRAME_SAVED_PC(frame));
66a1aa07 1040
8966221d
JK
1041 /* If caller does not have a frame pointer, then its frame
1042 can be found at current_frame - caller_framesize. */
1043 if (caller_framesize != -1)
70e43abe 1044 return frame_base - caller_framesize;
8966221d
JK
1045
1046 /* Both caller and callee have frame pointers and are GCC compiled
1047 (SAVE_SP bit in unwind descriptor is on for both functions.
1048 The previous frame pointer is found at the top of the current frame. */
1049 if (caller_framesize == -1 && my_framesize == -1)
70e43abe 1050 return read_memory_integer (frame_base, 4);
8966221d
JK
1051
1052 /* Caller has a frame pointer, but callee does not. This is a little
1053 more difficult as GCC and HP C lay out locals and callee register save
1054 areas very differently.
1055
1056 The previous frame pointer could be in a register, or in one of
1057 several areas on the stack.
1058
1059 Walk from the current frame to the innermost frame examining
2f8c3639 1060 unwind descriptors to determine if %r3 ever gets saved into the
8966221d 1061 stack. If so return whatever value got saved into the stack.
2f8c3639 1062 If it was never saved in the stack, then the value in %r3 is still
8966221d
JK
1063 valid, so use it.
1064
2f8c3639 1065 We use information from unwind descriptors to determine if %r3
8966221d
JK
1066 is saved into the stack (Entry_GR field has this information). */
1067
b7202faa
JL
1068 tmp_frame = frame;
1069 while (tmp_frame)
8966221d 1070 {
b7202faa 1071 u = find_unwind_entry (tmp_frame->pc);
8966221d
JK
1072
1073 if (!u)
1074 {
01a03545
JK
1075 /* We could find this information by examining prologues. I don't
1076 think anyone has actually written any tools (not even "strip")
1077 which leave them out of an executable, so maybe this is a moot
1078 point. */
b7202faa 1079 warning ("Unable to find unwind for PC 0x%x -- Help!", tmp_frame->pc);
8966221d
JK
1080 return 0;
1081 }
1082
1083 /* Entry_GR specifies the number of callee-saved general registers
2f8c3639 1084 saved in the stack. It starts at %r3, so %r3 would be 1. */
70e43abe 1085 if (u->Entry_GR >= 1 || u->Save_SP
b7202faa
JL
1086 || tmp_frame->signal_handler_caller
1087 || pc_in_interrupt_handler (tmp_frame->pc))
8966221d
JK
1088 break;
1089 else
b7202faa 1090 tmp_frame = tmp_frame->next;
8966221d
JK
1091 }
1092
b7202faa 1093 if (tmp_frame)
8966221d
JK
1094 {
1095 /* We may have walked down the chain into a function with a frame
1096 pointer. */
70e43abe 1097 if (u->Save_SP
b7202faa
JL
1098 && !tmp_frame->signal_handler_caller
1099 && !pc_in_interrupt_handler (tmp_frame->pc))
1100 return read_memory_integer (tmp_frame->frame, 4);
2f8c3639 1101 /* %r3 was saved somewhere in the stack. Dig it out. */
8966221d 1102 else
c598654a 1103 {
c598654a
JL
1104 struct frame_saved_regs saved_regs;
1105
b7202faa
JL
1106 /* Sick.
1107
1108 For optimization purposes many kernels don't have the
1109 callee saved registers into the save_state structure upon
1110 entry into the kernel for a syscall; the optimization
1111 is usually turned off if the process is being traced so
1112 that the debugger can get full register state for the
1113 process.
1114
1115 This scheme works well except for two cases:
1116
1117 * Attaching to a process when the process is in the
1118 kernel performing a system call (debugger can't get
1119 full register state for the inferior process since
1120 the process wasn't being traced when it entered the
1121 system call).
1122
1123 * Register state is not complete if the system call
1124 causes the process to core dump.
1125
1126
1127 The following heinous code is an attempt to deal with
1128 the lack of register state in a core dump. It will
1129 fail miserably if the function which performs the
1130 system call has a variable sized stack frame. */
1131
1132 get_frame_saved_regs (tmp_frame, &saved_regs);
1133
1134 /* Abominable hack. */
1135 if (current_target.to_has_execution == 0
5812b9a1
JL
1136 && ((saved_regs.regs[FLAGS_REGNUM]
1137 && (read_memory_integer (saved_regs.regs[FLAGS_REGNUM], 4)
1138 & 0x2))
1139 || (saved_regs.regs[FLAGS_REGNUM] == 0
1140 && read_register (FLAGS_REGNUM) & 0x2)))
b7202faa
JL
1141 {
1142 u = find_unwind_entry (FRAME_SAVED_PC (frame));
1143 if (!u)
1144 return read_memory_integer (saved_regs.regs[FP_REGNUM], 4);
1145 else
1146 return frame_base - (u->Total_frame_size << 3);
1147 }
1148
c598654a
JL
1149 return read_memory_integer (saved_regs.regs[FP_REGNUM], 4);
1150 }
8966221d
JK
1151 }
1152 else
1153 {
5812b9a1
JL
1154 struct frame_saved_regs saved_regs;
1155
1156 /* Get the innermost frame. */
1157 tmp_frame = frame;
1158 while (tmp_frame->next != NULL)
1159 tmp_frame = tmp_frame->next;
1160
1161 get_frame_saved_regs (tmp_frame, &saved_regs);
1162 /* Abominable hack. See above. */
1163 if (current_target.to_has_execution == 0
1164 && ((saved_regs.regs[FLAGS_REGNUM]
1165 && (read_memory_integer (saved_regs.regs[FLAGS_REGNUM], 4)
1166 & 0x2))
1167 || (saved_regs.regs[FLAGS_REGNUM] == 0
1168 && read_register (FLAGS_REGNUM) & 0x2)))
1169 {
1170 u = find_unwind_entry (FRAME_SAVED_PC (frame));
1171 if (!u)
1172 return read_memory_integer (saved_regs.regs[FP_REGNUM], 4);
1173 else
1174 return frame_base - (u->Total_frame_size << 3);
1175 }
1176
2f8c3639 1177 /* The value in %r3 was never saved into the stack (thus %r3 still
8966221d 1178 holds the value of the previous frame pointer). */
2f8c3639 1179 return read_register (FP_REGNUM);
8966221d
JK
1180 }
1181}
66a1aa07 1182
66a1aa07
SG
1183\f
1184/* To see if a frame chain is valid, see if the caller looks like it
1185 was compiled with gcc. */
1186
1187int
b6960094 1188hppa_frame_chain_valid (chain, thisframe)
669caa9c
SS
1189 CORE_ADDR chain;
1190 struct frame_info *thisframe;
66a1aa07 1191{
247145e6
JK
1192 struct minimal_symbol *msym_us;
1193 struct minimal_symbol *msym_start;
70e43abe 1194 struct unwind_table_entry *u, *next_u = NULL;
669caa9c 1195 struct frame_info *next;
66a1aa07
SG
1196
1197 if (!chain)
1198 return 0;
1199
b8ec9a79 1200 u = find_unwind_entry (thisframe->pc);
4b01383b 1201
70e43abe
JL
1202 if (u == NULL)
1203 return 1;
1204
247145e6
JK
1205 /* We can't just check that the same of msym_us is "_start", because
1206 someone idiotically decided that they were going to make a Ltext_end
1207 symbol with the same address. This Ltext_end symbol is totally
1208 indistinguishable (as nearly as I can tell) from the symbol for a function
1209 which is (legitimately, since it is in the user's namespace)
1210 named Ltext_end, so we can't just ignore it. */
1211 msym_us = lookup_minimal_symbol_by_pc (FRAME_SAVED_PC (thisframe));
2d336b1b 1212 msym_start = lookup_minimal_symbol ("_start", NULL, NULL);
247145e6
JK
1213 if (msym_us
1214 && msym_start
1215 && SYMBOL_VALUE_ADDRESS (msym_us) == SYMBOL_VALUE_ADDRESS (msym_start))
b8ec9a79 1216 return 0;
5ac7f56e 1217
c85ff3a3
JL
1218 /* Grrrr. Some new idiot decided that they don't want _start for the
1219 PRO configurations; $START$ calls main directly.... Deal with it. */
1220 msym_start = lookup_minimal_symbol ("$START$", NULL, NULL);
1221 if (msym_us
1222 && msym_start
1223 && SYMBOL_VALUE_ADDRESS (msym_us) == SYMBOL_VALUE_ADDRESS (msym_start))
1224 return 0;
1225
70e43abe
JL
1226 next = get_next_frame (thisframe);
1227 if (next)
1228 next_u = find_unwind_entry (next->pc);
5ac7f56e 1229
70e43abe
JL
1230 /* If this frame does not save SP, has no stack, isn't a stub,
1231 and doesn't "call" an interrupt routine or signal handler caller,
1232 then its not valid. */
1233 if (u->Save_SP || u->Total_frame_size || u->stub_type != 0
1234 || (thisframe->next && thisframe->next->signal_handler_caller)
1235 || (next_u && next_u->HP_UX_interrupt_marker))
b8ec9a79 1236 return 1;
5ac7f56e 1237
b8ec9a79
JK
1238 if (pc_in_linker_stub (thisframe->pc))
1239 return 1;
4b01383b 1240
b8ec9a79 1241 return 0;
66a1aa07
SG
1242}
1243
66a1aa07
SG
1244/*
1245 * These functions deal with saving and restoring register state
1246 * around a function call in the inferior. They keep the stack
1247 * double-word aligned; eventually, on an hp700, the stack will have
1248 * to be aligned to a 64-byte boundary.
1249 */
1250
e43169eb
JL
1251void
1252push_dummy_frame (inf_status)
1253 struct inferior_status *inf_status;
66a1aa07 1254{
e43169eb 1255 CORE_ADDR sp, pc, pcspace;
66a1aa07
SG
1256 register int regnum;
1257 int int_buffer;
1258 double freg_buffer;
1259
e43169eb
JL
1260 /* Oh, what a hack. If we're trying to perform an inferior call
1261 while the inferior is asleep, we have to make sure to clear
1262 the "in system call" bit in the flag register (the call will
1263 start after the syscall returns, so we're no longer in the system
1264 call!) This state is kept in "inf_status", change it there.
1265
1266 We also need a number of horrid hacks to deal with lossage in the
1267 PC queue registers (apparently they're not valid when the in syscall
1268 bit is set). */
1269 pc = target_read_pc (inferior_pid);
1270 int_buffer = read_register (FLAGS_REGNUM);
1271 if (int_buffer & 0x2)
1272 {
244f7460 1273 unsigned int sid;
e43169eb
JL
1274 int_buffer &= ~0x2;
1275 memcpy (inf_status->registers, &int_buffer, 4);
1276 memcpy (inf_status->registers + REGISTER_BYTE (PCOQ_HEAD_REGNUM), &pc, 4);
1277 pc += 4;
1278 memcpy (inf_status->registers + REGISTER_BYTE (PCOQ_TAIL_REGNUM), &pc, 4);
1279 pc -= 4;
244f7460
JL
1280 sid = (pc >> 30) & 0x3;
1281 if (sid == 0)
1282 pcspace = read_register (SR4_REGNUM);
1283 else
1284 pcspace = read_register (SR4_REGNUM + 4 + sid);
e43169eb
JL
1285 memcpy (inf_status->registers + REGISTER_BYTE (PCSQ_HEAD_REGNUM),
1286 &pcspace, 4);
1287 memcpy (inf_status->registers + REGISTER_BYTE (PCSQ_TAIL_REGNUM),
1288 &pcspace, 4);
1289 }
1290 else
1291 pcspace = read_register (PCSQ_HEAD_REGNUM);
1292
66a1aa07
SG
1293 /* Space for "arguments"; the RP goes in here. */
1294 sp = read_register (SP_REGNUM) + 48;
1295 int_buffer = read_register (RP_REGNUM) | 0x3;
1296 write_memory (sp - 20, (char *)&int_buffer, 4);
1297
1298 int_buffer = read_register (FP_REGNUM);
1299 write_memory (sp, (char *)&int_buffer, 4);
1300
1301 write_register (FP_REGNUM, sp);
1302
1303 sp += 8;
1304
1305 for (regnum = 1; regnum < 32; regnum++)
1306 if (regnum != RP_REGNUM && regnum != FP_REGNUM)
1307 sp = push_word (sp, read_register (regnum));
1308
1309 sp += 4;
1310
1311 for (regnum = FP0_REGNUM; regnum < NUM_REGS; regnum++)
1312 {
1313 read_register_bytes (REGISTER_BYTE (regnum), (char *)&freg_buffer, 8);
1314 sp = push_bytes (sp, (char *)&freg_buffer, 8);
1315 }
1316 sp = push_word (sp, read_register (IPSW_REGNUM));
1317 sp = push_word (sp, read_register (SAR_REGNUM));
e43169eb
JL
1318 sp = push_word (sp, pc);
1319 sp = push_word (sp, pcspace);
1320 sp = push_word (sp, pc + 4);
1321 sp = push_word (sp, pcspace);
66a1aa07
SG
1322 write_register (SP_REGNUM, sp);
1323}
1324
3f550b59 1325static void
66a1aa07
SG
1326find_dummy_frame_regs (frame, frame_saved_regs)
1327 struct frame_info *frame;
1328 struct frame_saved_regs *frame_saved_regs;
1329{
1330 CORE_ADDR fp = frame->frame;
1331 int i;
1332
3f550b59 1333 frame_saved_regs->regs[RP_REGNUM] = (fp - 20) & ~0x3;
66a1aa07
SG
1334 frame_saved_regs->regs[FP_REGNUM] = fp;
1335 frame_saved_regs->regs[1] = fp + 8;
66a1aa07 1336
b227992a
SG
1337 for (fp += 12, i = 3; i < 32; i++)
1338 {
1339 if (i != FP_REGNUM)
1340 {
1341 frame_saved_regs->regs[i] = fp;
1342 fp += 4;
1343 }
1344 }
66a1aa07
SG
1345
1346 fp += 4;
1347 for (i = FP0_REGNUM; i < NUM_REGS; i++, fp += 8)
1348 frame_saved_regs->regs[i] = fp;
1349
1350 frame_saved_regs->regs[IPSW_REGNUM] = fp;
b227992a
SG
1351 frame_saved_regs->regs[SAR_REGNUM] = fp + 4;
1352 frame_saved_regs->regs[PCOQ_HEAD_REGNUM] = fp + 8;
1353 frame_saved_regs->regs[PCSQ_HEAD_REGNUM] = fp + 12;
1354 frame_saved_regs->regs[PCOQ_TAIL_REGNUM] = fp + 16;
1355 frame_saved_regs->regs[PCSQ_TAIL_REGNUM] = fp + 20;
66a1aa07
SG
1356}
1357
e43169eb 1358void
66a1aa07
SG
1359hppa_pop_frame ()
1360{
669caa9c 1361 register struct frame_info *frame = get_current_frame ();
54576db3 1362 register CORE_ADDR fp, npc, target_pc;
66a1aa07
SG
1363 register int regnum;
1364 struct frame_saved_regs fsr;
66a1aa07
SG
1365 double freg_buffer;
1366
669caa9c
SS
1367 fp = FRAME_FP (frame);
1368 get_frame_saved_regs (frame, &fsr);
66a1aa07 1369
0a64709e 1370#ifndef NO_PC_SPACE_QUEUE_RESTORE
66a1aa07
SG
1371 if (fsr.regs[IPSW_REGNUM]) /* Restoring a call dummy frame */
1372 restore_pc_queue (&fsr);
0a64709e 1373#endif
66a1aa07
SG
1374
1375 for (regnum = 31; regnum > 0; regnum--)
1376 if (fsr.regs[regnum])
1377 write_register (regnum, read_memory_integer (fsr.regs[regnum], 4));
1378
1379 for (regnum = NUM_REGS - 1; regnum >= FP0_REGNUM ; regnum--)
1380 if (fsr.regs[regnum])
1381 {
1382 read_memory (fsr.regs[regnum], (char *)&freg_buffer, 8);
1383 write_register_bytes (REGISTER_BYTE (regnum), (char *)&freg_buffer, 8);
1384 }
1385
1386 if (fsr.regs[IPSW_REGNUM])
1387 write_register (IPSW_REGNUM,
1388 read_memory_integer (fsr.regs[IPSW_REGNUM], 4));
1389
1390 if (fsr.regs[SAR_REGNUM])
1391 write_register (SAR_REGNUM,
1392 read_memory_integer (fsr.regs[SAR_REGNUM], 4));
1393
ed1a07ad 1394 /* If the PC was explicitly saved, then just restore it. */
66a1aa07 1395 if (fsr.regs[PCOQ_TAIL_REGNUM])
54576db3
JL
1396 {
1397 npc = read_memory_integer (fsr.regs[PCOQ_TAIL_REGNUM], 4);
1398 write_register (PCOQ_TAIL_REGNUM, npc);
1399 }
ed1a07ad
JK
1400 /* Else use the value in %rp to set the new PC. */
1401 else
54576db3
JL
1402 {
1403 npc = read_register (RP_REGNUM);
5d394f70 1404 write_pc (npc);
54576db3 1405 }
ed1a07ad 1406
66a1aa07
SG
1407 write_register (FP_REGNUM, read_memory_integer (fp, 4));
1408
1409 if (fsr.regs[IPSW_REGNUM]) /* call dummy */
1410 write_register (SP_REGNUM, fp - 48);
1411 else
1412 write_register (SP_REGNUM, fp);
1413
54576db3
JL
1414 /* The PC we just restored may be inside a return trampoline. If so
1415 we want to restart the inferior and run it through the trampoline.
1416
1417 Do this by setting a momentary breakpoint at the location the
244f7460
JL
1418 trampoline returns to.
1419
1420 Don't skip through the trampoline if we're popping a dummy frame. */
54576db3 1421 target_pc = SKIP_TRAMPOLINE_CODE (npc & ~0x3) & ~0x3;
244f7460 1422 if (target_pc && !fsr.regs[IPSW_REGNUM])
54576db3
JL
1423 {
1424 struct symtab_and_line sal;
1425 struct breakpoint *breakpoint;
1426 struct cleanup *old_chain;
1427
1428 /* Set up our breakpoint. Set it to be silent as the MI code
1429 for "return_command" will print the frame we returned to. */
1430 sal = find_pc_line (target_pc, 0);
1431 sal.pc = target_pc;
1432 breakpoint = set_momentary_breakpoint (sal, NULL, bp_finish);
1433 breakpoint->silent = 1;
1434
1435 /* So we can clean things up. */
c8623080 1436 old_chain = make_cleanup ((make_cleanup_func) delete_breakpoint, breakpoint);
54576db3
JL
1437
1438 /* Start up the inferior. */
251b8ab9 1439 clear_proceed_status ();
54576db3
JL
1440 proceed_to_finish = 1;
1441 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1442
1443 /* Perform our cleanups. */
1444 do_cleanups (old_chain);
1445 }
66a1aa07 1446 flush_cached_frames ();
66a1aa07
SG
1447}
1448
1449/*
1450 * After returning to a dummy on the stack, restore the instruction
1451 * queue space registers. */
1452
1453static int
1454restore_pc_queue (fsr)
1455 struct frame_saved_regs *fsr;
1456{
1457 CORE_ADDR pc = read_pc ();
1458 CORE_ADDR new_pc = read_memory_integer (fsr->regs[PCOQ_HEAD_REGNUM], 4);
67ac9759 1459 struct target_waitstatus w;
66a1aa07
SG
1460 int insn_count;
1461
1462 /* Advance past break instruction in the call dummy. */
1463 write_register (PCOQ_HEAD_REGNUM, pc + 4);
1464 write_register (PCOQ_TAIL_REGNUM, pc + 8);
1465
1466 /*
1467 * HPUX doesn't let us set the space registers or the space
1468 * registers of the PC queue through ptrace. Boo, hiss.
1469 * Conveniently, the call dummy has this sequence of instructions
1470 * after the break:
1471 * mtsp r21, sr0
1472 * ble,n 0(sr0, r22)
1473 *
1474 * So, load up the registers and single step until we are in the
1475 * right place.
1476 */
1477
1478 write_register (21, read_memory_integer (fsr->regs[PCSQ_HEAD_REGNUM], 4));
1479 write_register (22, new_pc);
1480
1481 for (insn_count = 0; insn_count < 3; insn_count++)
1482 {
8c5e0021
JK
1483 /* FIXME: What if the inferior gets a signal right now? Want to
1484 merge this into wait_for_inferior (as a special kind of
1485 watchpoint? By setting a breakpoint at the end? Is there
1486 any other choice? Is there *any* way to do this stuff with
1487 ptrace() or some equivalent?). */
66a1aa07 1488 resume (1, 0);
67ac9759 1489 target_wait (inferior_pid, &w);
66a1aa07 1490
67ac9759 1491 if (w.kind == TARGET_WAITKIND_SIGNALLED)
66a1aa07 1492 {
67ac9759 1493 stop_signal = w.value.sig;
66a1aa07 1494 terminal_ours_for_output ();
67ac9759
JK
1495 printf_unfiltered ("\nProgram terminated with signal %s, %s.\n",
1496 target_signal_to_name (stop_signal),
1497 target_signal_to_string (stop_signal));
199b2450 1498 gdb_flush (gdb_stdout);
66a1aa07
SG
1499 return 0;
1500 }
1501 }
8c5e0021 1502 target_terminal_ours ();
cad1498f 1503 target_fetch_registers (-1);
66a1aa07
SG
1504 return 1;
1505}
1506
1507CORE_ADDR
1508hppa_push_arguments (nargs, args, sp, struct_return, struct_addr)
1509 int nargs;
4fd5eed4 1510 value_ptr *args;
66a1aa07
SG
1511 CORE_ADDR sp;
1512 int struct_return;
1513 CORE_ADDR struct_addr;
1514{
1515 /* array of arguments' offsets */
1edc5cd2 1516 int *offset = (int *)alloca(nargs * sizeof (int));
66a1aa07
SG
1517 int cum = 0;
1518 int i, alignment;
1519
1520 for (i = 0; i < nargs; i++)
1521 {
66a1aa07
SG
1522 cum += TYPE_LENGTH (VALUE_TYPE (args[i]));
1523
1524 /* value must go at proper alignment. Assume alignment is a
1525 power of two.*/
1526 alignment = hppa_alignof (VALUE_TYPE (args[i]));
1527 if (cum % alignment)
1528 cum = (cum + alignment) & -alignment;
1529 offset[i] = -cum;
1530 }
558f4183 1531 sp += max ((cum + 7) & -8, 16);
66a1aa07
SG
1532
1533 for (i = 0; i < nargs; i++)
1534 write_memory (sp + offset[i], VALUE_CONTENTS (args[i]),
1535 TYPE_LENGTH (VALUE_TYPE (args[i])));
1536
1537 if (struct_return)
1538 write_register (28, struct_addr);
1539 return sp + 32;
1540}
1541
1542/*
1543 * Insert the specified number of args and function address
1544 * into a call sequence of the above form stored at DUMMYNAME.
1545 *
1546 * On the hppa we need to call the stack dummy through $$dyncall.
1547 * Therefore our version of FIX_CALL_DUMMY takes an extra argument,
1548 * real_pc, which is the location where gdb should start up the
1549 * inferior to do the function call.
1550 */
1551
1552CORE_ADDR
1553hppa_fix_call_dummy (dummy, pc, fun, nargs, args, type, gcc_p)
f4f0d174 1554 char *dummy;
66a1aa07
SG
1555 CORE_ADDR pc;
1556 CORE_ADDR fun;
1557 int nargs;
4fd5eed4 1558 value_ptr *args;
66a1aa07
SG
1559 struct type *type;
1560 int gcc_p;
1561{
7486c68d 1562 CORE_ADDR dyncall_addr;
66a1aa07 1563 struct minimal_symbol *msymbol;
46f569b4 1564 struct minimal_symbol *trampoline;
6cfec929 1565 int flags = read_register (FLAGS_REGNUM);
19cd0c1f 1566 struct unwind_table_entry *u;
66a1aa07 1567
46f569b4 1568 trampoline = NULL;
2d336b1b 1569 msymbol = lookup_minimal_symbol ("$$dyncall", NULL, NULL);
66a1aa07
SG
1570 if (msymbol == NULL)
1571 error ("Can't find an address for $$dyncall trampoline");
1572
1573 dyncall_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1574
4f915914
JL
1575 /* FUN could be a procedure label, in which case we have to get
1576 its real address and the value of its GOT/DP. */
1577 if (fun & 0x2)
1578 {
1579 /* Get the GOT/DP value for the target function. It's
1580 at *(fun+4). Note the call dummy is *NOT* allowed to
1581 trash %r19 before calling the target function. */
1582 write_register (19, read_memory_integer ((fun & ~0x3) + 4, 4));
1583
1584 /* Now get the real address for the function we are calling, it's
1585 at *fun. */
1586 fun = (CORE_ADDR) read_memory_integer (fun & ~0x3, 4);
1587 }
b1bbe38b
JL
1588 else
1589 {
1590
3200aa59 1591#ifndef GDB_TARGET_IS_PA_ELF
b1bbe38b 1592 /* FUN could be either an export stub, or the real address of a
3200aa59
JL
1593 function in a shared library. We must call an import stub
1594 rather than the export stub or real function for lazy binding
1595 to work correctly. */
1596 if (som_solib_get_got_by_pc (fun))
1597 {
1598 struct objfile *objfile;
1599 struct minimal_symbol *funsymbol, *stub_symbol;
1600 CORE_ADDR newfun = 0;
b1bbe38b 1601
3200aa59
JL
1602 funsymbol = lookup_minimal_symbol_by_pc (fun);
1603 if (!funsymbol)
1604 error ("Unable to find minimal symbol for target fucntion.\n");
b1bbe38b 1605
3200aa59
JL
1606 /* Search all the object files for an import symbol with the
1607 right name. */
1608 ALL_OBJFILES (objfile)
1609 {
1610 stub_symbol = lookup_minimal_symbol (SYMBOL_NAME (funsymbol),
2d336b1b 1611 NULL, objfile);
3200aa59
JL
1612 /* Found a symbol with the right name. */
1613 if (stub_symbol)
1614 {
1615 struct unwind_table_entry *u;
1616 /* It must be a shared library trampoline. */
e5718bee 1617 if (MSYMBOL_TYPE (stub_symbol) != mst_solib_trampoline)
3200aa59
JL
1618 continue;
1619
1620 /* It must also be an import stub. */
1621 u = find_unwind_entry (SYMBOL_VALUE (stub_symbol));
1622 if (!u || u->stub_type != IMPORT)
1623 continue;
1624
1625 /* OK. Looks like the correct import stub. */
1626 newfun = SYMBOL_VALUE (stub_symbol);
1627 fun = newfun;
1628 }
1629 }
1630 if (newfun == 0)
1631 write_register (19, som_solib_get_got_by_pc (fun));
1632 }
bd2b724a 1633#endif
b1bbe38b 1634 }
4f915914 1635
19cd0c1f
JL
1636 /* If we are calling an import stub (eg calling into a dynamic library)
1637 then have sr4export call the magic __d_plt_call routine which is linked
1638 in from end.o. (You can't use _sr4export to call the import stub as
1639 the value in sp-24 will get fried and you end up returning to the
1640 wrong location. You can't call the import stub directly as the code
1641 to bind the PLT entry to a function can't return to a stack address.) */
1642 u = find_unwind_entry (fun);
1643 if (u && u->stub_type == IMPORT)
1644 {
1645 CORE_ADDR new_fun;
3200aa59 1646
46f569b4
JL
1647 /* Prefer __gcc_plt_call over the HP supplied routine because
1648 __gcc_plt_call works for any number of arguments. */
1649 trampoline = lookup_minimal_symbol ("__gcc_plt_call", NULL, NULL);
1650 if (trampoline == NULL)
1651 trampoline = lookup_minimal_symbol ("__d_plt_call", NULL, NULL);
1652
1653 if (trampoline == NULL)
3200aa59 1654 error ("Can't find an address for __d_plt_call or __gcc_plt_call trampoline");
19cd0c1f
JL
1655
1656 /* This is where sr4export will jump to. */
46f569b4 1657 new_fun = SYMBOL_VALUE_ADDRESS (trampoline);
19cd0c1f 1658
46f569b4 1659 if (strcmp (SYMBOL_NAME (trampoline), "__d_plt_call") == 0)
3200aa59
JL
1660 {
1661 /* We have to store the address of the stub in __shlib_funcptr. */
2d336b1b 1662 msymbol = lookup_minimal_symbol ("__shlib_funcptr", NULL,
3200aa59
JL
1663 (struct objfile *)NULL);
1664 if (msymbol == NULL)
1665 error ("Can't find an address for __shlib_funcptr");
19cd0c1f 1666
3200aa59 1667 target_write_memory (SYMBOL_VALUE_ADDRESS (msymbol), (char *)&fun, 4);
46f569b4
JL
1668
1669 /* We want sr4export to call __d_plt_call, so we claim it is
1670 the final target. Clear trampoline. */
1671 fun = new_fun;
1672 trampoline = NULL;
3200aa59 1673 }
19cd0c1f
JL
1674 }
1675
46f569b4
JL
1676 /* Store upper 21 bits of function address into ldil. fun will either be
1677 the final target (most cases) or __d_plt_call when calling into a shared
1678 library and __gcc_plt_call is not available. */
f4f0d174 1679 store_unsigned_integer
7486c68d
SG
1680 (&dummy[FUNC_LDIL_OFFSET],
1681 INSTRUCTION_SIZE,
f4f0d174 1682 deposit_21 (fun >> 11,
7486c68d
SG
1683 extract_unsigned_integer (&dummy[FUNC_LDIL_OFFSET],
1684 INSTRUCTION_SIZE)));
1685
46f569b4 1686 /* Store lower 11 bits of function address into ldo */
f4f0d174 1687 store_unsigned_integer
7486c68d
SG
1688 (&dummy[FUNC_LDO_OFFSET],
1689 INSTRUCTION_SIZE,
f4f0d174 1690 deposit_14 (fun & MASK_11,
7486c68d
SG
1691 extract_unsigned_integer (&dummy[FUNC_LDO_OFFSET],
1692 INSTRUCTION_SIZE)));
1693#ifdef SR4EXPORT_LDIL_OFFSET
1694
1695 {
46f569b4 1696 CORE_ADDR trampoline_addr;
7486c68d 1697
46f569b4 1698 /* We may still need sr4export's address too. */
7486c68d 1699
46f569b4
JL
1700 if (trampoline == NULL)
1701 {
1702 msymbol = lookup_minimal_symbol ("_sr4export", NULL, NULL);
1703 if (msymbol == NULL)
1704 error ("Can't find an address for _sr4export trampoline");
7486c68d 1705
46f569b4
JL
1706 trampoline_addr = SYMBOL_VALUE_ADDRESS (msymbol);
1707 }
1708 else
1709 trampoline_addr = SYMBOL_VALUE_ADDRESS (trampoline);
7486c68d 1710
7486c68d 1711
46f569b4 1712 /* Store upper 21 bits of trampoline's address into ldil */
7486c68d
SG
1713 store_unsigned_integer
1714 (&dummy[SR4EXPORT_LDIL_OFFSET],
1715 INSTRUCTION_SIZE,
46f569b4 1716 deposit_21 (trampoline_addr >> 11,
7486c68d
SG
1717 extract_unsigned_integer (&dummy[SR4EXPORT_LDIL_OFFSET],
1718 INSTRUCTION_SIZE)));
7486c68d 1719
46f569b4 1720 /* Store lower 11 bits of trampoline's address into ldo */
7486c68d
SG
1721 store_unsigned_integer
1722 (&dummy[SR4EXPORT_LDO_OFFSET],
1723 INSTRUCTION_SIZE,
46f569b4 1724 deposit_14 (trampoline_addr & MASK_11,
7486c68d
SG
1725 extract_unsigned_integer (&dummy[SR4EXPORT_LDO_OFFSET],
1726 INSTRUCTION_SIZE)));
1727 }
1728#endif
66a1aa07
SG
1729
1730 write_register (22, pc);
1731
6cfec929
JK
1732 /* If we are in a syscall, then we should call the stack dummy
1733 directly. $$dyncall is not needed as the kernel sets up the
1734 space id registers properly based on the value in %r31. In
1735 fact calling $$dyncall will not work because the value in %r22
244f7460
JL
1736 will be clobbered on the syscall exit path.
1737
1738 Similarly if the current PC is in a shared library. Note however,
1739 this scheme won't work if the shared library isn't mapped into
1740 the same space as the stack. */
6cfec929
JK
1741 if (flags & 2)
1742 return pc;
244f7460
JL
1743#ifndef GDB_TARGET_IS_PA_ELF
1744 else if (som_solib_get_got_by_pc (target_read_pc (inferior_pid)))
1745 return pc;
1746#endif
6cfec929
JK
1747 else
1748 return dyncall_addr;
1749
66a1aa07
SG
1750}
1751
d3862cae
JK
1752/* Get the PC from %r31 if currently in a syscall. Also mask out privilege
1753 bits. */
669caa9c 1754
d3862cae 1755CORE_ADDR
e9a3cde8
JL
1756target_read_pc (pid)
1757 int pid;
d3862cae 1758{
5d394f70 1759 int flags = read_register_pid (FLAGS_REGNUM, pid);
d3862cae 1760
5d394f70
SG
1761 /* The following test does not belong here. It is OS-specific, and belongs
1762 in native code. */
1763 /* Test SS_INSYSCALL */
1764 if (flags & 2)
1765 return read_register_pid (31, pid) & ~0x3;
1766
1767 return read_register_pid (PC_REGNUM, pid) & ~0x3;
d3862cae
JK
1768}
1769
6cfec929
JK
1770/* Write out the PC. If currently in a syscall, then also write the new
1771 PC value into %r31. */
669caa9c 1772
6cfec929 1773void
e9a3cde8 1774target_write_pc (v, pid)
6cfec929 1775 CORE_ADDR v;
e9a3cde8 1776 int pid;
6cfec929 1777{
5d394f70 1778 int flags = read_register_pid (FLAGS_REGNUM, pid);
6cfec929 1779
5d394f70
SG
1780 /* The following test does not belong here. It is OS-specific, and belongs
1781 in native code. */
6cfec929
JK
1782 /* If in a syscall, then set %r31. Also make sure to get the
1783 privilege bits set correctly. */
5d394f70 1784 /* Test SS_INSYSCALL */
6cfec929 1785 if (flags & 2)
5d394f70 1786 write_register_pid (31, v | 0x3, pid);
6cfec929 1787
5d394f70
SG
1788 write_register_pid (PC_REGNUM, v, pid);
1789 write_register_pid (NPC_REGNUM, v + 4, pid);
6cfec929
JK
1790}
1791
66a1aa07
SG
1792/* return the alignment of a type in bytes. Structures have the maximum
1793 alignment required by their fields. */
1794
1795static int
940d5967
PB
1796hppa_alignof (type)
1797 struct type *type;
66a1aa07
SG
1798{
1799 int max_align, align, i;
f9384420 1800 CHECK_TYPEDEF (type);
940d5967 1801 switch (TYPE_CODE (type))
66a1aa07
SG
1802 {
1803 case TYPE_CODE_PTR:
1804 case TYPE_CODE_INT:
1805 case TYPE_CODE_FLT:
940d5967 1806 return TYPE_LENGTH (type);
66a1aa07 1807 case TYPE_CODE_ARRAY:
940d5967 1808 return hppa_alignof (TYPE_FIELD_TYPE (type, 0));
66a1aa07
SG
1809 case TYPE_CODE_STRUCT:
1810 case TYPE_CODE_UNION:
0d43c8e7 1811 max_align = 1;
940d5967 1812 for (i = 0; i < TYPE_NFIELDS (type); i++)
66a1aa07
SG
1813 {
1814 /* Bit fields have no real alignment. */
940d5967 1815 if (!TYPE_FIELD_BITPOS (type, i))
66a1aa07 1816 {
940d5967 1817 align = hppa_alignof (TYPE_FIELD_TYPE (type, i));
66a1aa07
SG
1818 max_align = max (max_align, align);
1819 }
1820 }
1821 return max_align;
1822 default:
1823 return 4;
1824 }
1825}
1826
1827/* Print the register regnum, or all registers if regnum is -1 */
1828
e43169eb 1829void
66a1aa07
SG
1830pa_do_registers_info (regnum, fpregs)
1831 int regnum;
1832 int fpregs;
1833{
1834 char raw_regs [REGISTER_BYTES];
1835 int i;
1836
1837 for (i = 0; i < NUM_REGS; i++)
1838 read_relative_register_raw_bytes (i, raw_regs + REGISTER_BYTE (i));
1839 if (regnum == -1)
1840 pa_print_registers (raw_regs, regnum, fpregs);
1841 else if (regnum < FP0_REGNUM)
199b2450 1842 printf_unfiltered ("%s %x\n", reg_names[regnum], *(long *)(raw_regs +
66a1aa07
SG
1843 REGISTER_BYTE (regnum)));
1844 else
1845 pa_print_fp_reg (regnum);
1846}
1847
e43169eb 1848static void
66a1aa07
SG
1849pa_print_registers (raw_regs, regnum, fpregs)
1850 char *raw_regs;
1851 int regnum;
1852 int fpregs;
1853{
15edf525
RS
1854 int i,j;
1855 long val;
66a1aa07
SG
1856
1857 for (i = 0; i < 18; i++)
15edf525
RS
1858 {
1859 for (j = 0; j < 4; j++)
1860 {
bc28e68d
JK
1861 val =
1862 extract_signed_integer (raw_regs + REGISTER_BYTE (i+(j*18)), 4);
15edf525
RS
1863 printf_unfiltered ("%8.8s: %8x ", reg_names[i+(j*18)], val);
1864 }
1865 printf_unfiltered ("\n");
1866 }
1867
66a1aa07
SG
1868 if (fpregs)
1869 for (i = 72; i < NUM_REGS; i++)
1870 pa_print_fp_reg (i);
1871}
1872
e43169eb 1873static void
66a1aa07
SG
1874pa_print_fp_reg (i)
1875 int i;
1876{
1877 unsigned char raw_buffer[MAX_REGISTER_RAW_SIZE];
1878 unsigned char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
66a1aa07 1879
eb1167c6 1880 /* Get 32bits of data. */
66a1aa07 1881 read_relative_register_raw_bytes (i, raw_buffer);
ad09cb2b 1882
eb1167c6
JL
1883 /* Put it in the buffer. No conversions are ever necessary. */
1884 memcpy (virtual_buffer, raw_buffer, REGISTER_RAW_SIZE (i));
66a1aa07 1885
199b2450 1886 fputs_filtered (reg_names[i], gdb_stdout);
eb1167c6
JL
1887 print_spaces_filtered (8 - strlen (reg_names[i]), gdb_stdout);
1888 fputs_filtered ("(single precision) ", gdb_stdout);
66a1aa07 1889
199b2450 1890 val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0, gdb_stdout, 0,
66a1aa07
SG
1891 1, 0, Val_pretty_default);
1892 printf_filtered ("\n");
eb1167c6
JL
1893
1894 /* If "i" is even, then this register can also be a double-precision
1895 FP register. Dump it out as such. */
1896 if ((i % 2) == 0)
1897 {
1898 /* Get the data in raw format for the 2nd half. */
1899 read_relative_register_raw_bytes (i + 1, raw_buffer);
1900
1901 /* Copy it into the appropriate part of the virtual buffer. */
1902 memcpy (virtual_buffer + REGISTER_RAW_SIZE (i), raw_buffer,
1903 REGISTER_RAW_SIZE (i));
1904
1905 /* Dump it as a double. */
1906 fputs_filtered (reg_names[i], gdb_stdout);
1907 print_spaces_filtered (8 - strlen (reg_names[i]), gdb_stdout);
1908 fputs_filtered ("(double precision) ", gdb_stdout);
1909
1910 val_print (builtin_type_double, virtual_buffer, 0, gdb_stdout, 0,
1911 1, 0, Val_pretty_default);
1912 printf_filtered ("\n");
1913 }
66a1aa07
SG
1914}
1915
a76c2240
JL
1916/* Return one if PC is in the call path of a trampoline, else return zero.
1917
1918 Note we return one for *any* call trampoline (long-call, arg-reloc), not
1919 just shared library trampolines (import, export). */
481faa25 1920
e43169eb 1921int
481faa25
JL
1922in_solib_call_trampoline (pc, name)
1923 CORE_ADDR pc;
1924 char *name;
1925{
1926 struct minimal_symbol *minsym;
1927 struct unwind_table_entry *u;
a76c2240
JL
1928 static CORE_ADDR dyncall = 0;
1929 static CORE_ADDR sr4export = 0;
1930
1931/* FIXME XXX - dyncall and sr4export must be initialized whenever we get a
1932 new exec file */
1933
1934 /* First see if PC is in one of the two C-library trampolines. */
1935 if (!dyncall)
1936 {
2d336b1b 1937 minsym = lookup_minimal_symbol ("$$dyncall", NULL, NULL);
a76c2240
JL
1938 if (minsym)
1939 dyncall = SYMBOL_VALUE_ADDRESS (minsym);
1940 else
1941 dyncall = -1;
1942 }
1943
1944 if (!sr4export)
1945 {
2d336b1b 1946 minsym = lookup_minimal_symbol ("_sr4export", NULL, NULL);
a76c2240
JL
1947 if (minsym)
1948 sr4export = SYMBOL_VALUE_ADDRESS (minsym);
1949 else
1950 sr4export = -1;
1951 }
1952
1953 if (pc == dyncall || pc == sr4export)
1954 return 1;
481faa25
JL
1955
1956 /* Get the unwind descriptor corresponding to PC, return zero
1957 if no unwind was found. */
1958 u = find_unwind_entry (pc);
1959 if (!u)
1960 return 0;
1961
1962 /* If this isn't a linker stub, then return now. */
a76c2240 1963 if (u->stub_type == 0)
481faa25
JL
1964 return 0;
1965
a76c2240
JL
1966 /* By definition a long-branch stub is a call stub. */
1967 if (u->stub_type == LONG_BRANCH)
1968 return 1;
1969
481faa25
JL
1970 /* The call and return path execute the same instructions within
1971 an IMPORT stub! So an IMPORT stub is both a call and return
1972 trampoline. */
1973 if (u->stub_type == IMPORT)
1974 return 1;
1975
a76c2240 1976 /* Parameter relocation stubs always have a call path and may have a
481faa25 1977 return path. */
54576db3
JL
1978 if (u->stub_type == PARAMETER_RELOCATION
1979 || u->stub_type == EXPORT)
a76c2240
JL
1980 {
1981 CORE_ADDR addr;
1982
1983 /* Search forward from the current PC until we hit a branch
1984 or the end of the stub. */
1985 for (addr = pc; addr <= u->region_end; addr += 4)
1986 {
1987 unsigned long insn;
1988
1989 insn = read_memory_integer (addr, 4);
1990
1991 /* Does it look like a bl? If so then it's the call path, if
54576db3 1992 we find a bv or be first, then we're on the return path. */
a76c2240
JL
1993 if ((insn & 0xfc00e000) == 0xe8000000)
1994 return 1;
54576db3
JL
1995 else if ((insn & 0xfc00e001) == 0xe800c000
1996 || (insn & 0xfc000000) == 0xe0000000)
a76c2240
JL
1997 return 0;
1998 }
1999
2000 /* Should never happen. */
2001 warning ("Unable to find branch in parameter relocation stub.\n");
2002 return 0;
2003 }
2004
2005 /* Unknown stub type. For now, just return zero. */
2006 return 0;
481faa25
JL
2007}
2008
a76c2240
JL
2009/* Return one if PC is in the return path of a trampoline, else return zero.
2010
2011 Note we return one for *any* call trampoline (long-call, arg-reloc), not
2012 just shared library trampolines (import, export). */
481faa25 2013
e43169eb 2014int
481faa25
JL
2015in_solib_return_trampoline (pc, name)
2016 CORE_ADDR pc;
2017 char *name;
2018{
481faa25
JL
2019 struct unwind_table_entry *u;
2020
2021 /* Get the unwind descriptor corresponding to PC, return zero
2022 if no unwind was found. */
2023 u = find_unwind_entry (pc);
2024 if (!u)
2025 return 0;
2026
a76c2240
JL
2027 /* If this isn't a linker stub or it's just a long branch stub, then
2028 return zero. */
2029 if (u->stub_type == 0 || u->stub_type == LONG_BRANCH)
481faa25
JL
2030 return 0;
2031
2032 /* The call and return path execute the same instructions within
2033 an IMPORT stub! So an IMPORT stub is both a call and return
2034 trampoline. */
2035 if (u->stub_type == IMPORT)
2036 return 1;
2037
a76c2240 2038 /* Parameter relocation stubs always have a call path and may have a
481faa25 2039 return path. */
54576db3
JL
2040 if (u->stub_type == PARAMETER_RELOCATION
2041 || u->stub_type == EXPORT)
a76c2240
JL
2042 {
2043 CORE_ADDR addr;
2044
2045 /* Search forward from the current PC until we hit a branch
2046 or the end of the stub. */
2047 for (addr = pc; addr <= u->region_end; addr += 4)
2048 {
2049 unsigned long insn;
2050
2051 insn = read_memory_integer (addr, 4);
2052
2053 /* Does it look like a bl? If so then it's the call path, if
54576db3 2054 we find a bv or be first, then we're on the return path. */
a76c2240
JL
2055 if ((insn & 0xfc00e000) == 0xe8000000)
2056 return 0;
54576db3
JL
2057 else if ((insn & 0xfc00e001) == 0xe800c000
2058 || (insn & 0xfc000000) == 0xe0000000)
a76c2240
JL
2059 return 1;
2060 }
2061
2062 /* Should never happen. */
2063 warning ("Unable to find branch in parameter relocation stub.\n");
2064 return 0;
2065 }
2066
2067 /* Unknown stub type. For now, just return zero. */
2068 return 0;
2069
481faa25
JL
2070}
2071
de482138
JL
2072/* Figure out if PC is in a trampoline, and if so find out where
2073 the trampoline will jump to. If not in a trampoline, return zero.
66a1aa07 2074
de482138
JL
2075 Simple code examination probably is not a good idea since the code
2076 sequences in trampolines can also appear in user code.
2077
2078 We use unwinds and information from the minimal symbol table to
2079 determine when we're in a trampoline. This won't work for ELF
2080 (yet) since it doesn't create stub unwind entries. Whether or
2081 not ELF will create stub unwinds or normal unwinds for linker
2082 stubs is still being debated.
2083
2084 This should handle simple calls through dyncall or sr4export,
2085 long calls, argument relocation stubs, and dyncall/sr4export
2086 calling an argument relocation stub. It even handles some stubs
2087 used in dynamic executables. */
66a1aa07
SG
2088
2089CORE_ADDR
2090skip_trampoline_code (pc, name)
2091 CORE_ADDR pc;
2092 char *name;
2093{
de482138
JL
2094 long orig_pc = pc;
2095 long prev_inst, curr_inst, loc;
66a1aa07 2096 static CORE_ADDR dyncall = 0;
de482138 2097 static CORE_ADDR sr4export = 0;
66a1aa07 2098 struct minimal_symbol *msym;
de482138 2099 struct unwind_table_entry *u;
66a1aa07 2100
de482138
JL
2101/* FIXME XXX - dyncall and sr4export must be initialized whenever we get a
2102 new exec file */
66a1aa07
SG
2103
2104 if (!dyncall)
2105 {
2d336b1b 2106 msym = lookup_minimal_symbol ("$$dyncall", NULL, NULL);
66a1aa07
SG
2107 if (msym)
2108 dyncall = SYMBOL_VALUE_ADDRESS (msym);
2109 else
2110 dyncall = -1;
2111 }
2112
de482138
JL
2113 if (!sr4export)
2114 {
2d336b1b 2115 msym = lookup_minimal_symbol ("_sr4export", NULL, NULL);
de482138
JL
2116 if (msym)
2117 sr4export = SYMBOL_VALUE_ADDRESS (msym);
2118 else
2119 sr4export = -1;
2120 }
2121
2122 /* Addresses passed to dyncall may *NOT* be the actual address
669caa9c 2123 of the function. So we may have to do something special. */
66a1aa07 2124 if (pc == dyncall)
de482138
JL
2125 {
2126 pc = (CORE_ADDR) read_register (22);
66a1aa07 2127
de482138
JL
2128 /* If bit 30 (counting from the left) is on, then pc is the address of
2129 the PLT entry for this function, not the address of the function
2130 itself. Bit 31 has meaning too, but only for MPE. */
2131 if (pc & 0x2)
2132 pc = (CORE_ADDR) read_memory_integer (pc & ~0x3, 4);
2133 }
2134 else if (pc == sr4export)
2135 pc = (CORE_ADDR) (read_register (22));
66a1aa07 2136
de482138
JL
2137 /* Get the unwind descriptor corresponding to PC, return zero
2138 if no unwind was found. */
2139 u = find_unwind_entry (pc);
2140 if (!u)
2141 return 0;
2142
2143 /* If this isn't a linker stub, then return now. */
2144 if (u->stub_type == 0)
2145 return orig_pc == pc ? 0 : pc & ~0x3;
2146
2147 /* It's a stub. Search for a branch and figure out where it goes.
2148 Note we have to handle multi insn branch sequences like ldil;ble.
2149 Most (all?) other branches can be determined by examining the contents
2150 of certain registers and the stack. */
2151 loc = pc;
2152 curr_inst = 0;
2153 prev_inst = 0;
2154 while (1)
2155 {
2156 /* Make sure we haven't walked outside the range of this stub. */
2157 if (u != find_unwind_entry (loc))
2158 {
2159 warning ("Unable to find branch in linker stub");
2160 return orig_pc == pc ? 0 : pc & ~0x3;
2161 }
2162
2163 prev_inst = curr_inst;
2164 curr_inst = read_memory_integer (loc, 4);
66a1aa07 2165
de482138
JL
2166 /* Does it look like a branch external using %r1? Then it's the
2167 branch from the stub to the actual function. */
2168 if ((curr_inst & 0xffe0e000) == 0xe0202000)
2169 {
2170 /* Yup. See if the previous instruction loaded
2171 a value into %r1. If so compute and return the jump address. */
4cbc4bf1 2172 if ((prev_inst & 0xffe00000) == 0x20200000)
de482138
JL
2173 return (extract_21 (prev_inst) + extract_17 (curr_inst)) & ~0x3;
2174 else
2175 {
2176 warning ("Unable to find ldil X,%%r1 before ble Y(%%sr4,%%r1).");
2177 return orig_pc == pc ? 0 : pc & ~0x3;
2178 }
2179 }
2180
f32fc5f9
JL
2181 /* Does it look like a be 0(sr0,%r21)? That's the branch from an
2182 import stub to an export stub.
2183
2184 It is impossible to determine the target of the branch via
2185 simple examination of instructions and/or data (consider
2186 that the address in the plabel may be the address of the
2187 bind-on-reference routine in the dynamic loader).
2188
2189 So we have try an alternative approach.
2190
2191 Get the name of the symbol at our current location; it should
2192 be a stub symbol with the same name as the symbol in the
2193 shared library.
2194
2195 Then lookup a minimal symbol with the same name; we should
2196 get the minimal symbol for the target routine in the shared
2197 library as those take precedence of import/export stubs. */
2198 if (curr_inst == 0xe2a00000)
2199 {
2200 struct minimal_symbol *stubsym, *libsym;
2201
2202 stubsym = lookup_minimal_symbol_by_pc (loc);
2203 if (stubsym == NULL)
2204 {
2205 warning ("Unable to find symbol for 0x%x", loc);
2206 return orig_pc == pc ? 0 : pc & ~0x3;
2207 }
2208
2d336b1b 2209 libsym = lookup_minimal_symbol (SYMBOL_NAME (stubsym), NULL, NULL);
f32fc5f9
JL
2210 if (libsym == NULL)
2211 {
2212 warning ("Unable to find library symbol for %s\n",
2213 SYMBOL_NAME (stubsym));
2214 return orig_pc == pc ? 0 : pc & ~0x3;
2215 }
2216
2217 return SYMBOL_VALUE (libsym);
2218 }
2219
88b91d4a
JL
2220 /* Does it look like bl X,%rp or bl X,%r0? Another way to do a
2221 branch from the stub to the actual function. */
2222 else if ((curr_inst & 0xffe0e000) == 0xe8400000
2223 || (curr_inst & 0xffe0e000) == 0xe8000000)
de482138
JL
2224 return (loc + extract_17 (curr_inst) + 8) & ~0x3;
2225
2226 /* Does it look like bv (rp)? Note this depends on the
2227 current stack pointer being the same as the stack
2228 pointer in the stub itself! This is a branch on from the
2229 stub back to the original caller. */
2230 else if ((curr_inst & 0xffe0e000) == 0xe840c000)
2231 {
2232 /* Yup. See if the previous instruction loaded
2233 rp from sp - 8. */
2234 if (prev_inst == 0x4bc23ff1)
2235 return (read_memory_integer
2236 (read_register (SP_REGNUM) - 8, 4)) & ~0x3;
2237 else
2238 {
2239 warning ("Unable to find restore of %%rp before bv (%%rp).");
2240 return orig_pc == pc ? 0 : pc & ~0x3;
2241 }
2242 }
2243
2244 /* What about be,n 0(sr0,%rp)? It's just another way we return to
2245 the original caller from the stub. Used in dynamic executables. */
2246 else if (curr_inst == 0xe0400002)
2247 {
2248 /* The value we jump to is sitting in sp - 24. But that's
2249 loaded several instructions before the be instruction.
2250 I guess we could check for the previous instruction being
2251 mtsp %r1,%sr0 if we want to do sanity checking. */
2252 return (read_memory_integer
2253 (read_register (SP_REGNUM) - 24, 4)) & ~0x3;
2254 }
2255
2256 /* Haven't found the branch yet, but we're still in the stub.
2257 Keep looking. */
2258 loc += 4;
2259 }
66a1aa07
SG
2260}
2261
c598654a
JL
2262/* For the given instruction (INST), return any adjustment it makes
2263 to the stack pointer or zero for no adjustment.
2264
2265 This only handles instructions commonly found in prologues. */
2266
2267static int
2268prologue_inst_adjust_sp (inst)
2269 unsigned long inst;
2270{
2271 /* This must persist across calls. */
2272 static int save_high21;
2273
2274 /* The most common way to perform a stack adjustment ldo X(sp),sp */
2275 if ((inst & 0xffffc000) == 0x37de0000)
2276 return extract_14 (inst);
2277
2278 /* stwm X,D(sp) */
2279 if ((inst & 0xffe00000) == 0x6fc00000)
2280 return extract_14 (inst);
2281
2282 /* addil high21,%r1; ldo low11,(%r1),%r30)
2283 save high bits in save_high21 for later use. */
2284 if ((inst & 0xffe00000) == 0x28200000)
2285 {
2286 save_high21 = extract_21 (inst);
2287 return 0;
2288 }
2289
2290 if ((inst & 0xffff0000) == 0x343e0000)
2291 return save_high21 + extract_14 (inst);
2292
2293 /* fstws as used by the HP compilers. */
2294 if ((inst & 0xffffffe0) == 0x2fd01220)
2295 return extract_5_load (inst);
2296
2297 /* No adjustment. */
2298 return 0;
2299}
2300
2301/* Return nonzero if INST is a branch of some kind, else return zero. */
2302
2303static int
2304is_branch (inst)
2305 unsigned long inst;
2306{
2307 switch (inst >> 26)
2308 {
2309 case 0x20:
2310 case 0x21:
2311 case 0x22:
2312 case 0x23:
2313 case 0x28:
2314 case 0x29:
2315 case 0x2a:
2316 case 0x2b:
2317 case 0x30:
2318 case 0x31:
2319 case 0x32:
2320 case 0x33:
2321 case 0x38:
2322 case 0x39:
2323 case 0x3a:
2324 return 1;
2325
2326 default:
2327 return 0;
2328 }
2329}
2330
2331/* Return the register number for a GR which is saved by INST or
edd86fb0 2332 zero it INST does not save a GR. */
c598654a
JL
2333
2334static int
2335inst_saves_gr (inst)
2336 unsigned long inst;
2337{
2338 /* Does it look like a stw? */
2339 if ((inst >> 26) == 0x1a)
2340 return extract_5R_store (inst);
2341
edd86fb0 2342 /* Does it look like a stwm? GCC & HPC may use this in prologues. */
c598654a
JL
2343 if ((inst >> 26) == 0x1b)
2344 return extract_5R_store (inst);
2345
edd86fb0
JL
2346 /* Does it look like sth or stb? HPC versions 9.0 and later use these
2347 too. */
2348 if ((inst >> 26) == 0x19 || (inst >> 26) == 0x18)
2349 return extract_5R_store (inst);
2350
c598654a
JL
2351 return 0;
2352}
2353
2354/* Return the register number for a FR which is saved by INST or
2355 zero it INST does not save a FR.
2356
2357 Note we only care about full 64bit register stores (that's the only
edd86fb0
JL
2358 kind of stores the prologue will use).
2359
2360 FIXME: What about argument stores with the HP compiler in ANSI mode? */
c598654a
JL
2361
2362static int
2363inst_saves_fr (inst)
2364 unsigned long inst;
2365{
edd86fb0 2366 if ((inst & 0xfc00dfc0) == 0x2c001200)
c598654a
JL
2367 return extract_5r_store (inst);
2368 return 0;
2369}
2370
66a1aa07 2371/* Advance PC across any function entry prologue instructions
c598654a 2372 to reach some "real" code.
66a1aa07 2373
c598654a
JL
2374 Use information in the unwind table to determine what exactly should
2375 be in the prologue. */
66a1aa07
SG
2376
2377CORE_ADDR
de482138 2378skip_prologue (pc)
66a1aa07
SG
2379 CORE_ADDR pc;
2380{
34df79fc 2381 char buf[4];
7e72b115 2382 CORE_ADDR orig_pc = pc;
c598654a 2383 unsigned long inst, stack_remaining, save_gr, save_fr, save_rp, save_sp;
7e72b115 2384 unsigned long args_stored, status, i, restart_gr, restart_fr;
c598654a 2385 struct unwind_table_entry *u;
66a1aa07 2386
7e72b115
JL
2387 restart_gr = 0;
2388 restart_fr = 0;
2389
2390restart:
c598654a
JL
2391 u = find_unwind_entry (pc);
2392 if (!u)
fdafbfad 2393 return pc;
c598654a 2394
de482138
JL
2395 /* If we are not at the beginning of a function, then return now. */
2396 if ((pc & ~0x3) != u->region_start)
2397 return pc;
2398
c598654a
JL
2399 /* This is how much of a frame adjustment we need to account for. */
2400 stack_remaining = u->Total_frame_size << 3;
66a1aa07 2401
c598654a
JL
2402 /* Magic register saves we want to know about. */
2403 save_rp = u->Save_RP;
2404 save_sp = u->Save_SP;
2405
edd86fb0
JL
2406 /* An indication that args may be stored into the stack. Unfortunately
2407 the HPUX compilers tend to set this in cases where no args were
2408 stored too!. */
c85ff3a3 2409 args_stored = 1;
edd86fb0 2410
c598654a
JL
2411 /* Turn the Entry_GR field into a bitmask. */
2412 save_gr = 0;
2413 for (i = 3; i < u->Entry_GR + 3; i++)
66a1aa07 2414 {
c598654a
JL
2415 /* Frame pointer gets saved into a special location. */
2416 if (u->Save_SP && i == FP_REGNUM)
2417 continue;
2418
2419 save_gr |= (1 << i);
2420 }
7e72b115 2421 save_gr &= ~restart_gr;
c598654a
JL
2422
2423 /* Turn the Entry_FR field into a bitmask too. */
2424 save_fr = 0;
2425 for (i = 12; i < u->Entry_FR + 12; i++)
2426 save_fr |= (1 << i);
7e72b115 2427 save_fr &= ~restart_fr;
c598654a
JL
2428
2429 /* Loop until we find everything of interest or hit a branch.
2430
2431 For unoptimized GCC code and for any HP CC code this will never ever
2432 examine any user instructions.
2433
2434 For optimzied GCC code we're faced with problems. GCC will schedule
2435 its prologue and make prologue instructions available for delay slot
2436 filling. The end result is user code gets mixed in with the prologue
2437 and a prologue instruction may be in the delay slot of the first branch
2438 or call.
2439
2440 Some unexpected things are expected with debugging optimized code, so
2441 we allow this routine to walk past user instructions in optimized
2442 GCC code. */
edd86fb0
JL
2443 while (save_gr || save_fr || save_rp || save_sp || stack_remaining > 0
2444 || args_stored)
c598654a 2445 {
edd86fb0
JL
2446 unsigned int reg_num;
2447 unsigned long old_stack_remaining, old_save_gr, old_save_fr;
e43169eb 2448 unsigned long old_save_rp, old_save_sp, next_inst;
edd86fb0
JL
2449
2450 /* Save copies of all the triggers so we can compare them later
2451 (only for HPC). */
2452 old_save_gr = save_gr;
2453 old_save_fr = save_fr;
2454 old_save_rp = save_rp;
2455 old_save_sp = save_sp;
2456 old_stack_remaining = stack_remaining;
2457
c598654a
JL
2458 status = target_read_memory (pc, buf, 4);
2459 inst = extract_unsigned_integer (buf, 4);
edd86fb0 2460
c598654a
JL
2461 /* Yow! */
2462 if (status != 0)
2463 return pc;
2464
2465 /* Note the interesting effects of this instruction. */
2466 stack_remaining -= prologue_inst_adjust_sp (inst);
2467
2468 /* There is only one instruction used for saving RP into the stack. */
2469 if (inst == 0x6bc23fd9)
2470 save_rp = 0;
2471
2472 /* This is the only way we save SP into the stack. At this time
2473 the HP compilers never bother to save SP into the stack. */
2474 if ((inst & 0xffffc000) == 0x6fc10000)
2475 save_sp = 0;
2476
2477 /* Account for general and floating-point register saves. */
edd86fb0
JL
2478 reg_num = inst_saves_gr (inst);
2479 save_gr &= ~(1 << reg_num);
2480
2481 /* Ugh. Also account for argument stores into the stack.
2482 Unfortunately args_stored only tells us that some arguments
2483 where stored into the stack. Not how many or what kind!
2484
2485 This is a kludge as on the HP compiler sets this bit and it
2486 never does prologue scheduling. So once we see one, skip past
2487 all of them. We have similar code for the fp arg stores below.
2488
2489 FIXME. Can still die if we have a mix of GR and FR argument
2490 stores! */
2491 if (reg_num >= 23 && reg_num <= 26)
2492 {
2493 while (reg_num >= 23 && reg_num <= 26)
2494 {
2495 pc += 4;
2496 status = target_read_memory (pc, buf, 4);
2497 inst = extract_unsigned_integer (buf, 4);
2498 if (status != 0)
2499 return pc;
2500 reg_num = inst_saves_gr (inst);
2501 }
2502 args_stored = 0;
2503 continue;
2504 }
2505
2506 reg_num = inst_saves_fr (inst);
2507 save_fr &= ~(1 << reg_num);
2508
2509 status = target_read_memory (pc + 4, buf, 4);
2510 next_inst = extract_unsigned_integer (buf, 4);
2511
2512 /* Yow! */
2513 if (status != 0)
2514 return pc;
2515
2516 /* We've got to be read to handle the ldo before the fp register
2517 save. */
2518 if ((inst & 0xfc000000) == 0x34000000
2519 && inst_saves_fr (next_inst) >= 4
2520 && inst_saves_fr (next_inst) <= 7)
2521 {
2522 /* So we drop into the code below in a reasonable state. */
2523 reg_num = inst_saves_fr (next_inst);
2524 pc -= 4;
2525 }
2526
2527 /* Ugh. Also account for argument stores into the stack.
2528 This is a kludge as on the HP compiler sets this bit and it
2529 never does prologue scheduling. So once we see one, skip past
2530 all of them. */
2531 if (reg_num >= 4 && reg_num <= 7)
2532 {
2533 while (reg_num >= 4 && reg_num <= 7)
2534 {
2535 pc += 8;
2536 status = target_read_memory (pc, buf, 4);
2537 inst = extract_unsigned_integer (buf, 4);
2538 if (status != 0)
2539 return pc;
2540 if ((inst & 0xfc000000) != 0x34000000)
2541 break;
2542 status = target_read_memory (pc + 4, buf, 4);
2543 next_inst = extract_unsigned_integer (buf, 4);
2544 if (status != 0)
2545 return pc;
2546 reg_num = inst_saves_fr (next_inst);
2547 }
2548 args_stored = 0;
2549 continue;
2550 }
c598654a
JL
2551
2552 /* Quit if we hit any kind of branch. This can happen if a prologue
2553 instruction is in the delay slot of the first call/branch. */
2554 if (is_branch (inst))
2555 break;
2556
edd86fb0
JL
2557 /* What a crock. The HP compilers set args_stored even if no
2558 arguments were stored into the stack (boo hiss). This could
2559 cause this code to then skip a bunch of user insns (up to the
2560 first branch).
2561
2562 To combat this we try to identify when args_stored was bogusly
2563 set and clear it. We only do this when args_stored is nonzero,
2564 all other resources are accounted for, and nothing changed on
2565 this pass. */
2566 if (args_stored
2567 && ! (save_gr || save_fr || save_rp || save_sp || stack_remaining > 0)
2568 && old_save_gr == save_gr && old_save_fr == save_fr
2569 && old_save_rp == save_rp && old_save_sp == save_sp
2570 && old_stack_remaining == stack_remaining)
2571 break;
2572
c598654a
JL
2573 /* Bump the PC. */
2574 pc += 4;
66a1aa07 2575 }
66a1aa07 2576
7e72b115
JL
2577 /* We've got a tenative location for the end of the prologue. However
2578 because of limitations in the unwind descriptor mechanism we may
2579 have went too far into user code looking for the save of a register
2580 that does not exist. So, if there registers we expected to be saved
2581 but never were, mask them out and restart.
2582
2583 This should only happen in optimized code, and should be very rare. */
3f550b59 2584 if (save_gr || (save_fr && ! (restart_fr || restart_gr)))
7e72b115
JL
2585 {
2586 pc = orig_pc;
2587 restart_gr = save_gr;
2588 restart_fr = save_fr;
2589 goto restart;
2590 }
2591
66a1aa07
SG
2592 return pc;
2593}
2594
c598654a
JL
2595/* Put here the code to store, into a struct frame_saved_regs,
2596 the addresses of the saved registers of frame described by FRAME_INFO.
2597 This includes special registers such as pc and fp saved in special
2598 ways in the stack frame. sp is even more special:
2599 the address we return for it IS the sp for the next frame. */
2600
2601void
2602hppa_frame_find_saved_regs (frame_info, frame_saved_regs)
cb5f7128 2603 struct frame_info *frame_info;
c598654a
JL
2604 struct frame_saved_regs *frame_saved_regs;
2605{
2606 CORE_ADDR pc;
2607 struct unwind_table_entry *u;
2608 unsigned long inst, stack_remaining, save_gr, save_fr, save_rp, save_sp;
2609 int status, i, reg;
2610 char buf[4];
2611 int fp_loc = -1;
2612
2613 /* Zero out everything. */
2614 memset (frame_saved_regs, '\0', sizeof (struct frame_saved_regs));
2615
2616 /* Call dummy frames always look the same, so there's no need to
2617 examine the dummy code to determine locations of saved registers;
2618 instead, let find_dummy_frame_regs fill in the correct offsets
2619 for the saved registers. */
cb5f7128
JL
2620 if ((frame_info->pc >= frame_info->frame
2621 && frame_info->pc <= (frame_info->frame + CALL_DUMMY_LENGTH
2622 + 32 * 4 + (NUM_REGS - FP0_REGNUM) * 8
2623 + 6 * 4)))
2624 find_dummy_frame_regs (frame_info, frame_saved_regs);
c598654a 2625
70e43abe
JL
2626 /* Interrupt handlers are special too. They lay out the register
2627 state in the exact same order as the register numbers in GDB. */
cb5f7128 2628 if (pc_in_interrupt_handler (frame_info->pc))
70e43abe
JL
2629 {
2630 for (i = 0; i < NUM_REGS; i++)
2631 {
2632 /* SP is a little special. */
2633 if (i == SP_REGNUM)
2634 frame_saved_regs->regs[SP_REGNUM]
cb5f7128 2635 = read_memory_integer (frame_info->frame + SP_REGNUM * 4, 4);
70e43abe 2636 else
cb5f7128 2637 frame_saved_regs->regs[i] = frame_info->frame + i * 4;
70e43abe
JL
2638 }
2639 return;
2640 }
2641
7486c68d 2642#ifdef FRAME_FIND_SAVED_REGS_IN_SIGTRAMP
70e43abe 2643 /* Handle signal handler callers. */
cb5f7128 2644 if (frame_info->signal_handler_caller)
70e43abe 2645 {
cb5f7128 2646 FRAME_FIND_SAVED_REGS_IN_SIGTRAMP (frame_info, frame_saved_regs);
70e43abe
JL
2647 return;
2648 }
7486c68d 2649#endif
70e43abe 2650
c598654a 2651 /* Get the starting address of the function referred to by the PC
669caa9c 2652 saved in frame. */
cb5f7128 2653 pc = get_pc_function_start (frame_info->pc);
c598654a
JL
2654
2655 /* Yow! */
2656 u = find_unwind_entry (pc);
2657 if (!u)
2658 return;
2659
2660 /* This is how much of a frame adjustment we need to account for. */
2661 stack_remaining = u->Total_frame_size << 3;
2662
2663 /* Magic register saves we want to know about. */
2664 save_rp = u->Save_RP;
2665 save_sp = u->Save_SP;
2666
2667 /* Turn the Entry_GR field into a bitmask. */
2668 save_gr = 0;
2669 for (i = 3; i < u->Entry_GR + 3; i++)
2670 {
2671 /* Frame pointer gets saved into a special location. */
2672 if (u->Save_SP && i == FP_REGNUM)
2673 continue;
2674
2675 save_gr |= (1 << i);
2676 }
2677
2678 /* Turn the Entry_FR field into a bitmask too. */
2679 save_fr = 0;
2680 for (i = 12; i < u->Entry_FR + 12; i++)
2681 save_fr |= (1 << i);
2682
70e43abe
JL
2683 /* The frame always represents the value of %sp at entry to the
2684 current function (and is thus equivalent to the "saved" stack
2685 pointer. */
cb5f7128 2686 frame_saved_regs->regs[SP_REGNUM] = frame_info->frame;
70e43abe 2687
c598654a
JL
2688 /* Loop until we find everything of interest or hit a branch.
2689
2690 For unoptimized GCC code and for any HP CC code this will never ever
2691 examine any user instructions.
2692
2693 For optimzied GCC code we're faced with problems. GCC will schedule
2694 its prologue and make prologue instructions available for delay slot
2695 filling. The end result is user code gets mixed in with the prologue
2696 and a prologue instruction may be in the delay slot of the first branch
2697 or call.
2698
2699 Some unexpected things are expected with debugging optimized code, so
2700 we allow this routine to walk past user instructions in optimized
2701 GCC code. */
2702 while (save_gr || save_fr || save_rp || save_sp || stack_remaining > 0)
2703 {
2704 status = target_read_memory (pc, buf, 4);
2705 inst = extract_unsigned_integer (buf, 4);
2706
2707 /* Yow! */
2708 if (status != 0)
2709 return;
2710
2711 /* Note the interesting effects of this instruction. */
2712 stack_remaining -= prologue_inst_adjust_sp (inst);
2713
2714 /* There is only one instruction used for saving RP into the stack. */
2715 if (inst == 0x6bc23fd9)
2716 {
2717 save_rp = 0;
cb5f7128 2718 frame_saved_regs->regs[RP_REGNUM] = frame_info->frame - 20;
c598654a
JL
2719 }
2720
70e43abe
JL
2721 /* Just note that we found the save of SP into the stack. The
2722 value for frame_saved_regs was computed above. */
c598654a 2723 if ((inst & 0xffffc000) == 0x6fc10000)
70e43abe 2724 save_sp = 0;
c598654a
JL
2725
2726 /* Account for general and floating-point register saves. */
2727 reg = inst_saves_gr (inst);
2728 if (reg >= 3 && reg <= 18
2729 && (!u->Save_SP || reg != FP_REGNUM))
2730 {
2731 save_gr &= ~(1 << reg);
2732
2733 /* stwm with a positive displacement is a *post modify*. */
2734 if ((inst >> 26) == 0x1b
2735 && extract_14 (inst) >= 0)
cb5f7128 2736 frame_saved_regs->regs[reg] = frame_info->frame;
c598654a
JL
2737 else
2738 {
2739 /* Handle code with and without frame pointers. */
2740 if (u->Save_SP)
2741 frame_saved_regs->regs[reg]
cb5f7128 2742 = frame_info->frame + extract_14 (inst);
c598654a
JL
2743 else
2744 frame_saved_regs->regs[reg]
cb5f7128 2745 = frame_info->frame + (u->Total_frame_size << 3)
c598654a
JL
2746 + extract_14 (inst);
2747 }
2748 }
2749
2750
2751 /* GCC handles callee saved FP regs a little differently.
2752
2753 It emits an instruction to put the value of the start of
2754 the FP store area into %r1. It then uses fstds,ma with
2755 a basereg of %r1 for the stores.
2756
2757 HP CC emits them at the current stack pointer modifying
2758 the stack pointer as it stores each register. */
2759
2760 /* ldo X(%r3),%r1 or ldo X(%r30),%r1. */
2761 if ((inst & 0xffffc000) == 0x34610000
2762 || (inst & 0xffffc000) == 0x37c10000)
2763 fp_loc = extract_14 (inst);
2764
2765 reg = inst_saves_fr (inst);
2766 if (reg >= 12 && reg <= 21)
2767 {
2768 /* Note +4 braindamage below is necessary because the FP status
2769 registers are internally 8 registers rather than the expected
2770 4 registers. */
2771 save_fr &= ~(1 << reg);
2772 if (fp_loc == -1)
2773 {
2774 /* 1st HP CC FP register store. After this instruction
2775 we've set enough state that the GCC and HPCC code are
2776 both handled in the same manner. */
cb5f7128 2777 frame_saved_regs->regs[reg + FP4_REGNUM + 4] = frame_info->frame;
c598654a
JL
2778 fp_loc = 8;
2779 }
2780 else
2781 {
2782 frame_saved_regs->regs[reg + FP0_REGNUM + 4]
cb5f7128 2783 = frame_info->frame + fp_loc;
c598654a
JL
2784 fp_loc += 8;
2785 }
2786 }
2787
2788 /* Quit if we hit any kind of branch. This can happen if a prologue
2789 instruction is in the delay slot of the first call/branch. */
2790 if (is_branch (inst))
2791 break;
2792
2793 /* Bump the PC. */
2794 pc += 4;
2795 }
2796}
2797
63757ecd
JK
2798#ifdef MAINTENANCE_CMDS
2799
66a1aa07
SG
2800static void
2801unwind_command (exp, from_tty)
2802 char *exp;
2803 int from_tty;
2804{
2805 CORE_ADDR address;
d8afcce9 2806 struct unwind_table_entry *u;
66a1aa07
SG
2807
2808 /* If we have an expression, evaluate it and use it as the address. */
2809
2810 if (exp != 0 && *exp != 0)
2811 address = parse_and_eval_address (exp);
2812 else
2813 return;
2814
d8afcce9 2815 u = find_unwind_entry (address);
66a1aa07 2816
d8afcce9 2817 if (!u)
66a1aa07 2818 {
d8afcce9 2819 printf_unfiltered ("Can't find unwind table entry for %s\n", exp);
66a1aa07
SG
2820 return;
2821 }
2822
d8afcce9
SG
2823 printf_unfiltered ("unwind_table_entry (0x%x):\n", u);
2824
2825 printf_unfiltered ("\tregion_start = ");
2826 print_address (u->region_start, gdb_stdout);
2827
2828 printf_unfiltered ("\n\tregion_end = ");
2829 print_address (u->region_end, gdb_stdout);
2830
2831#ifdef __STDC__
2832#define pif(FLD) if (u->FLD) printf_unfiltered (" "#FLD);
2833#else
2834#define pif(FLD) if (u->FLD) printf_unfiltered (" FLD");
2835#endif
2836
2837 printf_unfiltered ("\n\tflags =");
2838 pif (Cannot_unwind);
2839 pif (Millicode);
2840 pif (Millicode_save_sr0);
2841 pif (Entry_SR);
2842 pif (Args_stored);
2843 pif (Variable_Frame);
2844 pif (Separate_Package_Body);
2845 pif (Frame_Extension_Millicode);
2846 pif (Stack_Overflow_Check);
2847 pif (Two_Instruction_SP_Increment);
2848 pif (Ada_Region);
2849 pif (Save_SP);
2850 pif (Save_RP);
2851 pif (Save_MRP_in_frame);
2852 pif (extn_ptr_defined);
2853 pif (Cleanup_defined);
2854 pif (MPE_XL_interrupt_marker);
2855 pif (HP_UX_interrupt_marker);
2856 pif (Large_frame);
2857
2858 putchar_unfiltered ('\n');
2859
2860#ifdef __STDC__
2861#define pin(FLD) printf_unfiltered ("\t"#FLD" = 0x%x\n", u->FLD);
2862#else
2863#define pin(FLD) printf_unfiltered ("\tFLD = 0x%x\n", u->FLD);
2864#endif
2865
2866 pin (Region_description);
2867 pin (Entry_FR);
2868 pin (Entry_GR);
2869 pin (Total_frame_size);
66a1aa07 2870}
976bb0be 2871#endif /* MAINTENANCE_CMDS */
63757ecd
JK
2872
2873void
2874_initialize_hppa_tdep ()
2875{
18b46e7c
SS
2876 tm_print_insn = print_insn_hppa;
2877
976bb0be 2878#ifdef MAINTENANCE_CMDS
63757ecd
JK
2879 add_cmd ("unwind", class_maintenance, unwind_command,
2880 "Print unwind table entry at given address.",
2881 &maintenanceprintlist);
63757ecd 2882#endif /* MAINTENANCE_CMDS */
976bb0be 2883}
This page took 0.396544 seconds and 4 git commands to generate.