* MAINTAINERS: Add self under write after approval.
[deliverable/binutils-gdb.git] / gdb / i386bsd-tdep.c
CommitLineData
b7247919 1/* Target-dependent code for i386 BSD's.
8201327c 2 Copyright 2001, 2002 Free Software Foundation, Inc.
b7247919
MK
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21#include "defs.h"
9c5045b5 22#include "arch-utils.h"
b7247919
MK
23#include "frame.h"
24#include "gdbcore.h"
25#include "regcache.h"
26
8201327c 27#include "i386-tdep.h"
b7247919 28
8201327c 29/* Support for signal handlers. */
b7247919
MK
30
31/* Return whether PC is in a BSD sigtramp routine. */
32
8201327c
MK
33static int
34i386bsd_pc_in_sigtramp (CORE_ADDR pc, char *name)
b7247919 35{
8201327c 36 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
b7247919 37
8201327c
MK
38 return (pc >= tdep->sigtramp_start && pc < tdep->sigtramp_end);
39}
b7247919
MK
40
41/* Assuming FRAME is for a BSD sigtramp routine, return the address of
21d0e8a4 42 the associated sigcontext structure.
b7247919 43
21d0e8a4
MK
44 Note: This function is used for Solaris 2 too, so don't make it
45 static. */
46
47CORE_ADDR
b7247919
MK
48i386bsd_sigcontext_addr (struct frame_info *frame)
49{
50 if (frame->next)
51 /* If this isn't the top frame, the next frame must be for the
52 signal handler itself. A pointer to the sigcontext structure
53 is passed as the third argument to the signal handler. */
54 return read_memory_unsigned_integer (frame->next->frame + 16, 4);
55
56 /* This is the top frame. We'll have to find the address of the
57 sigcontext structure by looking at the stack pointer. */
58 return read_memory_unsigned_integer (read_register (SP_REGNUM) + 8, 4);
59}
60
8201327c
MK
61/* Return the start address of the sigtramp routine. */
62
63CORE_ADDR
64i386bsd_sigtramp_start (CORE_ADDR pc)
65{
66 return gdbarch_tdep (current_gdbarch)->sigtramp_start;
67}
68
69/* Return the end address of the sigtramp routine. */
70
71CORE_ADDR
72i386bsd_sigtramp_end (CORE_ADDR pc)
73{
74 return gdbarch_tdep (current_gdbarch)->sigtramp_end;
75}
76\f
77
9c5045b5
MK
78/* Support for shared libraries. */
79
80/* Return non-zero if we are in a shared library trampoline code stub. */
81
82int
83i386bsd_aout_in_solib_call_trampoline (CORE_ADDR pc, char *name)
84{
85 return (name && !strcmp (name, "_DYNAMIC"));
86}
87
8201327c
MK
88/* Traditional BSD (4.3 BSD, still used for BSDI and 386BSD). */
89
90/* From <machine/signal.h>. */
91int i386bsd_sc_pc_offset = 20;
6bff26de 92int i386bsd_sc_sp_offset = 8;
8201327c
MK
93
94static void
95i386bsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
96{
97 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
98
99 set_gdbarch_pc_in_sigtramp (gdbarch, i386bsd_pc_in_sigtramp);
100
9c5045b5
MK
101 /* Assume SunOS-style shared libraries. */
102 set_gdbarch_in_solib_call_trampoline (gdbarch,
103 i386bsd_aout_in_solib_call_trampoline);
104
8201327c
MK
105 tdep->jb_pc_offset = 0;
106
8201327c
MK
107 tdep->sigtramp_start = 0xfdbfdfc0;
108 tdep->sigtramp_end = 0xfdbfe000;
21d0e8a4 109 tdep->sigcontext_addr = i386bsd_sigcontext_addr;
8201327c 110 tdep->sc_pc_offset = i386bsd_sc_pc_offset;
6bff26de 111 tdep->sc_sp_offset = i386bsd_sc_sp_offset;
8201327c
MK
112}
113
114/* NetBSD 1.0 or later. */
115
116/* From <machine/signal.h>. */
117int i386nbsd_sc_pc_offset = 44;
6bff26de 118int i386nbsd_sc_sp_offset = 56;
8201327c
MK
119
120static void
121i386nbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
122{
123 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
124
125 /* Obviously NetBSD is BSD-based. */
126 i386bsd_init_abi (info, gdbarch);
127
128 /* NetBSD uses -freg-struct-return by default. */
129 tdep->struct_return = reg_struct_return;
130
131 /* NetBSD uses a different memory layout. */
132 tdep->sigtramp_start = 0xbfbfdf20;
133 tdep->sigtramp_end = 0xbfbfdff0;
134
135 /* NetBSD has a `struct sigcontext' that's different from the
136 origional 4.3 BSD. */
137 tdep->sc_pc_offset = i386nbsd_sc_pc_offset;
6bff26de 138 tdep->sc_sp_offset = i386nbsd_sc_sp_offset;
8201327c
MK
139}
140
141/* NetBSD ELF. */
142static void
143i386nbsdelf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
144{
145 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
146
147 /* It's still NetBSD. */
148 i386nbsd_init_abi (info, gdbarch);
149
150 /* But ELF-based. */
151 i386_elf_init_abi (info, gdbarch);
152
9c5045b5
MK
153 /* NetBSD ELF uses SVR4-style shared libraries. */
154 set_gdbarch_in_solib_call_trampoline (gdbarch,
155 generic_in_solib_call_trampoline);
156
8201327c
MK
157 /* NetBSD ELF uses -fpcc-struct-return by default. */
158 tdep->struct_return = pcc_struct_return;
159
160 /* We support the SSE registers on NetBSD ELF. */
161 tdep->num_xmm_regs = I386_NUM_XREGS - 1;
162 set_gdbarch_num_regs (gdbarch, I386_NUM_GREGS + I386_NUM_FREGS
163 + I386_NUM_XREGS);
164}
165
166/* FreeBSD 3.0-RELEASE or later. */
167
168CORE_ADDR i386fbsd_sigtramp_start = 0xbfbfdf20;
169CORE_ADDR i386fbsd_sigtramp_end = 0xbfbfdff0;
170
171static void
172i386fbsdaout_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
173{
174 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
175
176 /* Obviously FreeBSD is BSD-based. */
177 i386bsd_init_abi (info, gdbarch);
178
179 /* FreeBSD uses -freg-struct-return by default. */
180 tdep->struct_return = reg_struct_return;
181
182 /* FreeBSD uses a different memory layout. */
183 tdep->sigtramp_start = i386fbsd_sigtramp_start;
184 tdep->sigtramp_end = i386fbsd_sigtramp_end;
185}
186
187static void
188i386fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
189{
190 /* It's almost identical to FreeBSD a.out. */
191 i386fbsdaout_init_abi (info, gdbarch);
192
193 /* Except that it uses ELF. */
194 i386_elf_init_abi (info, gdbarch);
9c5045b5
MK
195
196 /* FreeBSD ELF uses SVR4-style shared libraries. */
197 set_gdbarch_in_solib_call_trampoline (gdbarch,
198 generic_in_solib_call_trampoline);
8201327c
MK
199}
200
201/* FreeBSD 4.0-RELEASE or later. */
202
203/* From <machine/signal.h>. */
204int i386fbsd4_sc_pc_offset = 76;
6bff26de 205int i386fbsd4_sc_sp_offset = 88;
8201327c
MK
206
207static void
208i386fbsd4_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
209{
210 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
211
212 /* Inherit stuff from older releases. We assume that FreeBSD
213 4.0-RELEASE always uses ELF. */
214 i386fbsd_init_abi (info, gdbarch);
215
216 /* FreeBSD 4.0 introduced a new `struct sigcontext'. */
217 tdep->sc_pc_offset = i386fbsd4_sc_pc_offset;
6bff26de 218 tdep->sc_sp_offset = i386fbsd4_sc_sp_offset;
8201327c
MK
219}
220
221\f
222static enum gdb_osabi
223i386bsd_aout_osabi_sniffer (bfd *abfd)
224{
225 if (strcmp (bfd_get_target (abfd), "a.out-i386-netbsd") == 0)
226 return GDB_OSABI_NETBSD_AOUT;
227
228 if (strcmp (bfd_get_target (abfd), "a.out-i386-freebsd") == 0)
229 return GDB_OSABI_FREEBSD_AOUT;
230
231 return GDB_OSABI_UNKNOWN;
232}
233
234\f
235/* Provide a prototype to silence -Wmissing-prototypes. */
236void _initialize_i386bsd_tdep (void);
237
238void
239_initialize_i386bsd_tdep (void)
240{
241 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_aout_flavour,
242 i386bsd_aout_osabi_sniffer);
243
244 gdbarch_register_osabi (bfd_arch_i386, GDB_OSABI_NETBSD_AOUT,
245 i386nbsd_init_abi);
246 gdbarch_register_osabi (bfd_arch_i386, GDB_OSABI_NETBSD_ELF,
247 i386nbsdelf_init_abi);
248 gdbarch_register_osabi (bfd_arch_i386, GDB_OSABI_FREEBSD_AOUT,
249 i386fbsdaout_init_abi);
250 gdbarch_register_osabi (bfd_arch_i386, GDB_OSABI_FREEBSD_ELF,
251 i386fbsd4_init_abi);
252}
This page took 0.114453 seconds and 4 git commands to generate.