1 /* Target-dependent code for OpenBSD/i386.
3 Copyright 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001, 2002,
5 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
25 #include "arch-utils.h"
35 #include "gdb_assert.h"
36 #include "gdb_string.h"
38 #include "i386-tdep.h"
39 #include "i387-tdep.h"
40 #include "solib-svr4.h"
42 /* Support for signal handlers. */
44 /* Since OpenBSD 3.2, the sigtramp routine is mapped at a random page
45 in virtual memory. The randomness makes it somewhat tricky to
46 detect it, but fortunately we can rely on the fact that the start
47 of the sigtramp routine is page-aligned. By the way, the mapping
48 is read-only, so you cannot place a breakpoint in the signal
51 /* Default page size. */
52 static const int i386obsd_page_size = 4096;
54 /* Return whether the frame preceding NEXT_FRAME corresponds to an
55 OpenBSD sigtramp routine. */
58 i386obsd_sigtramp_p (struct frame_info *next_frame)
60 CORE_ADDR pc = frame_pc_unwind (next_frame);
61 CORE_ADDR start_pc = (pc & ~(i386obsd_page_size - 1));
62 const char sigreturn[] =
65 0x67, 0x00, 0x00, 0x00, /* movl $SYS_sigreturn, %eax */
66 0xcd, 0x80 /* int $0x80 */
70 /* If the function has a valid symbol name, it isn't a
72 find_pc_partial_function (pc, &name, NULL, NULL);
76 /* If the function lives in a valid section (even without a starting
77 point) it isn't a trampoline. */
78 if (find_pc_section (pc) != NULL)
81 /* If we can't read the instructions at START_PC, return zero. */
82 buf = alloca (sizeof sigreturn);
83 if (target_read_memory (start_pc + 0x14, buf, sizeof sigreturn))
86 /* Check for sigreturn(2). */
87 if (memcmp (buf, sigreturn, sizeof sigreturn) == 0)
93 /* Mapping between the general-purpose registers in `struct reg'
94 format and GDB's register cache layout. */
96 /* From <machine/reg.h>. */
97 static int i386obsd_r_reg_offset[] =
118 i386obsd_aout_supply_regset (const struct regset *regset,
119 struct regcache *regcache, int regnum,
120 const void *regs, size_t len)
122 const struct gdbarch_tdep *tdep = gdbarch_tdep (regset->arch);
124 gdb_assert (len >= tdep->sizeof_gregset + I387_SIZEOF_FSAVE);
126 i386_supply_gregset (regset, regcache, regnum, regs, tdep->sizeof_gregset);
127 i387_supply_fsave (regcache, regnum, (char *) regs + tdep->sizeof_gregset);
130 static const struct regset *
131 i386obsd_aout_regset_from_core_section (struct gdbarch *gdbarch,
132 const char *sect_name,
135 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
137 /* OpenBSD a.out core dumps don't use seperate register sets for the
138 general-purpose and floating-point registers. */
140 if (strcmp (sect_name, ".reg") == 0
141 && sect_size >= tdep->sizeof_gregset + I387_SIZEOF_FSAVE)
143 if (tdep->gregset == NULL)
145 regset_alloc (gdbarch, i386obsd_aout_supply_regset, NULL);
146 return tdep->gregset;
153 /* Sigtramp routine location for OpenBSD 3.1 and earlier releases. */
154 CORE_ADDR i386obsd_sigtramp_start_addr = 0xbfbfdf20;
155 CORE_ADDR i386obsd_sigtramp_end_addr = 0xbfbfdff0;
157 /* From <machine/signal.h>. */
158 int i386obsd_sc_reg_offset[I386_NUM_GREGS] =
169 13 * 4, /* %eflags */
179 i386obsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
181 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
183 /* Obviously OpenBSD is BSD-based. */
184 i386bsd_init_abi (info, gdbarch);
186 /* OpenBSD has a different `struct reg'. */
187 tdep->gregset_reg_offset = i386obsd_r_reg_offset;
188 tdep->gregset_num_regs = ARRAY_SIZE (i386obsd_r_reg_offset);
189 tdep->sizeof_gregset = 16 * 4;
191 /* OpenBSD uses -freg-struct-return by default. */
192 tdep->struct_return = reg_struct_return;
194 /* OpenBSD uses a different memory layout. */
195 tdep->sigtramp_start = i386obsd_sigtramp_start_addr;
196 tdep->sigtramp_end = i386obsd_sigtramp_end_addr;
197 tdep->sigtramp_p = i386obsd_sigtramp_p;
199 /* OpenBSD has a `struct sigcontext' that's different from the
201 tdep->sc_reg_offset = i386obsd_sc_reg_offset;
202 tdep->sc_num_regs = ARRAY_SIZE (i386obsd_sc_reg_offset);
208 i386obsd_aout_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
210 i386obsd_init_abi (info, gdbarch);
212 /* OpenBSD a.out has a single register set. */
213 set_gdbarch_regset_from_core_section
214 (gdbarch, i386obsd_aout_regset_from_core_section);
220 i386obsd_elf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
222 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
224 /* It's still OpenBSD. */
225 i386obsd_init_abi (info, gdbarch);
228 i386_elf_init_abi (info, gdbarch);
230 /* OpenBSD ELF uses SVR4-style shared libraries. */
231 set_gdbarch_in_solib_call_trampoline
232 (gdbarch, generic_in_solib_call_trampoline);
233 set_solib_svr4_fetch_link_map_offsets
234 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
238 /* Provide a prototype to silence -Wmissing-prototypes. */
239 void _initialize_i386obsd_tdep (void);
242 _initialize_i386obsd_tdep (void)
244 /* FIXME: kettenis/20021020: Since OpenBSD/i386 binaries are
245 indistingushable from NetBSD/i386 a.out binaries, building a GDB
246 that should support both these targets will probably not work as
248 #define GDB_OSABI_OPENBSD_AOUT GDB_OSABI_NETBSD_AOUT
250 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_OPENBSD_AOUT,
251 i386obsd_aout_init_abi);
252 gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_OPENBSD_ELF,
253 i386obsd_elf_init_abi);