1 /* Target-dependent code for HP-UX on PA-RISC.
3 Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
23 #include "arch-utils.h"
27 #include "frame-unwind.h"
28 #include "trad-frame.h"
34 #include "hppa-tdep.h"
35 #include "solib-som.h"
36 #include "solib-pa64.h"
38 #include "exceptions.h"
40 #include "gdb_string.h"
43 #include <machine/save_state.h>
46 #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE *)0)->MEMBER)
49 #define IS_32BIT_TARGET(_gdbarch) \
50 ((gdbarch_tdep (_gdbarch))->bytes_per_address == 4)
52 /* Bit in the `ss_flag' member of `struct save_state' that indicates
53 that the 64-bit register values are live. From
54 <machine/save_state.h>. */
55 #define HPPA_HPUX_SS_WIDEREGS 0x40
57 /* Offsets of various parts of `struct save_state'. From
58 <machine/save_state.h>. */
59 #define HPPA_HPUX_SS_FLAGS_OFFSET 0
60 #define HPPA_HPUX_SS_NARROW_OFFSET 4
61 #define HPPA_HPUX_SS_FPBLOCK_OFFSET 256
62 #define HPPA_HPUX_SS_WIDE_OFFSET 640
64 /* The size of `struct save_state. */
65 #define HPPA_HPUX_SAVE_STATE_SIZE 1152
67 /* The size of `struct pa89_save_state', which corresponds to PA-RISC
68 1.1, the lowest common denominator that we support. */
69 #define HPPA_HPUX_PA89_SAVE_STATE_SIZE 512
72 /* Forward declarations. */
73 extern void _initialize_hppa_hpux_tdep (void);
74 extern initialize_file_ftype _initialize_hppa_hpux_tdep;
78 struct minimal_symbol *msym;
79 CORE_ADDR solib_handle;
85 in_opd_section (CORE_ADDR pc)
87 struct obj_section *s;
90 s = find_pc_section (pc);
93 && s->the_bfd_section->name != NULL
94 && strcmp (s->the_bfd_section->name, ".opd") == 0);
98 /* Return one if PC is in the call path of a trampoline, else return zero.
100 Note we return one for *any* call trampoline (long-call, arg-reloc), not
101 just shared library trampolines (import, export). */
104 hppa32_hpux_in_solib_call_trampoline (CORE_ADDR pc, char *name)
106 struct minimal_symbol *minsym;
107 struct unwind_table_entry *u;
109 /* First see if PC is in one of the two C-library trampolines. */
110 if (pc == hppa_symbol_address("$$dyncall")
111 || pc == hppa_symbol_address("_sr4export"))
114 minsym = lookup_minimal_symbol_by_pc (pc);
115 if (minsym && strcmp (DEPRECATED_SYMBOL_NAME (minsym), ".stub") == 0)
118 /* Get the unwind descriptor corresponding to PC, return zero
119 if no unwind was found. */
120 u = find_unwind_entry (pc);
124 /* If this isn't a linker stub, then return now. */
125 if (u->stub_unwind.stub_type == 0)
128 /* By definition a long-branch stub is a call stub. */
129 if (u->stub_unwind.stub_type == LONG_BRANCH)
132 /* The call and return path execute the same instructions within
133 an IMPORT stub! So an IMPORT stub is both a call and return
135 if (u->stub_unwind.stub_type == IMPORT)
138 /* Parameter relocation stubs always have a call path and may have a
140 if (u->stub_unwind.stub_type == PARAMETER_RELOCATION
141 || u->stub_unwind.stub_type == EXPORT)
145 /* Search forward from the current PC until we hit a branch
146 or the end of the stub. */
147 for (addr = pc; addr <= u->region_end; addr += 4)
151 insn = read_memory_integer (addr, 4);
153 /* Does it look like a bl? If so then it's the call path, if
154 we find a bv or be first, then we're on the return path. */
155 if ((insn & 0xfc00e000) == 0xe8000000)
157 else if ((insn & 0xfc00e001) == 0xe800c000
158 || (insn & 0xfc000000) == 0xe0000000)
162 /* Should never happen. */
163 warning (_("Unable to find branch in parameter relocation stub."));
167 /* Unknown stub type. For now, just return zero. */
172 hppa64_hpux_in_solib_call_trampoline (CORE_ADDR pc, char *name)
174 /* PA64 has a completely different stub/trampoline scheme. Is it
175 better? Maybe. It's certainly harder to determine with any
176 certainty that we are in a stub because we can not refer to the
179 The heuristic is simple. Try to lookup the current PC value in th
180 minimal symbol table. If that fails, then assume we are not in a
183 Then see if the PC value falls within the section bounds for the
184 section containing the minimal symbol we found in the first
185 step. If it does, then assume we are not in a stub and return.
187 Finally peek at the instructions to see if they look like a stub. */
188 struct minimal_symbol *minsym;
193 minsym = lookup_minimal_symbol_by_pc (pc);
197 sec = SYMBOL_BFD_SECTION (minsym);
199 if (bfd_get_section_vma (sec->owner, sec) <= pc
200 && pc < (bfd_get_section_vma (sec->owner, sec)
201 + bfd_section_size (sec->owner, sec)))
204 /* We might be in a stub. Peek at the instructions. Stubs are 3
205 instructions long. */
206 insn = read_memory_integer (pc, 4);
208 /* Find out where we think we are within the stub. */
209 if ((insn & 0xffffc00e) == 0x53610000)
211 else if ((insn & 0xffffffff) == 0xe820d000)
213 else if ((insn & 0xffffc00e) == 0x537b0000)
218 /* Now verify each insn in the range looks like a stub instruction. */
219 insn = read_memory_integer (addr, 4);
220 if ((insn & 0xffffc00e) != 0x53610000)
223 /* Now verify each insn in the range looks like a stub instruction. */
224 insn = read_memory_integer (addr + 4, 4);
225 if ((insn & 0xffffffff) != 0xe820d000)
228 /* Now verify each insn in the range looks like a stub instruction. */
229 insn = read_memory_integer (addr + 8, 4);
230 if ((insn & 0xffffc00e) != 0x537b0000)
233 /* Looks like a stub. */
237 /* Return one if PC is in the return path of a trampoline, else return zero.
239 Note we return one for *any* call trampoline (long-call, arg-reloc), not
240 just shared library trampolines (import, export). */
243 hppa_hpux_in_solib_return_trampoline (CORE_ADDR pc, char *name)
245 struct unwind_table_entry *u;
247 /* Get the unwind descriptor corresponding to PC, return zero
248 if no unwind was found. */
249 u = find_unwind_entry (pc);
253 /* If this isn't a linker stub or it's just a long branch stub, then
255 if (u->stub_unwind.stub_type == 0 || u->stub_unwind.stub_type == LONG_BRANCH)
258 /* The call and return path execute the same instructions within
259 an IMPORT stub! So an IMPORT stub is both a call and return
261 if (u->stub_unwind.stub_type == IMPORT)
264 /* Parameter relocation stubs always have a call path and may have a
266 if (u->stub_unwind.stub_type == PARAMETER_RELOCATION
267 || u->stub_unwind.stub_type == EXPORT)
271 /* Search forward from the current PC until we hit a branch
272 or the end of the stub. */
273 for (addr = pc; addr <= u->region_end; addr += 4)
277 insn = read_memory_integer (addr, 4);
279 /* Does it look like a bl? If so then it's the call path, if
280 we find a bv or be first, then we're on the return path. */
281 if ((insn & 0xfc00e000) == 0xe8000000)
283 else if ((insn & 0xfc00e001) == 0xe800c000
284 || (insn & 0xfc000000) == 0xe0000000)
288 /* Should never happen. */
289 warning (_("Unable to find branch in parameter relocation stub."));
293 /* Unknown stub type. For now, just return zero. */
298 /* Figure out if PC is in a trampoline, and if so find out where
299 the trampoline will jump to. If not in a trampoline, return zero.
301 Simple code examination probably is not a good idea since the code
302 sequences in trampolines can also appear in user code.
304 We use unwinds and information from the minimal symbol table to
305 determine when we're in a trampoline. This won't work for ELF
306 (yet) since it doesn't create stub unwind entries. Whether or
307 not ELF will create stub unwinds or normal unwinds for linker
308 stubs is still being debated.
310 This should handle simple calls through dyncall or sr4export,
311 long calls, argument relocation stubs, and dyncall/sr4export
312 calling an argument relocation stub. It even handles some stubs
313 used in dynamic executables. */
316 hppa_hpux_skip_trampoline_code (CORE_ADDR pc)
319 long prev_inst, curr_inst, loc;
320 struct minimal_symbol *msym;
321 struct unwind_table_entry *u;
323 /* Addresses passed to dyncall may *NOT* be the actual address
324 of the function. So we may have to do something special. */
325 if (pc == hppa_symbol_address("$$dyncall"))
327 pc = (CORE_ADDR) read_register (22);
329 /* If bit 30 (counting from the left) is on, then pc is the address of
330 the PLT entry for this function, not the address of the function
331 itself. Bit 31 has meaning too, but only for MPE. */
333 pc = (CORE_ADDR) read_memory_integer (pc & ~0x3, TARGET_PTR_BIT / 8);
335 if (pc == hppa_symbol_address("$$dyncall_external"))
337 pc = (CORE_ADDR) read_register (22);
338 pc = (CORE_ADDR) read_memory_integer (pc & ~0x3, TARGET_PTR_BIT / 8);
340 else if (pc == hppa_symbol_address("_sr4export"))
341 pc = (CORE_ADDR) (read_register (22));
343 /* Get the unwind descriptor corresponding to PC, return zero
344 if no unwind was found. */
345 u = find_unwind_entry (pc);
349 /* If this isn't a linker stub, then return now. */
350 /* elz: attention here! (FIXME) because of a compiler/linker
351 error, some stubs which should have a non zero stub_unwind.stub_type
352 have unfortunately a value of zero. So this function would return here
353 as if we were not in a trampoline. To fix this, we go look at the partial
354 symbol information, which reports this guy as a stub.
355 (FIXME): Unfortunately, we are not that lucky: it turns out that the
356 partial symbol information is also wrong sometimes. This is because
357 when it is entered (somread.c::som_symtab_read()) it can happen that
358 if the type of the symbol (from the som) is Entry, and the symbol is
359 in a shared library, then it can also be a trampoline. This would
360 be OK, except that I believe the way they decide if we are ina shared library
361 does not work. SOOOO..., even if we have a regular function w/o trampolines
362 its minimal symbol can be assigned type mst_solib_trampoline.
363 Also, if we find that the symbol is a real stub, then we fix the unwind
364 descriptor, and define the stub type to be EXPORT.
365 Hopefully this is correct most of the times. */
366 if (u->stub_unwind.stub_type == 0)
369 /* elz: NOTE (FIXME!) once the problem with the unwind information is fixed
370 we can delete all the code which appears between the lines */
371 /*--------------------------------------------------------------------------*/
372 msym = lookup_minimal_symbol_by_pc (pc);
374 if (msym == NULL || MSYMBOL_TYPE (msym) != mst_solib_trampoline)
375 return orig_pc == pc ? 0 : pc & ~0x3;
377 else if (msym != NULL && MSYMBOL_TYPE (msym) == mst_solib_trampoline)
379 struct objfile *objfile;
380 struct minimal_symbol *msymbol;
381 int function_found = 0;
383 /* go look if there is another minimal symbol with the same name as
384 this one, but with type mst_text. This would happen if the msym
385 is an actual trampoline, in which case there would be another
386 symbol with the same name corresponding to the real function */
388 ALL_MSYMBOLS (objfile, msymbol)
390 if (MSYMBOL_TYPE (msymbol) == mst_text
391 && DEPRECATED_STREQ (DEPRECATED_SYMBOL_NAME (msymbol), DEPRECATED_SYMBOL_NAME (msym)))
399 /* the type of msym is correct (mst_solib_trampoline), but
400 the unwind info is wrong, so set it to the correct value */
401 u->stub_unwind.stub_type = EXPORT;
403 /* the stub type info in the unwind is correct (this is not a
404 trampoline), but the msym type information is wrong, it
405 should be mst_text. So we need to fix the msym, and also
406 get out of this function */
408 MSYMBOL_TYPE (msym) = mst_text;
409 return orig_pc == pc ? 0 : pc & ~0x3;
413 /*--------------------------------------------------------------------------*/
416 /* It's a stub. Search for a branch and figure out where it goes.
417 Note we have to handle multi insn branch sequences like ldil;ble.
418 Most (all?) other branches can be determined by examining the contents
419 of certain registers and the stack. */
426 /* Make sure we haven't walked outside the range of this stub. */
427 if (u != find_unwind_entry (loc))
429 warning (_("Unable to find branch in linker stub"));
430 return orig_pc == pc ? 0 : pc & ~0x3;
433 prev_inst = curr_inst;
434 curr_inst = read_memory_integer (loc, 4);
436 /* Does it look like a branch external using %r1? Then it's the
437 branch from the stub to the actual function. */
438 if ((curr_inst & 0xffe0e000) == 0xe0202000)
440 /* Yup. See if the previous instruction loaded
441 a value into %r1. If so compute and return the jump address. */
442 if ((prev_inst & 0xffe00000) == 0x20200000)
443 return (hppa_extract_21 (prev_inst) + hppa_extract_17 (curr_inst)) & ~0x3;
446 warning (_("Unable to find ldil X,%%r1 before ble Y(%%sr4,%%r1)."));
447 return orig_pc == pc ? 0 : pc & ~0x3;
451 /* Does it look like a be 0(sr0,%r21)? OR
452 Does it look like a be, n 0(sr0,%r21)? OR
453 Does it look like a bve (r21)? (this is on PA2.0)
454 Does it look like a bve, n(r21)? (this is also on PA2.0)
455 That's the branch from an
456 import stub to an export stub.
458 It is impossible to determine the target of the branch via
459 simple examination of instructions and/or data (consider
460 that the address in the plabel may be the address of the
461 bind-on-reference routine in the dynamic loader).
463 So we have try an alternative approach.
465 Get the name of the symbol at our current location; it should
466 be a stub symbol with the same name as the symbol in the
469 Then lookup a minimal symbol with the same name; we should
470 get the minimal symbol for the target routine in the shared
471 library as those take precedence of import/export stubs. */
472 if ((curr_inst == 0xe2a00000) ||
473 (curr_inst == 0xe2a00002) ||
474 (curr_inst == 0xeaa0d000) ||
475 (curr_inst == 0xeaa0d002))
477 struct minimal_symbol *stubsym, *libsym;
479 stubsym = lookup_minimal_symbol_by_pc (loc);
482 warning (_("Unable to find symbol for 0x%lx"), loc);
483 return orig_pc == pc ? 0 : pc & ~0x3;
486 libsym = lookup_minimal_symbol (DEPRECATED_SYMBOL_NAME (stubsym), NULL, NULL);
489 warning (_("Unable to find library symbol for %s."),
490 DEPRECATED_SYMBOL_NAME (stubsym));
491 return orig_pc == pc ? 0 : pc & ~0x3;
494 return SYMBOL_VALUE (libsym);
497 /* Does it look like bl X,%rp or bl X,%r0? Another way to do a
498 branch from the stub to the actual function. */
500 else if ((curr_inst & 0xffe0e000) == 0xe8400000
501 || (curr_inst & 0xffe0e000) == 0xe8000000
502 || (curr_inst & 0xffe0e000) == 0xe800A000)
503 return (loc + hppa_extract_17 (curr_inst) + 8) & ~0x3;
505 /* Does it look like bv (rp)? Note this depends on the
506 current stack pointer being the same as the stack
507 pointer in the stub itself! This is a branch on from the
508 stub back to the original caller. */
509 /*else if ((curr_inst & 0xffe0e000) == 0xe840c000) */
510 else if ((curr_inst & 0xffe0f000) == 0xe840c000)
512 /* Yup. See if the previous instruction loaded
514 if (prev_inst == 0x4bc23ff1)
515 return (read_memory_integer
516 (read_register (HPPA_SP_REGNUM) - 8, 4)) & ~0x3;
519 warning (_("Unable to find restore of %%rp before bv (%%rp)."));
520 return orig_pc == pc ? 0 : pc & ~0x3;
524 /* elz: added this case to capture the new instruction
525 at the end of the return part of an export stub used by
526 the PA2.0: BVE, n (rp) */
527 else if ((curr_inst & 0xffe0f000) == 0xe840d000)
529 return (read_memory_integer
530 (read_register (HPPA_SP_REGNUM) - 24, TARGET_PTR_BIT / 8)) & ~0x3;
533 /* What about be,n 0(sr0,%rp)? It's just another way we return to
534 the original caller from the stub. Used in dynamic executables. */
535 else if (curr_inst == 0xe0400002)
537 /* The value we jump to is sitting in sp - 24. But that's
538 loaded several instructions before the be instruction.
539 I guess we could check for the previous instruction being
540 mtsp %r1,%sr0 if we want to do sanity checking. */
541 return (read_memory_integer
542 (read_register (HPPA_SP_REGNUM) - 24, TARGET_PTR_BIT / 8)) & ~0x3;
545 /* Haven't found the branch yet, but we're still in the stub.
552 hppa_skip_permanent_breakpoint (void)
554 /* To step over a breakpoint instruction on the PA takes some
555 fiddling with the instruction address queue.
557 When we stop at a breakpoint, the IA queue front (the instruction
558 we're executing now) points at the breakpoint instruction, and
559 the IA queue back (the next instruction to execute) points to
560 whatever instruction we would execute after the breakpoint, if it
561 were an ordinary instruction. This is the case even if the
562 breakpoint is in the delay slot of a branch instruction.
564 Clearly, to step past the breakpoint, we need to set the queue
565 front to the back. But what do we put in the back? What
566 instruction comes after that one? Because of the branch delay
567 slot, the next insn is always at the back + 4. */
568 write_register (HPPA_PCOQ_HEAD_REGNUM, read_register (HPPA_PCOQ_TAIL_REGNUM));
569 write_register (HPPA_PCSQ_HEAD_REGNUM, read_register (HPPA_PCSQ_TAIL_REGNUM));
571 write_register (HPPA_PCOQ_TAIL_REGNUM, read_register (HPPA_PCOQ_TAIL_REGNUM) + 4);
572 /* We can leave the tail's space the same, since there's no jump. */
575 /* Exception handling support for the HP-UX ANSI C++ compiler.
576 The compiler (aCC) provides a callback for exception events;
577 GDB can set a breakpoint on this callback and find out what
578 exception event has occurred. */
580 /* The name of the hook to be set to point to the callback function. */
581 static char HP_ACC_EH_notify_hook[] = "__eh_notify_hook";
582 /* The name of the function to be used to set the hook value. */
583 static char HP_ACC_EH_set_hook_value[] = "__eh_set_hook_value";
584 /* The name of the callback function in end.o */
585 static char HP_ACC_EH_notify_callback[] = "__d_eh_notify_callback";
586 /* Name of function in end.o on which a break is set (called by above). */
587 static char HP_ACC_EH_break[] = "__d_eh_break";
588 /* Name of flag (in end.o) that enables catching throws. */
589 static char HP_ACC_EH_catch_throw[] = "__d_eh_catch_throw";
590 /* Name of flag (in end.o) that enables catching catching. */
591 static char HP_ACC_EH_catch_catch[] = "__d_eh_catch_catch";
592 /* The enum used by aCC. */
600 /* Is exception-handling support available with this executable? */
601 static int hp_cxx_exception_support = 0;
602 /* Has the initialize function been run? */
603 static int hp_cxx_exception_support_initialized = 0;
604 /* Address of __eh_notify_hook */
605 static CORE_ADDR eh_notify_hook_addr = 0;
606 /* Address of __d_eh_notify_callback */
607 static CORE_ADDR eh_notify_callback_addr = 0;
608 /* Address of __d_eh_break */
609 static CORE_ADDR eh_break_addr = 0;
610 /* Address of __d_eh_catch_catch */
611 static CORE_ADDR eh_catch_catch_addr = 0;
612 /* Address of __d_eh_catch_throw */
613 static CORE_ADDR eh_catch_throw_addr = 0;
614 /* Sal for __d_eh_break */
615 static struct symtab_and_line *break_callback_sal = 0;
617 /* Code in end.c expects __d_pid to be set in the inferior,
618 otherwise __d_eh_notify_callback doesn't bother to call
619 __d_eh_break! So we poke the pid into this symbol
624 setup_d_pid_in_inferior (void)
627 struct minimal_symbol *msymbol;
628 char buf[4]; /* FIXME 32x64? */
630 /* Slam the pid of the process into __d_pid; failing is only a warning! */
631 msymbol = lookup_minimal_symbol ("__d_pid", NULL, symfile_objfile);
634 warning (_("Unable to find __d_pid symbol in object file.\n"
635 "Suggest linking executable with -g (links in /opt/langtools/lib/end.o)."));
639 anaddr = SYMBOL_VALUE_ADDRESS (msymbol);
640 store_unsigned_integer (buf, 4, PIDGET (inferior_ptid)); /* FIXME 32x64? */
641 if (target_write_memory (anaddr, buf, 4)) /* FIXME 32x64? */
643 warning (_("Unable to write __d_pid.\n"
644 "Suggest linking executable with -g (links in /opt/langtools/lib/end.o)."));
650 /* elz: Used to lookup a symbol in the shared libraries.
651 This function calls shl_findsym, indirectly through a
652 call to __d_shl_get. __d_shl_get is in end.c, which is always
653 linked in by the hp compilers/linkers.
654 The call to shl_findsym cannot be made directly because it needs
655 to be active in target address space.
656 inputs: - minimal symbol pointer for the function we want to look up
657 - address in target space of the descriptor for the library
658 where we want to look the symbol up.
659 This address is retrieved using the
660 som_solib_get_solib_by_pc function (somsolib.c).
661 output: - real address in the library of the function.
662 note: the handle can be null, in which case shl_findsym will look for
663 the symbol in all the loaded shared libraries.
664 files to look at if you need reference on this stuff:
665 dld.c, dld_shl_findsym.c
667 man entry for shl_findsym */
670 find_stub_with_shl_get (struct minimal_symbol *function, CORE_ADDR handle)
672 struct symbol *get_sym, *symbol2;
673 struct minimal_symbol *buff_minsym, *msymbol;
676 struct value *funcval;
679 int x, namelen, err_value, tmp = -1;
680 CORE_ADDR endo_buff_addr, value_return_addr, errno_return_addr;
684 args = alloca (sizeof (struct value *) * 8); /* 6 for the arguments and one null one??? */
685 funcval = find_function_in_inferior ("__d_shl_get");
686 get_sym = lookup_symbol ("__d_shl_get", NULL, VAR_DOMAIN, NULL, NULL);
687 buff_minsym = lookup_minimal_symbol ("__buffer", NULL, NULL);
688 msymbol = lookup_minimal_symbol ("__shldp", NULL, NULL);
689 symbol2 = lookup_symbol ("__shldp", NULL, VAR_DOMAIN, NULL, NULL);
690 endo_buff_addr = SYMBOL_VALUE_ADDRESS (buff_minsym);
691 namelen = strlen (DEPRECATED_SYMBOL_NAME (function));
692 value_return_addr = endo_buff_addr + namelen;
693 ftype = check_typedef (SYMBOL_TYPE (get_sym));
696 if ((x = value_return_addr % 64) != 0)
697 value_return_addr = value_return_addr + 64 - x;
699 errno_return_addr = value_return_addr + 64;
702 /* set up stuff needed by __d_shl_get in buffer in end.o */
704 target_write_memory (endo_buff_addr, DEPRECATED_SYMBOL_NAME (function), namelen);
706 target_write_memory (value_return_addr, (char *) &tmp, 4);
708 target_write_memory (errno_return_addr, (char *) &tmp, 4);
710 target_write_memory (SYMBOL_VALUE_ADDRESS (msymbol),
711 (char *) &handle, 4);
713 /* now prepare the arguments for the call */
715 args[0] = value_from_longest (TYPE_FIELD_TYPE (ftype, 0), 12);
716 args[1] = value_from_pointer (TYPE_FIELD_TYPE (ftype, 1), SYMBOL_VALUE_ADDRESS (msymbol));
717 args[2] = value_from_pointer (TYPE_FIELD_TYPE (ftype, 2), endo_buff_addr);
718 args[3] = value_from_longest (TYPE_FIELD_TYPE (ftype, 3), TYPE_PROCEDURE);
719 args[4] = value_from_pointer (TYPE_FIELD_TYPE (ftype, 4), value_return_addr);
720 args[5] = value_from_pointer (TYPE_FIELD_TYPE (ftype, 5), errno_return_addr);
722 /* now call the function */
724 val = call_function_by_hand (funcval, 6, args);
726 /* now get the results */
728 target_read_memory (errno_return_addr, (char *) &err_value, sizeof (err_value));
730 target_read_memory (value_return_addr, (char *) &stub_addr, sizeof (stub_addr));
732 error (_("call to __d_shl_get failed, error code is %d"), err_value);
737 /* Cover routine for find_stub_with_shl_get to pass to catch_errors */
739 cover_find_stub_with_shl_get (void *args_untyped)
741 args_for_find_stub *args = args_untyped;
742 args->return_val = find_stub_with_shl_get (args->msym, args->solib_handle);
746 /* Initialize exception catchpoint support by looking for the
747 necessary hooks/callbacks in end.o, etc., and set the hook value
748 to point to the required debug function.
754 initialize_hp_cxx_exception_support (void)
756 struct symtabs_and_lines sals;
757 struct cleanup *old_chain;
758 struct cleanup *canonical_strings_chain = NULL;
761 char *addr_end = NULL;
762 char **canonical = (char **) NULL;
764 struct symbol *sym = NULL;
765 struct minimal_symbol *msym = NULL;
766 struct objfile *objfile;
767 asection *shlib_info;
769 /* Detect and disallow recursion. On HP-UX with aCC, infinite
770 recursion is a possibility because finding the hook for exception
771 callbacks involves making a call in the inferior, which means
772 re-inserting breakpoints which can re-invoke this code. */
774 static int recurse = 0;
777 hp_cxx_exception_support_initialized = 0;
778 deprecated_exception_support_initialized = 0;
782 hp_cxx_exception_support = 0;
784 /* First check if we have seen any HP compiled objects; if not,
785 it is very unlikely that HP's idiosyncratic callback mechanism
786 for exception handling debug support will be available!
787 This will percolate back up to breakpoint.c, where our callers
788 will decide to try the g++ exception-handling support instead. */
789 if (!deprecated_hp_som_som_object_present)
792 /* We have a SOM executable with SOM debug info; find the hooks. */
794 /* First look for the notify hook provided by aCC runtime libs */
795 /* If we find this symbol, we conclude that the executable must
796 have HP aCC exception support built in. If this symbol is not
797 found, even though we're a HP SOM-SOM file, we may have been
798 built with some other compiler (not aCC). This results percolates
799 back up to our callers in breakpoint.c which can decide to
800 try the g++ style of exception support instead.
801 If this symbol is found but the other symbols we require are
802 not found, there is something weird going on, and g++ support
803 should *not* be tried as an alternative.
805 ASSUMPTION: Only HP aCC code will have __eh_notify_hook defined.
806 ASSUMPTION: HP aCC and g++ modules cannot be linked together. */
808 /* libCsup has this hook; it'll usually be non-debuggable */
809 msym = lookup_minimal_symbol (HP_ACC_EH_notify_hook, NULL, NULL);
812 eh_notify_hook_addr = SYMBOL_VALUE_ADDRESS (msym);
813 hp_cxx_exception_support = 1;
818 Unable to find exception callback hook (%s).\n\
819 Executable may not have been compiled debuggable with HP aCC.\n\
820 GDB will be unable to intercept exception events."),
821 HP_ACC_EH_notify_hook);
822 eh_notify_hook_addr = 0;
823 hp_cxx_exception_support = 0;
827 /* Next look for the notify callback routine in end.o */
828 /* This is always available in the SOM symbol dictionary if end.o is
830 msym = lookup_minimal_symbol (HP_ACC_EH_notify_callback, NULL, NULL);
833 eh_notify_callback_addr = SYMBOL_VALUE_ADDRESS (msym);
834 hp_cxx_exception_support = 1;
839 Unable to find exception callback routine (%s).\n\
840 Suggest linking executable with -g (links in /opt/langtools/lib/end.o).\n\
841 GDB will be unable to intercept exception events."),
842 HP_ACC_EH_notify_callback);
843 eh_notify_callback_addr = 0;
847 #ifndef GDB_TARGET_IS_HPPA_20W
848 /* Check whether the executable is dynamically linked or archive bound */
849 /* With an archive-bound executable we can use the raw addresses we find
850 for the callback function, etc. without modification. For an executable
851 with shared libraries, we have to do more work to find the plabel, which
852 can be the target of a call through $$dyncall from the aCC runtime support
853 library (libCsup) which is linked shared by default by aCC. */
854 /* This test below was copied from somsolib.c/somread.c. It may not be a very
855 reliable one to test that an executable is linked shared. pai/1997-07-18 */
856 shlib_info = bfd_get_section_by_name (symfile_objfile->obfd, "$SHLIB_INFO$");
857 if (shlib_info && (bfd_section_size (symfile_objfile->obfd, shlib_info) != 0))
859 /* The minsym we have has the local code address, but that's not
860 the plabel that can be used by an inter-load-module call. */
861 /* Find solib handle for main image (which has end.o), and use
862 that and the min sym as arguments to __d_shl_get() (which
863 does the equivalent of shl_findsym()) to find the plabel. */
865 args_for_find_stub args;
866 static char message[] = "Error while finding exception callback hook:\n";
868 args.solib_handle = gdbarch_tdep (current_gdbarch)->solib_get_solib_by_pc (eh_notify_callback_addr);
873 catch_errors (cover_find_stub_with_shl_get, &args, message,
875 eh_notify_callback_addr = args.return_val;
878 deprecated_exception_catchpoints_are_fragile = 1;
880 if (!eh_notify_callback_addr)
882 /* We can get here either if there is no plabel in the export list
883 for the main image, or if something strange happened (?) */
885 Couldn't find a plabel (indirect function label) for the exception callback.\n\
886 GDB will not be able to intercept exception events."));
891 deprecated_exception_catchpoints_are_fragile = 0;
894 /* Now, look for the breakpointable routine in end.o */
895 /* This should also be available in the SOM symbol dict. if end.o linked in */
896 msym = lookup_minimal_symbol (HP_ACC_EH_break, NULL, NULL);
899 eh_break_addr = SYMBOL_VALUE_ADDRESS (msym);
900 hp_cxx_exception_support = 1;
905 Unable to find exception callback routine to set breakpoint (%s).\n\
906 Suggest linking executable with -g (link in /opt/langtools/lib/end.o).\n\
907 GDB will be unable to intercept exception events."),
913 /* Next look for the catch enable flag provided in end.o */
914 sym = lookup_symbol (HP_ACC_EH_catch_catch, (struct block *) NULL,
915 VAR_DOMAIN, 0, (struct symtab **) NULL);
916 if (sym) /* sometimes present in debug info */
918 eh_catch_catch_addr = SYMBOL_VALUE_ADDRESS (sym);
919 hp_cxx_exception_support = 1;
922 /* otherwise look in SOM symbol dict. */
924 msym = lookup_minimal_symbol (HP_ACC_EH_catch_catch, NULL, NULL);
927 eh_catch_catch_addr = SYMBOL_VALUE_ADDRESS (msym);
928 hp_cxx_exception_support = 1;
933 Unable to enable interception of exception catches.\n\
934 Executable may not have been compiled debuggable with HP aCC.\n\
935 Suggest linking executable with -g (link in /opt/langtools/lib/end.o)."));
940 /* Next look for the catch enable flag provided end.o */
941 sym = lookup_symbol (HP_ACC_EH_catch_catch, (struct block *) NULL,
942 VAR_DOMAIN, 0, (struct symtab **) NULL);
943 if (sym) /* sometimes present in debug info */
945 eh_catch_throw_addr = SYMBOL_VALUE_ADDRESS (sym);
946 hp_cxx_exception_support = 1;
949 /* otherwise look in SOM symbol dict. */
951 msym = lookup_minimal_symbol (HP_ACC_EH_catch_throw, NULL, NULL);
954 eh_catch_throw_addr = SYMBOL_VALUE_ADDRESS (msym);
955 hp_cxx_exception_support = 1;
960 Unable to enable interception of exception throws.\n\
961 Executable may not have been compiled debuggable with HP aCC.\n\
962 Suggest linking executable with -g (link in /opt/langtools/lib/end.o)."));
968 hp_cxx_exception_support = 2; /* everything worked so far */
969 hp_cxx_exception_support_initialized = 1;
970 deprecated_exception_support_initialized = 1;
975 /* Target operation for enabling or disabling interception of
977 KIND is either EX_EVENT_THROW or EX_EVENT_CATCH
978 ENABLE is either 0 (disable) or 1 (enable).
979 Return value is NULL if no support found;
980 -1 if something went wrong,
981 or a pointer to a symtab/line struct if the breakpointable
982 address was found. */
984 struct symtab_and_line *
985 child_enable_exception_callback (enum exception_event_kind kind, int enable)
989 if (!deprecated_exception_support_initialized
990 || !hp_cxx_exception_support_initialized)
991 if (!initialize_hp_cxx_exception_support ())
994 switch (hp_cxx_exception_support)
997 /* Assuming no HP support at all */
1000 /* HP support should be present, but something went wrong */
1001 return (struct symtab_and_line *) -1; /* yuck! */
1002 /* there may be other cases in the future */
1005 /* Set the EH hook to point to the callback routine. */
1006 store_unsigned_integer (buf, 4, enable ? eh_notify_callback_addr : 0); /* FIXME 32x64 problem */
1007 /* pai: (temp) FIXME should there be a pack operation first? */
1008 if (target_write_memory (eh_notify_hook_addr, buf, 4)) /* FIXME 32x64 problem */
1011 Could not write to target memory for exception event callback.\n\
1012 Interception of exception events may not work."));
1013 return (struct symtab_and_line *) -1;
1017 /* Ensure that __d_pid is set up correctly -- end.c code checks this. :-( */
1018 if (PIDGET (inferior_ptid) > 0)
1020 if (setup_d_pid_in_inferior ())
1021 return (struct symtab_and_line *) -1;
1025 warning (_("Internal error: Invalid inferior pid? Cannot intercept exception events."));
1026 return (struct symtab_and_line *) -1;
1032 case EX_EVENT_THROW:
1033 store_unsigned_integer (buf, 4, enable ? 1 : 0);
1034 if (target_write_memory (eh_catch_throw_addr, buf, 4)) /* FIXME 32x64? */
1036 warning (_("Couldn't enable exception throw interception."));
1037 return (struct symtab_and_line *) -1;
1040 case EX_EVENT_CATCH:
1041 store_unsigned_integer (buf, 4, enable ? 1 : 0);
1042 if (target_write_memory (eh_catch_catch_addr, buf, 4)) /* FIXME 32x64? */
1044 warning (_("Couldn't enable exception catch interception."));
1045 return (struct symtab_and_line *) -1;
1049 error (_("Request to enable unknown or unsupported exception event."));
1052 /* Copy break address into new sal struct, malloc'ing if needed. */
1053 if (!break_callback_sal)
1054 break_callback_sal = XMALLOC (struct symtab_and_line);
1055 init_sal (break_callback_sal);
1056 break_callback_sal->symtab = NULL;
1057 break_callback_sal->pc = eh_break_addr;
1058 break_callback_sal->line = 0;
1059 break_callback_sal->end = eh_break_addr;
1061 return break_callback_sal;
1064 /* Record some information about the current exception event */
1065 static struct exception_event_record current_ex_event;
1066 /* Convenience struct */
1067 static struct symtab_and_line null_symtab_and_line =
1070 /* Report current exception event. Returns a pointer to a record
1071 that describes the kind of the event, where it was thrown from,
1072 and where it will be caught. More information may be reported
1074 struct exception_event_record *
1075 child_get_current_exception_event (void)
1077 CORE_ADDR event_kind;
1078 CORE_ADDR throw_addr;
1079 CORE_ADDR catch_addr;
1080 struct frame_info *fi, *curr_frame;
1083 curr_frame = get_current_frame ();
1085 return (struct exception_event_record *) NULL;
1087 /* Go up one frame to __d_eh_notify_callback, because at the
1088 point when this code is executed, there's garbage in the
1089 arguments of __d_eh_break. */
1090 fi = find_relative_frame (curr_frame, &level);
1092 return (struct exception_event_record *) NULL;
1096 /* Read in the arguments */
1097 /* __d_eh_notify_callback() is called with 3 arguments:
1098 1. event kind catch or throw
1099 2. the target address if known
1100 3. a flag -- not sure what this is. pai/1997-07-17 */
1101 event_kind = read_register (HPPA_ARG0_REGNUM);
1102 catch_addr = read_register (HPPA_ARG1_REGNUM);
1104 /* Now go down to a user frame */
1105 /* For a throw, __d_eh_break is called by
1106 __d_eh_notify_callback which is called by
1107 __notify_throw which is called
1109 For a catch, __d_eh_break is called by
1110 __d_eh_notify_callback which is called by
1111 <stackwalking stuff> which is called by
1112 __throw__<stuff> or __rethrow_<stuff> which is called
1114 /* FIXME: Don't use such magic numbers; search for the frames */
1115 level = (event_kind == EX_EVENT_THROW) ? 3 : 4;
1116 fi = find_relative_frame (curr_frame, &level);
1118 return (struct exception_event_record *) NULL;
1121 throw_addr = get_frame_pc (fi);
1123 /* Go back to original (top) frame */
1124 select_frame (curr_frame);
1126 current_ex_event.kind = (enum exception_event_kind) event_kind;
1127 current_ex_event.throw_sal = find_pc_line (throw_addr, 1);
1128 current_ex_event.catch_sal = find_pc_line (catch_addr, 1);
1130 return ¤t_ex_event;
1133 /* Signal frames. */
1134 struct hppa_hpux_sigtramp_unwind_cache
1137 struct trad_frame_saved_reg *saved_regs;
1140 static int hppa_hpux_tramp_reg[] = {
1142 HPPA_PCOQ_HEAD_REGNUM,
1143 HPPA_PCSQ_HEAD_REGNUM,
1144 HPPA_PCOQ_TAIL_REGNUM,
1145 HPPA_PCSQ_TAIL_REGNUM,
1153 HPPA_SR4_REGNUM + 1,
1154 HPPA_SR4_REGNUM + 2,
1155 HPPA_SR4_REGNUM + 3,
1156 HPPA_SR4_REGNUM + 4,
1157 HPPA_SR4_REGNUM + 5,
1158 HPPA_SR4_REGNUM + 6,
1159 HPPA_SR4_REGNUM + 7,
1167 HPPA_TR0_REGNUM + 1,
1168 HPPA_TR0_REGNUM + 2,
1172 static struct hppa_hpux_sigtramp_unwind_cache *
1173 hppa_hpux_sigtramp_frame_unwind_cache (struct frame_info *next_frame,
1177 struct gdbarch *gdbarch = get_frame_arch (next_frame);
1178 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1179 struct hppa_hpux_sigtramp_unwind_cache *info;
1181 CORE_ADDR sp, scptr, off;
1187 info = FRAME_OBSTACK_ZALLOC (struct hppa_hpux_sigtramp_unwind_cache);
1189 info->saved_regs = trad_frame_alloc_saved_regs (next_frame);
1191 sp = frame_unwind_register_unsigned (next_frame, HPPA_SP_REGNUM);
1193 if (IS_32BIT_TARGET (gdbarch))
1200 /* See /usr/include/machine/save_state.h for the structure of the save_state_t
1203 flag = read_memory_unsigned_integer(scptr + HPPA_HPUX_SS_FLAGS_OFFSET, 4);
1205 if (!(flag & HPPA_HPUX_SS_WIDEREGS))
1207 /* Narrow registers. */
1208 off = scptr + HPPA_HPUX_SS_NARROW_OFFSET;
1214 /* Wide registers. */
1215 off = scptr + HPPA_HPUX_SS_WIDE_OFFSET + 8;
1217 szoff = (tdep->bytes_per_address == 4 ? 4 : 0);
1220 for (i = 1; i < 32; i++)
1222 info->saved_regs[HPPA_R0_REGNUM + i].addr = off + szoff;
1226 for (i = 0; i < ARRAY_SIZE (hppa_hpux_tramp_reg); i++)
1228 if (hppa_hpux_tramp_reg[i] > 0)
1229 info->saved_regs[hppa_hpux_tramp_reg[i]].addr = off + szoff;
1236 info->base = frame_unwind_register_unsigned (next_frame, HPPA_SP_REGNUM);
1242 hppa_hpux_sigtramp_frame_this_id (struct frame_info *next_frame,
1243 void **this_prologue_cache,
1244 struct frame_id *this_id)
1246 struct hppa_hpux_sigtramp_unwind_cache *info
1247 = hppa_hpux_sigtramp_frame_unwind_cache (next_frame, this_prologue_cache);
1248 *this_id = frame_id_build (info->base, frame_pc_unwind (next_frame));
1252 hppa_hpux_sigtramp_frame_prev_register (struct frame_info *next_frame,
1253 void **this_prologue_cache,
1254 int regnum, int *optimizedp,
1255 enum lval_type *lvalp,
1257 int *realnump, gdb_byte *valuep)
1259 struct hppa_hpux_sigtramp_unwind_cache *info
1260 = hppa_hpux_sigtramp_frame_unwind_cache (next_frame, this_prologue_cache);
1261 hppa_frame_prev_register_helper (next_frame, info->saved_regs, regnum,
1262 optimizedp, lvalp, addrp, realnump, valuep);
1265 static const struct frame_unwind hppa_hpux_sigtramp_frame_unwind = {
1267 hppa_hpux_sigtramp_frame_this_id,
1268 hppa_hpux_sigtramp_frame_prev_register
1271 static const struct frame_unwind *
1272 hppa_hpux_sigtramp_unwind_sniffer (struct frame_info *next_frame)
1274 struct unwind_table_entry *u;
1275 CORE_ADDR pc = frame_pc_unwind (next_frame);
1277 u = find_unwind_entry (pc);
1279 /* If this is an export stub, try to get the unwind descriptor for
1280 the actual function itself. */
1281 if (u && u->stub_unwind.stub_type == EXPORT)
1283 gdb_byte buf[HPPA_INSN_SIZE];
1286 if (!safe_frame_unwind_memory (next_frame, u->region_start,
1290 insn = extract_unsigned_integer (buf, sizeof buf);
1291 if ((insn & 0xffe0e000) == 0xe8400000)
1292 u = find_unwind_entry(u->region_start + hppa_extract_17 (insn) + 8);
1295 if (u && u->HP_UX_interrupt_marker)
1296 return &hppa_hpux_sigtramp_frame_unwind;
1302 hppa32_hpux_find_global_pointer (struct value *function)
1306 faddr = value_as_address (function);
1308 /* Is this a plabel? If so, dereference it to get the gp value. */
1316 status = target_read_memory (faddr + 4, buf, sizeof (buf));
1318 return extract_unsigned_integer (buf, sizeof (buf));
1321 return gdbarch_tdep (current_gdbarch)->solib_get_got_by_pc (faddr);
1325 hppa64_hpux_find_global_pointer (struct value *function)
1330 faddr = value_as_address (function);
1332 if (in_opd_section (faddr))
1334 target_read_memory (faddr, buf, sizeof (buf));
1335 return extract_unsigned_integer (&buf[24], 8);
1339 return gdbarch_tdep (current_gdbarch)->solib_get_got_by_pc (faddr);
1343 static unsigned int ldsid_pattern[] = {
1344 0x000010a0, /* ldsid (rX),rY */
1345 0x00001820, /* mtsp rY,sr0 */
1346 0xe0000000 /* be,n (sr0,rX) */
1350 hppa_hpux_search_pattern (CORE_ADDR start, CORE_ADDR end,
1351 unsigned int *patterns, int count)
1353 int num_insns = (end - start + HPPA_INSN_SIZE) / HPPA_INSN_SIZE;
1354 unsigned int *insns;
1358 buf = alloca (num_insns * HPPA_INSN_SIZE);
1359 insns = alloca (num_insns * sizeof (unsigned int));
1361 read_memory (start, buf, num_insns * HPPA_INSN_SIZE);
1362 for (i = 0; i < num_insns; i++, buf += HPPA_INSN_SIZE)
1363 insns[i] = extract_unsigned_integer (buf, HPPA_INSN_SIZE);
1365 for (offset = 0; offset <= num_insns - count; offset++)
1367 for (i = 0; i < count; i++)
1369 if ((insns[offset + i] & patterns[i]) != patterns[i])
1376 if (offset <= num_insns - count)
1377 return start + offset * HPPA_INSN_SIZE;
1383 hppa32_hpux_search_dummy_call_sequence (struct gdbarch *gdbarch, CORE_ADDR pc,
1386 struct objfile *obj;
1387 struct obj_section *sec;
1388 struct hppa_objfile_private *priv;
1389 struct frame_info *frame;
1390 struct unwind_table_entry *u;
1395 sec = find_pc_section (pc);
1397 priv = objfile_data (obj, hppa_objfile_priv_data);
1400 priv = hppa_init_objfile_priv_data (obj);
1402 error (_("Internal error creating objfile private data."));
1404 /* Use the cached value if we have one. */
1405 if (priv->dummy_call_sequence_addr != 0)
1407 *argreg = priv->dummy_call_sequence_reg;
1408 return priv->dummy_call_sequence_addr;
1411 /* First try a heuristic; if we are in a shared library call, our return
1412 pointer is likely to point at an export stub. */
1413 frame = get_current_frame ();
1414 rp = frame_unwind_register_unsigned (frame, 2);
1415 u = find_unwind_entry (rp);
1416 if (u && u->stub_unwind.stub_type == EXPORT)
1418 addr = hppa_hpux_search_pattern (u->region_start, u->region_end,
1420 ARRAY_SIZE (ldsid_pattern));
1425 /* Next thing to try is to look for an export stub. */
1426 if (priv->unwind_info)
1430 for (i = 0; i < priv->unwind_info->last; i++)
1432 struct unwind_table_entry *u;
1433 u = &priv->unwind_info->table[i];
1434 if (u->stub_unwind.stub_type == EXPORT)
1436 addr = hppa_hpux_search_pattern (u->region_start, u->region_end,
1438 ARRAY_SIZE (ldsid_pattern));
1447 /* Finally, if this is the main executable, try to locate a sequence
1449 addr = hppa_symbol_address ("noshlibs");
1450 sec = find_pc_section (addr);
1452 if (sec && sec->objfile == obj)
1454 CORE_ADDR start, end;
1456 find_pc_partial_function (addr, NULL, &start, &end);
1457 if (start != 0 && end != 0)
1459 addr = hppa_hpux_search_pattern (start, end, ldsid_pattern,
1460 ARRAY_SIZE (ldsid_pattern));
1466 /* Can't find a suitable sequence. */
1470 target_read_memory (addr, buf, sizeof (buf));
1471 insn = extract_unsigned_integer (buf, sizeof (buf));
1472 priv->dummy_call_sequence_addr = addr;
1473 priv->dummy_call_sequence_reg = (insn >> 21) & 0x1f;
1475 *argreg = priv->dummy_call_sequence_reg;
1476 return priv->dummy_call_sequence_addr;
1480 hppa64_hpux_search_dummy_call_sequence (struct gdbarch *gdbarch, CORE_ADDR pc,
1483 struct objfile *obj;
1484 struct obj_section *sec;
1485 struct hppa_objfile_private *priv;
1487 struct minimal_symbol *msym;
1490 sec = find_pc_section (pc);
1492 priv = objfile_data (obj, hppa_objfile_priv_data);
1495 priv = hppa_init_objfile_priv_data (obj);
1497 error (_("Internal error creating objfile private data."));
1499 /* Use the cached value if we have one. */
1500 if (priv->dummy_call_sequence_addr != 0)
1502 *argreg = priv->dummy_call_sequence_reg;
1503 return priv->dummy_call_sequence_addr;
1506 /* FIXME: Without stub unwind information, locating a suitable sequence is
1507 fairly difficult. For now, we implement a very naive and inefficient
1508 scheme; try to read in blocks of code, and look for a "bve,n (rp)"
1509 instruction. These are likely to occur at the end of functions, so
1510 we only look at the last two instructions of each function. */
1511 for (i = 0, msym = obj->msymbols; i < obj->minimal_symbol_count; i++, msym++)
1513 CORE_ADDR begin, end;
1515 gdb_byte buf[2 * HPPA_INSN_SIZE];
1518 find_pc_partial_function (SYMBOL_VALUE_ADDRESS (msym), &name,
1521 if (name == NULL || begin == 0 || end == 0)
1524 if (target_read_memory (end - sizeof (buf), buf, sizeof (buf)) == 0)
1526 for (offset = 0; offset < sizeof (buf); offset++)
1530 insn = extract_unsigned_integer (buf + offset, HPPA_INSN_SIZE);
1531 if (insn == 0xe840d002) /* bve,n (rp) */
1533 addr = (end - sizeof (buf)) + offset;
1540 /* Can't find a suitable sequence. */
1544 priv->dummy_call_sequence_addr = addr;
1545 /* Right now we only look for a "bve,l (rp)" sequence, so the register is
1546 always HPPA_RP_REGNUM. */
1547 priv->dummy_call_sequence_reg = HPPA_RP_REGNUM;
1549 *argreg = priv->dummy_call_sequence_reg;
1550 return priv->dummy_call_sequence_addr;
1554 hppa_hpux_find_import_stub_for_addr (CORE_ADDR funcaddr)
1556 struct objfile *objfile;
1557 struct minimal_symbol *funsym, *stubsym;
1560 funsym = lookup_minimal_symbol_by_pc (funcaddr);
1563 ALL_OBJFILES (objfile)
1565 stubsym = lookup_minimal_symbol_solib_trampoline
1566 (SYMBOL_LINKAGE_NAME (funsym), objfile);
1570 struct unwind_table_entry *u;
1572 u = find_unwind_entry (SYMBOL_VALUE (stubsym));
1574 || (u->stub_unwind.stub_type != IMPORT
1575 && u->stub_unwind.stub_type != IMPORT_SHLIB))
1578 stubaddr = SYMBOL_VALUE (stubsym);
1580 /* If we found an IMPORT stub, then we can stop searching;
1581 if we found an IMPORT_SHLIB, we want to continue the search
1582 in the hopes that we will find an IMPORT stub. */
1583 if (u->stub_unwind.stub_type == IMPORT)
1592 hppa_hpux_sr_for_addr (CORE_ADDR addr)
1595 /* The space register to use is encoded in the top 2 bits of the address. */
1596 sr = addr >> (gdbarch_tdep (current_gdbarch)->bytes_per_address * 8 - 2);
1601 hppa_hpux_find_dummy_bpaddr (CORE_ADDR addr)
1603 /* In order for us to restore the space register to its starting state,
1604 we need the dummy trampoline to return to the an instruction address in
1605 the same space as where we started the call. We used to place the
1606 breakpoint near the current pc, however, this breaks nested dummy calls
1607 as the nested call will hit the breakpoint address and terminate
1608 prematurely. Instead, we try to look for an address in the same space to
1611 This is similar in spirit to putting the breakpoint at the "entry point"
1612 of an executable. */
1614 struct obj_section *sec;
1615 struct unwind_table_entry *u;
1616 struct minimal_symbol *msym;
1620 sec = find_pc_section (addr);
1623 /* First try the lowest address in the section; we can use it as long
1624 as it is "regular" code (i.e. not a stub) */
1625 u = find_unwind_entry (sec->addr);
1626 if (!u || u->stub_unwind.stub_type == 0)
1629 /* Otherwise, we need to find a symbol for a regular function. We
1630 do this by walking the list of msymbols in the objfile. The symbol
1631 we find should not be the same as the function that was passed in. */
1633 /* FIXME: this is broken, because we can find a function that will be
1634 called by the dummy call target function, which will still not
1637 find_pc_partial_function (addr, NULL, &func, NULL);
1638 for (i = 0, msym = sec->objfile->msymbols;
1639 i < sec->objfile->minimal_symbol_count;
1642 u = find_unwind_entry (SYMBOL_VALUE_ADDRESS (msym));
1643 if (func != SYMBOL_VALUE_ADDRESS (msym)
1644 && (!u || u->stub_unwind.stub_type == 0))
1645 return SYMBOL_VALUE_ADDRESS (msym);
1649 warning (_("Cannot find suitable address to place dummy breakpoint; nested "
1650 "calls may fail."));
1655 hppa_hpux_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp,
1656 CORE_ADDR funcaddr, int using_gcc,
1657 struct value **args, int nargs,
1658 struct type *value_type,
1659 CORE_ADDR *real_pc, CORE_ADDR *bp_addr)
1661 CORE_ADDR pc, stubaddr;
1666 /* Note: we don't want to pass a function descriptor here; push_dummy_call
1667 fills in the PIC register for us. */
1668 funcaddr = gdbarch_convert_from_func_ptr_addr (gdbarch, funcaddr, NULL);
1670 /* The simple case is where we call a function in the same space that we are
1671 currently in; in that case we don't really need to do anything. */
1672 if (hppa_hpux_sr_for_addr (pc) == hppa_hpux_sr_for_addr (funcaddr))
1674 /* Intraspace call. */
1675 *bp_addr = hppa_hpux_find_dummy_bpaddr (pc);
1676 *real_pc = funcaddr;
1677 regcache_cooked_write_unsigned (current_regcache, HPPA_RP_REGNUM, *bp_addr);
1682 /* In order to make an interspace call, we need to go through a stub.
1683 gcc supplies an appropriate stub called "__gcc_plt_call", however, if
1684 an application is compiled with HP compilers then this stub is not
1685 available. We used to fallback to "__d_plt_call", however that stub
1686 is not entirely useful for us because it doesn't do an interspace
1687 return back to the caller. Also, on hppa64-hpux, there is no
1688 __gcc_plt_call available. In order to keep the code uniform, we
1689 instead don't use either of these stubs, but instead write our own
1692 A problem arises since the stack is located in a different space than
1693 code, so in order to branch to a stack stub, we will need to do an
1694 interspace branch. Previous versions of gdb did this by modifying code
1695 at the current pc and doing single-stepping to set the pcsq. Since this
1696 is highly undesirable, we use a different scheme:
1698 All we really need to do the branch to the stub is a short instruction
1709 Instead of writing these sequences ourselves, we can find it in
1710 the instruction stream that belongs to the current space. While this
1711 seems difficult at first, we are actually guaranteed to find the sequences
1715 - in export stubs for shared libraries
1716 - in the "noshlibs" routine in the main module
1719 - at the end of each "regular" function
1721 We cache the address of these sequences in the objfile's private data
1722 since these operations can potentially be quite expensive.
1725 - write a stack trampoline
1726 - look for a suitable instruction sequence in the current space
1727 - point the sequence at the trampoline
1728 - set the return address of the trampoline to the current space
1729 (see hppa_hpux_find_dummy_call_bpaddr)
1730 - set the continuing address of the "dummy code" as the sequence.
1734 if (IS_32BIT_TARGET (gdbarch))
1736 static unsigned int hppa32_tramp[] = {
1737 0x0fdf1291, /* stw r31,-8(,sp) */
1738 0x02c010a1, /* ldsid (,r22),r1 */
1739 0x00011820, /* mtsp r1,sr0 */
1740 0xe6c00000, /* be,l 0(sr0,r22),%sr0,%r31 */
1741 0x081f0242, /* copy r31,rp */
1742 0x0fd11082, /* ldw -8(,sp),rp */
1743 0x004010a1, /* ldsid (,rp),r1 */
1744 0x00011820, /* mtsp r1,sr0 */
1745 0xe0400000, /* be 0(sr0,rp) */
1746 0x08000240 /* nop */
1749 /* for hppa32, we must call the function through a stub so that on
1750 return it can return to the space of our trampoline. */
1751 stubaddr = hppa_hpux_find_import_stub_for_addr (funcaddr);
1753 error (_("Cannot call external function not referenced by application "
1754 "(no import stub).\n"));
1755 regcache_cooked_write_unsigned (current_regcache, 22, stubaddr);
1757 write_memory (sp, (char *)&hppa32_tramp, sizeof (hppa32_tramp));
1759 *bp_addr = hppa_hpux_find_dummy_bpaddr (pc);
1760 regcache_cooked_write_unsigned (current_regcache, 31, *bp_addr);
1762 *real_pc = hppa32_hpux_search_dummy_call_sequence (gdbarch, pc, &argreg);
1764 error (_("Cannot make interspace call from here."));
1766 regcache_cooked_write_unsigned (current_regcache, argreg, sp);
1768 sp += sizeof (hppa32_tramp);
1772 static unsigned int hppa64_tramp[] = {
1773 0xeac0f000, /* bve,l (r22),%r2 */
1774 0x0fdf12d1, /* std r31,-8(,sp) */
1775 0x0fd110c2, /* ldd -8(,sp),rp */
1776 0xe840d002, /* bve,n (rp) */
1777 0x08000240 /* nop */
1780 /* for hppa64, we don't need to call through a stub; all functions
1781 return via a bve. */
1782 regcache_cooked_write_unsigned (current_regcache, 22, funcaddr);
1783 write_memory (sp, (char *)&hppa64_tramp, sizeof (hppa64_tramp));
1786 regcache_cooked_write_unsigned (current_regcache, 31, *bp_addr);
1788 *real_pc = hppa64_hpux_search_dummy_call_sequence (gdbarch, pc, &argreg);
1790 error (_("Cannot make interspace call from here."));
1792 regcache_cooked_write_unsigned (current_regcache, argreg, sp);
1794 sp += sizeof (hppa64_tramp);
1797 sp = gdbarch_frame_align (gdbarch, sp);
1805 hppa_hpux_supply_ss_narrow (struct regcache *regcache,
1806 int regnum, const char *save_state)
1808 const char *ss_narrow = save_state + HPPA_HPUX_SS_NARROW_OFFSET;
1811 for (i = HPPA_R1_REGNUM; i < HPPA_FP0_REGNUM; i++)
1813 if (regnum == i || regnum == -1)
1814 regcache_raw_supply (regcache, i, ss_narrow + offset);
1821 hppa_hpux_supply_ss_fpblock (struct regcache *regcache,
1822 int regnum, const char *save_state)
1824 const char *ss_fpblock = save_state + HPPA_HPUX_SS_FPBLOCK_OFFSET;
1827 /* FIXME: We view the floating-point state as 64 single-precision
1828 registers for 32-bit code, and 32 double-precision register for
1829 64-bit code. This distinction is artificial and should be
1830 eliminated. If that ever happens, we should remove the if-clause
1833 if (register_size (get_regcache_arch (regcache), HPPA_FP0_REGNUM) == 4)
1835 for (i = HPPA_FP0_REGNUM; i < HPPA_FP0_REGNUM + 64; i++)
1837 if (regnum == i || regnum == -1)
1838 regcache_raw_supply (regcache, i, ss_fpblock + offset);
1845 for (i = HPPA_FP0_REGNUM; i < HPPA_FP0_REGNUM + 32; i++)
1847 if (regnum == i || regnum == -1)
1848 regcache_raw_supply (regcache, i, ss_fpblock + offset);
1856 hppa_hpux_supply_ss_wide (struct regcache *regcache,
1857 int regnum, const char *save_state)
1859 const char *ss_wide = save_state + HPPA_HPUX_SS_WIDE_OFFSET;
1862 if (register_size (get_regcache_arch (regcache), HPPA_R1_REGNUM) == 4)
1865 for (i = HPPA_R1_REGNUM; i < HPPA_FP0_REGNUM; i++)
1867 if (regnum == i || regnum == -1)
1868 regcache_raw_supply (regcache, i, ss_wide + offset);
1875 hppa_hpux_supply_save_state (const struct regset *regset,
1876 struct regcache *regcache,
1877 int regnum, const void *regs, size_t len)
1879 const char *proc_info = regs;
1880 const char *save_state = proc_info + 8;
1883 flags = extract_unsigned_integer (save_state + HPPA_HPUX_SS_FLAGS_OFFSET, 4);
1884 if (regnum == -1 || regnum == HPPA_FLAGS_REGNUM)
1886 struct gdbarch *arch = get_regcache_arch (regcache);
1887 size_t size = register_size (arch, HPPA_FLAGS_REGNUM);
1890 store_unsigned_integer (buf, size, flags);
1891 regcache_raw_supply (regcache, HPPA_FLAGS_REGNUM, buf);
1894 /* If the SS_WIDEREGS flag is set, we really do need the full
1895 `struct save_state'. */
1896 if (flags & HPPA_HPUX_SS_WIDEREGS && len < HPPA_HPUX_SAVE_STATE_SIZE)
1897 error (_("Register set contents too small"));
1899 if (flags & HPPA_HPUX_SS_WIDEREGS)
1900 hppa_hpux_supply_ss_wide (regcache, regnum, save_state);
1902 hppa_hpux_supply_ss_narrow (regcache, regnum, save_state);
1904 hppa_hpux_supply_ss_fpblock (regcache, regnum, save_state);
1907 /* HP-UX register set. */
1909 static struct regset hppa_hpux_regset =
1912 hppa_hpux_supply_save_state
1915 static const struct regset *
1916 hppa_hpux_regset_from_core_section (struct gdbarch *gdbarch,
1917 const char *sect_name, size_t sect_size)
1919 if (strcmp (sect_name, ".reg") == 0
1920 && sect_size >= HPPA_HPUX_PA89_SAVE_STATE_SIZE + 8)
1921 return &hppa_hpux_regset;
1927 /* Bit in the `ss_flag' member of `struct save_state' that indicates
1928 the state was saved from a system call. From
1929 <machine/save_state.h>. */
1930 #define HPPA_HPUX_SS_INSYSCALL 0x02
1933 hppa_hpux_read_pc (ptid_t ptid)
1937 /* If we're currently in a system call return the contents of %r31. */
1938 flags = read_register_pid (HPPA_FLAGS_REGNUM, ptid);
1939 if (flags & HPPA_HPUX_SS_INSYSCALL)
1940 return read_register_pid (HPPA_R31_REGNUM, ptid) & ~0x3;
1942 return hppa_read_pc (ptid);
1946 hppa_hpux_write_pc (CORE_ADDR pc, ptid_t ptid)
1950 /* If we're currently in a system call also write PC into %r31. */
1951 flags = read_register_pid (HPPA_FLAGS_REGNUM, ptid);
1952 if (flags & HPPA_HPUX_SS_INSYSCALL)
1953 write_register_pid (HPPA_R31_REGNUM, pc | 0x3, ptid);
1955 return hppa_write_pc (pc, ptid);
1959 hppa_hpux_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
1963 /* If we're currently in a system call return the contents of %r31. */
1964 flags = frame_unwind_register_unsigned (next_frame, HPPA_FLAGS_REGNUM);
1965 if (flags & HPPA_HPUX_SS_INSYSCALL)
1966 return frame_unwind_register_unsigned (next_frame, HPPA_R31_REGNUM) & ~0x3;
1968 return hppa_unwind_pc (gdbarch, next_frame);
1973 hppa_hpux_inferior_created (struct target_ops *objfile, int from_tty)
1975 /* Some HP-UX related globals to clear when a new "main"
1976 symbol file is loaded. HP-specific. */
1977 deprecated_hp_som_som_object_present = 0;
1978 hp_cxx_exception_support_initialized = 0;
1981 /* Given the current value of the pc, check to see if it is inside a stub, and
1982 if so, change the value of the pc to point to the caller of the stub.
1983 NEXT_FRAME is the next frame in the current list of frames.
1984 BASE contains to stack frame base of the current frame.
1985 SAVE_REGS is the register file stored in the frame cache. */
1987 hppa_hpux_unwind_adjust_stub (struct frame_info *next_frame, CORE_ADDR base,
1988 struct trad_frame_saved_reg *saved_regs)
1990 int optimized, realreg;
1991 enum lval_type lval;
1993 char buffer[sizeof(ULONGEST)];
1996 struct unwind_table_entry *u;
1998 trad_frame_get_prev_register (next_frame, saved_regs,
1999 HPPA_PCOQ_HEAD_REGNUM,
2000 &optimized, &lval, &addr, &realreg, buffer);
2001 val = extract_unsigned_integer (buffer,
2002 register_size (get_frame_arch (next_frame),
2003 HPPA_PCOQ_HEAD_REGNUM));
2005 u = find_unwind_entry (val);
2006 if (u && u->stub_unwind.stub_type == EXPORT)
2008 stubpc = read_memory_integer (base - 24, TARGET_PTR_BIT / 8);
2009 trad_frame_set_value (saved_regs, HPPA_PCOQ_HEAD_REGNUM, stubpc);
2011 else if (hppa_symbol_address ("__gcc_plt_call")
2012 == get_pc_function_start (val))
2014 stubpc = read_memory_integer (base - 8, TARGET_PTR_BIT / 8);
2015 trad_frame_set_value (saved_regs, HPPA_PCOQ_HEAD_REGNUM, stubpc);
2020 hppa_hpux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
2022 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2024 if (IS_32BIT_TARGET (gdbarch))
2025 tdep->in_solib_call_trampoline = hppa32_hpux_in_solib_call_trampoline;
2027 tdep->in_solib_call_trampoline = hppa64_hpux_in_solib_call_trampoline;
2029 tdep->unwind_adjust_stub = hppa_hpux_unwind_adjust_stub;
2031 set_gdbarch_in_solib_return_trampoline
2032 (gdbarch, hppa_hpux_in_solib_return_trampoline);
2033 set_gdbarch_skip_trampoline_code (gdbarch, hppa_hpux_skip_trampoline_code);
2035 set_gdbarch_push_dummy_code (gdbarch, hppa_hpux_push_dummy_code);
2036 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
2038 set_gdbarch_read_pc (gdbarch, hppa_hpux_read_pc);
2039 set_gdbarch_write_pc (gdbarch, hppa_hpux_write_pc);
2040 set_gdbarch_unwind_pc (gdbarch, hppa_hpux_unwind_pc);
2042 set_gdbarch_regset_from_core_section
2043 (gdbarch, hppa_hpux_regset_from_core_section);
2045 frame_unwind_append_sniffer (gdbarch, hppa_hpux_sigtramp_unwind_sniffer);
2047 observer_attach_inferior_created (hppa_hpux_inferior_created);
2051 hppa_hpux_som_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
2053 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2057 tdep->find_global_pointer = hppa32_hpux_find_global_pointer;
2059 hppa_hpux_init_abi (info, gdbarch);
2060 som_solib_select (tdep);
2064 hppa_hpux_elf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
2066 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2069 tdep->find_global_pointer = hppa64_hpux_find_global_pointer;
2071 hppa_hpux_init_abi (info, gdbarch);
2072 pa64_solib_select (tdep);
2075 static enum gdb_osabi
2076 hppa_hpux_core_osabi_sniffer (bfd *abfd)
2078 if (strcmp (bfd_get_target (abfd), "hpux-core") == 0)
2079 return GDB_OSABI_HPUX_SOM;
2080 else if (strcmp (bfd_get_target (abfd), "elf64-hppa") == 0)
2084 section = bfd_get_section_by_name (abfd, ".kernel");
2090 size = bfd_section_size (abfd, section);
2091 contents = alloca (size);
2092 if (bfd_get_section_contents (abfd, section, contents,
2094 && strcmp (contents, "HP-UX") == 0)
2095 return GDB_OSABI_HPUX_ELF;
2099 return GDB_OSABI_UNKNOWN;
2103 _initialize_hppa_hpux_tdep (void)
2105 /* BFD doesn't set a flavour for HP-UX style core files. It doesn't
2106 set the architecture either. */
2107 gdbarch_register_osabi_sniffer (bfd_arch_unknown,
2108 bfd_target_unknown_flavour,
2109 hppa_hpux_core_osabi_sniffer);
2110 gdbarch_register_osabi_sniffer (bfd_arch_hppa,
2111 bfd_target_elf_flavour,
2112 hppa_hpux_core_osabi_sniffer);
2114 gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_HPUX_SOM,
2115 hppa_hpux_som_init_abi);
2116 gdbarch_register_osabi (bfd_arch_hppa, bfd_mach_hppa20w, GDB_OSABI_HPUX_ELF,
2117 hppa_hpux_elf_init_abi);