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
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));
67 /* Routines to extract various sized constants out of hppa
70 /* This assumes that no garbage lies outside of the lower bits of
74 sign_extend (val, bits)
77 return (int)(val >> bits - 1 ? (-1 << bits) | val : val);
80 /* For many immediate values the sign bit is the low bit! */
83 low_sign_extend (val, bits)
86 return (int)((val & 0x1 ? (-1 << (bits - 1)) : 0) | val >> 1);
88 /* extract the immediate field from a ld{bhw}s instruction */
91 get_field (val, from, to)
92 unsigned val, from, to;
95 return val & ((1 << 32 - from) - 1);
99 set_field (val, from, to, new_val)
100 unsigned *val, from, to;
102 unsigned mask = ~((1 << (to - from + 1)) << (31 - from));
103 return *val = *val & mask | (new_val << (31 - from));
106 /* extract a 3-bit space register number from a be, ble, mtsp or mfsp */
111 return GET_FIELD (word, 18, 18) << 2 | GET_FIELD (word, 16, 17);
114 extract_5_load (word)
117 return low_sign_extend (word >> 16 & MASK_5, 5);
120 /* extract the immediate field from a st{bhw}s instruction */
123 extract_5_store (word)
126 return low_sign_extend (word & MASK_5, 5);
129 /* extract the immediate field from a break instruction */
132 extract_5r_store (word)
135 return (word & MASK_5);
138 /* extract the immediate field from a {sr}sm instruction */
141 extract_5R_store (word)
144 return (word >> 16 & MASK_5);
147 /* extract an 11 bit immediate field */
153 return low_sign_extend (word & MASK_11, 11);
156 /* extract a 14 bit immediate field */
162 return low_sign_extend (word & MASK_14, 14);
165 /* deposit a 14 bit constant in a word */
168 deposit_14 (opnd, word)
172 unsigned sign = (opnd < 0 ? 1 : 0);
174 return word | ((unsigned)opnd << 1 & MASK_14) | sign;
177 /* extract a 21 bit constant */
187 val = GET_FIELD (word, 20, 20);
189 val |= GET_FIELD (word, 9, 19);
191 val |= GET_FIELD (word, 5, 6);
193 val |= GET_FIELD (word, 0, 4);
195 val |= GET_FIELD (word, 7, 8);
196 return sign_extend (val, 21) << 11;
199 /* deposit a 21 bit constant in a word. Although 21 bit constants are
200 usually the top 21 bits of a 32 bit constant, we assume that only
201 the low 21 bits of opnd are relevant */
204 deposit_21 (opnd, word)
209 val |= GET_FIELD (opnd, 11 + 14, 11 + 18);
211 val |= GET_FIELD (opnd, 11 + 12, 11 + 13);
213 val |= GET_FIELD (opnd, 11 + 19, 11 + 20);
215 val |= GET_FIELD (opnd, 11 + 1, 11 + 11);
217 val |= GET_FIELD (opnd, 11 + 0, 11 + 0);
221 /* extract a 12 bit constant from branch instructions */
227 return sign_extend (GET_FIELD (word, 19, 28) |
228 GET_FIELD (word, 29, 29) << 10 |
229 (word & 0x1) << 11, 12) << 2;
232 /* extract a 17 bit constant from branch instructions, returning the
233 19 bit signed value. */
239 return sign_extend (GET_FIELD (word, 19, 28) |
240 GET_FIELD (word, 29, 29) << 10 |
241 GET_FIELD (word, 11, 15) << 11 |
242 (word & 0x1) << 16, 17) << 2;
245 /* Lookup the unwind (stack backtrace) info for the given PC. We search all
246 of the objfiles seeking the unwind table entry for this PC. Each objfile
247 contains a sorted list of struct unwind_table_entry. Since we do a binary
248 search of the unwind tables, we depend upon them to be sorted. */
250 static struct unwind_table_entry *
251 find_unwind_entry(pc)
254 int first, middle, last;
255 struct objfile *objfile;
257 ALL_OBJFILES (objfile)
259 struct obj_unwind_info *ui;
261 ui = OBJ_UNWIND_INFO (objfile);
266 /* First, check the cache */
269 && pc >= ui->cache->region_start
270 && pc <= ui->cache->region_end)
273 /* Not in the cache, do a binary search */
278 while (first <= last)
280 middle = (first + last) / 2;
281 if (pc >= ui->table[middle].region_start
282 && pc <= ui->table[middle].region_end)
284 ui->cache = &ui->table[middle];
285 return &ui->table[middle];
288 if (pc < ui->table[middle].region_start)
293 } /* ALL_OBJFILES() */
297 /* Called when no unwind descriptor was found for PC. Returns 1 if it
298 appears that PC is in a linker stub. */
299 static int pc_in_linker_stub PARAMS ((CORE_ADDR));
302 pc_in_linker_stub (pc)
305 int found_magic_instruction = 0;
309 /* If unable to read memory, assume pc is not in a linker stub. */
310 if (target_read_memory (pc, buf, 4) != 0)
313 /* We are looking for something like
315 ; $$dyncall jams RP into this special spot in the frame (RP')
316 ; before calling the "call stub"
319 ldsid (rp),r1 ; Get space associated with RP into r1
320 mtsp r1,sp ; Move it into space register 0
321 be,n 0(sr0),rp) ; back to your regularly scheduled program
324 /* Maximum known linker stub size is 4 instructions. Search forward
325 from the given PC, then backward. */
326 for (i = 0; i < 4; i++)
328 /* If we hit something with an unwind, stop searching this direction. */
330 if (find_unwind_entry (pc + i * 4) != 0)
333 /* Check for ldsid (rp),r1 which is the magic instruction for a
334 return from a cross-space function call. */
335 if (read_memory_integer (pc + i * 4, 4) == 0x004010a1)
337 found_magic_instruction = 1;
340 /* Add code to handle long call/branch and argument relocation stubs
344 if (found_magic_instruction != 0)
347 /* Now look backward. */
348 for (i = 0; i < 4; i++)
350 /* If we hit something with an unwind, stop searching this direction. */
352 if (find_unwind_entry (pc - i * 4) != 0)
355 /* Check for ldsid (rp),r1 which is the magic instruction for a
356 return from a cross-space function call. */
357 if (read_memory_integer (pc - i * 4, 4) == 0x004010a1)
359 found_magic_instruction = 1;
362 /* Add code to handle long call/branch and argument relocation stubs
365 return found_magic_instruction;
369 find_return_regnum(pc)
372 struct unwind_table_entry *u;
374 u = find_unwind_entry (pc);
385 /* Return size of frame, or -1 if we should use a frame pointer. */
387 find_proc_framesize(pc)
390 struct unwind_table_entry *u;
392 u = find_unwind_entry (pc);
396 if (pc_in_linker_stub (pc))
397 /* Linker stubs have a zero size frame. */
404 /* If this bit is set, it means there is a frame pointer and we should
408 return u->Total_frame_size << 3;
411 /* Return offset from sp at which rp is saved, or 0 if not saved. */
412 static int rp_saved PARAMS ((CORE_ADDR));
418 struct unwind_table_entry *u;
420 u = find_unwind_entry (pc);
424 if (pc_in_linker_stub (pc))
425 /* This is the so-called RP'. */
438 frameless_function_invocation (frame)
441 struct unwind_table_entry *u;
443 u = find_unwind_entry (frame->pc);
446 return frameless_look_for_prologue (frame);
448 return (u->Total_frame_size == 0);
452 saved_pc_after_call (frame)
457 ret_regnum = find_return_regnum (get_frame_pc (frame));
459 return read_register (ret_regnum) & ~0x3;
463 frame_saved_pc (frame)
466 CORE_ADDR pc = get_frame_pc (frame);
468 if (frameless_function_invocation (frame))
472 ret_regnum = find_return_regnum (pc);
474 return read_register (ret_regnum) & ~0x3;
478 int rp_offset = rp_saved (pc);
481 return read_register (RP_REGNUM) & ~0x3;
483 return read_memory_integer (frame->frame + rp_offset, 4) & ~0x3;
487 /* We need to correct the PC and the FP for the outermost frame when we are
491 init_extra_frame_info (fromleaf, frame)
493 struct frame_info *frame;
498 if (frame->next) /* Only do this for outermost frame */
501 flags = read_register (FLAGS_REGNUM);
502 if (flags & 2) /* In system call? */
503 frame->pc = read_register (31) & ~0x3;
505 /* The outermost frame is always derived from PC-framesize */
506 framesize = find_proc_framesize(frame->pc);
508 frame->frame = read_register (FP_REGNUM);
510 frame->frame = read_register (SP_REGNUM) - framesize;
512 if (!frameless_function_invocation (frame)) /* Frameless? */
513 return; /* No, quit now */
515 /* For frameless functions, we need to look at the caller's frame */
516 framesize = find_proc_framesize(FRAME_SAVED_PC(frame));
518 frame->frame -= framesize;
523 struct frame_info *frame;
527 framesize = find_proc_framesize(FRAME_SAVED_PC(frame));
530 return frame->frame - framesize;
532 return read_memory_integer (frame->frame, 4);
535 /* To see if a frame chain is valid, see if the caller looks like it
536 was compiled with gcc. */
539 frame_chain_valid (chain, thisframe)
543 struct minimal_symbol *msym_us;
544 struct minimal_symbol *msym_start;
545 struct unwind_table_entry *u;
550 u = find_unwind_entry (thisframe->pc);
552 /* We can't just check that the same of msym_us is "_start", because
553 someone idiotically decided that they were going to make a Ltext_end
554 symbol with the same address. This Ltext_end symbol is totally
555 indistinguishable (as nearly as I can tell) from the symbol for a function
556 which is (legitimately, since it is in the user's namespace)
557 named Ltext_end, so we can't just ignore it. */
558 msym_us = lookup_minimal_symbol_by_pc (FRAME_SAVED_PC (thisframe));
559 msym_start = lookup_minimal_symbol ("_start", NULL);
562 && SYMBOL_VALUE_ADDRESS (msym_us) == SYMBOL_VALUE_ADDRESS (msym_start))
568 if (u->Save_SP || u->Total_frame_size)
571 if (pc_in_linker_stub (thisframe->pc))
578 * These functions deal with saving and restoring register state
579 * around a function call in the inferior. They keep the stack
580 * double-word aligned; eventually, on an hp700, the stack will have
581 * to be aligned to a 64-byte boundary.
587 register CORE_ADDR sp;
592 /* Space for "arguments"; the RP goes in here. */
593 sp = read_register (SP_REGNUM) + 48;
594 int_buffer = read_register (RP_REGNUM) | 0x3;
595 write_memory (sp - 20, (char *)&int_buffer, 4);
597 int_buffer = read_register (FP_REGNUM);
598 write_memory (sp, (char *)&int_buffer, 4);
600 write_register (FP_REGNUM, sp);
604 for (regnum = 1; regnum < 32; regnum++)
605 if (regnum != RP_REGNUM && regnum != FP_REGNUM)
606 sp = push_word (sp, read_register (regnum));
610 for (regnum = FP0_REGNUM; regnum < NUM_REGS; regnum++)
612 read_register_bytes (REGISTER_BYTE (regnum), (char *)&freg_buffer, 8);
613 sp = push_bytes (sp, (char *)&freg_buffer, 8);
615 sp = push_word (sp, read_register (IPSW_REGNUM));
616 sp = push_word (sp, read_register (SAR_REGNUM));
617 sp = push_word (sp, read_register (PCOQ_HEAD_REGNUM));
618 sp = push_word (sp, read_register (PCSQ_HEAD_REGNUM));
619 sp = push_word (sp, read_register (PCOQ_TAIL_REGNUM));
620 sp = push_word (sp, read_register (PCSQ_TAIL_REGNUM));
621 write_register (SP_REGNUM, sp);
624 find_dummy_frame_regs (frame, frame_saved_regs)
625 struct frame_info *frame;
626 struct frame_saved_regs *frame_saved_regs;
628 CORE_ADDR fp = frame->frame;
631 frame_saved_regs->regs[RP_REGNUM] = fp - 20 & ~0x3;
632 frame_saved_regs->regs[FP_REGNUM] = fp;
633 frame_saved_regs->regs[1] = fp + 8;
635 for (fp += 12, i = 3; i < 32; i++)
639 frame_saved_regs->regs[i] = fp;
645 for (i = FP0_REGNUM; i < NUM_REGS; i++, fp += 8)
646 frame_saved_regs->regs[i] = fp;
648 frame_saved_regs->regs[IPSW_REGNUM] = fp;
649 frame_saved_regs->regs[SAR_REGNUM] = fp + 4;
650 frame_saved_regs->regs[PCOQ_HEAD_REGNUM] = fp + 8;
651 frame_saved_regs->regs[PCSQ_HEAD_REGNUM] = fp + 12;
652 frame_saved_regs->regs[PCOQ_TAIL_REGNUM] = fp + 16;
653 frame_saved_regs->regs[PCSQ_TAIL_REGNUM] = fp + 20;
659 register FRAME frame = get_current_frame ();
660 register CORE_ADDR fp;
662 struct frame_saved_regs fsr;
663 struct frame_info *fi;
666 fi = get_frame_info (frame);
668 get_frame_saved_regs (fi, &fsr);
670 if (fsr.regs[IPSW_REGNUM]) /* Restoring a call dummy frame */
671 restore_pc_queue (&fsr);
673 for (regnum = 31; regnum > 0; regnum--)
674 if (fsr.regs[regnum])
675 write_register (regnum, read_memory_integer (fsr.regs[regnum], 4));
677 for (regnum = NUM_REGS - 1; regnum >= FP0_REGNUM ; regnum--)
678 if (fsr.regs[regnum])
680 read_memory (fsr.regs[regnum], (char *)&freg_buffer, 8);
681 write_register_bytes (REGISTER_BYTE (regnum), (char *)&freg_buffer, 8);
684 if (fsr.regs[IPSW_REGNUM])
685 write_register (IPSW_REGNUM,
686 read_memory_integer (fsr.regs[IPSW_REGNUM], 4));
688 if (fsr.regs[SAR_REGNUM])
689 write_register (SAR_REGNUM,
690 read_memory_integer (fsr.regs[SAR_REGNUM], 4));
692 if (fsr.regs[PCOQ_TAIL_REGNUM])
693 write_register (PCOQ_TAIL_REGNUM,
694 read_memory_integer (fsr.regs[PCOQ_TAIL_REGNUM], 4));
696 write_register (FP_REGNUM, read_memory_integer (fp, 4));
698 if (fsr.regs[IPSW_REGNUM]) /* call dummy */
699 write_register (SP_REGNUM, fp - 48);
701 write_register (SP_REGNUM, fp);
703 flush_cached_frames ();
704 set_current_frame (create_new_frame (read_register (FP_REGNUM),
709 * After returning to a dummy on the stack, restore the instruction
710 * queue space registers. */
713 restore_pc_queue (fsr)
714 struct frame_saved_regs *fsr;
716 CORE_ADDR pc = read_pc ();
717 CORE_ADDR new_pc = read_memory_integer (fsr->regs[PCOQ_HEAD_REGNUM], 4);
722 /* Advance past break instruction in the call dummy. */
723 write_register (PCOQ_HEAD_REGNUM, pc + 4);
724 write_register (PCOQ_TAIL_REGNUM, pc + 8);
727 * HPUX doesn't let us set the space registers or the space
728 * registers of the PC queue through ptrace. Boo, hiss.
729 * Conveniently, the call dummy has this sequence of instructions
734 * So, load up the registers and single step until we are in the
738 write_register (21, read_memory_integer (fsr->regs[PCSQ_HEAD_REGNUM], 4));
739 write_register (22, new_pc);
741 for (insn_count = 0; insn_count < 3; insn_count++)
748 stop_signal = WTERMSIG (w);
749 terminal_ours_for_output ();
750 printf ("\nProgram terminated with signal %d, %s\n",
751 stop_signal, safe_strsignal (stop_signal));
756 fetch_inferior_registers (-1);
761 hppa_push_arguments (nargs, args, sp, struct_return, struct_addr)
766 CORE_ADDR struct_addr;
768 /* array of arguments' offsets */
769 int *offset = (int *)alloca(nargs * sizeof (int));
773 for (i = 0; i < nargs; i++)
775 /* Coerce chars to int & float to double if necessary */
776 args[i] = value_arg_coerce (args[i]);
778 cum += TYPE_LENGTH (VALUE_TYPE (args[i]));
780 /* value must go at proper alignment. Assume alignment is a
782 alignment = hppa_alignof (VALUE_TYPE (args[i]));
784 cum = (cum + alignment) & -alignment;
787 sp += max ((cum + 7) & -8, 16);
789 for (i = 0; i < nargs; i++)
790 write_memory (sp + offset[i], VALUE_CONTENTS (args[i]),
791 TYPE_LENGTH (VALUE_TYPE (args[i])));
794 write_register (28, struct_addr);
799 * Insert the specified number of args and function address
800 * into a call sequence of the above form stored at DUMMYNAME.
802 * On the hppa we need to call the stack dummy through $$dyncall.
803 * Therefore our version of FIX_CALL_DUMMY takes an extra argument,
804 * real_pc, which is the location where gdb should start up the
805 * inferior to do the function call.
809 hppa_fix_call_dummy (dummy, pc, fun, nargs, args, type, gcc_p)
810 REGISTER_TYPE *dummy;
818 CORE_ADDR dyncall_addr, sr4export_addr;
819 struct minimal_symbol *msymbol;
821 msymbol = lookup_minimal_symbol ("$$dyncall", (struct objfile *) NULL);
823 error ("Can't find an address for $$dyncall trampoline");
825 dyncall_addr = SYMBOL_VALUE_ADDRESS (msymbol);
827 msymbol = lookup_minimal_symbol ("_sr4export", (struct objfile *) NULL);
829 error ("Can't find an address for _sr4export trampoline");
831 sr4export_addr = SYMBOL_VALUE_ADDRESS (msymbol);
833 dummy[9] = deposit_21 (fun >> 11, dummy[9]);
834 dummy[10] = deposit_14 (fun & MASK_11, dummy[10]);
835 dummy[12] = deposit_21 (sr4export_addr >> 11, dummy[12]);
836 dummy[13] = deposit_14 (sr4export_addr & MASK_11, dummy[13]);
838 write_register (22, pc);
843 /* return the alignment of a type in bytes. Structures have the maximum
844 alignment required by their fields. */
850 int max_align, align, i;
851 switch (TYPE_CODE (arg))
856 return TYPE_LENGTH (arg);
857 case TYPE_CODE_ARRAY:
858 return hppa_alignof (TYPE_FIELD_TYPE (arg, 0));
859 case TYPE_CODE_STRUCT:
860 case TYPE_CODE_UNION:
862 for (i = 0; i < TYPE_NFIELDS (arg); i++)
864 /* Bit fields have no real alignment. */
865 if (!TYPE_FIELD_BITPOS (arg, i))
867 align = hppa_alignof (TYPE_FIELD_TYPE (arg, i));
868 max_align = max (max_align, align);
877 /* Print the register regnum, or all registers if regnum is -1 */
879 pa_do_registers_info (regnum, fpregs)
883 char raw_regs [REGISTER_BYTES];
886 for (i = 0; i < NUM_REGS; i++)
887 read_relative_register_raw_bytes (i, raw_regs + REGISTER_BYTE (i));
889 pa_print_registers (raw_regs, regnum, fpregs);
890 else if (regnum < FP0_REGNUM)
891 printf ("%s %x\n", reg_names[regnum], *(long *)(raw_regs +
892 REGISTER_BYTE (regnum)));
894 pa_print_fp_reg (regnum);
897 pa_print_registers (raw_regs, regnum, fpregs)
904 for (i = 0; i < 18; i++)
905 printf ("%8.8s: %8x %8.8s: %8x %8.8s: %8x %8.8s: %8x\n",
907 *(int *)(raw_regs + REGISTER_BYTE (i)),
909 *(int *)(raw_regs + REGISTER_BYTE (i + 18)),
911 *(int *)(raw_regs + REGISTER_BYTE (i + 36)),
913 *(int *)(raw_regs + REGISTER_BYTE (i + 54)));
916 for (i = 72; i < NUM_REGS; i++)
923 unsigned char raw_buffer[MAX_REGISTER_RAW_SIZE];
924 unsigned char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
927 /* Get the data in raw format, then convert also to virtual format. */
928 read_relative_register_raw_bytes (i, raw_buffer);
929 REGISTER_CONVERT_TO_VIRTUAL (i, raw_buffer, virtual_buffer);
931 fputs_filtered (reg_names[i], stdout);
932 print_spaces_filtered (15 - strlen (reg_names[i]), stdout);
934 val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0, stdout, 0,
935 1, 0, Val_pretty_default);
936 printf_filtered ("\n");
939 /* Function calls that pass into a new compilation unit must pass through a
940 small piece of code that does long format (`external' in HPPA parlance)
941 jumps. We figure out where the trampoline is going to end up, and return
942 the PC of the final destination. If we aren't in a trampoline, we just
945 For computed calls, we just extract the new PC from r22. */
948 skip_trampoline_code (pc, name)
953 static CORE_ADDR dyncall = 0;
954 struct minimal_symbol *msym;
956 /* FIXME XXX - dyncall must be initialized whenever we get a new exec file */
960 msym = lookup_minimal_symbol ("$$dyncall", NULL);
962 dyncall = SYMBOL_VALUE_ADDRESS (msym);
968 return (CORE_ADDR)(read_register (22) & ~0x3);
970 inst0 = read_memory_integer (pc, 4);
971 inst1 = read_memory_integer (pc+4, 4);
973 if ( (inst0 & 0xffe00000) == 0x20200000 /* ldil xxx, r1 */
974 && (inst1 & 0xffe0e002) == 0xe0202002) /* be,n yyy(sr4, r1) */
975 pc = extract_21 (inst0) + extract_17 (inst1);
977 pc = (CORE_ADDR)NULL;
982 /* Advance PC across any function entry prologue instructions
983 to reach some "real" code. */
985 /* skip (stw rp, -20(0,sp)); copy 4,1; copy sp, 4; stwm 1,framesize(sp)
986 for gcc, or (stw rp, -20(0,sp); stwm 1, framesize(sp) for hcc */
996 status = target_read_memory (pc, buf, 4);
997 inst = extract_unsigned_integer (buf, 4);
1001 if (inst == 0x6BC23FD9) /* stw rp,-20(sp) */
1003 if (read_memory_integer (pc + 4, 4) == 0x8040241) /* copy r4,r1 */
1005 else if ((read_memory_integer (pc + 4, 4) & ~MASK_14) == 0x68810000) /* stw r1,(r4) */
1008 else if (read_memory_integer (pc, 4) == 0x8040241) /* copy r4,r1 */
1010 else if ((read_memory_integer (pc, 4) & ~MASK_14) == 0x68810000) /* stw r1,(r4) */
1016 #ifdef MAINTENANCE_CMDS
1019 unwind_command (exp, from_tty)
1027 struct unwind_table_entry *u;
1030 /* If we have an expression, evaluate it and use it as the address. */
1032 if (exp != 0 && *exp != 0)
1033 address = parse_and_eval_address (exp);
1037 xxx.u = find_unwind_entry (address);
1041 printf ("Can't find unwind table entry for PC 0x%x\n", address);
1045 printf ("%08x\n%08X\n%08X\n%08X\n", xxx.foo[0], xxx.foo[1], xxx.foo[2],
1050 _initialize_hppa_tdep ()
1052 add_cmd ("unwind", class_maintenance, unwind_command,
1053 "Print unwind table entry at given address.",
1054 &maintenanceprintlist);
1057 #endif /* MAINTENANCE_CMDS */