PR ld/6833
[deliverable/binutils-gdb.git] / gdb / hppa-linux-tdep.c
CommitLineData
9cbc6ef0 1/* Target-dependent code for GNU/Linux running on PA-RISC, for GDB.
50306a9d 2
9b254dd1 3 Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
50306a9d 4
c0f96416 5 This file is part of GDB.
50306a9d 6
c0f96416
MK
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c0f96416 10 (at your option) any later version.
50306a9d 11
c0f96416
MK
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.
50306a9d 16
c0f96416 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
50306a9d
RC
19
20#include "defs.h"
21#include "gdbcore.h"
22#include "osabi.h"
23#include "target.h"
24#include "objfiles.h"
25#include "solib-svr4.h"
26#include "glibc-tdep.h"
27#include "frame-unwind.h"
28#include "trad-frame.h"
29#include "dwarf2-frame.h"
d49771ef 30#include "value.h"
3d8dcac6 31#include "regset.h"
e7b17823 32#include "regcache.h"
50306a9d
RC
33#include "hppa-tdep.h"
34
d49771ef
RC
35#include "elf/common.h"
36
50306a9d
RC
37#if 0
38/* Convert DWARF register number REG to the appropriate register
39 number used by GDB. */
40static int
41hppa_dwarf_reg_to_regnum (int reg)
42{
43 /* registers 0 - 31 are the same in both sets */
44 if (reg < 32)
45 return reg;
46
47 /* dwarf regs 32 to 85 are fpregs 4 - 31 */
48 if (reg >= 32 && reg <= 85)
34f75cc1 49 return HPPA_FP4_REGNUM + (reg - 32);
50306a9d 50
8a3fe4f8 51 warning (_("Unmapped DWARF Register #%d encountered."), reg);
50306a9d
RC
52 return -1;
53}
54#endif
55
56static void
61a1198a 57hppa_linux_target_write_pc (struct regcache *regcache, CORE_ADDR v)
50306a9d
RC
58{
59 /* Probably this should be done by the kernel, but it isn't. */
61a1198a
UW
60 regcache_cooked_write_unsigned (regcache, HPPA_PCOQ_HEAD_REGNUM, v | 0x3);
61 regcache_cooked_write_unsigned (regcache, HPPA_PCOQ_TAIL_REGNUM, (v + 4) | 0x3);
50306a9d
RC
62}
63
64/* An instruction to match. */
65struct insn_pattern
66{
67 unsigned int data; /* See if it matches this.... */
68 unsigned int mask; /* ... with this mask. */
69};
70
50306a9d
RC
71static struct insn_pattern hppa_sigtramp[] = {
72 /* ldi 0, %r25 or ldi 1, %r25 */
73 { 0x34190000, 0xfffffffd },
74 /* ldi __NR_rt_sigreturn, %r20 */
75 { 0x3414015a, 0xffffffff },
76 /* be,l 0x100(%sr2, %r0), %sr0, %r31 */
77 { 0xe4008200, 0xffffffff },
78 /* nop */
79 { 0x08000240, 0xffffffff },
80 { 0, 0 }
81};
82
83#define HPPA_MAX_INSN_PATTERN_LEN (4)
84
85/* Return non-zero if the instructions at PC match the series
86 described in PATTERN, or zero otherwise. PATTERN is an array of
87 'struct insn_pattern' objects, terminated by an entry whose mask is
88 zero.
89
90 When the match is successful, fill INSN[i] with what PATTERN[i]
91 matched. */
92static int
93insns_match_pattern (CORE_ADDR pc,
94 struct insn_pattern *pattern,
95 unsigned int *insn)
96{
97 int i;
98 CORE_ADDR npc = pc;
99
100 for (i = 0; pattern[i].mask; i++)
101 {
f4ca1d1f
RC
102 char buf[4];
103
8defab1a 104 target_read_memory (npc, buf, 4);
f4ca1d1f 105 insn[i] = extract_unsigned_integer (buf, 4);
50306a9d
RC
106 if ((insn[i] & pattern[i].mask) == pattern[i].data)
107 npc += 4;
108 else
109 return 0;
110 }
111 return 1;
112}
113
50306a9d
RC
114/* Signal frames. */
115
116/* (This is derived from MD_FALLBACK_FRAME_STATE_FOR in gcc.)
117
118 Unfortunately, because of various bugs and changes to the kernel,
119 we have several cases to deal with.
120
121 In 2.4, the signal trampoline is 4 bytes, and pc should point directly at
122 the beginning of the trampoline and struct rt_sigframe.
123
124 In <= 2.6.5-rc2-pa3, the signal trampoline is 9 bytes, and pc points at
125 the 4th word in the trampoline structure. This is wrong, it should point
126 at the 5th word. This is fixed in 2.6.5-rc2-pa4.
127
128 To detect these cases, we first take pc, align it to 64-bytes
129 to get the beginning of the signal frame, and then check offsets 0, 4
130 and 5 to see if we found the beginning of the trampoline. This will
131 tell us how to locate the sigcontext structure.
132
133 Note that with a 2.4 64-bit kernel, the signal context is not properly
134 passed back to userspace so the unwind will not work correctly. */
135static CORE_ADDR
2f0e8c7a 136hppa_linux_sigtramp_find_sigcontext (CORE_ADDR pc)
50306a9d
RC
137{
138 unsigned int dummy[HPPA_MAX_INSN_PATTERN_LEN];
139 int offs = 0;
140 int try;
141 /* offsets to try to find the trampoline */
142 static int pcoffs[] = { 0, 4*4, 5*4 };
143 /* offsets to the rt_sigframe structure */
144 static int sfoffs[] = { 4*4, 10*4, 10*4 };
2f0e8c7a
RC
145 CORE_ADDR sp;
146
147 /* Most of the time, this will be correct. The one case when this will
148 fail is if the user defined an alternate stack, in which case the
149 beginning of the stack will not be align_down (pc, 64). */
150 sp = align_down (pc, 64);
50306a9d
RC
151
152 /* rt_sigreturn trampoline:
153 3419000x ldi 0, %r25 or ldi 1, %r25 (x = 0 or 2)
154 3414015a ldi __NR_rt_sigreturn, %r20
155 e4008200 be,l 0x100(%sr2, %r0), %sr0, %r31
156 08000240 nop */
157
158 for (try = 0; try < ARRAY_SIZE (pcoffs); try++)
159 {
160 if (insns_match_pattern (sp + pcoffs[try], hppa_sigtramp, dummy))
161 {
162 offs = sfoffs[try];
163 break;
164 }
165 }
166
167 if (offs == 0)
2f0e8c7a
RC
168 {
169 if (insns_match_pattern (pc, hppa_sigtramp, dummy))
170 {
171 /* sigaltstack case: we have no way of knowing which offset to
172 use in this case; default to new kernel handling. If this is
173 wrong the unwinding will fail. */
174 try = 2;
175 sp = pc - pcoffs[try];
176 }
177 else
178 {
179 return 0;
180 }
181 }
50306a9d
RC
182
183 /* sp + sfoffs[try] points to a struct rt_sigframe, which contains
184 a struct siginfo and a struct ucontext. struct ucontext contains
185 a struct sigcontext. Return an offset to this sigcontext here. Too
186 bad we cannot include system specific headers :-(.
187 sizeof(struct siginfo) == 128
188 offsetof(struct ucontext, uc_mcontext) == 24. */
189 return sp + sfoffs[try] + 128 + 24;
190}
191
192struct hppa_linux_sigtramp_unwind_cache
193{
194 CORE_ADDR base;
195 struct trad_frame_saved_reg *saved_regs;
196};
197
198static struct hppa_linux_sigtramp_unwind_cache *
94afd7a6 199hppa_linux_sigtramp_frame_unwind_cache (struct frame_info *this_frame,
50306a9d
RC
200 void **this_cache)
201{
94afd7a6 202 struct gdbarch *gdbarch = get_frame_arch (this_frame);
50306a9d 203 struct hppa_linux_sigtramp_unwind_cache *info;
2f0e8c7a 204 CORE_ADDR pc, scptr;
50306a9d
RC
205 int i;
206
207 if (*this_cache)
208 return *this_cache;
209
210 info = FRAME_OBSTACK_ZALLOC (struct hppa_linux_sigtramp_unwind_cache);
211 *this_cache = info;
94afd7a6 212 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
50306a9d 213
94afd7a6 214 pc = get_frame_pc (this_frame);
2f0e8c7a 215 scptr = hppa_linux_sigtramp_find_sigcontext (pc);
50306a9d
RC
216
217 /* structure of struct sigcontext:
218
219 struct sigcontext {
220 unsigned long sc_flags;
221 unsigned long sc_gr[32];
222 unsigned long long sc_fr[32];
223 unsigned long sc_iasq[2];
224 unsigned long sc_iaoq[2];
225 unsigned long sc_sar; */
226
227 /* Skip sc_flags. */
228 scptr += 4;
229
230 /* GR[0] is the psw, we don't restore that. */
231 scptr += 4;
232
233 /* General registers. */
234 for (i = 1; i < 32; i++)
235 {
34f75cc1 236 info->saved_regs[HPPA_R0_REGNUM + i].addr = scptr;
50306a9d
RC
237 scptr += 4;
238 }
239
240 /* Pad. */
241 scptr += 4;
242
243 /* FP regs; FP0-3 are not restored. */
244 scptr += (8 * 4);
245
246 for (i = 4; i < 32; i++)
247 {
248 info->saved_regs[HPPA_FP0_REGNUM + (i * 2)].addr = scptr;
249 scptr += 4;
250 info->saved_regs[HPPA_FP0_REGNUM + (i * 2) + 1].addr = scptr;
251 scptr += 4;
252 }
253
254 /* IASQ/IAOQ. */
34f75cc1 255 info->saved_regs[HPPA_PCSQ_HEAD_REGNUM].addr = scptr;
50306a9d 256 scptr += 4;
34f75cc1 257 info->saved_regs[HPPA_PCSQ_TAIL_REGNUM].addr = scptr;
50306a9d
RC
258 scptr += 4;
259
34f75cc1 260 info->saved_regs[HPPA_PCOQ_HEAD_REGNUM].addr = scptr;
50306a9d 261 scptr += 4;
34f75cc1 262 info->saved_regs[HPPA_PCOQ_TAIL_REGNUM].addr = scptr;
50306a9d
RC
263 scptr += 4;
264
94afd7a6 265 info->base = get_frame_register_unsigned (this_frame, HPPA_SP_REGNUM);
50306a9d
RC
266
267 return info;
268}
269
270static void
94afd7a6 271hppa_linux_sigtramp_frame_this_id (struct frame_info *this_frame,
50306a9d
RC
272 void **this_prologue_cache,
273 struct frame_id *this_id)
274{
275 struct hppa_linux_sigtramp_unwind_cache *info
94afd7a6
UW
276 = hppa_linux_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
277 *this_id = frame_id_build (info->base, get_frame_pc (this_frame));
50306a9d
RC
278}
279
94afd7a6
UW
280static struct value *
281hppa_linux_sigtramp_frame_prev_register (struct frame_info *this_frame,
50306a9d 282 void **this_prologue_cache,
94afd7a6 283 int regnum)
50306a9d
RC
284{
285 struct hppa_linux_sigtramp_unwind_cache *info
94afd7a6
UW
286 = hppa_linux_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
287 return hppa_frame_prev_register_helper (this_frame,
288 info->saved_regs, regnum);
50306a9d
RC
289}
290
50306a9d
RC
291/* hppa-linux always uses "new-style" rt-signals. The signal handler's return
292 address should point to a signal trampoline on the stack. The signal
293 trampoline is embedded in a rt_sigframe structure that is aligned on
294 the stack. We take advantage of the fact that sp must be 64-byte aligned,
295 and the trampoline is small, so by rounding down the trampoline address
296 we can find the beginning of the struct rt_sigframe. */
94afd7a6
UW
297static int
298hppa_linux_sigtramp_frame_sniffer (const struct frame_unwind *self,
299 struct frame_info *this_frame,
300 void **this_prologue_cache)
50306a9d 301{
94afd7a6 302 CORE_ADDR pc = get_frame_pc (this_frame);
50306a9d 303
2f0e8c7a 304 if (hppa_linux_sigtramp_find_sigcontext (pc))
94afd7a6 305 return 1;
50306a9d 306
94afd7a6 307 return 0;
50306a9d
RC
308}
309
94afd7a6
UW
310static const struct frame_unwind hppa_linux_sigtramp_frame_unwind = {
311 SIGTRAMP_FRAME,
312 hppa_linux_sigtramp_frame_this_id,
313 hppa_linux_sigtramp_frame_prev_register,
314 NULL,
315 hppa_linux_sigtramp_frame_sniffer
316};
317
d49771ef
RC
318/* Attempt to find (and return) the global pointer for the given
319 function.
320
321 This is a rather nasty bit of code searchs for the .dynamic section
322 in the objfile corresponding to the pc of the function we're trying
323 to call. Once it finds the addresses at which the .dynamic section
324 lives in the child process, it scans the Elf32_Dyn entries for a
325 DT_PLTGOT tag. If it finds one of these, the corresponding
326 d_un.d_ptr value is the global pointer. */
327
328static CORE_ADDR
e38c262f 329hppa_linux_find_global_pointer (struct gdbarch *gdbarch, struct value *function)
d49771ef
RC
330{
331 struct obj_section *faddr_sect;
332 CORE_ADDR faddr;
333
334 faddr = value_as_address (function);
335
336 /* Is this a plabel? If so, dereference it to get the gp value. */
337 if (faddr & 2)
338 {
339 int status;
340 char buf[4];
341
342 faddr &= ~3;
343
344 status = target_read_memory (faddr + 4, buf, sizeof (buf));
345 if (status == 0)
346 return extract_unsigned_integer (buf, sizeof (buf));
347 }
348
349 /* If the address is in the plt section, then the real function hasn't
350 yet been fixed up by the linker so we cannot determine the gp of
351 that function. */
352 if (in_plt_section (faddr, NULL))
353 return 0;
354
355 faddr_sect = find_pc_section (faddr);
356 if (faddr_sect != NULL)
357 {
358 struct obj_section *osect;
359
360 ALL_OBJFILE_OSECTIONS (faddr_sect->objfile, osect)
361 {
362 if (strcmp (osect->the_bfd_section->name, ".dynamic") == 0)
363 break;
364 }
365
366 if (osect < faddr_sect->objfile->sections_end)
367 {
368 CORE_ADDR addr;
369
370 addr = osect->addr;
371 while (addr < osect->endaddr)
372 {
373 int status;
374 LONGEST tag;
375 char buf[4];
376
377 status = target_read_memory (addr, buf, sizeof (buf));
378 if (status != 0)
379 break;
380 tag = extract_signed_integer (buf, sizeof (buf));
381
382 if (tag == DT_PLTGOT)
383 {
384 CORE_ADDR global_pointer;
385
386 status = target_read_memory (addr + 4, buf, sizeof (buf));
387 if (status != 0)
388 break;
389 global_pointer = extract_unsigned_integer (buf, sizeof (buf));
390
391 /* The payoff... */
392 return global_pointer;
393 }
394
395 if (tag == DT_NULL)
396 break;
397
398 addr += 8;
399 }
400 }
401 }
402 return 0;
403}
3d8dcac6
RC
404\f
405/*
406 * Registers saved in a coredump:
407 * gr0..gr31
408 * sr0..sr7
409 * iaoq0..iaoq1
410 * iasq0..iasq1
411 * sar, iir, isr, ior, ipsw
412 * cr0, cr24..cr31
413 * cr8,9,12,13
414 * cr10, cr15
415 */
416
417#define GR_REGNUM(_n) (HPPA_R0_REGNUM+_n)
418#define TR_REGNUM(_n) (HPPA_TR0_REGNUM+_n)
419static const int greg_map[] =
420 {
421 GR_REGNUM(0), GR_REGNUM(1), GR_REGNUM(2), GR_REGNUM(3),
422 GR_REGNUM(4), GR_REGNUM(5), GR_REGNUM(6), GR_REGNUM(7),
423 GR_REGNUM(8), GR_REGNUM(9), GR_REGNUM(10), GR_REGNUM(11),
424 GR_REGNUM(12), GR_REGNUM(13), GR_REGNUM(14), GR_REGNUM(15),
425 GR_REGNUM(16), GR_REGNUM(17), GR_REGNUM(18), GR_REGNUM(19),
426 GR_REGNUM(20), GR_REGNUM(21), GR_REGNUM(22), GR_REGNUM(23),
427 GR_REGNUM(24), GR_REGNUM(25), GR_REGNUM(26), GR_REGNUM(27),
428 GR_REGNUM(28), GR_REGNUM(29), GR_REGNUM(30), GR_REGNUM(31),
429
430 HPPA_SR4_REGNUM+1, HPPA_SR4_REGNUM+2, HPPA_SR4_REGNUM+3, HPPA_SR4_REGNUM+4,
431 HPPA_SR4_REGNUM, HPPA_SR4_REGNUM+5, HPPA_SR4_REGNUM+6, HPPA_SR4_REGNUM+7,
432
433 HPPA_PCOQ_HEAD_REGNUM, HPPA_PCOQ_TAIL_REGNUM,
434 HPPA_PCSQ_HEAD_REGNUM, HPPA_PCSQ_TAIL_REGNUM,
435
436 HPPA_SAR_REGNUM, HPPA_IIR_REGNUM, HPPA_ISR_REGNUM, HPPA_IOR_REGNUM,
437 HPPA_IPSW_REGNUM, HPPA_RCR_REGNUM,
438
439 TR_REGNUM(0), TR_REGNUM(1), TR_REGNUM(2), TR_REGNUM(3),
440 TR_REGNUM(4), TR_REGNUM(5), TR_REGNUM(6), TR_REGNUM(7),
441
442 HPPA_PID0_REGNUM, HPPA_PID1_REGNUM, HPPA_PID2_REGNUM, HPPA_PID3_REGNUM,
443 HPPA_CCR_REGNUM, HPPA_EIEM_REGNUM,
444 };
445
446static void
447hppa_linux_supply_regset (const struct regset *regset,
448 struct regcache *regcache,
449 int regnum, const void *regs, size_t len)
450{
451 struct gdbarch *arch = get_regcache_arch (regcache);
452 struct gdbarch_tdep *tdep = gdbarch_tdep (arch);
453 const char *buf = regs;
454 int i, offset;
455
456 offset = 0;
457 for (i = 0; i < ARRAY_SIZE (greg_map); i++)
458 {
459 if (regnum == greg_map[i] || regnum == -1)
460 regcache_raw_supply (regcache, greg_map[i], buf + offset);
461
462 offset += tdep->bytes_per_address;
463 }
464}
465
466static void
467hppa_linux_supply_fpregset (const struct regset *regset,
468 struct regcache *regcache,
469 int regnum, const void *regs, size_t len)
470{
471 const char *buf = regs;
472 int i, offset;
473
474 offset = 0;
475 for (i = 0; i < 31; i++)
476 {
477 if (regnum == HPPA_FP0_REGNUM + i || regnum == -1)
478 regcache_raw_supply (regcache, HPPA_FP0_REGNUM + i,
479 buf + offset);
480 offset += 8;
481 }
482}
483
155bd5d1 484/* HPPA Linux kernel register set. */
3d8dcac6
RC
485static struct regset hppa_linux_regset =
486{
487 NULL,
488 hppa_linux_supply_regset
489};
490
491static struct regset hppa_linux_fpregset =
492{
493 NULL,
494 hppa_linux_supply_fpregset
495};
496
497static const struct regset *
498hppa_linux_regset_from_core_section (struct gdbarch *gdbarch,
499 const char *sect_name,
500 size_t sect_size)
501{
502 if (strcmp (sect_name, ".reg") == 0)
503 return &hppa_linux_regset;
504 else if (strcmp (sect_name, ".reg2") == 0)
505 return &hppa_linux_fpregset;
506
507 return NULL;
508}
509\f
d49771ef 510
50306a9d
RC
511/* Forward declarations. */
512extern initialize_file_ftype _initialize_hppa_linux_tdep;
513
514static void
515hppa_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
516{
517 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
518
9cbc6ef0 519 /* GNU/Linux is always ELF. */
50306a9d
RC
520 tdep->is_elf = 1;
521
d49771ef
RC
522 tdep->find_global_pointer = hppa_linux_find_global_pointer;
523
50306a9d
RC
524 set_gdbarch_write_pc (gdbarch, hppa_linux_target_write_pc);
525
94afd7a6 526 frame_unwind_append_unwinder (gdbarch, &hppa_linux_sigtramp_frame_unwind);
50306a9d
RC
527
528 /* GNU/Linux uses SVR4-style shared libraries. */
529 set_solib_svr4_fetch_link_map_offsets
530 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
531
34f55018
MK
532 tdep->in_solib_call_trampoline = hppa_in_solib_call_trampoline;
533 set_gdbarch_skip_trampoline_code (gdbarch, hppa_skip_trampoline_code);
50306a9d
RC
534
535 /* GNU/Linux uses the dynamic linker included in the GNU C Library. */
536 set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver);
537
3a7d1c27
RC
538 /* On hppa-linux, currently, sizeof(long double) == 8. There has been
539 some discussions to support 128-bit long double, but it requires some
540 more work in gcc and glibc first. */
541 set_gdbarch_long_double_bit (gdbarch, 64);
542
3d8dcac6
RC
543 set_gdbarch_regset_from_core_section
544 (gdbarch, hppa_linux_regset_from_core_section);
545
50306a9d
RC
546#if 0
547 /* Dwarf-2 unwinding support. Not yet working. */
50306a9d
RC
548 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, hppa_dwarf_reg_to_regnum);
549 frame_unwind_append_sniffer (gdbarch, dwarf2_frame_sniffer);
550 frame_base_append_sniffer (gdbarch, dwarf2_frame_base_sniffer);
551#endif
b2756930
KB
552
553 /* Enable TLS support. */
554 set_gdbarch_fetch_tls_load_module_address (gdbarch,
555 svr4_fetch_objfile_link_map);
50306a9d
RC
556}
557
558void
559_initialize_hppa_linux_tdep (void)
560{
561 gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_LINUX, hppa_linux_init_abi);
3d8dcac6 562 gdbarch_register_osabi (bfd_arch_hppa, bfd_mach_hppa20w, GDB_OSABI_LINUX, hppa_linux_init_abi);
50306a9d 563}
This page took 0.491899 seconds and 4 git commands to generate.