* configure.ac: Switch license to GPLv3.
[deliverable/binutils-gdb.git] / gdb / sparc64-linux-tdep.c
CommitLineData
386c036b
MK
1/* Target-dependent code for GNU/Linux UltraSPARC.
2
6aba47ca 3 Copyright (C) 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
386c036b
MK
4
5 This file is part of GDB.
6
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.
11
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.
16
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
197e01b6
EZ
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
386c036b
MK
21
22#include "defs.h"
78a0fd57
DM
23#include "frame.h"
24#include "frame-unwind.h"
b2a0b9b2 25#include "dwarf2-frame.h"
07c5f590 26#include "regset.h"
0b4294d3 27#include "regcache.h"
386c036b 28#include "gdbarch.h"
0b4294d3 29#include "gdbcore.h"
386c036b 30#include "osabi.h"
b2756930 31#include "solib-svr4.h"
78a0fd57
DM
32#include "symtab.h"
33#include "trad-frame.h"
70f1dc74 34#include "tramp-frame.h"
78a0fd57 35
386c036b
MK
36#include "sparc64-tdep.h"
37
70f1dc74 38/* Signal trampoline support. */
78a0fd57 39
81f726ab
DM
40static void sparc64_linux_sigframe_init (const struct tramp_frame *self,
41 struct frame_info *next_frame,
42 struct trad_frame_cache *this_cache,
43 CORE_ADDR func);
78a0fd57 44
70f1dc74
MK
45/* See sparc-linux-tdep.c for details. Note that 64-bit binaries only
46 use RT signals. */
47
48static const struct tramp_frame sparc64_linux_rt_sigframe =
49{
81f726ab
DM
50 SIGTRAMP_FRAME,
51 4,
52 {
70f1dc74
MK
53 { 0x82102065, -1 }, /* mov __NR_rt_sigreturn, %g1 */
54 { 0x91d0206d, -1 }, /* ta 0x6d */
81f726ab
DM
55 { TRAMP_SENTINEL_INSN, -1 }
56 },
57 sparc64_linux_sigframe_init
58};
78a0fd57 59
81f726ab
DM
60static void
61sparc64_linux_sigframe_init (const struct tramp_frame *self,
62 struct frame_info *next_frame,
63 struct trad_frame_cache *this_cache,
64 CORE_ADDR func)
78a0fd57 65{
80f9e3aa 66 CORE_ADDR base, addr, sp_addr;
78a0fd57
DM
67 int regnum;
68
81f726ab
DM
69 base = frame_unwind_register_unsigned (next_frame, SPARC_O1_REGNUM);
70 base += 128;
78a0fd57 71
70f1dc74 72 /* Offsets from <bits/sigcontext.h>. */
78a0fd57
DM
73
74 /* Since %g0 is always zero, keep the identity encoding. */
70f1dc74 75 addr = base + 8;
80f9e3aa 76 sp_addr = base + ((SPARC_SP_REGNUM - SPARC_G0_REGNUM) * 8);
81f726ab
DM
77 for (regnum = SPARC_G1_REGNUM; regnum <= SPARC_O7_REGNUM; regnum++)
78 {
79 trad_frame_set_reg_addr (this_cache, regnum, addr);
80 addr += 8;
81 }
78a0fd57 82
70f1dc74
MK
83 trad_frame_set_reg_addr (this_cache, SPARC64_STATE_REGNUM, addr + 0);
84 trad_frame_set_reg_addr (this_cache, SPARC64_PC_REGNUM, addr + 8);
85 trad_frame_set_reg_addr (this_cache, SPARC64_NPC_REGNUM, addr + 16);
86 trad_frame_set_reg_addr (this_cache, SPARC64_Y_REGNUM, addr + 24);
87 trad_frame_set_reg_addr (this_cache, SPARC64_FPRS_REGNUM, addr + 28);
78a0fd57 88
80f9e3aa
DM
89 base = frame_unwind_register_unsigned (next_frame, SPARC_SP_REGNUM);
90 if (base & 1)
91 base += BIAS;
92
93 addr = get_frame_memory_unsigned (next_frame, sp_addr, 8);
81f726ab
DM
94 if (addr & 1)
95 addr += BIAS;
78a0fd57 96
81f726ab
DM
97 for (regnum = SPARC_L0_REGNUM; regnum <= SPARC_I7_REGNUM; regnum++)
98 {
99 trad_frame_set_reg_addr (this_cache, regnum, addr);
100 addr += 8;
101 }
102 trad_frame_set_id (this_cache, frame_id_build (base, func));
78a0fd57
DM
103}
104\f
0b4294d3
DM
105/* Return the address of a system call's alternative return
106 address. */
107
108static CORE_ADDR
0b1b3e42 109sparc64_linux_step_trap (struct frame_info *frame, unsigned long insn)
0b4294d3
DM
110{
111 if (insn == 0x91d0206d)
112 {
0b1b3e42 113 ULONGEST sp = get_frame_register_unsigned (frame, SPARC_SP_REGNUM);
0b4294d3
DM
114 if (sp & 1)
115 sp += BIAS;
116
117 /* The kernel puts the sigreturn registers on the stack,
118 and this is where the signal unwinding state is take from
119 when returning from a signal.
120
121 A siginfo_t sits 192 bytes from the base of the stack. This
122 siginfo_t is 128 bytes, and is followed by the sigreturn
123 register save area. The saved PC sits at a 136 byte offset
124 into there. */
125
126 return read_memory_unsigned_integer (sp + 192 + 128 + 136, 8);
127 }
128
129 return 0;
130}
131\f
70f1dc74 132
07c5f590
DM
133const struct sparc_gregset sparc64_linux_core_gregset =
134{
135 32 * 8, /* %tstate */
136 33 * 8, /* %tpc */
137 34 * 8, /* %tnpc */
138 35 * 8, /* %y */
139 -1, /* %wim */
140 -1, /* %tbr */
141 1 * 8, /* %g1 */
142 16 * 8, /* %l0 */
143 8, /* y size */
144};
145\f
146
147static void
148sparc64_linux_supply_core_gregset (const struct regset *regset,
149 struct regcache *regcache,
150 int regnum, const void *gregs, size_t len)
151{
152 sparc64_supply_gregset (&sparc64_linux_core_gregset, regcache, regnum, gregs);
153}
154
155static void
156sparc64_linux_collect_core_gregset (const struct regset *regset,
157 const struct regcache *regcache,
158 int regnum, void *gregs, size_t len)
159{
160 sparc64_collect_gregset (&sparc64_linux_core_gregset, regcache, regnum, gregs);
161}
162
163static void
164sparc64_linux_supply_core_fpregset (const struct regset *regset,
165 struct regcache *regcache,
166 int regnum, const void *fpregs, size_t len)
167{
168 sparc64_supply_fpregset (regcache, regnum, fpregs);
169}
170
171static void
172sparc64_linux_collect_core_fpregset (const struct regset *regset,
173 const struct regcache *regcache,
174 int regnum, void *fpregs, size_t len)
175{
176 sparc64_collect_fpregset (regcache, regnum, fpregs);
177}
178
179\f
180
386c036b
MK
181static void
182sparc64_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
183{
184 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
185
07c5f590
DM
186 tdep->gregset = regset_alloc (gdbarch, sparc64_linux_supply_core_gregset,
187 sparc64_linux_collect_core_gregset);
188 tdep->sizeof_gregset = 288;
189
190 tdep->fpregset = regset_alloc (gdbarch, sparc64_linux_supply_core_fpregset,
191 sparc64_linux_collect_core_fpregset);
192 tdep->sizeof_fpregset = 280;
193
81f726ab 194 tramp_frame_prepend_unwinder (gdbarch, &sparc64_linux_rt_sigframe);
78a0fd57 195
b2a0b9b2
DM
196 /* Hook in the DWARF CFI frame unwinder. */
197 frame_unwind_append_sniffer (gdbarch, dwarf2_frame_sniffer);
198
20338726
DM
199 sparc64_init_abi (info, gdbarch);
200
a33e488c
MK
201 /* GNU/Linux has SVR4-style shared libraries... */
202 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
203 set_solib_svr4_fetch_link_map_offsets
204 (gdbarch, svr4_lp64_fetch_link_map_offsets);
386c036b 205
a33e488c
MK
206 /* ...which means that we need some special handling when doing
207 prologue analysis. */
208 tdep->plt_entry_size = 16;
b2756930
KB
209
210 /* Enable TLS support. */
211 set_gdbarch_fetch_tls_load_module_address (gdbarch,
212 svr4_fetch_objfile_link_map);
0b4294d3
DM
213
214 /* Make sure we can single-step over signal return system calls. */
215 tdep->step_trap = sparc64_linux_step_trap;
386c036b 216}
70f1dc74 217\f
386c036b
MK
218
219/* Provide a prototype to silence -Wmissing-prototypes. */
220extern void _initialize_sparc64_linux_tdep (void);
221
222void
223_initialize_sparc64_linux_tdep (void)
224{
225 gdbarch_register_osabi (bfd_arch_sparc, bfd_mach_sparc_v9,
226 GDB_OSABI_LINUX, sparc64_linux_init_abi);
227}
This page took 0.358338 seconds and 4 git commands to generate.