]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/sparc-sol2-tdep.c
Copyright year update in most files of the GDB Project.
[thirdparty/binutils-gdb.git] / gdb / sparc-sol2-tdep.c
CommitLineData
386c036b
MK
1/* Target-dependent code for Solaris SPARC.
2
0b302171 3 Copyright (C) 2003-2004, 2006-2012 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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
386c036b
MK
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
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
386c036b
MK
19
20#include "defs.h"
21#include "frame.h"
22#include "frame-unwind.h"
23#include "gdbcore.h"
24#include "symtab.h"
25#include "objfiles.h"
26#include "osabi.h"
27#include "regcache.h"
28#include "target.h"
29#include "trad-frame.h"
30
31#include "gdb_assert.h"
32#include "gdb_string.h"
33
081bf9da 34#include "sol2-tdep.h"
386c036b 35#include "sparc-tdep.h"
70b216c8 36#include "solib-svr4.h"
386c036b
MK
37
38/* From <sys/regset.h>. */
39const struct sparc_gregset sparc32_sol2_gregset =
40{
41 32 * 4, /* %psr */
42 33 * 4, /* %pc */
43 34 * 4, /* %npc */
44 35 * 4, /* %y */
45 36 * 4, /* %wim */
46 37 * 4, /* %tbr */
47 1 * 4, /* %g1 */
48 16 * 4, /* %l0 */
49};
50\f
51
52/* The Solaris signal trampolines reside in libc. For normal signals,
53 the function `sigacthandler' is used. This signal trampoline will
54 call the signal handler using the System V calling convention,
55 where the third argument is a pointer to an instance of
56 `ucontext_t', which has a member `uc_mcontext' that contains the
57 saved registers. Incidentally, the kernel passes the `ucontext_t'
58 pointer as the third argument of the signal trampoline too, and
c378eb4e 59 `sigacthandler' simply passes it on. However, if you link your
386c036b
MK
60 program with "-L/usr/ucblib -R/usr/ucblib -lucb", the function
61 `ucbsigvechandler' will be used, which invokes the using the BSD
62 convention, where the third argument is a pointer to an instance of
63 `struct sigcontext'. It is the `ucbsigvechandler' function that
64 converts the `ucontext_t' to a `sigcontext', and back. Unless the
65 signal handler modifies the `struct sigcontext' we can safely
66 ignore this. */
67
68int
69sparc_sol2_pc_in_sigtramp (CORE_ADDR pc, char *name)
70{
71 return (name && (strcmp (name, "sigacthandler") == 0
0c318c49
MK
72 || strcmp (name, "ucbsigvechandler") == 0
73 || strcmp (name, "__sighndlr") == 0));
386c036b
MK
74}
75
76static struct sparc_frame_cache *
236369e7 77sparc32_sol2_sigtramp_frame_cache (struct frame_info *this_frame,
386c036b
MK
78 void **this_cache)
79{
80 struct sparc_frame_cache *cache;
81 CORE_ADDR mcontext_addr, addr;
82 int regnum;
83
84 if (*this_cache)
85 return *this_cache;
86
236369e7 87 cache = sparc_frame_cache (this_frame, this_cache);
386c036b
MK
88 gdb_assert (cache == *this_cache);
89
236369e7 90 cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
386c036b
MK
91
92 /* The third argument is a pointer to an instance of `ucontext_t',
93 which has a member `uc_mcontext' that contains the saved
94 registers. */
369c397b
JB
95 regnum =
96 (cache->copied_regs_mask & 0x04) ? SPARC_I2_REGNUM : SPARC_O2_REGNUM;
236369e7 97 mcontext_addr = get_frame_register_unsigned (this_frame, regnum) + 40;
386c036b
MK
98
99 cache->saved_regs[SPARC32_PSR_REGNUM].addr = mcontext_addr + 0 * 4;
100 cache->saved_regs[SPARC32_PC_REGNUM].addr = mcontext_addr + 1 * 4;
101 cache->saved_regs[SPARC32_NPC_REGNUM].addr = mcontext_addr + 2 * 4;
102 cache->saved_regs[SPARC32_Y_REGNUM].addr = mcontext_addr + 3 * 4;
103
104 /* Since %g0 is always zero, keep the identity encoding. */
105 for (regnum = SPARC_G1_REGNUM, addr = mcontext_addr + 4 * 4;
106 regnum <= SPARC_O7_REGNUM; regnum++, addr += 4)
107 cache->saved_regs[regnum].addr = addr;
108
236369e7 109 if (get_frame_memory_unsigned (this_frame, mcontext_addr + 19 * 4, 4))
386c036b
MK
110 {
111 /* The register windows haven't been flushed. */
112 for (regnum = SPARC_L0_REGNUM; regnum <= SPARC_I7_REGNUM; regnum++)
113 trad_frame_set_unknown (cache->saved_regs, regnum);
114 }
115 else
116 {
117 addr = cache->saved_regs[SPARC_SP_REGNUM].addr;
236369e7 118 addr = get_frame_memory_unsigned (this_frame, addr, 4);
386c036b
MK
119 for (regnum = SPARC_L0_REGNUM;
120 regnum <= SPARC_I7_REGNUM; regnum++, addr += 4)
121 cache->saved_regs[regnum].addr = addr;
122 }
123
124 return cache;
125}
126
127static void
236369e7 128sparc32_sol2_sigtramp_frame_this_id (struct frame_info *this_frame,
386c036b
MK
129 void **this_cache,
130 struct frame_id *this_id)
131{
132 struct sparc_frame_cache *cache =
236369e7 133 sparc32_sol2_sigtramp_frame_cache (this_frame, this_cache);
386c036b
MK
134
135 (*this_id) = frame_id_build (cache->base, cache->pc);
136}
137
236369e7
JB
138static struct value *
139sparc32_sol2_sigtramp_frame_prev_register (struct frame_info *this_frame,
386c036b 140 void **this_cache,
236369e7 141 int regnum)
386c036b
MK
142{
143 struct sparc_frame_cache *cache =
236369e7 144 sparc32_sol2_sigtramp_frame_cache (this_frame, this_cache);
386c036b 145
236369e7 146 return trad_frame_get_prev_register (this_frame, cache->saved_regs, regnum);
386c036b
MK
147}
148
236369e7
JB
149static int
150sparc32_sol2_sigtramp_frame_sniffer (const struct frame_unwind *self,
151 struct frame_info *this_frame,
152 void **this_cache)
386c036b 153{
236369e7 154 CORE_ADDR pc = get_frame_pc (this_frame);
386c036b
MK
155 char *name;
156
157 find_pc_partial_function (pc, &name, NULL, NULL);
158 if (sparc_sol2_pc_in_sigtramp (pc, name))
236369e7 159 return 1;
386c036b 160
236369e7 161 return 0;
386c036b 162}
149ad273 163
236369e7
JB
164static const struct frame_unwind sparc32_sol2_sigtramp_frame_unwind =
165{
166 SIGTRAMP_FRAME,
8fbca658 167 default_frame_unwind_stop_reason,
236369e7
JB
168 sparc32_sol2_sigtramp_frame_this_id,
169 sparc32_sol2_sigtramp_frame_prev_register,
170 NULL,
171 sparc32_sol2_sigtramp_frame_sniffer
172};
173
149ad273
UW
174/* Unglobalize NAME. */
175
176char *
177sparc_sol2_static_transform_name (char *name)
178{
179 /* The Sun compilers (Sun ONE Studio, Forte Developer, Sun WorkShop,
180 SunPRO) convert file static variables into global values, a
181 process known as globalization. In order to do this, the
182 compiler will create a unique prefix and prepend it to each file
183 static variable. For static variables within a function, this
184 globalization prefix is followed by the function name (nested
185 static variables within a function are supposed to generate a
186 warning message, and are left alone). The procedure is
187 documented in the Stabs Interface Manual, which is distrubuted
188 with the compilers, although version 4.0 of the manual seems to
189 be incorrect in some places, at least for SPARC. The
190 globalization prefix is encoded into an N_OPT stab, with the form
191 "G=<prefix>". The globalization prefix always seems to start
192 with a dollar sign '$'; a dot '.' is used as a seperator. So we
193 simply strip everything up until the last dot. */
194
195 if (name[0] == '$')
196 {
197 char *p = strrchr (name, '.');
198 if (p)
199 return p + 1;
200 }
201
202 return name;
203}
386c036b
MK
204\f
205
206void
207sparc32_sol2_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
208{
209 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
210
203c3895
UW
211 /* The Sun compilers (Sun ONE Studio, Forte Developer, Sun WorkShop, SunPRO)
212 compiler puts out 0 instead of the address in N_SO stabs. Starting with
213 SunPRO 3.0, the compiler does this for N_FUN stabs too. */
214 set_gdbarch_sofun_address_maybe_missing (gdbarch, 1);
215
149ad273
UW
216 /* The Sun compilers also do "globalization"; see the comment in
217 sparc_sol2_static_transform_name for more information. */
218 set_gdbarch_static_transform_name
219 (gdbarch, sparc_sol2_static_transform_name);
220
386c036b 221 /* Solaris has SVR4-style shared libraries... */
386c036b 222 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
081bf9da 223 set_gdbarch_skip_solib_resolver (gdbarch, sol2_skip_solib_resolver);
70b216c8
MK
224 set_solib_svr4_fetch_link_map_offsets
225 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
386c036b
MK
226
227 /* ...which means that we need some special handling when doing
228 prologue analysis. */
229 tdep->plt_entry_size = 12;
230
231 /* Solaris has kernel-assisted single-stepping support. */
232 set_gdbarch_software_single_step (gdbarch, NULL);
233
236369e7 234 frame_unwind_append_unwinder (gdbarch, &sparc32_sol2_sigtramp_frame_unwind);
959b8724 235
28439f5e
PA
236 /* How to print LWP PTIDs from core files. */
237 set_gdbarch_core_pid_to_str (gdbarch, sol2_core_pid_to_str);
386c036b
MK
238}
239\f
240
241/* Provide a prototype to silence -Wmissing-prototypes. */
242void _initialize_sparc_sol2_tdep (void);
243
244void
245_initialize_sparc_sol2_tdep (void)
246{
247 gdbarch_register_osabi (bfd_arch_sparc, 0,
248 GDB_OSABI_SOLARIS, sparc32_sol2_init_abi);
249}