1 /* Machine-dependent code which would otherwise be in inflow.c and core.c,
2 for GDB, the GNU debugger. This code is for the HP PA-RISC cpu.
3 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
5 Contributed by the Center for Software Science at the
6 University of Utah (pa-gdb-bugs@cs.utah.edu).
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
29 /* For argument passing to the inferior */
33 #include <sys/types.h>
36 #include <sys/param.h>
39 #include <sys/ioctl.h>
41 #ifdef COFF_ENCAPSULATE
42 #include "a.out.encap.h"
47 #define N_SET_MAGIC(exec, val) ((exec).a_magic = (val))
50 /*#include <sys/user.h> After a.out.h */
53 #include <machine/psl.h>
62 static int restore_pc_queue
PARAMS ((struct frame_saved_regs
*fsr
));
63 static int hppa_alignof
PARAMS ((struct type
*arg
));
64 CORE_ADDR frame_saved_pc
PARAMS ((FRAME frame
));
65 static int prologue_inst_adjust_sp
PARAMS ((unsigned long));
66 static int is_branch
PARAMS ((unsigned long));
67 static int inst_saves_gr
PARAMS ((unsigned long));
68 static int inst_saves_fr
PARAMS ((unsigned long));
69 static int pc_in_interrupt_handler
PARAMS ((CORE_ADDR
));
70 static int pc_in_linker_stub
PARAMS ((CORE_ADDR
));
71 static int compare_unwind_entries
PARAMS ((struct unwind_table_entry
*,
72 struct unwind_table_entry
*));
73 static void read_unwind_info
PARAMS ((struct objfile
*));
74 static void internalize_unwinds
PARAMS ((struct objfile
*,
75 struct unwind_table_entry
*,
76 asection
*, unsigned int,
80 /* Routines to extract various sized constants out of hppa
83 /* This assumes that no garbage lies outside of the lower bits of
87 sign_extend (val
, bits
)
90 return (int)(val
>> bits
- 1 ? (-1 << bits
) | val
: val
);
93 /* For many immediate values the sign bit is the low bit! */
96 low_sign_extend (val
, bits
)
99 return (int)((val
& 0x1 ? (-1 << (bits
- 1)) : 0) | val
>> 1);
101 /* extract the immediate field from a ld{bhw}s instruction */
104 get_field (val
, from
, to
)
105 unsigned val
, from
, to
;
107 val
= val
>> 31 - to
;
108 return val
& ((1 << 32 - from
) - 1);
112 set_field (val
, from
, to
, new_val
)
113 unsigned *val
, from
, to
;
115 unsigned mask
= ~((1 << (to
- from
+ 1)) << (31 - from
));
116 return *val
= *val
& mask
| (new_val
<< (31 - from
));
119 /* extract a 3-bit space register number from a be, ble, mtsp or mfsp */
124 return GET_FIELD (word
, 18, 18) << 2 | GET_FIELD (word
, 16, 17);
127 extract_5_load (word
)
130 return low_sign_extend (word
>> 16 & MASK_5
, 5);
133 /* extract the immediate field from a st{bhw}s instruction */
136 extract_5_store (word
)
139 return low_sign_extend (word
& MASK_5
, 5);
142 /* extract the immediate field from a break instruction */
145 extract_5r_store (word
)
148 return (word
& MASK_5
);
151 /* extract the immediate field from a {sr}sm instruction */
154 extract_5R_store (word
)
157 return (word
>> 16 & MASK_5
);
160 /* extract an 11 bit immediate field */
166 return low_sign_extend (word
& MASK_11
, 11);
169 /* extract a 14 bit immediate field */
175 return low_sign_extend (word
& MASK_14
, 14);
178 /* deposit a 14 bit constant in a word */
181 deposit_14 (opnd
, word
)
185 unsigned sign
= (opnd
< 0 ? 1 : 0);
187 return word
| ((unsigned)opnd
<< 1 & MASK_14
) | sign
;
190 /* extract a 21 bit constant */
200 val
= GET_FIELD (word
, 20, 20);
202 val
|= GET_FIELD (word
, 9, 19);
204 val
|= GET_FIELD (word
, 5, 6);
206 val
|= GET_FIELD (word
, 0, 4);
208 val
|= GET_FIELD (word
, 7, 8);
209 return sign_extend (val
, 21) << 11;
212 /* deposit a 21 bit constant in a word. Although 21 bit constants are
213 usually the top 21 bits of a 32 bit constant, we assume that only
214 the low 21 bits of opnd are relevant */
217 deposit_21 (opnd
, word
)
222 val
|= GET_FIELD (opnd
, 11 + 14, 11 + 18);
224 val
|= GET_FIELD (opnd
, 11 + 12, 11 + 13);
226 val
|= GET_FIELD (opnd
, 11 + 19, 11 + 20);
228 val
|= GET_FIELD (opnd
, 11 + 1, 11 + 11);
230 val
|= GET_FIELD (opnd
, 11 + 0, 11 + 0);
234 /* extract a 12 bit constant from branch instructions */
240 return sign_extend (GET_FIELD (word
, 19, 28) |
241 GET_FIELD (word
, 29, 29) << 10 |
242 (word
& 0x1) << 11, 12) << 2;
245 /* extract a 17 bit constant from branch instructions, returning the
246 19 bit signed value. */
252 return sign_extend (GET_FIELD (word
, 19, 28) |
253 GET_FIELD (word
, 29, 29) << 10 |
254 GET_FIELD (word
, 11, 15) << 11 |
255 (word
& 0x1) << 16, 17) << 2;
259 /* Compare the start address for two unwind entries returning 1 if
260 the first address is larger than the second, -1 if the second is
261 larger than the first, and zero if they are equal. */
264 compare_unwind_entries (a
, b
)
265 struct unwind_table_entry
*a
;
266 struct unwind_table_entry
*b
;
268 if (a
->region_start
> b
->region_start
)
270 else if (a
->region_start
< b
->region_start
)
277 internalize_unwinds (objfile
, table
, section
, entries
, size
)
278 struct objfile
*objfile
;
279 struct unwind_table_entry
*table
;
281 unsigned int entries
, size
;
283 /* We will read the unwind entries into temporary memory, then
284 fill in the actual unwind table. */
289 char *buf
= alloca (size
);
291 bfd_get_section_contents (objfile
->obfd
, section
, buf
, 0, size
);
293 /* Now internalize the information being careful to handle host/target
295 for (i
= 0; i
< entries
; i
++)
297 table
[i
].region_start
= bfd_get_32 (objfile
->obfd
,
300 table
[i
].region_end
= bfd_get_32 (objfile
->obfd
, (bfd_byte
*)buf
);
302 tmp
= bfd_get_32 (objfile
->obfd
, (bfd_byte
*)buf
);
304 table
[i
].Cannot_unwind
= (tmp
>> 31) & 0x1;;
305 table
[i
].Millicode
= (tmp
>> 30) & 0x1;
306 table
[i
].Millicode_save_sr0
= (tmp
>> 29) & 0x1;
307 table
[i
].Region_description
= (tmp
>> 27) & 0x3;
308 table
[i
].reserved1
= (tmp
>> 26) & 0x1;
309 table
[i
].Entry_SR
= (tmp
>> 25) & 0x1;
310 table
[i
].Entry_FR
= (tmp
>> 21) & 0xf;
311 table
[i
].Entry_GR
= (tmp
>> 16) & 0x1f;
312 table
[i
].Args_stored
= (tmp
>> 15) & 0x1;
313 table
[i
].Variable_Frame
= (tmp
>> 14) & 0x1;
314 table
[i
].Separate_Package_Body
= (tmp
>> 13) & 0x1;
315 table
[i
].Frame_Extension_Millicode
= (tmp
>> 12 ) & 0x1;
316 table
[i
].Stack_Overflow_Check
= (tmp
>> 11) & 0x1;
317 table
[i
].Two_Instruction_SP_Increment
= (tmp
>> 10) & 0x1;
318 table
[i
].Ada_Region
= (tmp
>> 9) & 0x1;
319 table
[i
].reserved2
= (tmp
>> 5) & 0xf;
320 table
[i
].Save_SP
= (tmp
>> 4) & 0x1;
321 table
[i
].Save_RP
= (tmp
>> 3) & 0x1;
322 table
[i
].Save_MRP_in_frame
= (tmp
>> 2) & 0x1;
323 table
[i
].extn_ptr_defined
= (tmp
>> 1) & 0x1;
324 table
[i
].Cleanup_defined
= tmp
& 0x1;
325 tmp
= bfd_get_32 (objfile
->obfd
, (bfd_byte
*)buf
);
327 table
[i
].MPE_XL_interrupt_marker
= (tmp
>> 31) & 0x1;
328 table
[i
].HP_UX_interrupt_marker
= (tmp
>> 30) & 0x1;
329 table
[i
].Large_frame
= (tmp
>> 29) & 0x1;
330 table
[i
].reserved4
= (tmp
>> 27) & 0x3;
331 table
[i
].Total_frame_size
= tmp
& 0x7ffffff;
336 /* Read in the backtrace information stored in the `$UNWIND_START$' section of
337 the object file. This info is used mainly by find_unwind_entry() to find
338 out the stack frame size and frame pointer used by procedures. We put
339 everything on the psymbol obstack in the objfile so that it automatically
340 gets freed when the objfile is destroyed. */
343 read_unwind_info (objfile
)
344 struct objfile
*objfile
;
346 asection
*unwind_sec
, *elf_unwind_sec
, *stub_unwind_sec
;
347 unsigned unwind_size
, elf_unwind_size
, stub_unwind_size
, total_size
;
348 unsigned index
, unwind_entries
, elf_unwind_entries
;
349 unsigned stub_entries
, total_entries
;
350 struct obj_unwind_info
*ui
;
352 ui
= obstack_alloc (&objfile
->psymbol_obstack
,
353 sizeof (struct obj_unwind_info
));
359 /* Get hooks to all unwind sections. Note there is no linker-stub unwind
360 section in ELF at the moment. */
361 unwind_sec
= bfd_get_section_by_name (objfile
->obfd
, "$UNWIND_START$");
362 elf_unwind_sec
= bfd_get_section_by_name (objfile
->obfd
, ".hppa_unwind");
363 stub_unwind_sec
= bfd_get_section_by_name (objfile
->obfd
, "$UNWIND_END$");
365 /* Get sizes and unwind counts for all sections. */
368 unwind_size
= bfd_section_size (objfile
->obfd
, unwind_sec
);
369 unwind_entries
= unwind_size
/ UNWIND_ENTRY_SIZE
;
379 elf_unwind_size
= bfd_section_size (objfile
->obfd
, elf_unwind_sec
);
380 elf_unwind_entries
= elf_unwind_size
/ UNWIND_ENTRY_SIZE
;
385 stub_unwind_size
= bfd_section_size (objfile
->obfd
, stub_unwind_sec
);
386 stub_entries
= stub_unwind_size
/ STUB_UNWIND_ENTRY_SIZE
;
390 stub_unwind_size
= 0;
394 /* Compute total number of unwind entries and their total size. */
395 total_entries
= unwind_entries
+ elf_unwind_entries
+ stub_entries
;
396 total_size
= total_entries
* sizeof (struct unwind_table_entry
);
398 /* Allocate memory for the unwind table. */
399 ui
->table
= obstack_alloc (&objfile
->psymbol_obstack
, total_size
);
400 ui
->last
= total_entries
- 1;
402 /* Internalize the standard unwind entries. */
404 internalize_unwinds (objfile
, &ui
->table
[index
], unwind_sec
,
405 unwind_entries
, unwind_size
);
406 index
+= unwind_entries
;
407 internalize_unwinds (objfile
, &ui
->table
[index
], elf_unwind_sec
,
408 elf_unwind_entries
, elf_unwind_size
);
409 index
+= elf_unwind_entries
;
411 /* Now internalize the stub unwind entries. */
412 if (stub_unwind_size
> 0)
415 char *buf
= alloca (stub_unwind_size
);
417 /* Read in the stub unwind entries. */
418 bfd_get_section_contents (objfile
->obfd
, stub_unwind_sec
, buf
,
419 0, stub_unwind_size
);
421 /* Now convert them into regular unwind entries. */
422 for (i
= 0; i
< stub_entries
; i
++, index
++)
424 /* Clear out the next unwind entry. */
425 memset (&ui
->table
[index
], 0, sizeof (struct unwind_table_entry
));
427 /* Convert offset & size into region_start and region_end.
428 Stuff away the stub type into "reserved" fields. */
429 ui
->table
[index
].region_start
= bfd_get_32 (objfile
->obfd
,
432 ui
->table
[index
].stub_type
= bfd_get_8 (objfile
->obfd
,
435 ui
->table
[index
].region_end
436 = ui
->table
[index
].region_start
+ 4 *
437 (bfd_get_16 (objfile
->obfd
, (bfd_byte
*) buf
) - 1);
443 /* Unwind table needs to be kept sorted. */
444 qsort (ui
->table
, total_entries
, sizeof (struct unwind_table_entry
),
445 compare_unwind_entries
);
447 /* Keep a pointer to the unwind information. */
448 objfile
->obj_private
= (PTR
) ui
;
451 /* Lookup the unwind (stack backtrace) info for the given PC. We search all
452 of the objfiles seeking the unwind table entry for this PC. Each objfile
453 contains a sorted list of struct unwind_table_entry. Since we do a binary
454 search of the unwind tables, we depend upon them to be sorted. */
456 static struct unwind_table_entry
*
457 find_unwind_entry(pc
)
460 int first
, middle
, last
;
461 struct objfile
*objfile
;
463 ALL_OBJFILES (objfile
)
465 struct obj_unwind_info
*ui
;
467 ui
= OBJ_UNWIND_INFO (objfile
);
471 read_unwind_info (objfile
);
472 ui
= OBJ_UNWIND_INFO (objfile
);
475 /* First, check the cache */
478 && pc
>= ui
->cache
->region_start
479 && pc
<= ui
->cache
->region_end
)
482 /* Not in the cache, do a binary search */
487 while (first
<= last
)
489 middle
= (first
+ last
) / 2;
490 if (pc
>= ui
->table
[middle
].region_start
491 && pc
<= ui
->table
[middle
].region_end
)
493 ui
->cache
= &ui
->table
[middle
];
494 return &ui
->table
[middle
];
497 if (pc
< ui
->table
[middle
].region_start
)
502 } /* ALL_OBJFILES() */
506 /* Called to determine if PC is in an interrupt handler of some
510 pc_in_interrupt_handler (pc
)
513 struct unwind_table_entry
*u
;
514 struct minimal_symbol
*msym_us
;
516 u
= find_unwind_entry (pc
);
520 /* Oh joys. HPUX sets the interrupt bit for _sigreturn even though
521 its frame isn't a pure interrupt frame. Deal with this. */
522 msym_us
= lookup_minimal_symbol_by_pc (pc
);
524 return u
->HP_UX_interrupt_marker
&& !IN_SIGTRAMP (pc
, SYMBOL_NAME (msym_us
));
527 /* Called when no unwind descriptor was found for PC. Returns 1 if it
528 appears that PC is in a linker stub. */
531 pc_in_linker_stub (pc
)
534 int found_magic_instruction
= 0;
538 /* If unable to read memory, assume pc is not in a linker stub. */
539 if (target_read_memory (pc
, buf
, 4) != 0)
542 /* We are looking for something like
544 ; $$dyncall jams RP into this special spot in the frame (RP')
545 ; before calling the "call stub"
548 ldsid (rp),r1 ; Get space associated with RP into r1
549 mtsp r1,sp ; Move it into space register 0
550 be,n 0(sr0),rp) ; back to your regularly scheduled program
553 /* Maximum known linker stub size is 4 instructions. Search forward
554 from the given PC, then backward. */
555 for (i
= 0; i
< 4; i
++)
557 /* If we hit something with an unwind, stop searching this direction. */
559 if (find_unwind_entry (pc
+ i
* 4) != 0)
562 /* Check for ldsid (rp),r1 which is the magic instruction for a
563 return from a cross-space function call. */
564 if (read_memory_integer (pc
+ i
* 4, 4) == 0x004010a1)
566 found_magic_instruction
= 1;
569 /* Add code to handle long call/branch and argument relocation stubs
573 if (found_magic_instruction
!= 0)
576 /* Now look backward. */
577 for (i
= 0; i
< 4; i
++)
579 /* If we hit something with an unwind, stop searching this direction. */
581 if (find_unwind_entry (pc
- i
* 4) != 0)
584 /* Check for ldsid (rp),r1 which is the magic instruction for a
585 return from a cross-space function call. */
586 if (read_memory_integer (pc
- i
* 4, 4) == 0x004010a1)
588 found_magic_instruction
= 1;
591 /* Add code to handle long call/branch and argument relocation stubs
594 return found_magic_instruction
;
598 find_return_regnum(pc
)
601 struct unwind_table_entry
*u
;
603 u
= find_unwind_entry (pc
);
614 /* Return size of frame, or -1 if we should use a frame pointer. */
616 find_proc_framesize (pc
)
619 struct unwind_table_entry
*u
;
620 struct minimal_symbol
*msym_us
;
622 u
= find_unwind_entry (pc
);
626 if (pc_in_linker_stub (pc
))
627 /* Linker stubs have a zero size frame. */
633 msym_us
= lookup_minimal_symbol_by_pc (pc
);
635 /* If Save_SP is set, and we're not in an interrupt or signal caller,
636 then we have a frame pointer. Use it. */
637 if (u
->Save_SP
&& !pc_in_interrupt_handler (pc
)
638 && !IN_SIGTRAMP (pc
, SYMBOL_NAME (msym_us
)))
641 return u
->Total_frame_size
<< 3;
644 /* Return offset from sp at which rp is saved, or 0 if not saved. */
645 static int rp_saved
PARAMS ((CORE_ADDR
));
651 struct unwind_table_entry
*u
;
653 u
= find_unwind_entry (pc
);
657 if (pc_in_linker_stub (pc
))
658 /* This is the so-called RP'. */
666 else if (u
->stub_type
!= 0)
668 switch (u
->stub_type
)
672 case PARAMETER_RELOCATION
:
683 frameless_function_invocation (frame
)
686 struct unwind_table_entry
*u
;
688 u
= find_unwind_entry (frame
->pc
);
693 return (u
->Total_frame_size
== 0 && u
->stub_type
== 0);
697 saved_pc_after_call (frame
)
702 ret_regnum
= find_return_regnum (get_frame_pc (frame
));
704 return read_register (ret_regnum
) & ~0x3;
708 frame_saved_pc (frame
)
711 CORE_ADDR pc
= get_frame_pc (frame
);
712 struct unwind_table_entry
*u
;
714 /* BSD, HPUX & OSF1 all lay out the hardware state in the same manner
715 at the base of the frame in an interrupt handler. Registers within
716 are saved in the exact same order as GDB numbers registers. How
718 if (pc_in_interrupt_handler (pc
))
719 return read_memory_integer (frame
->frame
+ PC_REGNUM
* 4, 4) & ~0x3;
721 /* Deal with signal handler caller frames too. */
722 if (frame
->signal_handler_caller
)
725 FRAME_SAVED_PC_IN_SIGTRAMP (frame
, &rp
);
730 if (frameless_function_invocation (frame
))
734 ret_regnum
= find_return_regnum (pc
);
736 /* If the next frame is an interrupt frame or a signal
737 handler caller, then we need to look in the saved
738 register area to get the return pointer (the values
739 in the registers may not correspond to anything useful). */
741 && (frame
->next
->signal_handler_caller
742 || pc_in_interrupt_handler (frame
->next
->pc
)))
744 struct frame_info
*fi
;
745 struct frame_saved_regs saved_regs
;
747 fi
= get_frame_info (frame
->next
);
748 get_frame_saved_regs (fi
, &saved_regs
);
749 if (read_memory_integer (saved_regs
.regs
[FLAGS_REGNUM
] & 0x2, 4))
750 pc
= read_memory_integer (saved_regs
.regs
[31], 4) & ~0x3;
752 pc
= read_memory_integer (saved_regs
.regs
[RP_REGNUM
], 4) & ~0x3;
755 pc
= read_register (ret_regnum
) & ~0x3;
759 int rp_offset
= rp_saved (pc
);
761 /* Similar to code in frameless function case. If the next
762 frame is a signal or interrupt handler, then dig the right
763 information out of the saved register info. */
766 && (frame
->next
->signal_handler_caller
767 || pc_in_interrupt_handler (frame
->next
->pc
)))
769 struct frame_info
*fi
;
770 struct frame_saved_regs saved_regs
;
772 fi
= get_frame_info (frame
->next
);
773 get_frame_saved_regs (fi
, &saved_regs
);
774 if (read_memory_integer (saved_regs
.regs
[FLAGS_REGNUM
] & 0x2, 4))
775 pc
= read_memory_integer (saved_regs
.regs
[31], 4) & ~0x3;
777 pc
= read_memory_integer (saved_regs
.regs
[RP_REGNUM
], 4) & ~0x3;
779 else if (rp_offset
== 0)
780 pc
= read_register (RP_REGNUM
) & ~0x3;
782 pc
= read_memory_integer (frame
->frame
+ rp_offset
, 4) & ~0x3;
785 /* If PC is inside a linker stub, then dig out the address the stub
787 u
= find_unwind_entry (pc
);
788 if (u
&& u
->stub_type
!= 0)
794 /* We need to correct the PC and the FP for the outermost frame when we are
798 init_extra_frame_info (fromleaf
, frame
)
800 struct frame_info
*frame
;
805 if (frame
->next
&& !fromleaf
)
808 /* If the next frame represents a frameless function invocation
809 then we have to do some adjustments that are normally done by
810 FRAME_CHAIN. (FRAME_CHAIN is not called in this case.) */
813 /* Find the framesize of *this* frame without peeking at the PC
814 in the current frame structure (it isn't set yet). */
815 framesize
= find_proc_framesize (FRAME_SAVED_PC (get_next_frame (frame
)));
817 /* Now adjust our base frame accordingly. If we have a frame pointer
818 use it, else subtract the size of this frame from the current
819 frame. (we always want frame->frame to point at the lowest address
822 frame
->frame
= read_register (FP_REGNUM
);
824 frame
->frame
-= framesize
;
828 flags
= read_register (FLAGS_REGNUM
);
829 if (flags
& 2) /* In system call? */
830 frame
->pc
= read_register (31) & ~0x3;
832 /* The outermost frame is always derived from PC-framesize
834 One might think frameless innermost frames should have
835 a frame->frame that is the same as the parent's frame->frame.
836 That is wrong; frame->frame in that case should be the *high*
837 address of the parent's frame. It's complicated as hell to
838 explain, but the parent *always* creates some stack space for
839 the child. So the child actually does have a frame of some
840 sorts, and its base is the high address in its parent's frame. */
841 framesize
= find_proc_framesize(frame
->pc
);
843 frame
->frame
= read_register (FP_REGNUM
);
845 frame
->frame
= read_register (SP_REGNUM
) - framesize
;
848 /* Given a GDB frame, determine the address of the calling function's frame.
849 This will be used to create a new GDB frame struct, and then
850 INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.
852 This may involve searching through prologues for several functions
853 at boundaries where GCC calls HP C code, or where code which has
854 a frame pointer calls code without a frame pointer. */
859 struct frame_info
*frame
;
861 int my_framesize
, caller_framesize
;
862 struct unwind_table_entry
*u
;
863 CORE_ADDR frame_base
;
865 /* Handle HPUX, BSD, and OSF1 style interrupt frames first. These
866 are easy; at *sp we have a full save state strucutre which we can
867 pull the old stack pointer from. Also see frame_saved_pc for
868 code to dig a saved PC out of the save state structure. */
869 if (pc_in_interrupt_handler (frame
->pc
))
870 frame_base
= read_memory_integer (frame
->frame
+ SP_REGNUM
* 4, 4);
871 else if (frame
->signal_handler_caller
)
873 FRAME_BASE_BEFORE_SIGTRAMP (frame
, &frame_base
);
876 frame_base
= frame
->frame
;
878 /* Get frame sizes for the current frame and the frame of the
880 my_framesize
= find_proc_framesize (frame
->pc
);
881 caller_framesize
= find_proc_framesize (FRAME_SAVED_PC(frame
));
883 /* If caller does not have a frame pointer, then its frame
884 can be found at current_frame - caller_framesize. */
885 if (caller_framesize
!= -1)
886 return frame_base
- caller_framesize
;
888 /* Both caller and callee have frame pointers and are GCC compiled
889 (SAVE_SP bit in unwind descriptor is on for both functions.
890 The previous frame pointer is found at the top of the current frame. */
891 if (caller_framesize
== -1 && my_framesize
== -1)
892 return read_memory_integer (frame_base
, 4);
894 /* Caller has a frame pointer, but callee does not. This is a little
895 more difficult as GCC and HP C lay out locals and callee register save
896 areas very differently.
898 The previous frame pointer could be in a register, or in one of
899 several areas on the stack.
901 Walk from the current frame to the innermost frame examining
902 unwind descriptors to determine if %r3 ever gets saved into the
903 stack. If so return whatever value got saved into the stack.
904 If it was never saved in the stack, then the value in %r3 is still
907 We use information from unwind descriptors to determine if %r3
908 is saved into the stack (Entry_GR field has this information). */
912 u
= find_unwind_entry (frame
->pc
);
916 /* We could find this information by examining prologues. I don't
917 think anyone has actually written any tools (not even "strip")
918 which leave them out of an executable, so maybe this is a moot
920 warning ("Unable to find unwind for PC 0x%x -- Help!", frame
->pc
);
924 /* Entry_GR specifies the number of callee-saved general registers
925 saved in the stack. It starts at %r3, so %r3 would be 1. */
926 if (u
->Entry_GR
>= 1 || u
->Save_SP
927 || frame
->signal_handler_caller
928 || pc_in_interrupt_handler (frame
->pc
))
936 /* We may have walked down the chain into a function with a frame
939 && !frame
->signal_handler_caller
940 && !pc_in_interrupt_handler (frame
->pc
))
941 return read_memory_integer (frame
->frame
, 4);
942 /* %r3 was saved somewhere in the stack. Dig it out. */
945 struct frame_info
*fi
;
946 struct frame_saved_regs saved_regs
;
948 fi
= get_frame_info (frame
);
949 get_frame_saved_regs (fi
, &saved_regs
);
950 return read_memory_integer (saved_regs
.regs
[FP_REGNUM
], 4);
955 /* The value in %r3 was never saved into the stack (thus %r3 still
956 holds the value of the previous frame pointer). */
957 return read_register (FP_REGNUM
);
962 /* To see if a frame chain is valid, see if the caller looks like it
963 was compiled with gcc. */
966 frame_chain_valid (chain
, thisframe
)
970 struct minimal_symbol
*msym_us
;
971 struct minimal_symbol
*msym_start
;
972 struct unwind_table_entry
*u
, *next_u
= NULL
;
978 u
= find_unwind_entry (thisframe
->pc
);
983 /* We can't just check that the same of msym_us is "_start", because
984 someone idiotically decided that they were going to make a Ltext_end
985 symbol with the same address. This Ltext_end symbol is totally
986 indistinguishable (as nearly as I can tell) from the symbol for a function
987 which is (legitimately, since it is in the user's namespace)
988 named Ltext_end, so we can't just ignore it. */
989 msym_us
= lookup_minimal_symbol_by_pc (FRAME_SAVED_PC (thisframe
));
990 msym_start
= lookup_minimal_symbol ("_start", NULL
);
993 && SYMBOL_VALUE_ADDRESS (msym_us
) == SYMBOL_VALUE_ADDRESS (msym_start
))
996 next
= get_next_frame (thisframe
);
998 next_u
= find_unwind_entry (next
->pc
);
1000 /* If this frame does not save SP, has no stack, isn't a stub,
1001 and doesn't "call" an interrupt routine or signal handler caller,
1002 then its not valid. */
1003 if (u
->Save_SP
|| u
->Total_frame_size
|| u
->stub_type
!= 0
1004 || (thisframe
->next
&& thisframe
->next
->signal_handler_caller
)
1005 || (next_u
&& next_u
->HP_UX_interrupt_marker
))
1008 if (pc_in_linker_stub (thisframe
->pc
))
1015 * These functions deal with saving and restoring register state
1016 * around a function call in the inferior. They keep the stack
1017 * double-word aligned; eventually, on an hp700, the stack will have
1018 * to be aligned to a 64-byte boundary.
1024 register CORE_ADDR sp
;
1025 register int regnum
;
1029 /* Space for "arguments"; the RP goes in here. */
1030 sp
= read_register (SP_REGNUM
) + 48;
1031 int_buffer
= read_register (RP_REGNUM
) | 0x3;
1032 write_memory (sp
- 20, (char *)&int_buffer
, 4);
1034 int_buffer
= read_register (FP_REGNUM
);
1035 write_memory (sp
, (char *)&int_buffer
, 4);
1037 write_register (FP_REGNUM
, sp
);
1041 for (regnum
= 1; regnum
< 32; regnum
++)
1042 if (regnum
!= RP_REGNUM
&& regnum
!= FP_REGNUM
)
1043 sp
= push_word (sp
, read_register (regnum
));
1047 for (regnum
= FP0_REGNUM
; regnum
< NUM_REGS
; regnum
++)
1049 read_register_bytes (REGISTER_BYTE (regnum
), (char *)&freg_buffer
, 8);
1050 sp
= push_bytes (sp
, (char *)&freg_buffer
, 8);
1052 sp
= push_word (sp
, read_register (IPSW_REGNUM
));
1053 sp
= push_word (sp
, read_register (SAR_REGNUM
));
1054 sp
= push_word (sp
, read_register (PCOQ_HEAD_REGNUM
));
1055 sp
= push_word (sp
, read_register (PCSQ_HEAD_REGNUM
));
1056 sp
= push_word (sp
, read_register (PCOQ_TAIL_REGNUM
));
1057 sp
= push_word (sp
, read_register (PCSQ_TAIL_REGNUM
));
1058 write_register (SP_REGNUM
, sp
);
1061 find_dummy_frame_regs (frame
, frame_saved_regs
)
1062 struct frame_info
*frame
;
1063 struct frame_saved_regs
*frame_saved_regs
;
1065 CORE_ADDR fp
= frame
->frame
;
1068 frame_saved_regs
->regs
[RP_REGNUM
] = fp
- 20 & ~0x3;
1069 frame_saved_regs
->regs
[FP_REGNUM
] = fp
;
1070 frame_saved_regs
->regs
[1] = fp
+ 8;
1072 for (fp
+= 12, i
= 3; i
< 32; i
++)
1076 frame_saved_regs
->regs
[i
] = fp
;
1082 for (i
= FP0_REGNUM
; i
< NUM_REGS
; i
++, fp
+= 8)
1083 frame_saved_regs
->regs
[i
] = fp
;
1085 frame_saved_regs
->regs
[IPSW_REGNUM
] = fp
;
1086 frame_saved_regs
->regs
[SAR_REGNUM
] = fp
+ 4;
1087 frame_saved_regs
->regs
[PCOQ_HEAD_REGNUM
] = fp
+ 8;
1088 frame_saved_regs
->regs
[PCSQ_HEAD_REGNUM
] = fp
+ 12;
1089 frame_saved_regs
->regs
[PCOQ_TAIL_REGNUM
] = fp
+ 16;
1090 frame_saved_regs
->regs
[PCSQ_TAIL_REGNUM
] = fp
+ 20;
1096 register FRAME frame
= get_current_frame ();
1097 register CORE_ADDR fp
;
1098 register int regnum
;
1099 struct frame_saved_regs fsr
;
1100 struct frame_info
*fi
;
1103 fi
= get_frame_info (frame
);
1105 get_frame_saved_regs (fi
, &fsr
);
1107 #ifndef NO_PC_SPACE_QUEUE_RESTORE
1108 if (fsr
.regs
[IPSW_REGNUM
]) /* Restoring a call dummy frame */
1109 restore_pc_queue (&fsr
);
1112 for (regnum
= 31; regnum
> 0; regnum
--)
1113 if (fsr
.regs
[regnum
])
1114 write_register (regnum
, read_memory_integer (fsr
.regs
[regnum
], 4));
1116 for (regnum
= NUM_REGS
- 1; regnum
>= FP0_REGNUM
; regnum
--)
1117 if (fsr
.regs
[regnum
])
1119 read_memory (fsr
.regs
[regnum
], (char *)&freg_buffer
, 8);
1120 write_register_bytes (REGISTER_BYTE (regnum
), (char *)&freg_buffer
, 8);
1123 if (fsr
.regs
[IPSW_REGNUM
])
1124 write_register (IPSW_REGNUM
,
1125 read_memory_integer (fsr
.regs
[IPSW_REGNUM
], 4));
1127 if (fsr
.regs
[SAR_REGNUM
])
1128 write_register (SAR_REGNUM
,
1129 read_memory_integer (fsr
.regs
[SAR_REGNUM
], 4));
1131 /* If the PC was explicitly saved, then just restore it. */
1132 if (fsr
.regs
[PCOQ_TAIL_REGNUM
])
1133 write_register (PCOQ_TAIL_REGNUM
,
1134 read_memory_integer (fsr
.regs
[PCOQ_TAIL_REGNUM
], 4));
1136 /* Else use the value in %rp to set the new PC. */
1138 target_write_pc (read_register (RP_REGNUM
));
1140 write_register (FP_REGNUM
, read_memory_integer (fp
, 4));
1142 if (fsr
.regs
[IPSW_REGNUM
]) /* call dummy */
1143 write_register (SP_REGNUM
, fp
- 48);
1145 write_register (SP_REGNUM
, fp
);
1147 flush_cached_frames ();
1148 set_current_frame (create_new_frame (read_register (FP_REGNUM
),
1153 * After returning to a dummy on the stack, restore the instruction
1154 * queue space registers. */
1157 restore_pc_queue (fsr
)
1158 struct frame_saved_regs
*fsr
;
1160 CORE_ADDR pc
= read_pc ();
1161 CORE_ADDR new_pc
= read_memory_integer (fsr
->regs
[PCOQ_HEAD_REGNUM
], 4);
1163 struct target_waitstatus w
;
1166 /* Advance past break instruction in the call dummy. */
1167 write_register (PCOQ_HEAD_REGNUM
, pc
+ 4);
1168 write_register (PCOQ_TAIL_REGNUM
, pc
+ 8);
1171 * HPUX doesn't let us set the space registers or the space
1172 * registers of the PC queue through ptrace. Boo, hiss.
1173 * Conveniently, the call dummy has this sequence of instructions
1178 * So, load up the registers and single step until we are in the
1182 write_register (21, read_memory_integer (fsr
->regs
[PCSQ_HEAD_REGNUM
], 4));
1183 write_register (22, new_pc
);
1185 for (insn_count
= 0; insn_count
< 3; insn_count
++)
1187 /* FIXME: What if the inferior gets a signal right now? Want to
1188 merge this into wait_for_inferior (as a special kind of
1189 watchpoint? By setting a breakpoint at the end? Is there
1190 any other choice? Is there *any* way to do this stuff with
1191 ptrace() or some equivalent?). */
1193 target_wait (inferior_pid
, &w
);
1195 if (w
.kind
== TARGET_WAITKIND_SIGNALLED
)
1197 stop_signal
= w
.value
.sig
;
1198 terminal_ours_for_output ();
1199 printf_unfiltered ("\nProgram terminated with signal %s, %s.\n",
1200 target_signal_to_name (stop_signal
),
1201 target_signal_to_string (stop_signal
));
1202 gdb_flush (gdb_stdout
);
1206 target_terminal_ours ();
1207 (current_target
->to_fetch_registers
) (-1);
1212 hppa_push_arguments (nargs
, args
, sp
, struct_return
, struct_addr
)
1217 CORE_ADDR struct_addr
;
1219 /* array of arguments' offsets */
1220 int *offset
= (int *)alloca(nargs
* sizeof (int));
1224 for (i
= 0; i
< nargs
; i
++)
1226 /* Coerce chars to int & float to double if necessary */
1227 args
[i
] = value_arg_coerce (args
[i
]);
1229 cum
+= TYPE_LENGTH (VALUE_TYPE (args
[i
]));
1231 /* value must go at proper alignment. Assume alignment is a
1233 alignment
= hppa_alignof (VALUE_TYPE (args
[i
]));
1234 if (cum
% alignment
)
1235 cum
= (cum
+ alignment
) & -alignment
;
1238 sp
+= max ((cum
+ 7) & -8, 16);
1240 for (i
= 0; i
< nargs
; i
++)
1241 write_memory (sp
+ offset
[i
], VALUE_CONTENTS (args
[i
]),
1242 TYPE_LENGTH (VALUE_TYPE (args
[i
])));
1245 write_register (28, struct_addr
);
1250 * Insert the specified number of args and function address
1251 * into a call sequence of the above form stored at DUMMYNAME.
1253 * On the hppa we need to call the stack dummy through $$dyncall.
1254 * Therefore our version of FIX_CALL_DUMMY takes an extra argument,
1255 * real_pc, which is the location where gdb should start up the
1256 * inferior to do the function call.
1260 hppa_fix_call_dummy (dummy
, pc
, fun
, nargs
, args
, type
, gcc_p
)
1269 CORE_ADDR dyncall_addr
, sr4export_addr
;
1270 struct minimal_symbol
*msymbol
;
1271 int flags
= read_register (FLAGS_REGNUM
);
1272 struct unwind_table_entry
*u
;
1274 msymbol
= lookup_minimal_symbol ("$$dyncall", (struct objfile
*) NULL
);
1275 if (msymbol
== NULL
)
1276 error ("Can't find an address for $$dyncall trampoline");
1278 dyncall_addr
= SYMBOL_VALUE_ADDRESS (msymbol
);
1280 /* FUN could be a procedure label, in which case we have to get
1281 its real address and the value of its GOT/DP. */
1284 /* Get the GOT/DP value for the target function. It's
1285 at *(fun+4). Note the call dummy is *NOT* allowed to
1286 trash %r19 before calling the target function. */
1287 write_register (19, read_memory_integer ((fun
& ~0x3) + 4, 4));
1289 /* Now get the real address for the function we are calling, it's
1291 fun
= (CORE_ADDR
) read_memory_integer (fun
& ~0x3, 4);
1294 /* If we are calling an import stub (eg calling into a dynamic library)
1295 then have sr4export call the magic __d_plt_call routine which is linked
1296 in from end.o. (You can't use _sr4export to call the import stub as
1297 the value in sp-24 will get fried and you end up returning to the
1298 wrong location. You can't call the import stub directly as the code
1299 to bind the PLT entry to a function can't return to a stack address.) */
1300 u
= find_unwind_entry (fun
);
1301 if (u
&& u
->stub_type
== IMPORT
)
1304 msymbol
= lookup_minimal_symbol ("__d_plt_call", (struct objfile
*) NULL
);
1305 if (msymbol
== NULL
)
1306 error ("Can't find an address for __d_plt_call trampoline");
1308 /* This is where sr4export will jump to. */
1309 new_fun
= SYMBOL_VALUE_ADDRESS (msymbol
);
1311 /* We have to store the address of the stub in __shlib_funcptr. */
1312 msymbol
= lookup_minimal_symbol ("__shlib_funcptr",
1313 (struct objfile
*)NULL
);
1314 if (msymbol
== NULL
)
1315 error ("Can't find an address for __shlib_funcptr");
1317 target_write_memory (SYMBOL_VALUE_ADDRESS (msymbol
), (char *)&fun
, 4);
1322 /* We still need sr4export's address too. */
1323 msymbol
= lookup_minimal_symbol ("_sr4export", (struct objfile
*) NULL
);
1324 if (msymbol
== NULL
)
1325 error ("Can't find an address for _sr4export trampoline");
1327 sr4export_addr
= SYMBOL_VALUE_ADDRESS (msymbol
);
1329 store_unsigned_integer
1330 (&dummy
[9*REGISTER_SIZE
],
1332 deposit_21 (fun
>> 11,
1333 extract_unsigned_integer (&dummy
[9*REGISTER_SIZE
],
1335 store_unsigned_integer
1336 (&dummy
[10*REGISTER_SIZE
],
1338 deposit_14 (fun
& MASK_11
,
1339 extract_unsigned_integer (&dummy
[10*REGISTER_SIZE
],
1341 store_unsigned_integer
1342 (&dummy
[12*REGISTER_SIZE
],
1344 deposit_21 (sr4export_addr
>> 11,
1345 extract_unsigned_integer (&dummy
[12*REGISTER_SIZE
],
1347 store_unsigned_integer
1348 (&dummy
[13*REGISTER_SIZE
],
1350 deposit_14 (sr4export_addr
& MASK_11
,
1351 extract_unsigned_integer (&dummy
[13*REGISTER_SIZE
],
1354 write_register (22, pc
);
1356 /* If we are in a syscall, then we should call the stack dummy
1357 directly. $$dyncall is not needed as the kernel sets up the
1358 space id registers properly based on the value in %r31. In
1359 fact calling $$dyncall will not work because the value in %r22
1360 will be clobbered on the syscall exit path. */
1364 return dyncall_addr
;
1368 /* Get the PC from %r31 if currently in a syscall. Also mask out privilege
1373 int flags
= read_register (FLAGS_REGNUM
);
1376 return read_register (31) & ~0x3;
1377 return read_register (PC_REGNUM
) & ~0x3;
1380 /* Write out the PC. If currently in a syscall, then also write the new
1381 PC value into %r31. */
1386 int flags
= read_register (FLAGS_REGNUM
);
1388 /* If in a syscall, then set %r31. Also make sure to get the
1389 privilege bits set correctly. */
1391 write_register (31, (long) (v
| 0x3));
1393 write_register (PC_REGNUM
, (long) v
);
1394 write_register (NPC_REGNUM
, (long) v
+ 4);
1397 /* return the alignment of a type in bytes. Structures have the maximum
1398 alignment required by their fields. */
1404 int max_align
, align
, i
;
1405 switch (TYPE_CODE (arg
))
1410 return TYPE_LENGTH (arg
);
1411 case TYPE_CODE_ARRAY
:
1412 return hppa_alignof (TYPE_FIELD_TYPE (arg
, 0));
1413 case TYPE_CODE_STRUCT
:
1414 case TYPE_CODE_UNION
:
1416 for (i
= 0; i
< TYPE_NFIELDS (arg
); i
++)
1418 /* Bit fields have no real alignment. */
1419 if (!TYPE_FIELD_BITPOS (arg
, i
))
1421 align
= hppa_alignof (TYPE_FIELD_TYPE (arg
, i
));
1422 max_align
= max (max_align
, align
);
1431 /* Print the register regnum, or all registers if regnum is -1 */
1433 pa_do_registers_info (regnum
, fpregs
)
1437 char raw_regs
[REGISTER_BYTES
];
1440 for (i
= 0; i
< NUM_REGS
; i
++)
1441 read_relative_register_raw_bytes (i
, raw_regs
+ REGISTER_BYTE (i
));
1443 pa_print_registers (raw_regs
, regnum
, fpregs
);
1444 else if (regnum
< FP0_REGNUM
)
1445 printf_unfiltered ("%s %x\n", reg_names
[regnum
], *(long *)(raw_regs
+
1446 REGISTER_BYTE (regnum
)));
1448 pa_print_fp_reg (regnum
);
1451 pa_print_registers (raw_regs
, regnum
, fpregs
)
1458 for (i
= 0; i
< 18; i
++)
1459 printf_unfiltered ("%8.8s: %8x %8.8s: %8x %8.8s: %8x %8.8s: %8x\n",
1461 *(int *)(raw_regs
+ REGISTER_BYTE (i
)),
1463 *(int *)(raw_regs
+ REGISTER_BYTE (i
+ 18)),
1465 *(int *)(raw_regs
+ REGISTER_BYTE (i
+ 36)),
1467 *(int *)(raw_regs
+ REGISTER_BYTE (i
+ 54)));
1470 for (i
= 72; i
< NUM_REGS
; i
++)
1471 pa_print_fp_reg (i
);
1477 unsigned char raw_buffer
[MAX_REGISTER_RAW_SIZE
];
1478 unsigned char virtual_buffer
[MAX_REGISTER_VIRTUAL_SIZE
];
1480 /* Get 32bits of data. */
1481 read_relative_register_raw_bytes (i
, raw_buffer
);
1483 /* Put it in the buffer. No conversions are ever necessary. */
1484 memcpy (virtual_buffer
, raw_buffer
, REGISTER_RAW_SIZE (i
));
1486 fputs_filtered (reg_names
[i
], gdb_stdout
);
1487 print_spaces_filtered (8 - strlen (reg_names
[i
]), gdb_stdout
);
1488 fputs_filtered ("(single precision) ", gdb_stdout
);
1490 val_print (REGISTER_VIRTUAL_TYPE (i
), virtual_buffer
, 0, gdb_stdout
, 0,
1491 1, 0, Val_pretty_default
);
1492 printf_filtered ("\n");
1494 /* If "i" is even, then this register can also be a double-precision
1495 FP register. Dump it out as such. */
1498 /* Get the data in raw format for the 2nd half. */
1499 read_relative_register_raw_bytes (i
+ 1, raw_buffer
);
1501 /* Copy it into the appropriate part of the virtual buffer. */
1502 memcpy (virtual_buffer
+ REGISTER_RAW_SIZE (i
), raw_buffer
,
1503 REGISTER_RAW_SIZE (i
));
1505 /* Dump it as a double. */
1506 fputs_filtered (reg_names
[i
], gdb_stdout
);
1507 print_spaces_filtered (8 - strlen (reg_names
[i
]), gdb_stdout
);
1508 fputs_filtered ("(double precision) ", gdb_stdout
);
1510 val_print (builtin_type_double
, virtual_buffer
, 0, gdb_stdout
, 0,
1511 1, 0, Val_pretty_default
);
1512 printf_filtered ("\n");
1516 /* Figure out if PC is in a trampoline, and if so find out where
1517 the trampoline will jump to. If not in a trampoline, return zero.
1519 Simple code examination probably is not a good idea since the code
1520 sequences in trampolines can also appear in user code.
1522 We use unwinds and information from the minimal symbol table to
1523 determine when we're in a trampoline. This won't work for ELF
1524 (yet) since it doesn't create stub unwind entries. Whether or
1525 not ELF will create stub unwinds or normal unwinds for linker
1526 stubs is still being debated.
1528 This should handle simple calls through dyncall or sr4export,
1529 long calls, argument relocation stubs, and dyncall/sr4export
1530 calling an argument relocation stub. It even handles some stubs
1531 used in dynamic executables. */
1534 skip_trampoline_code (pc
, name
)
1539 long prev_inst
, curr_inst
, loc
;
1540 static CORE_ADDR dyncall
= 0;
1541 static CORE_ADDR sr4export
= 0;
1542 struct minimal_symbol
*msym
;
1543 struct unwind_table_entry
*u
;
1545 /* FIXME XXX - dyncall and sr4export must be initialized whenever we get a
1550 msym
= lookup_minimal_symbol ("$$dyncall", NULL
);
1552 dyncall
= SYMBOL_VALUE_ADDRESS (msym
);
1559 msym
= lookup_minimal_symbol ("_sr4export", NULL
);
1561 sr4export
= SYMBOL_VALUE_ADDRESS (msym
);
1566 /* Addresses passed to dyncall may *NOT* be the actual address
1567 of the funtion. So we may have to do something special. */
1570 pc
= (CORE_ADDR
) read_register (22);
1572 /* If bit 30 (counting from the left) is on, then pc is the address of
1573 the PLT entry for this function, not the address of the function
1574 itself. Bit 31 has meaning too, but only for MPE. */
1576 pc
= (CORE_ADDR
) read_memory_integer (pc
& ~0x3, 4);
1578 else if (pc
== sr4export
)
1579 pc
= (CORE_ADDR
) (read_register (22));
1581 /* Get the unwind descriptor corresponding to PC, return zero
1582 if no unwind was found. */
1583 u
= find_unwind_entry (pc
);
1587 /* If this isn't a linker stub, then return now. */
1588 if (u
->stub_type
== 0)
1589 return orig_pc
== pc
? 0 : pc
& ~0x3;
1591 /* It's a stub. Search for a branch and figure out where it goes.
1592 Note we have to handle multi insn branch sequences like ldil;ble.
1593 Most (all?) other branches can be determined by examining the contents
1594 of certain registers and the stack. */
1600 /* Make sure we haven't walked outside the range of this stub. */
1601 if (u
!= find_unwind_entry (loc
))
1603 warning ("Unable to find branch in linker stub");
1604 return orig_pc
== pc
? 0 : pc
& ~0x3;
1607 prev_inst
= curr_inst
;
1608 curr_inst
= read_memory_integer (loc
, 4);
1610 /* Does it look like a branch external using %r1? Then it's the
1611 branch from the stub to the actual function. */
1612 if ((curr_inst
& 0xffe0e000) == 0xe0202000)
1614 /* Yup. See if the previous instruction loaded
1615 a value into %r1. If so compute and return the jump address. */
1616 if ((prev_inst
& 0xffe00000) == 0x20202000)
1617 return (extract_21 (prev_inst
) + extract_17 (curr_inst
)) & ~0x3;
1620 warning ("Unable to find ldil X,%%r1 before ble Y(%%sr4,%%r1).");
1621 return orig_pc
== pc
? 0 : pc
& ~0x3;
1625 /* Does it look like bl X,rp? Another way to do a branch from the
1626 stub to the actual function. */
1627 else if ((curr_inst
& 0xffe0e000) == 0xe8400000)
1628 return (loc
+ extract_17 (curr_inst
) + 8) & ~0x3;
1630 /* Does it look like bv (rp)? Note this depends on the
1631 current stack pointer being the same as the stack
1632 pointer in the stub itself! This is a branch on from the
1633 stub back to the original caller. */
1634 else if ((curr_inst
& 0xffe0e000) == 0xe840c000)
1636 /* Yup. See if the previous instruction loaded
1638 if (prev_inst
== 0x4bc23ff1)
1639 return (read_memory_integer
1640 (read_register (SP_REGNUM
) - 8, 4)) & ~0x3;
1643 warning ("Unable to find restore of %%rp before bv (%%rp).");
1644 return orig_pc
== pc
? 0 : pc
& ~0x3;
1648 /* What about be,n 0(sr0,%rp)? It's just another way we return to
1649 the original caller from the stub. Used in dynamic executables. */
1650 else if (curr_inst
== 0xe0400002)
1652 /* The value we jump to is sitting in sp - 24. But that's
1653 loaded several instructions before the be instruction.
1654 I guess we could check for the previous instruction being
1655 mtsp %r1,%sr0 if we want to do sanity checking. */
1656 return (read_memory_integer
1657 (read_register (SP_REGNUM
) - 24, 4)) & ~0x3;
1660 /* Haven't found the branch yet, but we're still in the stub.
1666 /* For the given instruction (INST), return any adjustment it makes
1667 to the stack pointer or zero for no adjustment.
1669 This only handles instructions commonly found in prologues. */
1672 prologue_inst_adjust_sp (inst
)
1675 /* This must persist across calls. */
1676 static int save_high21
;
1678 /* The most common way to perform a stack adjustment ldo X(sp),sp */
1679 if ((inst
& 0xffffc000) == 0x37de0000)
1680 return extract_14 (inst
);
1683 if ((inst
& 0xffe00000) == 0x6fc00000)
1684 return extract_14 (inst
);
1686 /* addil high21,%r1; ldo low11,(%r1),%r30)
1687 save high bits in save_high21 for later use. */
1688 if ((inst
& 0xffe00000) == 0x28200000)
1690 save_high21
= extract_21 (inst
);
1694 if ((inst
& 0xffff0000) == 0x343e0000)
1695 return save_high21
+ extract_14 (inst
);
1697 /* fstws as used by the HP compilers. */
1698 if ((inst
& 0xffffffe0) == 0x2fd01220)
1699 return extract_5_load (inst
);
1701 /* No adjustment. */
1705 /* Return nonzero if INST is a branch of some kind, else return zero. */
1735 /* Return the register number for a GR which is saved by INST or
1736 zero it INST does not save a GR.
1738 Note we only care about full 32bit register stores (that's the only
1739 kind of stores the prologue will use). */
1742 inst_saves_gr (inst
)
1745 /* Does it look like a stw? */
1746 if ((inst
>> 26) == 0x1a)
1747 return extract_5R_store (inst
);
1749 /* Does it look like a stwm? */
1750 if ((inst
>> 26) == 0x1b)
1751 return extract_5R_store (inst
);
1756 /* Return the register number for a FR which is saved by INST or
1757 zero it INST does not save a FR.
1759 Note we only care about full 64bit register stores (that's the only
1760 kind of stores the prologue will use). */
1763 inst_saves_fr (inst
)
1766 if ((inst
& 0xfc1fffe0) == 0x2c101220)
1767 return extract_5r_store (inst
);
1771 /* Advance PC across any function entry prologue instructions
1772 to reach some "real" code.
1774 Use information in the unwind table to determine what exactly should
1775 be in the prologue. */
1782 unsigned long inst
, stack_remaining
, save_gr
, save_fr
, save_rp
, save_sp
;
1784 struct unwind_table_entry
*u
;
1786 u
= find_unwind_entry (pc
);
1790 /* If we are not at the beginning of a function, then return now. */
1791 if ((pc
& ~0x3) != u
->region_start
)
1794 /* This is how much of a frame adjustment we need to account for. */
1795 stack_remaining
= u
->Total_frame_size
<< 3;
1797 /* Magic register saves we want to know about. */
1798 save_rp
= u
->Save_RP
;
1799 save_sp
= u
->Save_SP
;
1801 /* Turn the Entry_GR field into a bitmask. */
1803 for (i
= 3; i
< u
->Entry_GR
+ 3; i
++)
1805 /* Frame pointer gets saved into a special location. */
1806 if (u
->Save_SP
&& i
== FP_REGNUM
)
1809 save_gr
|= (1 << i
);
1812 /* Turn the Entry_FR field into a bitmask too. */
1814 for (i
= 12; i
< u
->Entry_FR
+ 12; i
++)
1815 save_fr
|= (1 << i
);
1817 /* Loop until we find everything of interest or hit a branch.
1819 For unoptimized GCC code and for any HP CC code this will never ever
1820 examine any user instructions.
1822 For optimzied GCC code we're faced with problems. GCC will schedule
1823 its prologue and make prologue instructions available for delay slot
1824 filling. The end result is user code gets mixed in with the prologue
1825 and a prologue instruction may be in the delay slot of the first branch
1828 Some unexpected things are expected with debugging optimized code, so
1829 we allow this routine to walk past user instructions in optimized
1831 while (save_gr
|| save_fr
|| save_rp
|| save_sp
|| stack_remaining
> 0)
1833 status
= target_read_memory (pc
, buf
, 4);
1834 inst
= extract_unsigned_integer (buf
, 4);
1840 /* Note the interesting effects of this instruction. */
1841 stack_remaining
-= prologue_inst_adjust_sp (inst
);
1843 /* There is only one instruction used for saving RP into the stack. */
1844 if (inst
== 0x6bc23fd9)
1847 /* This is the only way we save SP into the stack. At this time
1848 the HP compilers never bother to save SP into the stack. */
1849 if ((inst
& 0xffffc000) == 0x6fc10000)
1852 /* Account for general and floating-point register saves. */
1853 save_gr
&= ~(1 << inst_saves_gr (inst
));
1854 save_fr
&= ~(1 << inst_saves_fr (inst
));
1856 /* Quit if we hit any kind of branch. This can happen if a prologue
1857 instruction is in the delay slot of the first call/branch. */
1858 if (is_branch (inst
))
1868 /* Put here the code to store, into a struct frame_saved_regs,
1869 the addresses of the saved registers of frame described by FRAME_INFO.
1870 This includes special registers such as pc and fp saved in special
1871 ways in the stack frame. sp is even more special:
1872 the address we return for it IS the sp for the next frame. */
1875 hppa_frame_find_saved_regs (frame_info
, frame_saved_regs
)
1876 struct frame_info
*frame_info
;
1877 struct frame_saved_regs
*frame_saved_regs
;
1880 struct unwind_table_entry
*u
;
1881 unsigned long inst
, stack_remaining
, save_gr
, save_fr
, save_rp
, save_sp
;
1886 /* Zero out everything. */
1887 memset (frame_saved_regs
, '\0', sizeof (struct frame_saved_regs
));
1889 /* Call dummy frames always look the same, so there's no need to
1890 examine the dummy code to determine locations of saved registers;
1891 instead, let find_dummy_frame_regs fill in the correct offsets
1892 for the saved registers. */
1893 if ((frame_info
->pc
>= frame_info
->frame
1894 && frame_info
->pc
<= (frame_info
->frame
+ CALL_DUMMY_LENGTH
1895 + 32 * 4 + (NUM_REGS
- FP0_REGNUM
) * 8
1897 find_dummy_frame_regs (frame_info
, frame_saved_regs
);
1899 /* Interrupt handlers are special too. They lay out the register
1900 state in the exact same order as the register numbers in GDB. */
1901 if (pc_in_interrupt_handler (frame_info
->pc
))
1903 for (i
= 0; i
< NUM_REGS
; i
++)
1905 /* SP is a little special. */
1907 frame_saved_regs
->regs
[SP_REGNUM
]
1908 = read_memory_integer (frame_info
->frame
+ SP_REGNUM
* 4, 4);
1910 frame_saved_regs
->regs
[i
] = frame_info
->frame
+ i
* 4;
1915 /* Handle signal handler callers. */
1916 if (frame_info
->signal_handler_caller
)
1918 FRAME_FIND_SAVED_REGS_IN_SIGTRAMP (frame_info
, frame_saved_regs
);
1922 /* Get the starting address of the function referred to by the PC
1923 saved in frame_info. */
1924 pc
= get_pc_function_start (frame_info
->pc
);
1927 u
= find_unwind_entry (pc
);
1931 /* This is how much of a frame adjustment we need to account for. */
1932 stack_remaining
= u
->Total_frame_size
<< 3;
1934 /* Magic register saves we want to know about. */
1935 save_rp
= u
->Save_RP
;
1936 save_sp
= u
->Save_SP
;
1938 /* Turn the Entry_GR field into a bitmask. */
1940 for (i
= 3; i
< u
->Entry_GR
+ 3; i
++)
1942 /* Frame pointer gets saved into a special location. */
1943 if (u
->Save_SP
&& i
== FP_REGNUM
)
1946 save_gr
|= (1 << i
);
1949 /* Turn the Entry_FR field into a bitmask too. */
1951 for (i
= 12; i
< u
->Entry_FR
+ 12; i
++)
1952 save_fr
|= (1 << i
);
1954 /* The frame always represents the value of %sp at entry to the
1955 current function (and is thus equivalent to the "saved" stack
1957 frame_saved_regs
->regs
[SP_REGNUM
] = frame_info
->frame
;
1959 /* Loop until we find everything of interest or hit a branch.
1961 For unoptimized GCC code and for any HP CC code this will never ever
1962 examine any user instructions.
1964 For optimzied GCC code we're faced with problems. GCC will schedule
1965 its prologue and make prologue instructions available for delay slot
1966 filling. The end result is user code gets mixed in with the prologue
1967 and a prologue instruction may be in the delay slot of the first branch
1970 Some unexpected things are expected with debugging optimized code, so
1971 we allow this routine to walk past user instructions in optimized
1973 while (save_gr
|| save_fr
|| save_rp
|| save_sp
|| stack_remaining
> 0)
1975 status
= target_read_memory (pc
, buf
, 4);
1976 inst
= extract_unsigned_integer (buf
, 4);
1982 /* Note the interesting effects of this instruction. */
1983 stack_remaining
-= prologue_inst_adjust_sp (inst
);
1985 /* There is only one instruction used for saving RP into the stack. */
1986 if (inst
== 0x6bc23fd9)
1989 frame_saved_regs
->regs
[RP_REGNUM
] = frame_info
->frame
- 20;
1992 /* Just note that we found the save of SP into the stack. The
1993 value for frame_saved_regs was computed above. */
1994 if ((inst
& 0xffffc000) == 0x6fc10000)
1997 /* Account for general and floating-point register saves. */
1998 reg
= inst_saves_gr (inst
);
1999 if (reg
>= 3 && reg
<= 18
2000 && (!u
->Save_SP
|| reg
!= FP_REGNUM
))
2002 save_gr
&= ~(1 << reg
);
2004 /* stwm with a positive displacement is a *post modify*. */
2005 if ((inst
>> 26) == 0x1b
2006 && extract_14 (inst
) >= 0)
2007 frame_saved_regs
->regs
[reg
] = frame_info
->frame
;
2010 /* Handle code with and without frame pointers. */
2012 frame_saved_regs
->regs
[reg
]
2013 = frame_info
->frame
+ extract_14 (inst
);
2015 frame_saved_regs
->regs
[reg
]
2016 = frame_info
->frame
+ (u
->Total_frame_size
<< 3)
2017 + extract_14 (inst
);
2022 /* GCC handles callee saved FP regs a little differently.
2024 It emits an instruction to put the value of the start of
2025 the FP store area into %r1. It then uses fstds,ma with
2026 a basereg of %r1 for the stores.
2028 HP CC emits them at the current stack pointer modifying
2029 the stack pointer as it stores each register. */
2031 /* ldo X(%r3),%r1 or ldo X(%r30),%r1. */
2032 if ((inst
& 0xffffc000) == 0x34610000
2033 || (inst
& 0xffffc000) == 0x37c10000)
2034 fp_loc
= extract_14 (inst
);
2036 reg
= inst_saves_fr (inst
);
2037 if (reg
>= 12 && reg
<= 21)
2039 /* Note +4 braindamage below is necessary because the FP status
2040 registers are internally 8 registers rather than the expected
2042 save_fr
&= ~(1 << reg
);
2045 /* 1st HP CC FP register store. After this instruction
2046 we've set enough state that the GCC and HPCC code are
2047 both handled in the same manner. */
2048 frame_saved_regs
->regs
[reg
+ FP4_REGNUM
+ 4] = frame_info
->frame
;
2053 frame_saved_regs
->regs
[reg
+ FP0_REGNUM
+ 4]
2054 = frame_info
->frame
+ fp_loc
;
2059 /* Quit if we hit any kind of branch. This can happen if a prologue
2060 instruction is in the delay slot of the first call/branch. */
2061 if (is_branch (inst
))
2069 #ifdef MAINTENANCE_CMDS
2072 unwind_command (exp
, from_tty
)
2080 struct unwind_table_entry
*u
;
2083 /* If we have an expression, evaluate it and use it as the address. */
2085 if (exp
!= 0 && *exp
!= 0)
2086 address
= parse_and_eval_address (exp
);
2090 xxx
.u
= find_unwind_entry (address
);
2094 printf_unfiltered ("Can't find unwind table entry for PC 0x%x\n", address
);
2098 printf_unfiltered ("%08x\n%08X\n%08X\n%08X\n", xxx
.foo
[0], xxx
.foo
[1], xxx
.foo
[2],
2101 #endif /* MAINTENANCE_CMDS */
2104 _initialize_hppa_tdep ()
2106 #ifdef MAINTENANCE_CMDS
2107 add_cmd ("unwind", class_maintenance
, unwind_command
,
2108 "Print unwind table entry at given address.",
2109 &maintenanceprintlist
);
2110 #endif /* MAINTENANCE_CMDS */