* archures.c: Update copyright.
[deliverable/binutils-gdb.git] / gdb / hppa-hpux-tdep.c
CommitLineData
b1acf338 1/* Target-dependent code for HP-UX on PA-RISC.
ef6e7e13 2
9b254dd1
DJ
3 Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008
4 Free Software Foundation, Inc.
273f8429 5
b1acf338 6 This file is part of GDB.
273f8429 7
b1acf338
MK
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
b1acf338 11 (at your option) any later version.
273f8429 12
b1acf338
MK
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
273f8429 17
b1acf338 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
273f8429
JB
20
21#include "defs.h"
22#include "arch-utils.h"
60e1ff27 23#include "gdbcore.h"
273f8429 24#include "osabi.h"
222e5d1d 25#include "frame.h"
43613416
RC
26#include "frame-unwind.h"
27#include "trad-frame.h"
4c02c60c
AC
28#include "symtab.h"
29#include "objfiles.h"
30#include "inferior.h"
31#include "infcall.h"
90f943f1 32#include "observer.h"
acf86d54
RC
33#include "hppa-tdep.h"
34#include "solib-som.h"
35#include "solib-pa64.h"
08d53055 36#include "regset.h"
e7b17823 37#include "regcache.h"
60250e8b 38#include "exceptions.h"
08d53055
MK
39
40#include "gdb_string.h"
4c02c60c 41
77d18ded
RC
42#define IS_32BIT_TARGET(_gdbarch) \
43 ((gdbarch_tdep (_gdbarch))->bytes_per_address == 4)
44
27b08a0c
RC
45/* Bit in the `ss_flag' member of `struct save_state' that indicates
46 that the 64-bit register values are live. From
47 <machine/save_state.h>. */
48#define HPPA_HPUX_SS_WIDEREGS 0x40
49
50/* Offsets of various parts of `struct save_state'. From
51 <machine/save_state.h>. */
52#define HPPA_HPUX_SS_FLAGS_OFFSET 0
53#define HPPA_HPUX_SS_NARROW_OFFSET 4
54#define HPPA_HPUX_SS_FPBLOCK_OFFSET 256
55#define HPPA_HPUX_SS_WIDE_OFFSET 640
56
57/* The size of `struct save_state. */
58#define HPPA_HPUX_SAVE_STATE_SIZE 1152
59
60/* The size of `struct pa89_save_state', which corresponds to PA-RISC
61 1.1, the lowest common denominator that we support. */
62#define HPPA_HPUX_PA89_SAVE_STATE_SIZE 512
63
64
273f8429
JB
65/* Forward declarations. */
66extern void _initialize_hppa_hpux_tdep (void);
67extern initialize_file_ftype _initialize_hppa_hpux_tdep;
68
77d18ded
RC
69static int
70in_opd_section (CORE_ADDR pc)
71{
72 struct obj_section *s;
73 int retval = 0;
74
75 s = find_pc_section (pc);
76
77 retval = (s != NULL
78 && s->the_bfd_section->name != NULL
79 && strcmp (s->the_bfd_section->name, ".opd") == 0);
80 return (retval);
81}
82
abc485a1
RC
83/* Return one if PC is in the call path of a trampoline, else return zero.
84
85 Note we return one for *any* call trampoline (long-call, arg-reloc), not
86 just shared library trampolines (import, export). */
87
88static int
89hppa32_hpux_in_solib_call_trampoline (CORE_ADDR pc, char *name)
90{
91 struct minimal_symbol *minsym;
92 struct unwind_table_entry *u;
abc485a1
RC
93
94 /* First see if PC is in one of the two C-library trampolines. */
3388d7ff
RC
95 if (pc == hppa_symbol_address("$$dyncall")
96 || pc == hppa_symbol_address("_sr4export"))
abc485a1
RC
97 return 1;
98
99 minsym = lookup_minimal_symbol_by_pc (pc);
100 if (minsym && strcmp (DEPRECATED_SYMBOL_NAME (minsym), ".stub") == 0)
101 return 1;
102
103 /* Get the unwind descriptor corresponding to PC, return zero
104 if no unwind was found. */
105 u = find_unwind_entry (pc);
106 if (!u)
107 return 0;
108
109 /* If this isn't a linker stub, then return now. */
110 if (u->stub_unwind.stub_type == 0)
111 return 0;
112
113 /* By definition a long-branch stub is a call stub. */
114 if (u->stub_unwind.stub_type == LONG_BRANCH)
115 return 1;
116
117 /* The call and return path execute the same instructions within
118 an IMPORT stub! So an IMPORT stub is both a call and return
119 trampoline. */
120 if (u->stub_unwind.stub_type == IMPORT)
121 return 1;
122
123 /* Parameter relocation stubs always have a call path and may have a
124 return path. */
125 if (u->stub_unwind.stub_type == PARAMETER_RELOCATION
126 || u->stub_unwind.stub_type == EXPORT)
127 {
128 CORE_ADDR addr;
129
130 /* Search forward from the current PC until we hit a branch
131 or the end of the stub. */
132 for (addr = pc; addr <= u->region_end; addr += 4)
133 {
134 unsigned long insn;
135
136 insn = read_memory_integer (addr, 4);
137
138 /* Does it look like a bl? If so then it's the call path, if
139 we find a bv or be first, then we're on the return path. */
140 if ((insn & 0xfc00e000) == 0xe8000000)
141 return 1;
142 else if ((insn & 0xfc00e001) == 0xe800c000
143 || (insn & 0xfc000000) == 0xe0000000)
144 return 0;
145 }
146
147 /* Should never happen. */
8a3fe4f8 148 warning (_("Unable to find branch in parameter relocation stub."));
abc485a1
RC
149 return 0;
150 }
151
152 /* Unknown stub type. For now, just return zero. */
153 return 0;
154}
155
156static int
157hppa64_hpux_in_solib_call_trampoline (CORE_ADDR pc, char *name)
158{
159 /* PA64 has a completely different stub/trampoline scheme. Is it
160 better? Maybe. It's certainly harder to determine with any
161 certainty that we are in a stub because we can not refer to the
162 unwinders to help.
163
164 The heuristic is simple. Try to lookup the current PC value in th
165 minimal symbol table. If that fails, then assume we are not in a
166 stub and return.
167
168 Then see if the PC value falls within the section bounds for the
169 section containing the minimal symbol we found in the first
170 step. If it does, then assume we are not in a stub and return.
171
172 Finally peek at the instructions to see if they look like a stub. */
173 struct minimal_symbol *minsym;
174 asection *sec;
175 CORE_ADDR addr;
176 int insn, i;
177
178 minsym = lookup_minimal_symbol_by_pc (pc);
179 if (! minsym)
180 return 0;
181
182 sec = SYMBOL_BFD_SECTION (minsym);
183
184 if (bfd_get_section_vma (sec->owner, sec) <= pc
185 && pc < (bfd_get_section_vma (sec->owner, sec)
186 + bfd_section_size (sec->owner, sec)))
187 return 0;
188
189 /* We might be in a stub. Peek at the instructions. Stubs are 3
190 instructions long. */
191 insn = read_memory_integer (pc, 4);
192
193 /* Find out where we think we are within the stub. */
194 if ((insn & 0xffffc00e) == 0x53610000)
195 addr = pc;
196 else if ((insn & 0xffffffff) == 0xe820d000)
197 addr = pc - 4;
198 else if ((insn & 0xffffc00e) == 0x537b0000)
199 addr = pc - 8;
200 else
201 return 0;
202
203 /* Now verify each insn in the range looks like a stub instruction. */
204 insn = read_memory_integer (addr, 4);
205 if ((insn & 0xffffc00e) != 0x53610000)
206 return 0;
207
208 /* Now verify each insn in the range looks like a stub instruction. */
209 insn = read_memory_integer (addr + 4, 4);
210 if ((insn & 0xffffffff) != 0xe820d000)
211 return 0;
212
213 /* Now verify each insn in the range looks like a stub instruction. */
214 insn = read_memory_integer (addr + 8, 4);
215 if ((insn & 0xffffc00e) != 0x537b0000)
216 return 0;
217
218 /* Looks like a stub. */
219 return 1;
220}
221
222/* Return one if PC is in the return path of a trampoline, else return zero.
223
224 Note we return one for *any* call trampoline (long-call, arg-reloc), not
225 just shared library trampolines (import, export). */
226
227static int
228hppa_hpux_in_solib_return_trampoline (CORE_ADDR pc, char *name)
229{
230 struct unwind_table_entry *u;
231
232 /* Get the unwind descriptor corresponding to PC, return zero
233 if no unwind was found. */
234 u = find_unwind_entry (pc);
235 if (!u)
236 return 0;
237
238 /* If this isn't a linker stub or it's just a long branch stub, then
239 return zero. */
240 if (u->stub_unwind.stub_type == 0 || u->stub_unwind.stub_type == LONG_BRANCH)
241 return 0;
242
243 /* The call and return path execute the same instructions within
244 an IMPORT stub! So an IMPORT stub is both a call and return
245 trampoline. */
246 if (u->stub_unwind.stub_type == IMPORT)
247 return 1;
248
249 /* Parameter relocation stubs always have a call path and may have a
250 return path. */
251 if (u->stub_unwind.stub_type == PARAMETER_RELOCATION
252 || u->stub_unwind.stub_type == EXPORT)
253 {
254 CORE_ADDR addr;
255
256 /* Search forward from the current PC until we hit a branch
257 or the end of the stub. */
258 for (addr = pc; addr <= u->region_end; addr += 4)
259 {
260 unsigned long insn;
261
262 insn = read_memory_integer (addr, 4);
263
264 /* Does it look like a bl? If so then it's the call path, if
265 we find a bv or be first, then we're on the return path. */
266 if ((insn & 0xfc00e000) == 0xe8000000)
267 return 0;
268 else if ((insn & 0xfc00e001) == 0xe800c000
269 || (insn & 0xfc000000) == 0xe0000000)
270 return 1;
271 }
272
273 /* Should never happen. */
8a3fe4f8 274 warning (_("Unable to find branch in parameter relocation stub."));
abc485a1
RC
275 return 0;
276 }
277
278 /* Unknown stub type. For now, just return zero. */
279 return 0;
280
281}
282
283/* Figure out if PC is in a trampoline, and if so find out where
284 the trampoline will jump to. If not in a trampoline, return zero.
285
286 Simple code examination probably is not a good idea since the code
287 sequences in trampolines can also appear in user code.
288
289 We use unwinds and information from the minimal symbol table to
290 determine when we're in a trampoline. This won't work for ELF
291 (yet) since it doesn't create stub unwind entries. Whether or
292 not ELF will create stub unwinds or normal unwinds for linker
293 stubs is still being debated.
294
295 This should handle simple calls through dyncall or sr4export,
296 long calls, argument relocation stubs, and dyncall/sr4export
297 calling an argument relocation stub. It even handles some stubs
298 used in dynamic executables. */
299
300static CORE_ADDR
52f729a7 301hppa_hpux_skip_trampoline_code (struct frame_info *frame, CORE_ADDR pc)
abc485a1 302{
464963c9 303 struct gdbarch *gdbarch = get_frame_arch (frame);
abc485a1
RC
304 long orig_pc = pc;
305 long prev_inst, curr_inst, loc;
abc485a1
RC
306 struct minimal_symbol *msym;
307 struct unwind_table_entry *u;
308
abc485a1
RC
309 /* Addresses passed to dyncall may *NOT* be the actual address
310 of the function. So we may have to do something special. */
3388d7ff 311 if (pc == hppa_symbol_address("$$dyncall"))
abc485a1 312 {
52f729a7 313 pc = (CORE_ADDR) get_frame_register_unsigned (frame, 22);
abc485a1
RC
314
315 /* If bit 30 (counting from the left) is on, then pc is the address of
316 the PLT entry for this function, not the address of the function
317 itself. Bit 31 has meaning too, but only for MPE. */
318 if (pc & 0x2)
819844ad 319 pc = (CORE_ADDR) read_memory_integer
464963c9 320 (pc & ~0x3, gdbarch_ptr_bit (gdbarch) / 8);
abc485a1 321 }
3388d7ff 322 if (pc == hppa_symbol_address("$$dyncall_external"))
abc485a1 323 {
52f729a7 324 pc = (CORE_ADDR) get_frame_register_unsigned (frame, 22);
819844ad 325 pc = (CORE_ADDR) read_memory_integer
464963c9 326 (pc & ~0x3, gdbarch_ptr_bit (gdbarch) / 8);
abc485a1 327 }
3388d7ff 328 else if (pc == hppa_symbol_address("_sr4export"))
52f729a7 329 pc = (CORE_ADDR) get_frame_register_unsigned (frame, 22);
abc485a1
RC
330
331 /* Get the unwind descriptor corresponding to PC, return zero
332 if no unwind was found. */
333 u = find_unwind_entry (pc);
334 if (!u)
335 return 0;
336
337 /* If this isn't a linker stub, then return now. */
338 /* elz: attention here! (FIXME) because of a compiler/linker
339 error, some stubs which should have a non zero stub_unwind.stub_type
340 have unfortunately a value of zero. So this function would return here
341 as if we were not in a trampoline. To fix this, we go look at the partial
342 symbol information, which reports this guy as a stub.
343 (FIXME): Unfortunately, we are not that lucky: it turns out that the
344 partial symbol information is also wrong sometimes. This is because
345 when it is entered (somread.c::som_symtab_read()) it can happen that
346 if the type of the symbol (from the som) is Entry, and the symbol is
347 in a shared library, then it can also be a trampoline. This would
348 be OK, except that I believe the way they decide if we are ina shared library
349 does not work. SOOOO..., even if we have a regular function w/o trampolines
350 its minimal symbol can be assigned type mst_solib_trampoline.
351 Also, if we find that the symbol is a real stub, then we fix the unwind
352 descriptor, and define the stub type to be EXPORT.
353 Hopefully this is correct most of the times. */
354 if (u->stub_unwind.stub_type == 0)
355 {
356
357/* elz: NOTE (FIXME!) once the problem with the unwind information is fixed
358 we can delete all the code which appears between the lines */
359/*--------------------------------------------------------------------------*/
360 msym = lookup_minimal_symbol_by_pc (pc);
361
362 if (msym == NULL || MSYMBOL_TYPE (msym) != mst_solib_trampoline)
363 return orig_pc == pc ? 0 : pc & ~0x3;
364
365 else if (msym != NULL && MSYMBOL_TYPE (msym) == mst_solib_trampoline)
366 {
367 struct objfile *objfile;
368 struct minimal_symbol *msymbol;
369 int function_found = 0;
370
371 /* go look if there is another minimal symbol with the same name as
372 this one, but with type mst_text. This would happen if the msym
373 is an actual trampoline, in which case there would be another
374 symbol with the same name corresponding to the real function */
375
376 ALL_MSYMBOLS (objfile, msymbol)
377 {
378 if (MSYMBOL_TYPE (msymbol) == mst_text
7ecb6532
MD
379 && strcmp (DEPRECATED_SYMBOL_NAME (msymbol),
380 DEPRECATED_SYMBOL_NAME (msym)) == 0)
abc485a1
RC
381 {
382 function_found = 1;
383 break;
384 }
385 }
386
387 if (function_found)
388 /* the type of msym is correct (mst_solib_trampoline), but
389 the unwind info is wrong, so set it to the correct value */
390 u->stub_unwind.stub_type = EXPORT;
391 else
392 /* the stub type info in the unwind is correct (this is not a
393 trampoline), but the msym type information is wrong, it
394 should be mst_text. So we need to fix the msym, and also
395 get out of this function */
396 {
397 MSYMBOL_TYPE (msym) = mst_text;
398 return orig_pc == pc ? 0 : pc & ~0x3;
399 }
400 }
401
402/*--------------------------------------------------------------------------*/
403 }
404
405 /* It's a stub. Search for a branch and figure out where it goes.
406 Note we have to handle multi insn branch sequences like ldil;ble.
407 Most (all?) other branches can be determined by examining the contents
408 of certain registers and the stack. */
409
410 loc = pc;
411 curr_inst = 0;
412 prev_inst = 0;
413 while (1)
414 {
415 /* Make sure we haven't walked outside the range of this stub. */
416 if (u != find_unwind_entry (loc))
417 {
8a3fe4f8 418 warning (_("Unable to find branch in linker stub"));
abc485a1
RC
419 return orig_pc == pc ? 0 : pc & ~0x3;
420 }
421
422 prev_inst = curr_inst;
423 curr_inst = read_memory_integer (loc, 4);
424
425 /* Does it look like a branch external using %r1? Then it's the
426 branch from the stub to the actual function. */
427 if ((curr_inst & 0xffe0e000) == 0xe0202000)
428 {
429 /* Yup. See if the previous instruction loaded
430 a value into %r1. If so compute and return the jump address. */
431 if ((prev_inst & 0xffe00000) == 0x20200000)
432 return (hppa_extract_21 (prev_inst) + hppa_extract_17 (curr_inst)) & ~0x3;
433 else
434 {
8a3fe4f8 435 warning (_("Unable to find ldil X,%%r1 before ble Y(%%sr4,%%r1)."));
abc485a1
RC
436 return orig_pc == pc ? 0 : pc & ~0x3;
437 }
438 }
439
440 /* Does it look like a be 0(sr0,%r21)? OR
441 Does it look like a be, n 0(sr0,%r21)? OR
442 Does it look like a bve (r21)? (this is on PA2.0)
443 Does it look like a bve, n(r21)? (this is also on PA2.0)
444 That's the branch from an
445 import stub to an export stub.
446
447 It is impossible to determine the target of the branch via
448 simple examination of instructions and/or data (consider
449 that the address in the plabel may be the address of the
450 bind-on-reference routine in the dynamic loader).
451
452 So we have try an alternative approach.
453
454 Get the name of the symbol at our current location; it should
455 be a stub symbol with the same name as the symbol in the
456 shared library.
457
458 Then lookup a minimal symbol with the same name; we should
459 get the minimal symbol for the target routine in the shared
460 library as those take precedence of import/export stubs. */
461 if ((curr_inst == 0xe2a00000) ||
462 (curr_inst == 0xe2a00002) ||
463 (curr_inst == 0xeaa0d000) ||
464 (curr_inst == 0xeaa0d002))
465 {
466 struct minimal_symbol *stubsym, *libsym;
467
468 stubsym = lookup_minimal_symbol_by_pc (loc);
469 if (stubsym == NULL)
470 {
8a3fe4f8 471 warning (_("Unable to find symbol for 0x%lx"), loc);
abc485a1
RC
472 return orig_pc == pc ? 0 : pc & ~0x3;
473 }
474
475 libsym = lookup_minimal_symbol (DEPRECATED_SYMBOL_NAME (stubsym), NULL, NULL);
476 if (libsym == NULL)
477 {
8a3fe4f8 478 warning (_("Unable to find library symbol for %s."),
abc485a1
RC
479 DEPRECATED_SYMBOL_NAME (stubsym));
480 return orig_pc == pc ? 0 : pc & ~0x3;
481 }
482
483 return SYMBOL_VALUE (libsym);
484 }
485
486 /* Does it look like bl X,%rp or bl X,%r0? Another way to do a
487 branch from the stub to the actual function. */
488 /*elz */
489 else if ((curr_inst & 0xffe0e000) == 0xe8400000
490 || (curr_inst & 0xffe0e000) == 0xe8000000
491 || (curr_inst & 0xffe0e000) == 0xe800A000)
492 return (loc + hppa_extract_17 (curr_inst) + 8) & ~0x3;
493
494 /* Does it look like bv (rp)? Note this depends on the
495 current stack pointer being the same as the stack
496 pointer in the stub itself! This is a branch on from the
497 stub back to the original caller. */
498 /*else if ((curr_inst & 0xffe0e000) == 0xe840c000) */
499 else if ((curr_inst & 0xffe0f000) == 0xe840c000)
500 {
501 /* Yup. See if the previous instruction loaded
502 rp from sp - 8. */
503 if (prev_inst == 0x4bc23ff1)
52f729a7
UW
504 {
505 CORE_ADDR sp;
506 sp = get_frame_register_unsigned (frame, HPPA_SP_REGNUM);
507 return read_memory_integer (sp - 8, 4) & ~0x3;
508 }
abc485a1
RC
509 else
510 {
8a3fe4f8 511 warning (_("Unable to find restore of %%rp before bv (%%rp)."));
abc485a1
RC
512 return orig_pc == pc ? 0 : pc & ~0x3;
513 }
514 }
515
516 /* elz: added this case to capture the new instruction
517 at the end of the return part of an export stub used by
518 the PA2.0: BVE, n (rp) */
519 else if ((curr_inst & 0xffe0f000) == 0xe840d000)
520 {
521 return (read_memory_integer
52f729a7 522 (get_frame_register_unsigned (frame, HPPA_SP_REGNUM) - 24,
464963c9 523 gdbarch_ptr_bit (gdbarch) / 8)) & ~0x3;
abc485a1
RC
524 }
525
526 /* What about be,n 0(sr0,%rp)? It's just another way we return to
527 the original caller from the stub. Used in dynamic executables. */
528 else if (curr_inst == 0xe0400002)
529 {
530 /* The value we jump to is sitting in sp - 24. But that's
531 loaded several instructions before the be instruction.
532 I guess we could check for the previous instruction being
533 mtsp %r1,%sr0 if we want to do sanity checking. */
534 return (read_memory_integer
52f729a7 535 (get_frame_register_unsigned (frame, HPPA_SP_REGNUM) - 24,
464963c9 536 gdbarch_ptr_bit (gdbarch) / 8)) & ~0x3;
abc485a1
RC
537 }
538
539 /* Haven't found the branch yet, but we're still in the stub.
540 Keep looking. */
541 loc += 4;
542 }
543}
544
6d350bb5
UW
545static void
546hppa_skip_permanent_breakpoint (struct regcache *regcache)
5aac166f
RC
547{
548 /* To step over a breakpoint instruction on the PA takes some
549 fiddling with the instruction address queue.
550
551 When we stop at a breakpoint, the IA queue front (the instruction
552 we're executing now) points at the breakpoint instruction, and
553 the IA queue back (the next instruction to execute) points to
554 whatever instruction we would execute after the breakpoint, if it
555 were an ordinary instruction. This is the case even if the
556 breakpoint is in the delay slot of a branch instruction.
557
558 Clearly, to step past the breakpoint, we need to set the queue
559 front to the back. But what do we put in the back? What
560 instruction comes after that one? Because of the branch delay
561 slot, the next insn is always at the back + 4. */
5aac166f 562
6d350bb5
UW
563 ULONGEST pcoq_tail, pcsq_tail;
564 regcache_cooked_read_unsigned (regcache, HPPA_PCOQ_TAIL_REGNUM, &pcoq_tail);
565 regcache_cooked_read_unsigned (regcache, HPPA_PCSQ_TAIL_REGNUM, &pcsq_tail);
566
567 regcache_cooked_write_unsigned (regcache, HPPA_PCOQ_HEAD_REGNUM, pcoq_tail);
568 regcache_cooked_write_unsigned (regcache, HPPA_PCSQ_HEAD_REGNUM, pcsq_tail);
569
570 regcache_cooked_write_unsigned (regcache, HPPA_PCOQ_TAIL_REGNUM, pcoq_tail + 4);
5aac166f
RC
571 /* We can leave the tail's space the same, since there's no jump. */
572}
abc485a1 573
4c02c60c 574
43613416
RC
575/* Signal frames. */
576struct hppa_hpux_sigtramp_unwind_cache
577{
578 CORE_ADDR base;
579 struct trad_frame_saved_reg *saved_regs;
580};
581
582static int hppa_hpux_tramp_reg[] = {
583 HPPA_SAR_REGNUM,
584 HPPA_PCOQ_HEAD_REGNUM,
585 HPPA_PCSQ_HEAD_REGNUM,
586 HPPA_PCOQ_TAIL_REGNUM,
587 HPPA_PCSQ_TAIL_REGNUM,
588 HPPA_EIEM_REGNUM,
589 HPPA_IIR_REGNUM,
590 HPPA_ISR_REGNUM,
591 HPPA_IOR_REGNUM,
592 HPPA_IPSW_REGNUM,
593 -1,
594 HPPA_SR4_REGNUM,
595 HPPA_SR4_REGNUM + 1,
596 HPPA_SR4_REGNUM + 2,
597 HPPA_SR4_REGNUM + 3,
598 HPPA_SR4_REGNUM + 4,
599 HPPA_SR4_REGNUM + 5,
600 HPPA_SR4_REGNUM + 6,
601 HPPA_SR4_REGNUM + 7,
602 HPPA_RCR_REGNUM,
603 HPPA_PID0_REGNUM,
604 HPPA_PID1_REGNUM,
605 HPPA_CCR_REGNUM,
606 HPPA_PID2_REGNUM,
607 HPPA_PID3_REGNUM,
608 HPPA_TR0_REGNUM,
609 HPPA_TR0_REGNUM + 1,
610 HPPA_TR0_REGNUM + 2,
611 HPPA_CR27_REGNUM
612};
613
614static struct hppa_hpux_sigtramp_unwind_cache *
615hppa_hpux_sigtramp_frame_unwind_cache (struct frame_info *next_frame,
616 void **this_cache)
617
618{
619 struct gdbarch *gdbarch = get_frame_arch (next_frame);
620 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
621 struct hppa_hpux_sigtramp_unwind_cache *info;
622 unsigned int flag;
27b08a0c
RC
623 CORE_ADDR sp, scptr, off;
624 int i, incr, szoff;
43613416
RC
625
626 if (*this_cache)
627 return *this_cache;
628
629 info = FRAME_OBSTACK_ZALLOC (struct hppa_hpux_sigtramp_unwind_cache);
630 *this_cache = info;
631 info->saved_regs = trad_frame_alloc_saved_regs (next_frame);
632
633 sp = frame_unwind_register_unsigned (next_frame, HPPA_SP_REGNUM);
634
27b08a0c
RC
635 if (IS_32BIT_TARGET (gdbarch))
636 scptr = sp - 1352;
637 else
638 scptr = sp - 1520;
639
43613416
RC
640 off = scptr;
641
642 /* See /usr/include/machine/save_state.h for the structure of the save_state_t
643 structure. */
644
27b08a0c
RC
645 flag = read_memory_unsigned_integer(scptr + HPPA_HPUX_SS_FLAGS_OFFSET, 4);
646
647 if (!(flag & HPPA_HPUX_SS_WIDEREGS))
43613416
RC
648 {
649 /* Narrow registers. */
27b08a0c 650 off = scptr + HPPA_HPUX_SS_NARROW_OFFSET;
43613416
RC
651 incr = 4;
652 szoff = 0;
653 }
654 else
655 {
656 /* Wide registers. */
27b08a0c 657 off = scptr + HPPA_HPUX_SS_WIDE_OFFSET + 8;
43613416
RC
658 incr = 8;
659 szoff = (tdep->bytes_per_address == 4 ? 4 : 0);
660 }
661
662 for (i = 1; i < 32; i++)
663 {
664 info->saved_regs[HPPA_R0_REGNUM + i].addr = off + szoff;
665 off += incr;
666 }
667
01926a69 668 for (i = 0; i < ARRAY_SIZE (hppa_hpux_tramp_reg); i++)
43613416
RC
669 {
670 if (hppa_hpux_tramp_reg[i] > 0)
671 info->saved_regs[hppa_hpux_tramp_reg[i]].addr = off + szoff;
27b08a0c 672
43613416
RC
673 off += incr;
674 }
675
676 /* TODO: fp regs */
677
678 info->base = frame_unwind_register_unsigned (next_frame, HPPA_SP_REGNUM);
679
680 return info;
681}
682
683static void
684hppa_hpux_sigtramp_frame_this_id (struct frame_info *next_frame,
685 void **this_prologue_cache,
686 struct frame_id *this_id)
687{
688 struct hppa_hpux_sigtramp_unwind_cache *info
689 = hppa_hpux_sigtramp_frame_unwind_cache (next_frame, this_prologue_cache);
690 *this_id = frame_id_build (info->base, frame_pc_unwind (next_frame));
691}
692
693static void
694hppa_hpux_sigtramp_frame_prev_register (struct frame_info *next_frame,
a7aad9aa
MK
695 void **this_prologue_cache,
696 int regnum, int *optimizedp,
697 enum lval_type *lvalp,
698 CORE_ADDR *addrp,
699 int *realnump, gdb_byte *valuep)
43613416
RC
700{
701 struct hppa_hpux_sigtramp_unwind_cache *info
702 = hppa_hpux_sigtramp_frame_unwind_cache (next_frame, this_prologue_cache);
703 hppa_frame_prev_register_helper (next_frame, info->saved_regs, regnum,
704 optimizedp, lvalp, addrp, realnump, valuep);
705}
706
707static const struct frame_unwind hppa_hpux_sigtramp_frame_unwind = {
708 SIGTRAMP_FRAME,
709 hppa_hpux_sigtramp_frame_this_id,
710 hppa_hpux_sigtramp_frame_prev_register
711};
712
713static const struct frame_unwind *
714hppa_hpux_sigtramp_unwind_sniffer (struct frame_info *next_frame)
715{
765697c9 716 struct unwind_table_entry *u;
43613416 717 CORE_ADDR pc = frame_pc_unwind (next_frame);
43613416 718
765697c9 719 u = find_unwind_entry (pc);
43613416 720
a717134b
MK
721 /* If this is an export stub, try to get the unwind descriptor for
722 the actual function itself. */
723 if (u && u->stub_unwind.stub_type == EXPORT)
724 {
725 gdb_byte buf[HPPA_INSN_SIZE];
726 unsigned long insn;
727
728 if (!safe_frame_unwind_memory (next_frame, u->region_start,
729 buf, sizeof buf))
730 return NULL;
731
732 insn = extract_unsigned_integer (buf, sizeof buf);
733 if ((insn & 0xffe0e000) == 0xe8400000)
734 u = find_unwind_entry(u->region_start + hppa_extract_17 (insn) + 8);
735 }
736
765697c9 737 if (u && u->HP_UX_interrupt_marker)
43613416
RC
738 return &hppa_hpux_sigtramp_frame_unwind;
739
740 return NULL;
741}
742
c268433a 743static CORE_ADDR
77d18ded 744hppa32_hpux_find_global_pointer (struct value *function)
c268433a
RC
745{
746 CORE_ADDR faddr;
747
748 faddr = value_as_address (function);
749
750 /* Is this a plabel? If so, dereference it to get the gp value. */
751 if (faddr & 2)
752 {
753 int status;
754 char buf[4];
755
756 faddr &= ~3;
757
758 status = target_read_memory (faddr + 4, buf, sizeof (buf));
759 if (status == 0)
760 return extract_unsigned_integer (buf, sizeof (buf));
761 }
762
61aff869 763 return gdbarch_tdep (current_gdbarch)->solib_get_got_by_pc (faddr);
c268433a
RC
764}
765
766static CORE_ADDR
77d18ded 767hppa64_hpux_find_global_pointer (struct value *function)
c268433a 768{
77d18ded
RC
769 CORE_ADDR faddr;
770 char buf[32];
771
772 faddr = value_as_address (function);
773
774 if (in_opd_section (faddr))
775 {
776 target_read_memory (faddr, buf, sizeof (buf));
777 return extract_unsigned_integer (&buf[24], 8);
778 }
779 else
c268433a 780 {
77d18ded
RC
781 return gdbarch_tdep (current_gdbarch)->solib_get_got_by_pc (faddr);
782 }
783}
784
785static unsigned int ldsid_pattern[] = {
786 0x000010a0, /* ldsid (rX),rY */
787 0x00001820, /* mtsp rY,sr0 */
788 0xe0000000 /* be,n (sr0,rX) */
789};
790
791static CORE_ADDR
792hppa_hpux_search_pattern (CORE_ADDR start, CORE_ADDR end,
793 unsigned int *patterns, int count)
794{
d275c051
MK
795 int num_insns = (end - start + HPPA_INSN_SIZE) / HPPA_INSN_SIZE;
796 unsigned int *insns;
797 gdb_byte *buf;
77d18ded 798 int offset, i;
77d18ded 799
d275c051
MK
800 buf = alloca (num_insns * HPPA_INSN_SIZE);
801 insns = alloca (num_insns * sizeof (unsigned int));
c268433a 802
d275c051
MK
803 read_memory (start, buf, num_insns * HPPA_INSN_SIZE);
804 for (i = 0; i < num_insns; i++, buf += HPPA_INSN_SIZE)
805 insns[i] = extract_unsigned_integer (buf, HPPA_INSN_SIZE);
c268433a 806
d275c051 807 for (offset = 0; offset <= num_insns - count; offset++)
77d18ded
RC
808 {
809 for (i = 0; i < count; i++)
c268433a 810 {
d275c051 811 if ((insns[offset + i] & patterns[i]) != patterns[i])
77d18ded
RC
812 break;
813 }
814 if (i == count)
815 break;
816 }
d275c051
MK
817
818 if (offset <= num_insns - count)
819 return start + offset * HPPA_INSN_SIZE;
77d18ded
RC
820 else
821 return 0;
822}
c268433a 823
77d18ded
RC
824static CORE_ADDR
825hppa32_hpux_search_dummy_call_sequence (struct gdbarch *gdbarch, CORE_ADDR pc,
826 int *argreg)
827{
828 struct objfile *obj;
829 struct obj_section *sec;
830 struct hppa_objfile_private *priv;
831 struct frame_info *frame;
832 struct unwind_table_entry *u;
833 CORE_ADDR addr, rp;
834 char buf[4];
835 unsigned int insn;
836
837 sec = find_pc_section (pc);
838 obj = sec->objfile;
839 priv = objfile_data (obj, hppa_objfile_priv_data);
840
841 if (!priv)
842 priv = hppa_init_objfile_priv_data (obj);
843 if (!priv)
8a3fe4f8 844 error (_("Internal error creating objfile private data."));
77d18ded
RC
845
846 /* Use the cached value if we have one. */
847 if (priv->dummy_call_sequence_addr != 0)
848 {
849 *argreg = priv->dummy_call_sequence_reg;
850 return priv->dummy_call_sequence_addr;
851 }
c268433a 852
77d18ded
RC
853 /* First try a heuristic; if we are in a shared library call, our return
854 pointer is likely to point at an export stub. */
855 frame = get_current_frame ();
856 rp = frame_unwind_register_unsigned (frame, 2);
857 u = find_unwind_entry (rp);
858 if (u && u->stub_unwind.stub_type == EXPORT)
859 {
860 addr = hppa_hpux_search_pattern (u->region_start, u->region_end,
861 ldsid_pattern,
862 ARRAY_SIZE (ldsid_pattern));
863 if (addr)
864 goto found_pattern;
865 }
c268433a 866
77d18ded
RC
867 /* Next thing to try is to look for an export stub. */
868 if (priv->unwind_info)
869 {
870 int i;
c268433a 871
77d18ded
RC
872 for (i = 0; i < priv->unwind_info->last; i++)
873 {
874 struct unwind_table_entry *u;
875 u = &priv->unwind_info->table[i];
876 if (u->stub_unwind.stub_type == EXPORT)
877 {
878 addr = hppa_hpux_search_pattern (u->region_start, u->region_end,
879 ldsid_pattern,
880 ARRAY_SIZE (ldsid_pattern));
881 if (addr)
882 {
883 goto found_pattern;
884 }
c268433a
RC
885 }
886 }
77d18ded 887 }
c268433a 888
77d18ded
RC
889 /* Finally, if this is the main executable, try to locate a sequence
890 from noshlibs */
891 addr = hppa_symbol_address ("noshlibs");
892 sec = find_pc_section (addr);
893
894 if (sec && sec->objfile == obj)
895 {
896 CORE_ADDR start, end;
897
898 find_pc_partial_function (addr, NULL, &start, &end);
899 if (start != 0 && end != 0)
c268433a 900 {
77d18ded
RC
901 addr = hppa_hpux_search_pattern (start, end, ldsid_pattern,
902 ARRAY_SIZE (ldsid_pattern));
903 if (addr)
904 goto found_pattern;
c268433a 905 }
77d18ded
RC
906 }
907
908 /* Can't find a suitable sequence. */
909 return 0;
910
911found_pattern:
912 target_read_memory (addr, buf, sizeof (buf));
913 insn = extract_unsigned_integer (buf, sizeof (buf));
914 priv->dummy_call_sequence_addr = addr;
915 priv->dummy_call_sequence_reg = (insn >> 21) & 0x1f;
916
917 *argreg = priv->dummy_call_sequence_reg;
918 return priv->dummy_call_sequence_addr;
919}
920
921static CORE_ADDR
922hppa64_hpux_search_dummy_call_sequence (struct gdbarch *gdbarch, CORE_ADDR pc,
923 int *argreg)
924{
925 struct objfile *obj;
926 struct obj_section *sec;
927 struct hppa_objfile_private *priv;
928 CORE_ADDR addr;
929 struct minimal_symbol *msym;
930 int i;
931
932 sec = find_pc_section (pc);
933 obj = sec->objfile;
934 priv = objfile_data (obj, hppa_objfile_priv_data);
935
936 if (!priv)
937 priv = hppa_init_objfile_priv_data (obj);
938 if (!priv)
8a3fe4f8 939 error (_("Internal error creating objfile private data."));
77d18ded
RC
940
941 /* Use the cached value if we have one. */
942 if (priv->dummy_call_sequence_addr != 0)
943 {
944 *argreg = priv->dummy_call_sequence_reg;
945 return priv->dummy_call_sequence_addr;
946 }
947
948 /* FIXME: Without stub unwind information, locating a suitable sequence is
949 fairly difficult. For now, we implement a very naive and inefficient
950 scheme; try to read in blocks of code, and look for a "bve,n (rp)"
951 instruction. These are likely to occur at the end of functions, so
952 we only look at the last two instructions of each function. */
953 for (i = 0, msym = obj->msymbols; i < obj->minimal_symbol_count; i++, msym++)
954 {
955 CORE_ADDR begin, end;
956 char *name;
d275c051 957 gdb_byte buf[2 * HPPA_INSN_SIZE];
77d18ded
RC
958 int offset;
959
960 find_pc_partial_function (SYMBOL_VALUE_ADDRESS (msym), &name,
961 &begin, &end);
962
81092a3e 963 if (name == NULL || begin == 0 || end == 0)
77d18ded
RC
964 continue;
965
d275c051 966 if (target_read_memory (end - sizeof (buf), buf, sizeof (buf)) == 0)
c268433a 967 {
d275c051 968 for (offset = 0; offset < sizeof (buf); offset++)
77d18ded
RC
969 {
970 unsigned int insn;
971
d275c051 972 insn = extract_unsigned_integer (buf + offset, HPPA_INSN_SIZE);
77d18ded
RC
973 if (insn == 0xe840d002) /* bve,n (rp) */
974 {
d275c051 975 addr = (end - sizeof (buf)) + offset;
77d18ded
RC
976 goto found_pattern;
977 }
978 }
979 }
980 }
981
982 /* Can't find a suitable sequence. */
983 return 0;
984
985found_pattern:
986 priv->dummy_call_sequence_addr = addr;
987 /* Right now we only look for a "bve,l (rp)" sequence, so the register is
988 always HPPA_RP_REGNUM. */
989 priv->dummy_call_sequence_reg = HPPA_RP_REGNUM;
990
991 *argreg = priv->dummy_call_sequence_reg;
992 return priv->dummy_call_sequence_addr;
993}
994
995static CORE_ADDR
996hppa_hpux_find_import_stub_for_addr (CORE_ADDR funcaddr)
997{
998 struct objfile *objfile;
999 struct minimal_symbol *funsym, *stubsym;
1000 CORE_ADDR stubaddr;
1001
1002 funsym = lookup_minimal_symbol_by_pc (funcaddr);
1003 stubaddr = 0;
1004
1005 ALL_OBJFILES (objfile)
1006 {
1007 stubsym = lookup_minimal_symbol_solib_trampoline
1008 (SYMBOL_LINKAGE_NAME (funsym), objfile);
1009
1010 if (stubsym)
1011 {
1012 struct unwind_table_entry *u;
1013
1014 u = find_unwind_entry (SYMBOL_VALUE (stubsym));
1015 if (u == NULL
1016 || (u->stub_unwind.stub_type != IMPORT
1017 && u->stub_unwind.stub_type != IMPORT_SHLIB))
1018 continue;
1019
1020 stubaddr = SYMBOL_VALUE (stubsym);
1021
1022 /* If we found an IMPORT stub, then we can stop searching;
1023 if we found an IMPORT_SHLIB, we want to continue the search
1024 in the hopes that we will find an IMPORT stub. */
1025 if (u->stub_unwind.stub_type == IMPORT)
1026 break;
1027 }
1028 }
1029
1030 return stubaddr;
1031}
1032
1033static int
1034hppa_hpux_sr_for_addr (CORE_ADDR addr)
1035{
1036 int sr;
1037 /* The space register to use is encoded in the top 2 bits of the address. */
1038 sr = addr >> (gdbarch_tdep (current_gdbarch)->bytes_per_address * 8 - 2);
1039 return sr + 4;
1040}
1041
1042static CORE_ADDR
1043hppa_hpux_find_dummy_bpaddr (CORE_ADDR addr)
1044{
1045 /* In order for us to restore the space register to its starting state,
1046 we need the dummy trampoline to return to the an instruction address in
1047 the same space as where we started the call. We used to place the
1048 breakpoint near the current pc, however, this breaks nested dummy calls
1049 as the nested call will hit the breakpoint address and terminate
1050 prematurely. Instead, we try to look for an address in the same space to
1051 put the breakpoint.
1052
1053 This is similar in spirit to putting the breakpoint at the "entry point"
1054 of an executable. */
1055
1056 struct obj_section *sec;
1057 struct unwind_table_entry *u;
1058 struct minimal_symbol *msym;
1059 CORE_ADDR func;
1060 int i;
1061
1062 sec = find_pc_section (addr);
1063 if (sec)
1064 {
1065 /* First try the lowest address in the section; we can use it as long
1066 as it is "regular" code (i.e. not a stub) */
1067 u = find_unwind_entry (sec->addr);
1068 if (!u || u->stub_unwind.stub_type == 0)
1069 return sec->addr;
1070
1071 /* Otherwise, we need to find a symbol for a regular function. We
1072 do this by walking the list of msymbols in the objfile. The symbol
1073 we find should not be the same as the function that was passed in. */
1074
1075 /* FIXME: this is broken, because we can find a function that will be
1076 called by the dummy call target function, which will still not
1077 work. */
1078
1079 find_pc_partial_function (addr, NULL, &func, NULL);
1080 for (i = 0, msym = sec->objfile->msymbols;
1081 i < sec->objfile->minimal_symbol_count;
1082 i++, msym++)
1083 {
1084 u = find_unwind_entry (SYMBOL_VALUE_ADDRESS (msym));
1085 if (func != SYMBOL_VALUE_ADDRESS (msym)
1086 && (!u || u->stub_unwind.stub_type == 0))
1087 return SYMBOL_VALUE_ADDRESS (msym);
c268433a 1088 }
77d18ded 1089 }
c268433a 1090
8a3fe4f8
AC
1091 warning (_("Cannot find suitable address to place dummy breakpoint; nested "
1092 "calls may fail."));
77d18ded
RC
1093 return addr - 4;
1094}
1095
1096static CORE_ADDR
1097hppa_hpux_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp,
82585c72 1098 CORE_ADDR funcaddr,
77d18ded
RC
1099 struct value **args, int nargs,
1100 struct type *value_type,
e4fd649a
UW
1101 CORE_ADDR *real_pc, CORE_ADDR *bp_addr,
1102 struct regcache *regcache)
77d18ded
RC
1103{
1104 CORE_ADDR pc, stubaddr;
9846e541 1105 int argreg = 0;
77d18ded
RC
1106
1107 pc = read_pc ();
1108
1109 /* Note: we don't want to pass a function descriptor here; push_dummy_call
1110 fills in the PIC register for us. */
1111 funcaddr = gdbarch_convert_from_func_ptr_addr (gdbarch, funcaddr, NULL);
1112
1113 /* The simple case is where we call a function in the same space that we are
1114 currently in; in that case we don't really need to do anything. */
1115 if (hppa_hpux_sr_for_addr (pc) == hppa_hpux_sr_for_addr (funcaddr))
1116 {
1117 /* Intraspace call. */
1118 *bp_addr = hppa_hpux_find_dummy_bpaddr (pc);
1119 *real_pc = funcaddr;
e4fd649a 1120 regcache_cooked_write_unsigned (regcache, HPPA_RP_REGNUM, *bp_addr);
77d18ded
RC
1121
1122 return sp;
1123 }
1124
1125 /* In order to make an interspace call, we need to go through a stub.
1126 gcc supplies an appropriate stub called "__gcc_plt_call", however, if
1127 an application is compiled with HP compilers then this stub is not
1128 available. We used to fallback to "__d_plt_call", however that stub
1129 is not entirely useful for us because it doesn't do an interspace
1130 return back to the caller. Also, on hppa64-hpux, there is no
1131 __gcc_plt_call available. In order to keep the code uniform, we
1132 instead don't use either of these stubs, but instead write our own
1133 onto the stack.
1134
1135 A problem arises since the stack is located in a different space than
1136 code, so in order to branch to a stack stub, we will need to do an
1137 interspace branch. Previous versions of gdb did this by modifying code
1138 at the current pc and doing single-stepping to set the pcsq. Since this
1139 is highly undesirable, we use a different scheme:
1140
1141 All we really need to do the branch to the stub is a short instruction
1142 sequence like this:
1143
1144 PA1.1:
1145 ldsid (rX),r1
1146 mtsp r1,sr0
1147 be,n (sr0,rX)
1148
1149 PA2.0:
1150 bve,n (sr0,rX)
1151
1152 Instead of writing these sequences ourselves, we can find it in
1153 the instruction stream that belongs to the current space. While this
1154 seems difficult at first, we are actually guaranteed to find the sequences
1155 in several places:
1156
1157 For 32-bit code:
1158 - in export stubs for shared libraries
1159 - in the "noshlibs" routine in the main module
1160
1161 For 64-bit code:
1162 - at the end of each "regular" function
1163
1164 We cache the address of these sequences in the objfile's private data
1165 since these operations can potentially be quite expensive.
1166
1167 So, what we do is:
1168 - write a stack trampoline
1169 - look for a suitable instruction sequence in the current space
1170 - point the sequence at the trampoline
1171 - set the return address of the trampoline to the current space
1172 (see hppa_hpux_find_dummy_call_bpaddr)
1173 - set the continuing address of the "dummy code" as the sequence.
1174
1175*/
1176
1177 if (IS_32BIT_TARGET (gdbarch))
1178 {
1179 static unsigned int hppa32_tramp[] = {
1180 0x0fdf1291, /* stw r31,-8(,sp) */
1181 0x02c010a1, /* ldsid (,r22),r1 */
1182 0x00011820, /* mtsp r1,sr0 */
1183 0xe6c00000, /* be,l 0(sr0,r22),%sr0,%r31 */
1184 0x081f0242, /* copy r31,rp */
1185 0x0fd11082, /* ldw -8(,sp),rp */
1186 0x004010a1, /* ldsid (,rp),r1 */
1187 0x00011820, /* mtsp r1,sr0 */
1188 0xe0400000, /* be 0(sr0,rp) */
1189 0x08000240 /* nop */
1190 };
1191
1192 /* for hppa32, we must call the function through a stub so that on
1193 return it can return to the space of our trampoline. */
1194 stubaddr = hppa_hpux_find_import_stub_for_addr (funcaddr);
1195 if (stubaddr == 0)
8a3fe4f8
AC
1196 error (_("Cannot call external function not referenced by application "
1197 "(no import stub).\n"));
e4fd649a 1198 regcache_cooked_write_unsigned (regcache, 22, stubaddr);
77d18ded
RC
1199
1200 write_memory (sp, (char *)&hppa32_tramp, sizeof (hppa32_tramp));
1201
1202 *bp_addr = hppa_hpux_find_dummy_bpaddr (pc);
e4fd649a 1203 regcache_cooked_write_unsigned (regcache, 31, *bp_addr);
c268433a 1204
77d18ded
RC
1205 *real_pc = hppa32_hpux_search_dummy_call_sequence (gdbarch, pc, &argreg);
1206 if (*real_pc == 0)
8a3fe4f8 1207 error (_("Cannot make interspace call from here."));
77d18ded 1208
e4fd649a 1209 regcache_cooked_write_unsigned (regcache, argreg, sp);
77d18ded
RC
1210
1211 sp += sizeof (hppa32_tramp);
c268433a
RC
1212 }
1213 else
1214 {
77d18ded
RC
1215 static unsigned int hppa64_tramp[] = {
1216 0xeac0f000, /* bve,l (r22),%r2 */
1217 0x0fdf12d1, /* std r31,-8(,sp) */
1218 0x0fd110c2, /* ldd -8(,sp),rp */
1219 0xe840d002, /* bve,n (rp) */
1220 0x08000240 /* nop */
1221 };
1222
1223 /* for hppa64, we don't need to call through a stub; all functions
1224 return via a bve. */
e4fd649a 1225 regcache_cooked_write_unsigned (regcache, 22, funcaddr);
77d18ded
RC
1226 write_memory (sp, (char *)&hppa64_tramp, sizeof (hppa64_tramp));
1227
1228 *bp_addr = pc - 4;
e4fd649a 1229 regcache_cooked_write_unsigned (regcache, 31, *bp_addr);
c268433a 1230
77d18ded
RC
1231 *real_pc = hppa64_hpux_search_dummy_call_sequence (gdbarch, pc, &argreg);
1232 if (*real_pc == 0)
8a3fe4f8 1233 error (_("Cannot make interspace call from here."));
c268433a 1234
e4fd649a 1235 regcache_cooked_write_unsigned (regcache, argreg, sp);
c268433a 1236
77d18ded 1237 sp += sizeof (hppa64_tramp);
c268433a
RC
1238 }
1239
77d18ded 1240 sp = gdbarch_frame_align (gdbarch, sp);
c268433a
RC
1241
1242 return sp;
1243}
77d18ded 1244
cc72850f
MK
1245\f
1246
08d53055
MK
1247static void
1248hppa_hpux_supply_ss_narrow (struct regcache *regcache,
1249 int regnum, const char *save_state)
1250{
1251 const char *ss_narrow = save_state + HPPA_HPUX_SS_NARROW_OFFSET;
1252 int i, offset = 0;
1253
1254 for (i = HPPA_R1_REGNUM; i < HPPA_FP0_REGNUM; i++)
1255 {
1256 if (regnum == i || regnum == -1)
1257 regcache_raw_supply (regcache, i, ss_narrow + offset);
1258
1259 offset += 4;
1260 }
1261}
1262
1263static void
1264hppa_hpux_supply_ss_fpblock (struct regcache *regcache,
1265 int regnum, const char *save_state)
1266{
1267 const char *ss_fpblock = save_state + HPPA_HPUX_SS_FPBLOCK_OFFSET;
1268 int i, offset = 0;
1269
1270 /* FIXME: We view the floating-point state as 64 single-precision
1271 registers for 32-bit code, and 32 double-precision register for
1272 64-bit code. This distinction is artificial and should be
1273 eliminated. If that ever happens, we should remove the if-clause
1274 below. */
1275
1276 if (register_size (get_regcache_arch (regcache), HPPA_FP0_REGNUM) == 4)
1277 {
1278 for (i = HPPA_FP0_REGNUM; i < HPPA_FP0_REGNUM + 64; i++)
1279 {
1280 if (regnum == i || regnum == -1)
1281 regcache_raw_supply (regcache, i, ss_fpblock + offset);
1282
1283 offset += 4;
1284 }
1285 }
1286 else
1287 {
1288 for (i = HPPA_FP0_REGNUM; i < HPPA_FP0_REGNUM + 32; i++)
1289 {
1290 if (regnum == i || regnum == -1)
1291 regcache_raw_supply (regcache, i, ss_fpblock + offset);
1292
1293 offset += 8;
1294 }
1295 }
1296}
1297
1298static void
1299hppa_hpux_supply_ss_wide (struct regcache *regcache,
1300 int regnum, const char *save_state)
1301{
1302 const char *ss_wide = save_state + HPPA_HPUX_SS_WIDE_OFFSET;
1303 int i, offset = 8;
1304
1305 if (register_size (get_regcache_arch (regcache), HPPA_R1_REGNUM) == 4)
1306 offset += 4;
1307
1308 for (i = HPPA_R1_REGNUM; i < HPPA_FP0_REGNUM; i++)
1309 {
1310 if (regnum == i || regnum == -1)
1311 regcache_raw_supply (regcache, i, ss_wide + offset);
1312
1313 offset += 8;
1314 }
1315}
1316
1317static void
1318hppa_hpux_supply_save_state (const struct regset *regset,
1319 struct regcache *regcache,
1320 int regnum, const void *regs, size_t len)
1321{
1322 const char *proc_info = regs;
1323 const char *save_state = proc_info + 8;
1324 ULONGEST flags;
1325
1326 flags = extract_unsigned_integer (save_state + HPPA_HPUX_SS_FLAGS_OFFSET, 4);
1327 if (regnum == -1 || regnum == HPPA_FLAGS_REGNUM)
1328 {
1329 struct gdbarch *arch = get_regcache_arch (regcache);
1330 size_t size = register_size (arch, HPPA_FLAGS_REGNUM);
1331 char buf[8];
1332
1333 store_unsigned_integer (buf, size, flags);
1334 regcache_raw_supply (regcache, HPPA_FLAGS_REGNUM, buf);
1335 }
1336
1337 /* If the SS_WIDEREGS flag is set, we really do need the full
1338 `struct save_state'. */
1339 if (flags & HPPA_HPUX_SS_WIDEREGS && len < HPPA_HPUX_SAVE_STATE_SIZE)
8a3fe4f8 1340 error (_("Register set contents too small"));
08d53055
MK
1341
1342 if (flags & HPPA_HPUX_SS_WIDEREGS)
1343 hppa_hpux_supply_ss_wide (regcache, regnum, save_state);
1344 else
1345 hppa_hpux_supply_ss_narrow (regcache, regnum, save_state);
1346
1347 hppa_hpux_supply_ss_fpblock (regcache, regnum, save_state);
1348}
1349
1350/* HP-UX register set. */
1351
1352static struct regset hppa_hpux_regset =
1353{
1354 NULL,
1355 hppa_hpux_supply_save_state
1356};
1357
1358static const struct regset *
1359hppa_hpux_regset_from_core_section (struct gdbarch *gdbarch,
1360 const char *sect_name, size_t sect_size)
1361{
1362 if (strcmp (sect_name, ".reg") == 0
1363 && sect_size >= HPPA_HPUX_PA89_SAVE_STATE_SIZE + 8)
1364 return &hppa_hpux_regset;
1365
1366 return NULL;
1367}
1368\f
1369
cc72850f
MK
1370/* Bit in the `ss_flag' member of `struct save_state' that indicates
1371 the state was saved from a system call. From
1372 <machine/save_state.h>. */
1373#define HPPA_HPUX_SS_INSYSCALL 0x02
1374
1375static CORE_ADDR
61a1198a 1376hppa_hpux_read_pc (struct regcache *regcache)
cc72850f
MK
1377{
1378 ULONGEST flags;
1379
1380 /* If we're currently in a system call return the contents of %r31. */
61a1198a 1381 regcache_cooked_read_unsigned (regcache, HPPA_FLAGS_REGNUM, &flags);
cc72850f 1382 if (flags & HPPA_HPUX_SS_INSYSCALL)
61a1198a
UW
1383 {
1384 ULONGEST pc;
1385 regcache_cooked_read_unsigned (regcache, HPPA_R31_REGNUM, &pc);
1386 return pc & ~0x3;
1387 }
cc72850f 1388
61a1198a 1389 return hppa_read_pc (regcache);
cc72850f
MK
1390}
1391
1392static void
61a1198a 1393hppa_hpux_write_pc (struct regcache *regcache, CORE_ADDR pc)
cc72850f
MK
1394{
1395 ULONGEST flags;
1396
1397 /* If we're currently in a system call also write PC into %r31. */
61a1198a 1398 regcache_cooked_read_unsigned (regcache, HPPA_FLAGS_REGNUM, &flags);
cc72850f 1399 if (flags & HPPA_HPUX_SS_INSYSCALL)
61a1198a 1400 regcache_cooked_write_unsigned (regcache, HPPA_R31_REGNUM, pc | 0x3);
cc72850f 1401
61a1198a 1402 return hppa_write_pc (regcache, pc);
cc72850f
MK
1403}
1404
1405static CORE_ADDR
1406hppa_hpux_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
1407{
1408 ULONGEST flags;
1409
1410 /* If we're currently in a system call return the contents of %r31. */
1411 flags = frame_unwind_register_unsigned (next_frame, HPPA_FLAGS_REGNUM);
1412 if (flags & HPPA_HPUX_SS_INSYSCALL)
1413 return frame_unwind_register_unsigned (next_frame, HPPA_R31_REGNUM) & ~0x3;
1414
1415 return hppa_unwind_pc (gdbarch, next_frame);
1416}
1417\f
c268433a 1418
f77a2124
RC
1419/* Given the current value of the pc, check to see if it is inside a stub, and
1420 if so, change the value of the pc to point to the caller of the stub.
1421 NEXT_FRAME is the next frame in the current list of frames.
1422 BASE contains to stack frame base of the current frame.
1423 SAVE_REGS is the register file stored in the frame cache. */
1424static void
1425hppa_hpux_unwind_adjust_stub (struct frame_info *next_frame, CORE_ADDR base,
1426 struct trad_frame_saved_reg *saved_regs)
1427{
464963c9 1428 struct gdbarch *gdbarch = get_frame_arch (next_frame);
f77a2124
RC
1429 int optimized, realreg;
1430 enum lval_type lval;
1431 CORE_ADDR addr;
1432 char buffer[sizeof(ULONGEST)];
1433 ULONGEST val;
1434 CORE_ADDR stubpc;
1435 struct unwind_table_entry *u;
1436
1437 trad_frame_get_prev_register (next_frame, saved_regs,
1438 HPPA_PCOQ_HEAD_REGNUM,
1439 &optimized, &lval, &addr, &realreg, buffer);
1440 val = extract_unsigned_integer (buffer,
1441 register_size (get_frame_arch (next_frame),
1442 HPPA_PCOQ_HEAD_REGNUM));
1443
1444 u = find_unwind_entry (val);
1445 if (u && u->stub_unwind.stub_type == EXPORT)
1446 {
819844ad 1447 stubpc = read_memory_integer
464963c9 1448 (base - 24, gdbarch_ptr_bit (gdbarch) / 8);
f77a2124
RC
1449 trad_frame_set_value (saved_regs, HPPA_PCOQ_HEAD_REGNUM, stubpc);
1450 }
1451 else if (hppa_symbol_address ("__gcc_plt_call")
1452 == get_pc_function_start (val))
1453 {
819844ad 1454 stubpc = read_memory_integer
464963c9 1455 (base - 8, gdbarch_ptr_bit (gdbarch) / 8);
f77a2124
RC
1456 trad_frame_set_value (saved_regs, HPPA_PCOQ_HEAD_REGNUM, stubpc);
1457 }
1458}
1459
7d773d96
JB
1460static void
1461hppa_hpux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1462{
abc485a1
RC
1463 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1464
77d18ded 1465 if (IS_32BIT_TARGET (gdbarch))
84674fe1 1466 tdep->in_solib_call_trampoline = hppa32_hpux_in_solib_call_trampoline;
abc485a1 1467 else
84674fe1 1468 tdep->in_solib_call_trampoline = hppa64_hpux_in_solib_call_trampoline;
abc485a1 1469
f77a2124
RC
1470 tdep->unwind_adjust_stub = hppa_hpux_unwind_adjust_stub;
1471
3cd36e7c
MK
1472 set_gdbarch_in_solib_return_trampoline
1473 (gdbarch, hppa_hpux_in_solib_return_trampoline);
abc485a1 1474 set_gdbarch_skip_trampoline_code (gdbarch, hppa_hpux_skip_trampoline_code);
43613416 1475
c268433a
RC
1476 set_gdbarch_push_dummy_code (gdbarch, hppa_hpux_push_dummy_code);
1477 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
1478
cc72850f
MK
1479 set_gdbarch_read_pc (gdbarch, hppa_hpux_read_pc);
1480 set_gdbarch_write_pc (gdbarch, hppa_hpux_write_pc);
1481 set_gdbarch_unwind_pc (gdbarch, hppa_hpux_unwind_pc);
6d350bb5
UW
1482 set_gdbarch_skip_permanent_breakpoint
1483 (gdbarch, hppa_skip_permanent_breakpoint);
cc72850f 1484
08d53055
MK
1485 set_gdbarch_regset_from_core_section
1486 (gdbarch, hppa_hpux_regset_from_core_section);
1487
43613416 1488 frame_unwind_append_sniffer (gdbarch, hppa_hpux_sigtramp_unwind_sniffer);
7d773d96 1489}
60e1ff27 1490
273f8429
JB
1491static void
1492hppa_hpux_som_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1493{
fdd72f95
RC
1494 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1495
1496 tdep->is_elf = 0;
c268433a 1497
77d18ded
RC
1498 tdep->find_global_pointer = hppa32_hpux_find_global_pointer;
1499
7d773d96 1500 hppa_hpux_init_abi (info, gdbarch);
d542061a 1501 som_solib_select (gdbarch);
273f8429
JB
1502}
1503
1504static void
1505hppa_hpux_elf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1506{
fdd72f95
RC
1507 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1508
1509 tdep->is_elf = 1;
77d18ded
RC
1510 tdep->find_global_pointer = hppa64_hpux_find_global_pointer;
1511
7d773d96 1512 hppa_hpux_init_abi (info, gdbarch);
d542061a 1513 pa64_solib_select (gdbarch);
273f8429
JB
1514}
1515
08d53055
MK
1516static enum gdb_osabi
1517hppa_hpux_core_osabi_sniffer (bfd *abfd)
1518{
1519 if (strcmp (bfd_get_target (abfd), "hpux-core") == 0)
1520 return GDB_OSABI_HPUX_SOM;
6b79fde8
RC
1521 else if (strcmp (bfd_get_target (abfd), "elf64-hppa") == 0)
1522 {
1523 asection *section;
1524
1525 section = bfd_get_section_by_name (abfd, ".kernel");
1526 if (section)
1527 {
1528 bfd_size_type size;
1529 char *contents;
1530
1531 size = bfd_section_size (abfd, section);
1532 contents = alloca (size);
1533 if (bfd_get_section_contents (abfd, section, contents,
1534 (file_ptr) 0, size)
1535 && strcmp (contents, "HP-UX") == 0)
1536 return GDB_OSABI_HPUX_ELF;
1537 }
1538 }
08d53055
MK
1539
1540 return GDB_OSABI_UNKNOWN;
1541}
1542
273f8429
JB
1543void
1544_initialize_hppa_hpux_tdep (void)
1545{
08d53055
MK
1546 /* BFD doesn't set a flavour for HP-UX style core files. It doesn't
1547 set the architecture either. */
1548 gdbarch_register_osabi_sniffer (bfd_arch_unknown,
1549 bfd_target_unknown_flavour,
1550 hppa_hpux_core_osabi_sniffer);
6b79fde8
RC
1551 gdbarch_register_osabi_sniffer (bfd_arch_hppa,
1552 bfd_target_elf_flavour,
1553 hppa_hpux_core_osabi_sniffer);
08d53055 1554
05816f70 1555 gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_HPUX_SOM,
273f8429 1556 hppa_hpux_som_init_abi);
51db5742 1557 gdbarch_register_osabi (bfd_arch_hppa, bfd_mach_hppa20w, GDB_OSABI_HPUX_ELF,
273f8429
JB
1558 hppa_hpux_elf_init_abi);
1559}
This page took 0.497243 seconds and 4 git commands to generate.