1 /* Target-dependent code for OpenBSD/amd64.
3 Copyright 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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. */
31 #include "gdb_assert.h"
32 #include "gdb_string.h"
34 #include "amd64-tdep.h"
35 #include "i387-tdep.h"
36 #include "solib-svr4.h"
38 /* Support for core dumps. */
41 amd64obsd_supply_regset (const struct regset *regset,
42 struct regcache *regcache, int regnum,
43 const void *regs, size_t len)
45 const struct gdbarch_tdep *tdep = gdbarch_tdep (regset->arch);
47 gdb_assert (len >= tdep->sizeof_gregset + I387_SIZEOF_FXSAVE);
49 i386_supply_gregset (regset, regcache, regnum, regs, tdep->sizeof_gregset);
50 amd64_supply_fxsave (regcache, regnum, (char *)regs + tdep->sizeof_gregset);
53 static const struct regset *
54 amd64obsd_regset_from_core_section (struct gdbarch *gdbarch,
55 const char *sect_name, size_t sect_size)
57 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
59 /* OpenBSD core dumps don't use seperate register sets for the
60 general-purpose and floating-point registers. */
62 if (strcmp (sect_name, ".reg") == 0
63 && sect_size >= tdep->sizeof_gregset + I387_SIZEOF_FXSAVE)
65 if (tdep->gregset == NULL)
66 tdep->gregset = regset_alloc (gdbarch, amd64obsd_supply_regset, NULL);
74 /* Support for signal handlers. */
76 /* Default page size. */
77 static const int amd64obsd_page_size = 4096;
79 /* Return whether the frame preceding NEXT_FRAME corresponds to an
80 OpenBSD sigtramp routine. */
83 amd64obsd_sigtramp_p (struct frame_info *next_frame)
85 CORE_ADDR pc = frame_pc_unwind (next_frame);
86 CORE_ADDR start_pc = (pc & ~(amd64obsd_page_size - 1));
87 const char sigreturn[] =
90 0x67, 0x00, 0x00, 0x00, /* movq $SYS_sigreturn, %rax */
91 0xcd, 0x80 /* int $0x80 */
95 /* If the function has a valid symbol name, it isn't a
97 find_pc_partial_function (pc, &name, NULL, NULL);
101 /* If the function lives in a valid section (even without a starting
102 point) it isn't a trampoline. */
103 if (find_pc_section (pc) != NULL)
106 /* If we can't read the instructions at START_PC, return zero. */
107 buf = alloca ((sizeof sigreturn) + 1);
108 if (target_read_memory (start_pc + 6, buf, (sizeof sigreturn) + 1))
111 /* Check for sigreturn(2). Depending on how the assembler encoded
112 the `movq %rsp, %rdi' instruction, the code starts at offset 6 or
114 if (memcmp (buf, sigreturn, sizeof sigreturn)
115 && memcpy (buf + 1, sigreturn, sizeof sigreturn))
121 /* Assuming NEXT_FRAME is for a frame following a BSD sigtramp
122 routine, return the address of the associated sigcontext structure. */
125 amd64obsd_sigcontext_addr (struct frame_info *next_frame)
127 CORE_ADDR pc = frame_pc_unwind (next_frame);
128 ULONGEST offset = (pc & (amd64obsd_page_size - 1));
130 /* The %rsp register points at `struct sigcontext' upon entry of a
131 signal trampoline. The relevant part of the trampoline is
136 movq $SYS_sigreturn,%rax
139 (see /usr/src/sys/arch/amd64/amd64/locore.S). The `pushq'
140 instruction clobbers %rsp, but its value is saved in `%rdi'. */
143 return frame_unwind_register_unsigned (next_frame, AMD64_RDI_REGNUM);
145 return frame_unwind_register_unsigned (next_frame, AMD64_RSP_REGNUM);
148 /* OpenBSD 3.5 or later. */
150 /* Mapping between the general-purpose registers in `struct reg'
151 format and GDB's register cache layout. */
153 /* From <machine/reg.h>. */
154 int amd64obsd_r_reg_offset[] =
171 11 * 8, /* ... %r15 */
173 17 * 8, /* %eflags */
182 /* From <machine/signal.h>. */
183 static int amd64obsd_sc_reg_offset[] =
200 11 * 8, /* ... %r15 */
202 23 * 8, /* %eflags */
212 amd64obsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
214 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
216 amd64_init_abi (info, gdbarch);
218 /* Initialize general-purpose register set details. */
219 tdep->gregset_reg_offset = amd64obsd_r_reg_offset;
220 tdep->gregset_num_regs = ARRAY_SIZE (amd64obsd_r_reg_offset);
221 tdep->sizeof_gregset = 24 * 8;
223 set_gdbarch_regset_from_core_section (gdbarch,
224 amd64obsd_regset_from_core_section);
226 tdep->jb_pc_offset = 7 * 8;
228 tdep->sigtramp_p = amd64obsd_sigtramp_p;
229 tdep->sigcontext_addr = amd64obsd_sigcontext_addr;
230 tdep->sc_reg_offset = amd64obsd_sc_reg_offset;
231 tdep->sc_num_regs = ARRAY_SIZE (amd64obsd_sc_reg_offset);
233 /* OpenBSD uses SVR4-style shared libraries. */
234 set_solib_svr4_fetch_link_map_offsets
235 (gdbarch, svr4_lp64_fetch_link_map_offsets);
239 /* Provide a prototype to silence -Wmissing-prototypes. */
240 void _initialize_amd64obsd_tdep (void);
243 _initialize_amd64obsd_tdep (void)
245 /* The OpenBSD/amd64 native dependent code makes this assumption. */
246 gdb_assert (ARRAY_SIZE (amd64obsd_r_reg_offset) == AMD64_NUM_GREGS);
248 gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x86_64,
249 GDB_OSABI_OPENBSD_ELF, amd64obsd_init_abi);
251 /* OpenBSD uses traditional (a.out) NetBSD-style core dumps. */
252 gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x86_64,
253 GDB_OSABI_NETBSD_AOUT, amd64obsd_init_abi);