2002-10-20 13:54:40 +02:00
|
|
|
|
/* Target-dependent code for OpenBSD/i386.
|
2003-12-26 19:07:00 +01:00
|
|
|
|
|
2007-01-09 18:59:20 +01:00
|
|
|
|
Copyright (C) 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001, 2002, 2003,
|
|
|
|
|
2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2002-10-20 13:54:40 +02:00
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "arch-utils.h"
|
* amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
* amd64-linux-tdep.c: Include "symtab.h".
(amd64_linux_pc_in_sigtramp): Remove function.
(amd64_linux_sigtramp_p): New function.
(amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64nbsd-tdep.c: Include "symtab.h".
(amd64nbsd_sigtramp_p): New function.
(amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
few comments.
(amd64obsd_pc_in_sigtramp): Remove function.
(amd64obsd_sigtramp_p): New function.
(amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
(i386bsd_pc_ins_sigtramp): Remove prototype.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
* i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
(i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
(i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
(i386_go32_pc_in_sigtramp): Remove function.
(i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
Initialize TDEP->sigtramp_p.
(i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
(i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-linux-tdep.c: Adjust comments.
(i386_linux_pc_in_sigtramp): Remove function.
(i386_linux_sigtramp_p): New function.
(i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-nto-tdep.c: Update copyright year.
(i386nto_pc_in_sigtramp): Remove function.
(i386nto_sigtramp_p): New function.
(i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
SP_REGNUM.
(i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-sol2-tdep.c: Update copyright year.
(i386_sol2_pc_in_sigtramp): Remove function.
(i386_sol2_sigtramp_p): New function.
(i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start and deprecated_sigtramp_end.
* i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
(i386nbsd_pc_in_sigtramp): Remove function.
(i386nbsd_sigtramp_p): New function.
(i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
* i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
(i386obsd_pc_in_sigtramp): Remove function.
(i386obsd_sigtramp_p): New function.
(i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_p.
* Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
dependencies.
2004-04-09 18:28:50 +02:00
|
|
|
|
#include "frame.h"
|
2005-12-19 23:19:49 +01:00
|
|
|
|
#include "frame-unwind.h"
|
2002-10-20 13:54:40 +02:00
|
|
|
|
#include "gdbcore.h"
|
|
|
|
|
#include "regcache.h"
|
2003-12-26 19:07:00 +01:00
|
|
|
|
#include "regset.h"
|
* amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
* amd64-linux-tdep.c: Include "symtab.h".
(amd64_linux_pc_in_sigtramp): Remove function.
(amd64_linux_sigtramp_p): New function.
(amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64nbsd-tdep.c: Include "symtab.h".
(amd64nbsd_sigtramp_p): New function.
(amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
few comments.
(amd64obsd_pc_in_sigtramp): Remove function.
(amd64obsd_sigtramp_p): New function.
(amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
(i386bsd_pc_ins_sigtramp): Remove prototype.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
* i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
(i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
(i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
(i386_go32_pc_in_sigtramp): Remove function.
(i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
Initialize TDEP->sigtramp_p.
(i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
(i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-linux-tdep.c: Adjust comments.
(i386_linux_pc_in_sigtramp): Remove function.
(i386_linux_sigtramp_p): New function.
(i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-nto-tdep.c: Update copyright year.
(i386nto_pc_in_sigtramp): Remove function.
(i386nto_sigtramp_p): New function.
(i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
SP_REGNUM.
(i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-sol2-tdep.c: Update copyright year.
(i386_sol2_pc_in_sigtramp): Remove function.
(i386_sol2_sigtramp_p): New function.
(i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start and deprecated_sigtramp_end.
* i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
(i386nbsd_pc_in_sigtramp): Remove function.
(i386nbsd_sigtramp_p): New function.
(i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
* i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
(i386obsd_pc_in_sigtramp): Remove function.
(i386obsd_sigtramp_p): New function.
(i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_p.
* Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
dependencies.
2004-04-09 18:28:50 +02:00
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "objfiles.h"
|
2003-01-05 00:38:46 +01:00
|
|
|
|
#include "osabi.h"
|
2004-02-22 12:19:15 +01:00
|
|
|
|
#include "target.h"
|
2005-12-19 23:19:49 +01:00
|
|
|
|
#include "trad-frame.h"
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
2003-12-26 19:07:00 +01:00
|
|
|
|
#include "gdb_assert.h"
|
|
|
|
|
#include "gdb_string.h"
|
|
|
|
|
|
2002-10-20 13:54:40 +02:00
|
|
|
|
#include "i386-tdep.h"
|
|
|
|
|
#include "i387-tdep.h"
|
2004-02-21 20:11:38 +01:00
|
|
|
|
#include "solib-svr4.h"
|
2005-01-23 20:35:05 +01:00
|
|
|
|
#include "bsd-uthread.h"
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
2004-02-22 12:19:15 +01:00
|
|
|
|
/* Support for signal handlers. */
|
|
|
|
|
|
|
|
|
|
/* Since OpenBSD 3.2, the sigtramp routine is mapped at a random page
|
|
|
|
|
in virtual memory. The randomness makes it somewhat tricky to
|
|
|
|
|
detect it, but fortunately we can rely on the fact that the start
|
2005-07-26 22:02:55 +02:00
|
|
|
|
of the sigtramp routine is page-aligned. We recognize the
|
|
|
|
|
trampoline by looking for the code that invokes the sigreturn
|
|
|
|
|
system call. The offset where we can find that code varies from
|
|
|
|
|
release to release.
|
|
|
|
|
|
|
|
|
|
By the way, the mapping mentioned above is read-only, so you cannot
|
|
|
|
|
place a breakpoint in the signal trampoline. */
|
2004-02-22 12:19:15 +01:00
|
|
|
|
|
|
|
|
|
/* Default page size. */
|
|
|
|
|
static const int i386obsd_page_size = 4096;
|
|
|
|
|
|
2005-07-26 22:02:55 +02:00
|
|
|
|
/* Offset for sigreturn(2). */
|
|
|
|
|
static const int i386obsd_sigreturn_offset[] = {
|
|
|
|
|
0x0a, /* OpenBSD 3.2 */
|
|
|
|
|
0x14, /* OpenBSD 3.6 */
|
|
|
|
|
0x3a, /* OpenBSD 3.8 */
|
|
|
|
|
-1
|
|
|
|
|
};
|
|
|
|
|
|
2004-04-10 01:26:19 +02:00
|
|
|
|
/* Return whether the frame preceding NEXT_FRAME corresponds to an
|
* amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
* amd64-linux-tdep.c: Include "symtab.h".
(amd64_linux_pc_in_sigtramp): Remove function.
(amd64_linux_sigtramp_p): New function.
(amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64nbsd-tdep.c: Include "symtab.h".
(amd64nbsd_sigtramp_p): New function.
(amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
few comments.
(amd64obsd_pc_in_sigtramp): Remove function.
(amd64obsd_sigtramp_p): New function.
(amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
(i386bsd_pc_ins_sigtramp): Remove prototype.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
* i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
(i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
(i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
(i386_go32_pc_in_sigtramp): Remove function.
(i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
Initialize TDEP->sigtramp_p.
(i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
(i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-linux-tdep.c: Adjust comments.
(i386_linux_pc_in_sigtramp): Remove function.
(i386_linux_sigtramp_p): New function.
(i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-nto-tdep.c: Update copyright year.
(i386nto_pc_in_sigtramp): Remove function.
(i386nto_sigtramp_p): New function.
(i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
SP_REGNUM.
(i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-sol2-tdep.c: Update copyright year.
(i386_sol2_pc_in_sigtramp): Remove function.
(i386_sol2_sigtramp_p): New function.
(i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start and deprecated_sigtramp_end.
* i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
(i386nbsd_pc_in_sigtramp): Remove function.
(i386nbsd_sigtramp_p): New function.
(i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
* i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
(i386obsd_pc_in_sigtramp): Remove function.
(i386obsd_sigtramp_p): New function.
(i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_p.
* Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
dependencies.
2004-04-09 18:28:50 +02:00
|
|
|
|
OpenBSD sigtramp routine. */
|
2004-02-22 12:19:15 +01:00
|
|
|
|
|
|
|
|
|
static int
|
* amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
* amd64-linux-tdep.c: Include "symtab.h".
(amd64_linux_pc_in_sigtramp): Remove function.
(amd64_linux_sigtramp_p): New function.
(amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64nbsd-tdep.c: Include "symtab.h".
(amd64nbsd_sigtramp_p): New function.
(amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
few comments.
(amd64obsd_pc_in_sigtramp): Remove function.
(amd64obsd_sigtramp_p): New function.
(amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
(i386bsd_pc_ins_sigtramp): Remove prototype.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
* i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
(i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
(i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
(i386_go32_pc_in_sigtramp): Remove function.
(i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
Initialize TDEP->sigtramp_p.
(i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
(i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-linux-tdep.c: Adjust comments.
(i386_linux_pc_in_sigtramp): Remove function.
(i386_linux_sigtramp_p): New function.
(i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-nto-tdep.c: Update copyright year.
(i386nto_pc_in_sigtramp): Remove function.
(i386nto_sigtramp_p): New function.
(i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
SP_REGNUM.
(i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-sol2-tdep.c: Update copyright year.
(i386_sol2_pc_in_sigtramp): Remove function.
(i386_sol2_sigtramp_p): New function.
(i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start and deprecated_sigtramp_end.
* i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
(i386nbsd_pc_in_sigtramp): Remove function.
(i386nbsd_sigtramp_p): New function.
(i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
* i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
(i386obsd_pc_in_sigtramp): Remove function.
(i386obsd_sigtramp_p): New function.
(i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_p.
* Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
dependencies.
2004-04-09 18:28:50 +02:00
|
|
|
|
i386obsd_sigtramp_p (struct frame_info *next_frame)
|
2004-02-22 12:19:15 +01:00
|
|
|
|
{
|
* amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
* amd64-linux-tdep.c: Include "symtab.h".
(amd64_linux_pc_in_sigtramp): Remove function.
(amd64_linux_sigtramp_p): New function.
(amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64nbsd-tdep.c: Include "symtab.h".
(amd64nbsd_sigtramp_p): New function.
(amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
few comments.
(amd64obsd_pc_in_sigtramp): Remove function.
(amd64obsd_sigtramp_p): New function.
(amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
(i386bsd_pc_ins_sigtramp): Remove prototype.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
* i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
(i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
(i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
(i386_go32_pc_in_sigtramp): Remove function.
(i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
Initialize TDEP->sigtramp_p.
(i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
(i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-linux-tdep.c: Adjust comments.
(i386_linux_pc_in_sigtramp): Remove function.
(i386_linux_sigtramp_p): New function.
(i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-nto-tdep.c: Update copyright year.
(i386nto_pc_in_sigtramp): Remove function.
(i386nto_sigtramp_p): New function.
(i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
SP_REGNUM.
(i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-sol2-tdep.c: Update copyright year.
(i386_sol2_pc_in_sigtramp): Remove function.
(i386_sol2_sigtramp_p): New function.
(i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start and deprecated_sigtramp_end.
* i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
(i386nbsd_pc_in_sigtramp): Remove function.
(i386nbsd_sigtramp_p): New function.
(i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
* i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
(i386obsd_pc_in_sigtramp): Remove function.
(i386obsd_sigtramp_p): New function.
(i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_p.
* Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
dependencies.
2004-04-09 18:28:50 +02:00
|
|
|
|
CORE_ADDR pc = frame_pc_unwind (next_frame);
|
2004-02-22 12:19:15 +01:00
|
|
|
|
CORE_ADDR start_pc = (pc & ~(i386obsd_page_size - 1));
|
2005-07-26 22:02:55 +02:00
|
|
|
|
/* The call sequence invoking sigreturn(2). */
|
* i386-tdep.c (i386_breakpoint_from_pc): Change return type to
`const gdb_byte *'. Use gdb_byte for break_insn.
(i386_follow_jump): Use gdb_byte for op.
(i386_analyze_struct_return): Use gdb_byte for proto1, proto2, buf
and op.
(i386_skip_probe): Use gdb_byte for buf and op.
(struct i386_insn): Use gdb_byte for insn and mask.
(i386_match_insn, i386_analyze_frame_setup)
(i386_analyze_register_saves): Use gdb_byte for op.
(i386_skip_prologue): Use gdb_byte for pic_pat and op;
(i386_unwind_pc, i386_frame_cache, i386_sigtramp_frame_cache)
(i386_unwind_dummy_id, i386_get_longjmp_target): Use gdb_byte for
buf.
(i386_extract_return_value, i386_store_return_value): Use
`bfd_byte *' instead of `void *' for valbuf argument. Remove now
redundant cast.
(i386_pseudo_register_read, i386_pseudo_register_write): Use
gdb_byte for mmx_buf.
(i386_register_to_value, i386_value_to_register): Use `gdb_byte *'
instead of `char *' for buf.
(i386_supply_gregset, i386_collect_gregset): Use `gdb_byte *'
instead of `char *' for regs.
(i386_svr4_sigcontext_addr): Use gdb_byte for buf.
* i386obsd-tdep.c (i386obsd_sigtramp_p): Use gdb_byte for
sigreturn and `gdb_byte *' for buf.
(i386obsd_aout_supply_regset): Use `const gdb_byte *' in cast.
(i386obsd_supply_uthread, i386obsd_collect_uthread): Use gdb_byte
for buf.
* i386bsd-tdep.c (i386bsd_sigcontext_addr): Use gdb_byte for buf.
2005-05-08 18:27:34 +02:00
|
|
|
|
const gdb_byte sigreturn[] =
|
2004-02-22 12:19:15 +01:00
|
|
|
|
{
|
|
|
|
|
0xb8,
|
|
|
|
|
0x67, 0x00, 0x00, 0x00, /* movl $SYS_sigreturn, %eax */
|
|
|
|
|
0xcd, 0x80 /* int $0x80 */
|
|
|
|
|
};
|
2004-08-06 22:51:01 +02:00
|
|
|
|
size_t buflen = sizeof sigreturn;
|
2005-07-26 22:02:55 +02:00
|
|
|
|
const int *offset;
|
* i386-tdep.c (i386_breakpoint_from_pc): Change return type to
`const gdb_byte *'. Use gdb_byte for break_insn.
(i386_follow_jump): Use gdb_byte for op.
(i386_analyze_struct_return): Use gdb_byte for proto1, proto2, buf
and op.
(i386_skip_probe): Use gdb_byte for buf and op.
(struct i386_insn): Use gdb_byte for insn and mask.
(i386_match_insn, i386_analyze_frame_setup)
(i386_analyze_register_saves): Use gdb_byte for op.
(i386_skip_prologue): Use gdb_byte for pic_pat and op;
(i386_unwind_pc, i386_frame_cache, i386_sigtramp_frame_cache)
(i386_unwind_dummy_id, i386_get_longjmp_target): Use gdb_byte for
buf.
(i386_extract_return_value, i386_store_return_value): Use
`bfd_byte *' instead of `void *' for valbuf argument. Remove now
redundant cast.
(i386_pseudo_register_read, i386_pseudo_register_write): Use
gdb_byte for mmx_buf.
(i386_register_to_value, i386_value_to_register): Use `gdb_byte *'
instead of `char *' for buf.
(i386_supply_gregset, i386_collect_gregset): Use `gdb_byte *'
instead of `char *' for regs.
(i386_svr4_sigcontext_addr): Use gdb_byte for buf.
* i386obsd-tdep.c (i386obsd_sigtramp_p): Use gdb_byte for
sigreturn and `gdb_byte *' for buf.
(i386obsd_aout_supply_regset): Use `const gdb_byte *' in cast.
(i386obsd_supply_uthread, i386obsd_collect_uthread): Use gdb_byte
for buf.
* i386bsd-tdep.c (i386bsd_sigcontext_addr): Use gdb_byte for buf.
2005-05-08 18:27:34 +02:00
|
|
|
|
gdb_byte *buf;
|
|
|
|
|
char *name;
|
2004-02-22 12:19:15 +01:00
|
|
|
|
|
* amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
* amd64-linux-tdep.c: Include "symtab.h".
(amd64_linux_pc_in_sigtramp): Remove function.
(amd64_linux_sigtramp_p): New function.
(amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64nbsd-tdep.c: Include "symtab.h".
(amd64nbsd_sigtramp_p): New function.
(amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
few comments.
(amd64obsd_pc_in_sigtramp): Remove function.
(amd64obsd_sigtramp_p): New function.
(amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
(i386bsd_pc_ins_sigtramp): Remove prototype.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
* i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
(i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
(i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
(i386_go32_pc_in_sigtramp): Remove function.
(i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
Initialize TDEP->sigtramp_p.
(i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
(i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-linux-tdep.c: Adjust comments.
(i386_linux_pc_in_sigtramp): Remove function.
(i386_linux_sigtramp_p): New function.
(i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-nto-tdep.c: Update copyright year.
(i386nto_pc_in_sigtramp): Remove function.
(i386nto_sigtramp_p): New function.
(i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
SP_REGNUM.
(i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-sol2-tdep.c: Update copyright year.
(i386_sol2_pc_in_sigtramp): Remove function.
(i386_sol2_sigtramp_p): New function.
(i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start and deprecated_sigtramp_end.
* i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
(i386nbsd_pc_in_sigtramp): Remove function.
(i386nbsd_sigtramp_p): New function.
(i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
* i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
(i386obsd_pc_in_sigtramp): Remove function.
(i386obsd_sigtramp_p): New function.
(i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_p.
* Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
dependencies.
2004-04-09 18:28:50 +02:00
|
|
|
|
/* If the function has a valid symbol name, it isn't a
|
|
|
|
|
trampoline. */
|
|
|
|
|
find_pc_partial_function (pc, &name, NULL, NULL);
|
|
|
|
|
if (name != NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* If the function lives in a valid section (even without a starting
|
|
|
|
|
point) it isn't a trampoline. */
|
|
|
|
|
if (find_pc_section (pc) != NULL)
|
2004-02-22 12:19:15 +01:00
|
|
|
|
return 0;
|
|
|
|
|
|
2004-08-04 23:07:42 +02:00
|
|
|
|
/* Allocate buffer. */
|
2004-08-06 22:51:01 +02:00
|
|
|
|
buf = alloca (buflen);
|
2004-08-04 23:07:42 +02:00
|
|
|
|
|
2005-07-26 22:02:55 +02:00
|
|
|
|
/* Loop over all offsets. */
|
|
|
|
|
for (offset = i386obsd_sigreturn_offset; *offset != -1; offset++)
|
|
|
|
|
{
|
|
|
|
|
/* If we can't read the instructions, return zero. */
|
|
|
|
|
if (!safe_frame_unwind_memory (next_frame, start_pc + *offset,
|
|
|
|
|
buf, buflen))
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* Check for sigreturn(2). */
|
|
|
|
|
if (memcmp (buf, sigreturn, buflen) == 0)
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2004-08-04 23:07:42 +02:00
|
|
|
|
|
* amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
* amd64-linux-tdep.c: Include "symtab.h".
(amd64_linux_pc_in_sigtramp): Remove function.
(amd64_linux_sigtramp_p): New function.
(amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64nbsd-tdep.c: Include "symtab.h".
(amd64nbsd_sigtramp_p): New function.
(amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
few comments.
(amd64obsd_pc_in_sigtramp): Remove function.
(amd64obsd_sigtramp_p): New function.
(amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
(i386bsd_pc_ins_sigtramp): Remove prototype.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
* i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
(i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
(i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
(i386_go32_pc_in_sigtramp): Remove function.
(i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
Initialize TDEP->sigtramp_p.
(i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
(i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-linux-tdep.c: Adjust comments.
(i386_linux_pc_in_sigtramp): Remove function.
(i386_linux_sigtramp_p): New function.
(i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-nto-tdep.c: Update copyright year.
(i386nto_pc_in_sigtramp): Remove function.
(i386nto_sigtramp_p): New function.
(i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
SP_REGNUM.
(i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-sol2-tdep.c: Update copyright year.
(i386_sol2_pc_in_sigtramp): Remove function.
(i386_sol2_sigtramp_p): New function.
(i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start and deprecated_sigtramp_end.
* i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
(i386nbsd_pc_in_sigtramp): Remove function.
(i386nbsd_sigtramp_p): New function.
(i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
* i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
(i386obsd_pc_in_sigtramp): Remove function.
(i386obsd_sigtramp_p): New function.
(i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_p.
* Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
dependencies.
2004-04-09 18:28:50 +02:00
|
|
|
|
return 0;
|
2004-02-22 12:19:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mapping between the general-purpose registers in `struct reg'
|
|
|
|
|
format and GDB's register cache layout. */
|
|
|
|
|
|
2003-12-26 19:07:00 +01:00
|
|
|
|
/* From <machine/reg.h>. */
|
|
|
|
|
static int i386obsd_r_reg_offset[] =
|
|
|
|
|
{
|
|
|
|
|
0 * 4, /* %eax */
|
|
|
|
|
1 * 4, /* %ecx */
|
|
|
|
|
2 * 4, /* %edx */
|
|
|
|
|
3 * 4, /* %ebx */
|
|
|
|
|
4 * 4, /* %esp */
|
|
|
|
|
5 * 4, /* %ebp */
|
|
|
|
|
6 * 4, /* %esi */
|
|
|
|
|
7 * 4, /* %edi */
|
|
|
|
|
8 * 4, /* %eip */
|
|
|
|
|
9 * 4, /* %eflags */
|
|
|
|
|
10 * 4, /* %cs */
|
|
|
|
|
11 * 4, /* %ss */
|
|
|
|
|
12 * 4, /* %ds */
|
|
|
|
|
13 * 4, /* %es */
|
|
|
|
|
14 * 4, /* %fs */
|
|
|
|
|
15 * 4 /* %gs */
|
|
|
|
|
};
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
|
|
|
|
static void
|
2003-12-26 19:07:00 +01:00
|
|
|
|
i386obsd_aout_supply_regset (const struct regset *regset,
|
|
|
|
|
struct regcache *regcache, int regnum,
|
|
|
|
|
const void *regs, size_t len)
|
2002-10-20 13:54:40 +02:00
|
|
|
|
{
|
2004-05-22 17:16:22 +02:00
|
|
|
|
const struct gdbarch_tdep *tdep = gdbarch_tdep (regset->arch);
|
2005-07-26 22:02:55 +02:00
|
|
|
|
const gdb_byte *gregs = regs;
|
2003-12-26 19:07:00 +01:00
|
|
|
|
|
|
|
|
|
gdb_assert (len >= tdep->sizeof_gregset + I387_SIZEOF_FSAVE);
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
2003-12-26 19:07:00 +01:00
|
|
|
|
i386_supply_gregset (regset, regcache, regnum, regs, tdep->sizeof_gregset);
|
2005-07-26 22:02:55 +02:00
|
|
|
|
i387_supply_fsave (regcache, regnum, gregs + tdep->sizeof_gregset);
|
2002-10-20 13:54:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2004-02-18 18:04:36 +01:00
|
|
|
|
static const struct regset *
|
2003-12-26 19:07:00 +01:00
|
|
|
|
i386obsd_aout_regset_from_core_section (struct gdbarch *gdbarch,
|
|
|
|
|
const char *sect_name,
|
|
|
|
|
size_t sect_size)
|
2002-10-20 13:54:40 +02:00
|
|
|
|
{
|
2003-12-26 19:07:00 +01:00
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
2003-12-26 19:07:00 +01:00
|
|
|
|
/* OpenBSD a.out core dumps don't use seperate register sets for the
|
|
|
|
|
general-purpose and floating-point registers. */
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
2003-12-26 19:07:00 +01:00
|
|
|
|
if (strcmp (sect_name, ".reg") == 0
|
|
|
|
|
&& sect_size >= tdep->sizeof_gregset + I387_SIZEOF_FSAVE)
|
2002-10-20 13:54:40 +02:00
|
|
|
|
{
|
2003-12-26 19:07:00 +01:00
|
|
|
|
if (tdep->gregset == NULL)
|
2004-05-22 17:16:22 +02:00
|
|
|
|
tdep->gregset =
|
|
|
|
|
regset_alloc (gdbarch, i386obsd_aout_supply_regset, NULL);
|
2003-12-26 19:07:00 +01:00
|
|
|
|
return tdep->gregset;
|
2002-10-20 13:54:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
2003-12-26 19:07:00 +01:00
|
|
|
|
return NULL;
|
2002-10-20 13:54:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-02-22 12:19:15 +01:00
|
|
|
|
/* Sigtramp routine location for OpenBSD 3.1 and earlier releases. */
|
|
|
|
|
CORE_ADDR i386obsd_sigtramp_start_addr = 0xbfbfdf20;
|
|
|
|
|
CORE_ADDR i386obsd_sigtramp_end_addr = 0xbfbfdff0;
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
|
|
|
|
/* From <machine/signal.h>. */
|
From Michal Ludvig <mludvig@suse.cz>:
* i386-tdep.h (struct gdbarch_tdep): Add members `sc_reg_offset'
and `sc_num_regs'.
(I386_EAX_REGNUM, I386_EDX_REGNUM, I386_ESP_REGNUM,
I386_EBP_REGNUM, I386_EIP_REGNUM, I386_EFLAGS_REGNUM,
I386_ST0_REGNUM): Move here from...
* i386-tdep.c: ... here.
(I386_NUM_SAVED_REGS): Define to I386_NUM_REGS.
(i386_sigtramp_frame_cache): Use `sc_reg_offset' to find saved
registers if possible.
(i386_gdbarch_init): Initialize TDEP->sc_reg_offset.
* i386bsd-tdep.c (i386bsd_sc_pc_offset, i386bsd_sc_sp_offset):
Remove variables.
(i386bsd_sc_reg_offset): New variable.
(i386bsd_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
TDEP->sc_sp_offset.
(i386fbsd_sc_reg_offset): New variable.
(i386fbsdaout_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs.
(i386fbsd4_sc_pc_offset, i386fbsd4_sc_sp_offset): Remove
variables.
(i386fbsd4_sc_reg_offset): New variable.
(i3864bsd4_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
TDEP->sc_sp_offset.
* i386-linux-tdep.c (i386_linux_sc_reg_offset): New variable.
(i386_linux_init_abi): Set TDEP->sc_reg_offset and TDEP->sc_num_regs.
* i386nbsd-tdep.c (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset):
Remove variables.
(i386nbsd_sc_reg_offset): New variable.
(i386nbsd_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
TDEP->sc_sp_offset.
* i386obsd-tdep.c (i386obsd_sc_pc_offset, i386obsd_sc_sp_offset):
Remove variables.
(i386obsd_sc_reg_offset): New variable.
(i386obsd_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
TDEP->sc_sp_offset.
* i386bsd-nat.c (_initialize_i386bsd_nat): Adjust for changes in
i386bsd-tdep.c, i386nbsd-tdep.c and i386obsd-tdep.c. Add check
for frame pointer offset in `struct sigcontext'.
2003-05-31 18:08:06 +02:00
|
|
|
|
int i386obsd_sc_reg_offset[I386_NUM_GREGS] =
|
|
|
|
|
{
|
|
|
|
|
10 * 4, /* %eax */
|
|
|
|
|
9 * 4, /* %ecx */
|
|
|
|
|
8 * 4, /* %edx */
|
|
|
|
|
7 * 4, /* %ebx */
|
|
|
|
|
14 * 4, /* %esp */
|
|
|
|
|
6 * 4, /* %ebp */
|
|
|
|
|
5 * 4, /* %esi */
|
|
|
|
|
4 * 4, /* %edi */
|
|
|
|
|
11 * 4, /* %eip */
|
|
|
|
|
13 * 4, /* %eflags */
|
|
|
|
|
12 * 4, /* %cs */
|
|
|
|
|
15 * 4, /* %ss */
|
|
|
|
|
3 * 4, /* %ds */
|
|
|
|
|
2 * 4, /* %es */
|
|
|
|
|
1 * 4, /* %fs */
|
|
|
|
|
0 * 4 /* %gs */
|
|
|
|
|
};
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
2005-01-23 20:35:05 +01:00
|
|
|
|
/* From /usr/src/lib/libpthread/arch/i386/uthread_machdep.c. */
|
|
|
|
|
static int i386obsd_uthread_reg_offset[] =
|
|
|
|
|
{
|
|
|
|
|
11 * 4, /* %eax */
|
|
|
|
|
10 * 4, /* %ecx */
|
|
|
|
|
9 * 4, /* %edx */
|
|
|
|
|
8 * 4, /* %ebx */
|
|
|
|
|
-1, /* %esp */
|
|
|
|
|
6 * 4, /* %ebp */
|
|
|
|
|
5 * 4, /* %esi */
|
|
|
|
|
4 * 4, /* %edi */
|
|
|
|
|
12 * 4, /* %eip */
|
|
|
|
|
-1, /* %eflags */
|
|
|
|
|
13 * 4, /* %cs */
|
|
|
|
|
-1, /* %ss */
|
|
|
|
|
3 * 4, /* %ds */
|
|
|
|
|
2 * 4, /* %es */
|
|
|
|
|
1 * 4, /* %fs */
|
|
|
|
|
0 * 4 /* %gs */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Offset within the thread structure where we can find the saved
|
|
|
|
|
stack pointer (%esp). */
|
|
|
|
|
#define I386OBSD_UTHREAD_ESP_OFFSET 176
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
i386obsd_supply_uthread (struct regcache *regcache,
|
|
|
|
|
int regnum, CORE_ADDR addr)
|
|
|
|
|
{
|
|
|
|
|
CORE_ADDR sp_addr = addr + I386OBSD_UTHREAD_ESP_OFFSET;
|
|
|
|
|
CORE_ADDR sp = 0;
|
* i386-tdep.c (i386_breakpoint_from_pc): Change return type to
`const gdb_byte *'. Use gdb_byte for break_insn.
(i386_follow_jump): Use gdb_byte for op.
(i386_analyze_struct_return): Use gdb_byte for proto1, proto2, buf
and op.
(i386_skip_probe): Use gdb_byte for buf and op.
(struct i386_insn): Use gdb_byte for insn and mask.
(i386_match_insn, i386_analyze_frame_setup)
(i386_analyze_register_saves): Use gdb_byte for op.
(i386_skip_prologue): Use gdb_byte for pic_pat and op;
(i386_unwind_pc, i386_frame_cache, i386_sigtramp_frame_cache)
(i386_unwind_dummy_id, i386_get_longjmp_target): Use gdb_byte for
buf.
(i386_extract_return_value, i386_store_return_value): Use
`bfd_byte *' instead of `void *' for valbuf argument. Remove now
redundant cast.
(i386_pseudo_register_read, i386_pseudo_register_write): Use
gdb_byte for mmx_buf.
(i386_register_to_value, i386_value_to_register): Use `gdb_byte *'
instead of `char *' for buf.
(i386_supply_gregset, i386_collect_gregset): Use `gdb_byte *'
instead of `char *' for regs.
(i386_svr4_sigcontext_addr): Use gdb_byte for buf.
* i386obsd-tdep.c (i386obsd_sigtramp_p): Use gdb_byte for
sigreturn and `gdb_byte *' for buf.
(i386obsd_aout_supply_regset): Use `const gdb_byte *' in cast.
(i386obsd_supply_uthread, i386obsd_collect_uthread): Use gdb_byte
for buf.
* i386bsd-tdep.c (i386bsd_sigcontext_addr): Use gdb_byte for buf.
2005-05-08 18:27:34 +02:00
|
|
|
|
gdb_byte buf[4];
|
2005-01-23 20:35:05 +01:00
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
gdb_assert (regnum >= -1);
|
|
|
|
|
|
|
|
|
|
if (regnum == -1 || regnum == I386_ESP_REGNUM)
|
|
|
|
|
{
|
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
|
|
/* Fetch stack pointer from thread structure. */
|
|
|
|
|
sp = read_memory_unsigned_integer (sp_addr, 4);
|
|
|
|
|
|
|
|
|
|
/* Adjust the stack pointer such that it looks as if we just
|
|
|
|
|
returned from _thread_machdep_switch. */
|
|
|
|
|
offset = i386obsd_uthread_reg_offset[I386_EIP_REGNUM] + 4;
|
|
|
|
|
store_unsigned_integer (buf, 4, sp + offset);
|
|
|
|
|
regcache_raw_supply (regcache, I386_ESP_REGNUM, buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (i386obsd_uthread_reg_offset); i++)
|
|
|
|
|
{
|
|
|
|
|
if (i386obsd_uthread_reg_offset[i] != -1
|
|
|
|
|
&& (regnum == -1 || regnum == i))
|
|
|
|
|
{
|
|
|
|
|
/* Fetch stack pointer from thread structure (if we didn't
|
|
|
|
|
do so already). */
|
|
|
|
|
if (sp == 0)
|
|
|
|
|
sp = read_memory_unsigned_integer (sp_addr, 4);
|
|
|
|
|
|
|
|
|
|
/* Read the saved register from the stack frame. */
|
|
|
|
|
read_memory (sp + i386obsd_uthread_reg_offset[i], buf, 4);
|
|
|
|
|
regcache_raw_supply (regcache, i, buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
i386obsd_collect_uthread (const struct regcache *regcache,
|
|
|
|
|
int regnum, CORE_ADDR addr)
|
|
|
|
|
{
|
|
|
|
|
CORE_ADDR sp_addr = addr + I386OBSD_UTHREAD_ESP_OFFSET;
|
|
|
|
|
CORE_ADDR sp = 0;
|
* i386-tdep.c (i386_breakpoint_from_pc): Change return type to
`const gdb_byte *'. Use gdb_byte for break_insn.
(i386_follow_jump): Use gdb_byte for op.
(i386_analyze_struct_return): Use gdb_byte for proto1, proto2, buf
and op.
(i386_skip_probe): Use gdb_byte for buf and op.
(struct i386_insn): Use gdb_byte for insn and mask.
(i386_match_insn, i386_analyze_frame_setup)
(i386_analyze_register_saves): Use gdb_byte for op.
(i386_skip_prologue): Use gdb_byte for pic_pat and op;
(i386_unwind_pc, i386_frame_cache, i386_sigtramp_frame_cache)
(i386_unwind_dummy_id, i386_get_longjmp_target): Use gdb_byte for
buf.
(i386_extract_return_value, i386_store_return_value): Use
`bfd_byte *' instead of `void *' for valbuf argument. Remove now
redundant cast.
(i386_pseudo_register_read, i386_pseudo_register_write): Use
gdb_byte for mmx_buf.
(i386_register_to_value, i386_value_to_register): Use `gdb_byte *'
instead of `char *' for buf.
(i386_supply_gregset, i386_collect_gregset): Use `gdb_byte *'
instead of `char *' for regs.
(i386_svr4_sigcontext_addr): Use gdb_byte for buf.
* i386obsd-tdep.c (i386obsd_sigtramp_p): Use gdb_byte for
sigreturn and `gdb_byte *' for buf.
(i386obsd_aout_supply_regset): Use `const gdb_byte *' in cast.
(i386obsd_supply_uthread, i386obsd_collect_uthread): Use gdb_byte
for buf.
* i386bsd-tdep.c (i386bsd_sigcontext_addr): Use gdb_byte for buf.
2005-05-08 18:27:34 +02:00
|
|
|
|
gdb_byte buf[4];
|
2005-01-23 20:35:05 +01:00
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
gdb_assert (regnum >= -1);
|
|
|
|
|
|
|
|
|
|
if (regnum == -1 || regnum == I386_ESP_REGNUM)
|
|
|
|
|
{
|
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
|
|
/* Calculate the stack pointer (frame pointer) that will be
|
|
|
|
|
stored into the thread structure. */
|
|
|
|
|
offset = i386obsd_uthread_reg_offset[I386_EIP_REGNUM] + 4;
|
|
|
|
|
regcache_raw_collect (regcache, I386_ESP_REGNUM, buf);
|
|
|
|
|
sp = extract_unsigned_integer (buf, 4) - offset;
|
|
|
|
|
|
|
|
|
|
/* Store the stack pointer. */
|
|
|
|
|
write_memory_unsigned_integer (sp_addr, 4, sp);
|
|
|
|
|
|
|
|
|
|
/* The stack pointer was (potentially) modified. Make sure we
|
|
|
|
|
build a proper stack frame. */
|
|
|
|
|
regnum = -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE (i386obsd_uthread_reg_offset); i++)
|
|
|
|
|
{
|
|
|
|
|
if (i386obsd_uthread_reg_offset[i] != -1
|
|
|
|
|
&& (regnum == -1 || regnum == i))
|
|
|
|
|
{
|
|
|
|
|
/* Fetch stack pointer from thread structure (if we didn't
|
|
|
|
|
calculate it already). */
|
|
|
|
|
if (sp == 0)
|
|
|
|
|
sp = read_memory_unsigned_integer (sp_addr, 4);
|
|
|
|
|
|
|
|
|
|
/* Write the register into the stack frame. */
|
|
|
|
|
regcache_raw_collect (regcache, i, buf);
|
|
|
|
|
write_memory (sp + i386obsd_uthread_reg_offset[i], buf, 4);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-12-19 23:19:49 +01:00
|
|
|
|
|
|
|
|
|
/* Kernel debugging support. */
|
|
|
|
|
|
|
|
|
|
/* From <machine/frame.h>. Note that %esp and %ess are only saved in
|
|
|
|
|
a trap frame when entering the kernel from user space. */
|
|
|
|
|
static int i386obsd_tf_reg_offset[] =
|
|
|
|
|
{
|
|
|
|
|
10 * 4, /* %eax */
|
|
|
|
|
9 * 4, /* %ecx */
|
|
|
|
|
8 * 4, /* %edx */
|
|
|
|
|
7 * 4, /* %ebx */
|
|
|
|
|
-1, /* %esp */
|
|
|
|
|
6 * 4, /* %ebp */
|
|
|
|
|
5 * 4, /* %esi */
|
|
|
|
|
4 * 4, /* %edi */
|
|
|
|
|
13 * 4, /* %eip */
|
|
|
|
|
15 * 4, /* %eflags */
|
|
|
|
|
14 * 4, /* %cs */
|
|
|
|
|
-1, /* %ss */
|
|
|
|
|
3 * 4, /* %ds */
|
|
|
|
|
2 * 4, /* %es */
|
|
|
|
|
0 * 4, /* %fs */
|
|
|
|
|
1 * 4 /* %gs */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct trad_frame_cache *
|
|
|
|
|
i386obsd_trapframe_cache(struct frame_info *next_frame, void **this_cache)
|
|
|
|
|
{
|
|
|
|
|
struct trad_frame_cache *cache;
|
|
|
|
|
CORE_ADDR func, sp, addr;
|
|
|
|
|
ULONGEST cs;
|
2005-12-22 15:09:17 +01:00
|
|
|
|
char *name;
|
2005-12-19 23:19:49 +01:00
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (*this_cache)
|
|
|
|
|
return *this_cache;
|
|
|
|
|
|
|
|
|
|
cache = trad_frame_cache_zalloc (next_frame);
|
|
|
|
|
*this_cache = cache;
|
|
|
|
|
|
* dwarf2-frame.c (dwarf2_frame_cache, dwarf2_frame_this_id)
(dwarf2_frame_sniffer): Update.
(dwarf2_signal_frame_this_id): New function.
(dwarf2_signal_frame_unwind): Use it.
(dwarf2_frame_base_sniffer): Use frame_unwind_address_in_block.
* frame.c (frame_func_unwind): Add this_type argument.
(get_frame_func): Update.
(frame_unwind_address_in_block): Add this_type argument and check it.
Fix a typo.
(get_frame_address_in_block): Update.
* frame.h (enum frame_type): Move higher in the file.
(frame_unwind_address_in_block, frame_func_unwind): Add enum frame_type
argument.
* alpha-mdebug-tdep.c, alpha-tdep.c, amd64-tdep.c, amd64obsd-tdep.c,
arm-tdep.c, avr-tdep.c, cris-tdep.c, frv-tdep.c, h8300-tdep.c,
hppa-tdep.c, i386-tdep.c, i386obsd-tdep.c, ia64-tdep.c,
libunwind-frame.c, m32c-tdep.c, m32r-linux-tdep.c, m32r-tdep.c,
m68hc11-tdep.c, m68k-tdep.c, m88k-tdep.c, mips-mdebug-tdep.c,
mips-tdep.c, mn10300-tdep.c, mt-tdep.c, rs6000-tdep.c, s390-tdep.c,
score-tdep.c, sh-tdep.c, sh64-tdep.c, sparc-tdep.c,
sparc64obsd-tdep.c, spu-tdep.c, v850-tdep.c, vax-tdep.c,
xstormy16-tdep.c, xtensa-tdep.c: Update calls to
frame_func_unwind and frame_unwind_address_in_block to specify
the frame type. Use frame_unwind_address_in_block instead of
frame_pc_unwind in sniffers.
* gdb.arch/i386-signal.c, gdb.arch/i386-signal.exp: New files.
2007-02-27 21:17:19 +01:00
|
|
|
|
/* NORMAL_FRAME matches the type in i386obsd_trapframe_unwind, but
|
|
|
|
|
SIGTRAMP_FRAME might be more appropriate. */
|
|
|
|
|
func = frame_func_unwind (next_frame, NORMAL_FRAME);
|
2005-12-19 23:19:49 +01:00
|
|
|
|
sp = frame_unwind_register_unsigned (next_frame, I386_ESP_REGNUM);
|
2005-12-22 15:09:17 +01:00
|
|
|
|
|
|
|
|
|
find_pc_partial_function (func, &name, NULL, NULL);
|
2005-12-22 16:57:04 +01:00
|
|
|
|
if (name && strncmp (name, "Xintr", 5) == 0)
|
2005-12-22 15:09:17 +01:00
|
|
|
|
addr = sp + 8; /* It's an interrupt frame. */
|
|
|
|
|
else
|
|
|
|
|
addr = sp;
|
|
|
|
|
|
2005-12-19 23:19:49 +01:00
|
|
|
|
for (i = 0; i < ARRAY_SIZE (i386obsd_tf_reg_offset); i++)
|
|
|
|
|
if (i386obsd_tf_reg_offset[i] != -1)
|
2005-12-22 15:09:17 +01:00
|
|
|
|
trad_frame_set_reg_addr (cache, i, addr + i386obsd_tf_reg_offset[i]);
|
2005-12-19 23:19:49 +01:00
|
|
|
|
|
|
|
|
|
/* Read %cs from trap frame. */
|
2005-12-22 15:09:17 +01:00
|
|
|
|
addr += i386obsd_tf_reg_offset[I386_CS_REGNUM];
|
2005-12-19 23:19:49 +01:00
|
|
|
|
cs = read_memory_unsigned_integer (addr, 4);
|
|
|
|
|
if ((cs & I386_SEL_RPL) == I386_SEL_UPL)
|
|
|
|
|
{
|
2005-12-22 16:57:04 +01:00
|
|
|
|
/* Trap from user space; terminate backtrace. */
|
2005-12-19 23:19:49 +01:00
|
|
|
|
trad_frame_set_id (cache, null_frame_id);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Construct the frame ID using the function start. */
|
|
|
|
|
trad_frame_set_id (cache, frame_id_build (sp + 8, func));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return cache;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
i386obsd_trapframe_this_id (struct frame_info *next_frame,
|
|
|
|
|
void **this_cache, struct frame_id *this_id)
|
|
|
|
|
{
|
|
|
|
|
struct trad_frame_cache *cache =
|
|
|
|
|
i386obsd_trapframe_cache (next_frame, this_cache);
|
|
|
|
|
|
|
|
|
|
trad_frame_get_id (cache, this_id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
i386obsd_trapframe_prev_register (struct frame_info *next_frame,
|
|
|
|
|
void **this_cache, int regnum,
|
|
|
|
|
int *optimizedp, enum lval_type *lvalp,
|
|
|
|
|
CORE_ADDR *addrp, int *realnump,
|
|
|
|
|
gdb_byte *valuep)
|
|
|
|
|
{
|
|
|
|
|
struct trad_frame_cache *cache =
|
|
|
|
|
i386obsd_trapframe_cache (next_frame, this_cache);
|
|
|
|
|
|
|
|
|
|
trad_frame_get_register (cache, next_frame, regnum,
|
|
|
|
|
optimizedp, lvalp, addrp, realnump, valuep);
|
|
|
|
|
}
|
|
|
|
|
|
2005-12-22 15:09:17 +01:00
|
|
|
|
static int
|
|
|
|
|
i386obsd_trapframe_sniffer (const struct frame_unwind *self,
|
|
|
|
|
struct frame_info *next_frame,
|
|
|
|
|
void **this_prologue_cache)
|
2005-12-19 23:19:49 +01:00
|
|
|
|
{
|
|
|
|
|
ULONGEST cs;
|
|
|
|
|
char *name;
|
|
|
|
|
|
2005-12-22 17:13:20 +01:00
|
|
|
|
/* Check Current Privilege Level and bail out if we're not executing
|
2005-12-22 16:57:04 +01:00
|
|
|
|
in kernel space. */
|
2005-12-19 23:19:49 +01:00
|
|
|
|
cs = frame_unwind_register_unsigned (next_frame, I386_CS_REGNUM);
|
|
|
|
|
if ((cs & I386_SEL_RPL) == I386_SEL_UPL)
|
2005-12-22 16:57:04 +01:00
|
|
|
|
return 0;
|
2005-12-19 23:19:49 +01:00
|
|
|
|
|
|
|
|
|
find_pc_partial_function (frame_pc_unwind (next_frame), &name, NULL, NULL);
|
2006-02-26 14:03:33 +01:00
|
|
|
|
return (name && (strcmp (name, "calltrap") == 0
|
|
|
|
|
|| strcmp (name, "syscall1") == 0
|
|
|
|
|
|| strncmp (name, "Xintr", 5) == 0
|
|
|
|
|
|| strncmp (name, "Xsoft", 5) == 0));
|
2005-12-19 23:19:49 +01:00
|
|
|
|
}
|
2005-12-22 15:09:17 +01:00
|
|
|
|
|
|
|
|
|
static const struct frame_unwind i386obsd_trapframe_unwind = {
|
|
|
|
|
/* FIXME: kettenis/20051219: This really is more like an interrupt
|
|
|
|
|
frame, but SIGTRAMP_FRAME would print <signal handler called>,
|
|
|
|
|
which really is not what we want here. */
|
|
|
|
|
NORMAL_FRAME,
|
|
|
|
|
i386obsd_trapframe_this_id,
|
|
|
|
|
i386obsd_trapframe_prev_register,
|
|
|
|
|
NULL,
|
|
|
|
|
i386obsd_trapframe_sniffer
|
|
|
|
|
};
|
2005-12-19 23:19:49 +01:00
|
|
|
|
|
2005-01-23 20:35:05 +01:00
|
|
|
|
|
2002-10-20 13:54:40 +02:00
|
|
|
|
static void
|
|
|
|
|
i386obsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
|
|
|
{
|
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
|
|
|
|
|
/* Obviously OpenBSD is BSD-based. */
|
|
|
|
|
i386bsd_init_abi (info, gdbarch);
|
|
|
|
|
|
2003-12-26 19:07:00 +01:00
|
|
|
|
/* OpenBSD has a different `struct reg'. */
|
|
|
|
|
tdep->gregset_reg_offset = i386obsd_r_reg_offset;
|
|
|
|
|
tdep->gregset_num_regs = ARRAY_SIZE (i386obsd_r_reg_offset);
|
|
|
|
|
tdep->sizeof_gregset = 16 * 4;
|
|
|
|
|
|
2002-10-20 13:54:40 +02:00
|
|
|
|
/* OpenBSD uses -freg-struct-return by default. */
|
|
|
|
|
tdep->struct_return = reg_struct_return;
|
|
|
|
|
|
|
|
|
|
/* OpenBSD uses a different memory layout. */
|
2004-02-22 12:19:15 +01:00
|
|
|
|
tdep->sigtramp_start = i386obsd_sigtramp_start_addr;
|
|
|
|
|
tdep->sigtramp_end = i386obsd_sigtramp_end_addr;
|
* amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
* amd64-linux-tdep.c: Include "symtab.h".
(amd64_linux_pc_in_sigtramp): Remove function.
(amd64_linux_sigtramp_p): New function.
(amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64nbsd-tdep.c: Include "symtab.h".
(amd64nbsd_sigtramp_p): New function.
(amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
few comments.
(amd64obsd_pc_in_sigtramp): Remove function.
(amd64obsd_sigtramp_p): New function.
(amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
(i386bsd_pc_ins_sigtramp): Remove prototype.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
* i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
sigtramp_p member of `struct gdbarch_tdep'. Also check whether
the program counter is in the range specified by `struct
gdbarch_tdep'.
(i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
(i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
(i386_go32_pc_in_sigtramp): Remove function.
(i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
Initialize TDEP->sigtramp_p.
(i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
(i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-linux-tdep.c: Adjust comments.
(i386_linux_pc_in_sigtramp): Remove function.
(i386_linux_sigtramp_p): New function.
(i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-nto-tdep.c: Update copyright year.
(i386nto_pc_in_sigtramp): Remove function.
(i386nto_sigtramp_p): New function.
(i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
SP_REGNUM.
(i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386-sol2-tdep.c: Update copyright year.
(i386_sol2_pc_in_sigtramp): Remove function.
(i386_sol2_sigtramp_p): New function.
(i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
deprecated_pc_in_sigtramp.
* i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
(i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start and deprecated_sigtramp_end.
* i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
(i386nbsd_pc_in_sigtramp): Remove function.
(i386nbsd_sigtramp_p): New function.
(i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
* i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
(i386obsd_pc_in_sigtramp): Remove function.
(i386obsd_sigtramp_p): New function.
(i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
functions.
(i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
TDEP->sigtramp_p.
* Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
dependencies.
2004-04-09 18:28:50 +02:00
|
|
|
|
tdep->sigtramp_p = i386obsd_sigtramp_p;
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
|
|
|
|
/* OpenBSD has a `struct sigcontext' that's different from the
|
2004-03-05 21:58:00 +01:00
|
|
|
|
original 4.3 BSD. */
|
From Michal Ludvig <mludvig@suse.cz>:
* i386-tdep.h (struct gdbarch_tdep): Add members `sc_reg_offset'
and `sc_num_regs'.
(I386_EAX_REGNUM, I386_EDX_REGNUM, I386_ESP_REGNUM,
I386_EBP_REGNUM, I386_EIP_REGNUM, I386_EFLAGS_REGNUM,
I386_ST0_REGNUM): Move here from...
* i386-tdep.c: ... here.
(I386_NUM_SAVED_REGS): Define to I386_NUM_REGS.
(i386_sigtramp_frame_cache): Use `sc_reg_offset' to find saved
registers if possible.
(i386_gdbarch_init): Initialize TDEP->sc_reg_offset.
* i386bsd-tdep.c (i386bsd_sc_pc_offset, i386bsd_sc_sp_offset):
Remove variables.
(i386bsd_sc_reg_offset): New variable.
(i386bsd_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
TDEP->sc_sp_offset.
(i386fbsd_sc_reg_offset): New variable.
(i386fbsdaout_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs.
(i386fbsd4_sc_pc_offset, i386fbsd4_sc_sp_offset): Remove
variables.
(i386fbsd4_sc_reg_offset): New variable.
(i3864bsd4_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
TDEP->sc_sp_offset.
* i386-linux-tdep.c (i386_linux_sc_reg_offset): New variable.
(i386_linux_init_abi): Set TDEP->sc_reg_offset and TDEP->sc_num_regs.
* i386nbsd-tdep.c (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset):
Remove variables.
(i386nbsd_sc_reg_offset): New variable.
(i386nbsd_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
TDEP->sc_sp_offset.
* i386obsd-tdep.c (i386obsd_sc_pc_offset, i386obsd_sc_sp_offset):
Remove variables.
(i386obsd_sc_reg_offset): New variable.
(i386obsd_init_abi): Initialize TDEP->sc_reg_offset and
TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
TDEP->sc_sp_offset.
* i386bsd-nat.c (_initialize_i386bsd_nat): Adjust for changes in
i386bsd-tdep.c, i386nbsd-tdep.c and i386obsd-tdep.c. Add check
for frame pointer offset in `struct sigcontext'.
2003-05-31 18:08:06 +02:00
|
|
|
|
tdep->sc_reg_offset = i386obsd_sc_reg_offset;
|
2003-12-26 19:07:00 +01:00
|
|
|
|
tdep->sc_num_regs = ARRAY_SIZE (i386obsd_sc_reg_offset);
|
2005-01-23 20:35:05 +01:00
|
|
|
|
|
|
|
|
|
/* OpenBSD provides a user-level threads implementation. */
|
|
|
|
|
bsd_uthread_set_supply_uthread (gdbarch, i386obsd_supply_uthread);
|
|
|
|
|
bsd_uthread_set_collect_uthread (gdbarch, i386obsd_collect_uthread);
|
2005-12-19 23:19:49 +01:00
|
|
|
|
|
|
|
|
|
/* Unwind kernel trap frames correctly. */
|
2005-12-22 15:09:17 +01:00
|
|
|
|
frame_unwind_prepend_unwinder (gdbarch, &i386obsd_trapframe_unwind);
|
2002-10-20 13:54:40 +02:00
|
|
|
|
}
|
2004-02-21 20:11:38 +01:00
|
|
|
|
|
|
|
|
|
/* OpenBSD a.out. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
i386obsd_aout_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
|
|
|
{
|
|
|
|
|
i386obsd_init_abi (info, gdbarch);
|
|
|
|
|
|
|
|
|
|
/* OpenBSD a.out has a single register set. */
|
|
|
|
|
set_gdbarch_regset_from_core_section
|
|
|
|
|
(gdbarch, i386obsd_aout_regset_from_core_section);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* OpenBSD ELF. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
i386obsd_elf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
|
|
|
{
|
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
|
|
|
|
|
/* It's still OpenBSD. */
|
|
|
|
|
i386obsd_init_abi (info, gdbarch);
|
|
|
|
|
|
|
|
|
|
/* But ELF-based. */
|
|
|
|
|
i386_elf_init_abi (info, gdbarch);
|
|
|
|
|
|
|
|
|
|
/* OpenBSD ELF uses SVR4-style shared libraries. */
|
|
|
|
|
set_solib_svr4_fetch_link_map_offsets
|
|
|
|
|
(gdbarch, svr4_ilp32_fetch_link_map_offsets);
|
|
|
|
|
}
|
2003-12-26 19:07:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Provide a prototype to silence -Wmissing-prototypes. */
|
|
|
|
|
void _initialize_i386obsd_tdep (void);
|
2002-10-20 13:54:40 +02:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_initialize_i386obsd_tdep (void)
|
|
|
|
|
{
|
|
|
|
|
/* FIXME: kettenis/20021020: Since OpenBSD/i386 binaries are
|
|
|
|
|
indistingushable from NetBSD/i386 a.out binaries, building a GDB
|
|
|
|
|
that should support both these targets will probably not work as
|
|
|
|
|
expected. */
|
|
|
|
|
#define GDB_OSABI_OPENBSD_AOUT GDB_OSABI_NETBSD_AOUT
|
|
|
|
|
|
2002-12-21 20:58:07 +01:00
|
|
|
|
gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_OPENBSD_AOUT,
|
2004-02-21 20:11:38 +01:00
|
|
|
|
i386obsd_aout_init_abi);
|
|
|
|
|
gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_OPENBSD_ELF,
|
|
|
|
|
i386obsd_elf_init_abi);
|
2002-10-20 13:54:40 +02:00
|
|
|
|
}
|