1 /* Target-dependent code for i386 BSD's.
2 Copyright 2001, 2002, 2003 Free Software Foundation, Inc.
4 This file is part of GDB.
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.
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.
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. */
22 #include "arch-utils.h"
28 #include "gdb_string.h"
30 #include "i386-tdep.h"
32 /* Support for signal handlers. */
34 /* Return whether PC is in a BSD sigtramp routine. */
37 i386bsd_pc_in_sigtramp (CORE_ADDR pc, char *name)
39 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
41 return (pc >= tdep->sigtramp_start && pc < tdep->sigtramp_end);
44 /* Assuming NEXT_FRAME is for a frame following a BSD sigtramp
45 routine, return the address of the associated sigcontext structure. */
48 i386bsd_sigcontext_addr (struct frame_info *next_frame)
53 frame_unwind_register (next_frame, SP_REGNUM, buf);
54 sp = extract_unsigned_integer (buf, 4);
56 return read_memory_unsigned_integer (sp + 8, 4);
59 /* Return the start address of the sigtramp routine. */
62 i386bsd_sigtramp_start (CORE_ADDR pc)
64 return gdbarch_tdep (current_gdbarch)->sigtramp_start;
67 /* Return the end address of the sigtramp routine. */
70 i386bsd_sigtramp_end (CORE_ADDR pc)
72 return gdbarch_tdep (current_gdbarch)->sigtramp_end;
76 /* Support for shared libraries. */
78 /* Return non-zero if we are in a shared library trampoline code stub. */
81 i386bsd_aout_in_solib_call_trampoline (CORE_ADDR pc, char *name)
83 return (name && !strcmp (name, "_DYNAMIC"));
86 /* Traditional BSD (4.3 BSD, still used for BSDI and 386BSD). */
88 /* From <machine/signal.h>. */
89 int i386bsd_sc_pc_offset = 20;
90 int i386bsd_sc_sp_offset = 8;
93 i386bsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
95 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
97 set_gdbarch_pc_in_sigtramp (gdbarch, i386bsd_pc_in_sigtramp);
99 /* Allow the recognition of sigtramps as a function named <sigtramp>. */
100 set_gdbarch_sigtramp_start (gdbarch, i386bsd_sigtramp_start);
101 set_gdbarch_sigtramp_end (gdbarch, i386bsd_sigtramp_end);
103 /* Assume SunOS-style shared libraries. */
104 set_gdbarch_in_solib_call_trampoline (gdbarch,
105 i386bsd_aout_in_solib_call_trampoline);
107 tdep->jb_pc_offset = 0;
109 tdep->sigtramp_start = 0xfdbfdfc0;
110 tdep->sigtramp_end = 0xfdbfe000;
111 tdep->sigcontext_addr = i386bsd_sigcontext_addr;
112 tdep->sc_pc_offset = i386bsd_sc_pc_offset;
113 tdep->sc_sp_offset = i386bsd_sc_sp_offset;
116 /* FreeBSD 3.0-RELEASE or later. */
118 CORE_ADDR i386fbsd_sigtramp_start = 0xbfbfdf20;
119 CORE_ADDR i386fbsd_sigtramp_end = 0xbfbfdff0;
122 i386fbsdaout_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
124 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
126 /* Obviously FreeBSD is BSD-based. */
127 i386bsd_init_abi (info, gdbarch);
129 /* FreeBSD uses -freg-struct-return by default. */
130 tdep->struct_return = reg_struct_return;
132 /* FreeBSD uses a different memory layout. */
133 tdep->sigtramp_start = i386fbsd_sigtramp_start;
134 tdep->sigtramp_end = i386fbsd_sigtramp_end;
138 i386fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
140 /* It's almost identical to FreeBSD a.out. */
141 i386fbsdaout_init_abi (info, gdbarch);
143 /* Except that it uses ELF. */
144 i386_elf_init_abi (info, gdbarch);
146 /* FreeBSD ELF uses SVR4-style shared libraries. */
147 set_gdbarch_in_solib_call_trampoline (gdbarch,
148 generic_in_solib_call_trampoline);
151 /* FreeBSD 4.0-RELEASE or later. */
153 /* From <machine/signal.h>. */
154 int i386fbsd4_sc_pc_offset = 76;
155 int i386fbsd4_sc_sp_offset = 88;
158 i386fbsd4_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
160 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
162 /* Inherit stuff from older releases. We assume that FreeBSD
163 4.0-RELEASE always uses ELF. */
164 i386fbsd_init_abi (info, gdbarch);
166 /* FreeBSD 4.0 introduced a new `struct sigcontext'. */
167 tdep->sc_pc_offset = i386fbsd4_sc_pc_offset;
168 tdep->sc_sp_offset = i386fbsd4_sc_sp_offset;
172 static enum gdb_osabi
173 i386bsd_aout_osabi_sniffer (bfd *abfd)
175 if (strcmp (bfd_get_target (abfd), "a.out-i386-netbsd") == 0)
176 return GDB_OSABI_NETBSD_AOUT;
178 if (strcmp (bfd_get_target (abfd), "a.out-i386-freebsd") == 0)
179 return GDB_OSABI_FREEBSD_AOUT;
181 return GDB_OSABI_UNKNOWN;
185 /* Provide a prototype to silence -Wmissing-prototypes. */
186 void _initialize_i386bsd_tdep (void);
189 _initialize_i386bsd_tdep (void)
191 gdbarch_register_osabi_sniffer (bfd_arch_i386, bfd_target_aout_flavour,
192 i386bsd_aout_osabi_sniffer);
194 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_FREEBSD_AOUT,
195 i386fbsdaout_init_abi);
196 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_FREEBSD_ELF,