Fix OpenBSD/i386 sigtramp recognition.
[external/binutils.git] / gdb / i386fbsd-tdep.c
1 /* Target-dependent code for FreeBSD/i386.
2
3    Copyright 2003, 2004 Free Software Foundation, Inc.
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
19    Foundation, Inc., 59 Temple Place - Suite 330,
20    Boston, MA 02111-1307, USA.  */
21
22 #include "defs.h"
23 #include "arch-utils.h"
24 #include "osabi.h"
25
26 #include "i386-tdep.h"
27 #include "i387-tdep.h"
28
29 /* FreeBSD 3.0-RELEASE or later.  */
30
31 /* From <machine/reg.h>.  */
32 static int i386fbsd_r_reg_offset[] =
33 {
34   9 * 4, 8 * 4, 7 * 4, 6 * 4,   /* %eax, %ecx, %edx, %ebx */
35   15 * 4, 4 * 4,                /* %esp, %ebp */
36   3 * 4, 2 * 4,                 /* %esi, %edi */
37   12 * 4, 14 * 4,               /* %eip, %eflags */
38   13 * 4, 16 * 4,               /* %cs, %ss */
39   1 * 4, 0 * 4, -1, -1          /* %ds, %es, %fs, %gs */
40 };
41
42 /* Sigtramp routine location.  */
43 CORE_ADDR i386fbsd_sigtramp_start_addr = 0xbfbfdf20;
44 CORE_ADDR i386fbsd_sigtramp_end_addr = 0xbfbfdff0;
45
46 /* From <machine/signal.h>.  */
47 static int i386fbsd_sc_reg_offset[] =
48 {
49   8 + 14 * 4,                   /* %eax */
50   8 + 13 * 4,                   /* %ecx */
51   8 + 12 * 4,                   /* %edx */
52   8 + 11 * 4,                   /* %ebx */
53   8 + 0 * 4,                    /* %esp */
54   8 + 1 * 4,                    /* %ebp */
55   8 + 10 * 4,                   /* %esi */
56   8 + 9 * 4,                    /* %edi */
57   8 + 3 * 4,                    /* %eip */
58   8 + 4 * 4,                    /* %eflags */
59   8 + 7 * 4,                    /* %cs */
60   8 + 8 * 4,                    /* %ss */
61   8 + 6 * 4,                    /* %ds */
62   8 + 5 * 4,                    /* %es */
63   8 + 15 * 4,                   /* %fs */
64   8 + 16 * 4                    /* %gs */
65 };
66
67 static void
68 i386fbsdaout_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
69 {
70   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
71
72   /* Obviously FreeBSD is BSD-based.  */
73   i386bsd_init_abi (info, gdbarch);
74
75   /* FreeBSD has a different `struct reg', and reserves some space for
76      its FPU emulator in `struct fpreg'.  */
77   tdep->gregset_reg_offset = i386fbsd_r_reg_offset;
78   tdep->gregset_num_regs = ARRAY_SIZE (i386fbsd_r_reg_offset);
79   tdep->sizeof_gregset = 18 * 4;
80   tdep->sizeof_fpregset = 176;
81
82   /* FreeBSD uses -freg-struct-return by default.  */
83   tdep->struct_return = reg_struct_return;
84
85   /* FreeBSD uses a different memory layout.  */
86   tdep->sigtramp_start = i386fbsd_sigtramp_start_addr;
87   tdep->sigtramp_end = i386fbsd_sigtramp_end_addr;
88
89   /* FreeBSD has a more complete `struct sigcontext'.  */
90   tdep->sc_reg_offset = i386fbsd_sc_reg_offset;
91   tdep->sc_num_regs = ARRAY_SIZE (i386fbsd_sc_reg_offset);
92 }
93
94 static void
95 i386fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
96 {
97   /* It's almost identical to FreeBSD a.out.  */
98   i386fbsdaout_init_abi (info, gdbarch);
99
100   /* Except that it uses ELF.  */
101   i386_elf_init_abi (info, gdbarch);
102
103   /* FreeBSD ELF uses SVR4-style shared libraries.  */
104   set_gdbarch_in_solib_call_trampoline (gdbarch,
105                                         generic_in_solib_call_trampoline);
106 }
107
108 /* FreeBSD 4.0-RELEASE or later.  */
109
110 /* From <machine/reg.h>.  */
111 static int i386fbsd4_r_reg_offset[] =
112 {
113   10 * 4, 9 * 4, 8 * 4, 7 * 4,  /* %eax, %ecx, %edx, %ebx */
114   16 * 4, 5 * 4,                /* %esp, %ebp */
115   4 * 4, 3 * 4,                 /* %esi, %edi */
116   13 * 4, 15 * 4,               /* %eip, %eflags */
117   14 * 4, 17 * 4,               /* %cs, %ss */
118   2 * 4, 1 * 4, 0 * 4, 18 * 4   /* %ds, %es, %fs, %gs */
119 };
120
121 /* From <machine/signal.h>.  */
122 int i386fbsd4_sc_reg_offset[] =
123 {
124   20 + 11 * 4,                  /* %eax */
125   20 + 10 * 4,                  /* %ecx */
126   20 + 9 * 4,                   /* %edx */
127   20 + 8 * 4,                   /* %ebx */
128   20 + 17 * 4,                  /* %esp */
129   20 + 6 * 4,                   /* %ebp */
130   20 + 5 * 4,                   /* %esi */
131   20 + 4 * 4,                   /* %edi */
132   20 + 14 * 4,                  /* %eip */
133   20 + 16 * 4,                  /* %eflags */
134   20 + 15 * 4,                  /* %cs */
135   20 + 18 * 4,                  /* %ss */
136   20 + 3 * 4,                   /* %ds */
137   20 + 2 * 4,                   /* %es */
138   20 + 1 * 4,                   /* %fs */
139   20 + 0 * 4                    /* %gs */
140 };
141
142 static void
143 i386fbsd4_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
144 {
145   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
146
147   /* Inherit stuff from older releases.  We assume that FreeBSD
148      4.0-RELEASE always uses ELF.  */
149   i386fbsd_init_abi (info, gdbarch);
150
151   /* FreeBSD 4.0 introduced a new `struct reg'.  */
152   tdep->gregset_reg_offset = i386fbsd4_r_reg_offset;
153   tdep->gregset_num_regs = ARRAY_SIZE (i386fbsd4_r_reg_offset);
154   tdep->sizeof_gregset = 19 * 4;
155
156   /* FreeBSD 4.0 introduced a new `struct sigcontext'.  */
157   tdep->sc_reg_offset = i386fbsd4_sc_reg_offset;
158   tdep->sc_num_regs = ARRAY_SIZE (i386fbsd4_sc_reg_offset);
159 }
160
161 \f
162 /* Provide a prototype to silence -Wmissing-prototypes.  */
163 void _initialize_i386fbsd_tdep (void);
164
165 void
166 _initialize_i386fbsd_tdep (void)
167 {
168   gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_FREEBSD_AOUT,
169                           i386fbsdaout_init_abi);
170   gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_FREEBSD_ELF,
171                           i386fbsd4_init_abi);
172 }