2003-08-23 10:56:45 +02:00
|
|
|
|
/* Target-dependent code for NetBSD/i386.
|
|
|
|
|
|
2007-01-09 18:59:20 +01:00
|
|
|
|
Copyright (C) 1988, 1989, 1991, 1992, 1994, 1996, 2000, 2001, 2002, 2003,
|
2009-01-03 06:58:08 +01:00
|
|
|
|
2004, 2007, 2008, 2009 Free Software Foundation, Inc.
|
2000-09-07 22:08: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
|
2000-09-07 22:08: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/>. */
|
2000-09-07 22:08:40 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
2003-11-27 14:28:50 +01:00
|
|
|
|
#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"
|
2002-05-11 23:22:51 +02:00
|
|
|
|
#include "gdbcore.h"
|
|
|
|
|
#include "regcache.h"
|
2003-11-27 14:28:50 +01:00
|
|
|
|
#include "regset.h"
|
2003-01-05 00:38:46 +01:00
|
|
|
|
#include "osabi.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"
|
2007-12-29 18:01:41 +01:00
|
|
|
|
#include "trad-frame.h"
|
|
|
|
|
#include "tramp-frame.h"
|
2000-09-07 22:08:40 +02:00
|
|
|
|
|
2003-11-27 14:28:50 +01:00
|
|
|
|
#include "gdb_assert.h"
|
|
|
|
|
#include "gdb_string.h"
|
|
|
|
|
|
2002-09-02 01:24:19 +02:00
|
|
|
|
#include "i386-tdep.h"
|
2002-05-11 23:22:51 +02:00
|
|
|
|
#include "i387-tdep.h"
|
2002-09-02 01:24:19 +02:00
|
|
|
|
#include "nbsd-tdep.h"
|
2002-09-02 20:09:07 +02:00
|
|
|
|
#include "solib-svr4.h"
|
|
|
|
|
|
2003-11-27 14:28:50 +01:00
|
|
|
|
/* From <machine/reg.h>. */
|
|
|
|
|
static int i386nbsd_r_reg_offset[] =
|
2002-05-11 23:22:51 +02:00
|
|
|
|
{
|
2003-11-27 14:28:50 +01:00
|
|
|
|
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-05-11 23:22:51 +02:00
|
|
|
|
};
|
|
|
|
|
|
2002-09-02 01:24:19 +02:00
|
|
|
|
/* From <machine/signal.h>. */
|
2003-11-27 14:28:50 +01:00
|
|
|
|
int i386nbsd_sc_reg_offset[] =
|
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
|
|
|
|
{
|
|
|
|
|
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-09-02 01:24:19 +02:00
|
|
|
|
|
2007-12-29 18:01:41 +01:00
|
|
|
|
/* From <machine/mcontext.h>. */
|
|
|
|
|
int i386nbsd_mc_reg_offset[] =
|
|
|
|
|
{
|
|
|
|
|
11 * 4, /* %eax */
|
|
|
|
|
10 * 4, /* %ecx */
|
|
|
|
|
9 * 4, /* %edx */
|
|
|
|
|
8 * 4, /* %ebx */
|
|
|
|
|
7 * 4, /* %esp */
|
|
|
|
|
6 * 4, /* %ebp */
|
|
|
|
|
5 * 4, /* %esi */
|
|
|
|
|
4 * 4, /* %edi */
|
|
|
|
|
14 * 4, /* %eip */
|
|
|
|
|
16 * 4, /* %eflags */
|
|
|
|
|
15 * 4, /* %cs */
|
|
|
|
|
18 * 4, /* %ss */
|
|
|
|
|
3 * 4, /* %ds */
|
|
|
|
|
2 * 4, /* %es */
|
|
|
|
|
1 * 4, /* %fs */
|
|
|
|
|
0 * 4 /* %gs */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void i386nbsd_sigtramp_cache_init (const struct tramp_frame *,
|
|
|
|
|
struct frame_info *,
|
|
|
|
|
struct trad_frame_cache *,
|
|
|
|
|
CORE_ADDR);
|
|
|
|
|
|
|
|
|
|
static const struct tramp_frame i386nbsd_sigtramp_sc16 =
|
|
|
|
|
{
|
|
|
|
|
SIGTRAMP_FRAME,
|
|
|
|
|
1,
|
|
|
|
|
{
|
|
|
|
|
{ 0x8d, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x10, -1 },
|
|
|
|
|
/* leal 0x10(%esp), %eax */
|
|
|
|
|
{ 0x50, -1 }, /* pushl %eax */
|
|
|
|
|
{ 0x50, -1 }, /* pushl %eax */
|
|
|
|
|
{ 0xb8, -1 }, { 0x27, -1 }, {0x01, -1 }, {0x00, -1 }, {0x00, -1 },
|
|
|
|
|
/* movl $0x127, %eax # __sigreturn14 */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1},
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ 0xb8, -1 }, { 0x01, -1 }, {0x00, -1 }, {0x00, -1 }, {0x00, -1 },
|
|
|
|
|
/* movl $0x1, %eax # exit */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1},
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ TRAMP_SENTINEL_INSN, -1 }
|
|
|
|
|
},
|
|
|
|
|
i386nbsd_sigtramp_cache_init
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct tramp_frame i386nbsd_sigtramp_sc2 =
|
|
|
|
|
{
|
|
|
|
|
SIGTRAMP_FRAME,
|
|
|
|
|
1,
|
|
|
|
|
{
|
|
|
|
|
{ 0x8d, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x0c, -1 },
|
|
|
|
|
/* leal 0x0c(%esp), %eax */
|
|
|
|
|
{ 0x89, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x04, -1 },
|
|
|
|
|
/* movl %eax, 0x4(%esp) */
|
|
|
|
|
{ 0xb8, -1 }, { 0x27, -1 }, {0x01, -1 }, {0x00, -1 }, {0x00, -1 },
|
|
|
|
|
/* movl $0x127, %eax # __sigreturn14 */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1},
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ 0x89, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x04, -1 },
|
|
|
|
|
/* movl %eax, 0x4(%esp) */
|
|
|
|
|
{ 0xb8, -1 }, { 0x01, -1 }, {0x00, -1 }, {0x00, -1 }, {0x00, -1 },
|
|
|
|
|
/* movl $0x1, %eax */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1},
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ TRAMP_SENTINEL_INSN, -1 }
|
|
|
|
|
},
|
|
|
|
|
i386nbsd_sigtramp_cache_init
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct tramp_frame i386nbsd_sigtramp_si2 =
|
|
|
|
|
{
|
|
|
|
|
SIGTRAMP_FRAME,
|
|
|
|
|
1,
|
|
|
|
|
{
|
|
|
|
|
{ 0x8b, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x08, -1 },
|
|
|
|
|
/* movl 8(%esp),%eax */
|
|
|
|
|
{ 0x89, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x04, -1 },
|
|
|
|
|
/* movl %eax, 0x4(%esp) */
|
|
|
|
|
{ 0xb8, -1 }, { 0x34, -1 }, { 0x01, -1 }, { 0x00, -1 }, { 0x00, -1 },
|
|
|
|
|
/* movl $0x134, %eax # setcontext */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1 },
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ 0x89, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x04, -1 },
|
|
|
|
|
/* movl %eax, 0x4(%esp) */
|
|
|
|
|
{ 0xb8, -1 }, { 0x01, -1 }, { 0x00, -1 }, { 0x00, -1 }, { 0x00, -1 },
|
|
|
|
|
/* movl $0x1, %eax */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1 },
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ TRAMP_SENTINEL_INSN, -1 }
|
|
|
|
|
},
|
|
|
|
|
i386nbsd_sigtramp_cache_init
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct tramp_frame i386nbsd_sigtramp_si31 =
|
|
|
|
|
{
|
|
|
|
|
SIGTRAMP_FRAME,
|
|
|
|
|
1,
|
|
|
|
|
{
|
|
|
|
|
{ 0x8d, -1 }, { 0x84, -1 }, { 0x24, -1 },
|
|
|
|
|
{ 0x8c, -1 }, { 0x00, -1 }, { 0x00, -1 }, { 0x00, -1 },
|
|
|
|
|
/* leal 0x8c(%esp), %eax */
|
|
|
|
|
{ 0x89, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x04, -1 },
|
|
|
|
|
/* movl %eax, 0x4(%esp) */
|
|
|
|
|
{ 0xb8, -1 }, { 0x34, -1 }, { 0x01, -1 }, { 0x00, -1 }, { 0x00, -1 },
|
|
|
|
|
/* movl $0x134, %eax # setcontext */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1},
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ 0x89, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x04, -1 },
|
|
|
|
|
/* movl %eax, 0x4(%esp) */
|
|
|
|
|
{ 0xb8, -1 }, { 0x01, -1 }, {0x00, -1 }, {0x00, -1 }, {0x00, -1 },
|
|
|
|
|
/* movl $0x1, %eax */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1},
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ TRAMP_SENTINEL_INSN, -1 }
|
|
|
|
|
},
|
|
|
|
|
i386nbsd_sigtramp_cache_init
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct tramp_frame i386nbsd_sigtramp_si4 =
|
|
|
|
|
{
|
|
|
|
|
SIGTRAMP_FRAME,
|
|
|
|
|
1,
|
|
|
|
|
{
|
|
|
|
|
{ 0x8d, -1 }, { 0x84, -1 }, { 0x24, -1 },
|
|
|
|
|
{ 0x8c, -1 }, { 0x00, -1 }, { 0x00, -1 }, { 0x00, -1 },
|
|
|
|
|
/* leal 0x8c(%esp), %eax */
|
|
|
|
|
{ 0x89, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x04, -1 },
|
|
|
|
|
/* movl %eax, 0x4(%esp) */
|
|
|
|
|
{ 0xb8, -1 }, { 0x34, -1 }, { 0x01, -1 }, { 0x00, -1 }, { 0x00, -1 },
|
|
|
|
|
/* movl $0x134, %eax # setcontext */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1},
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ 0xc7, -1 }, { 0x44, -1 }, { 0x24, -1 }, { 0x04, -1 },
|
|
|
|
|
{ 0xff, -1 }, { 0xff, -1 }, { 0xff, -1 }, { 0xff, -1 },
|
|
|
|
|
/* movl $0xffffffff,0x4(%esp) */
|
|
|
|
|
{ 0xb8, -1 }, { 0x01, -1 }, {0x00, -1 }, {0x00, -1 }, {0x00, -1 },
|
|
|
|
|
/* movl $0x1, %eax */
|
|
|
|
|
{ 0xcd, -1 }, { 0x80, -1},
|
|
|
|
|
/* int $0x80 */
|
|
|
|
|
{ TRAMP_SENTINEL_INSN, -1 }
|
|
|
|
|
},
|
|
|
|
|
i386nbsd_sigtramp_cache_init
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
i386nbsd_sigtramp_cache_init (const struct tramp_frame *self,
|
Update i386 and amd64 ports for unwinder changes.
* amd64-tdep.c (amd64_frame_cache): Expect this_frame.
(amd64_frame_this_id, amd64_frame_prev_register): Update signature.
(amd64_frame_unwind): Use default_frame_sniffer.
(amd64_frame_sniffer): Delete.
(amd64_sigtramp_frame_cache): Expect this_frame.
(amd64_sigtramp_frame_this_id, amd64_sigtramp_frame_prev_register)
(amd64_sigtramp_frame_sniffer): Update signature.
(amd64_sigtramp_frame_unwind): Add amd64_sigtramp_frame_sniffer.
(amd64_frame_base_address): Expect this_frame.
(amd64_dummy_id): Renamed from amd64_unwind_dummy_id. Expect
this_frame.
(amd64_init_abi): Use set_gdbarch_dummy_id and
frame_unwind_append_unwinder.
* i386-tdep.c (i386_frame_cache): Expect this_frame.
(i386_frame_this_id, i386_frame_prev_register): Update signature.
(i386_frame_unwind): Use default_frame_sniffer.
(i386_frame_sniffer): Delete.
(i386_sigtramp_frame_cache): Expect this_frame.
(i386_sigtramp_frame_this_id, i386_sigtramp_frame_prev_register)
(i386_sigtramp_frame_sniffer): Update signature.
(i386_sigtramp_frame_unwind): Use i386_sigtramp_frame_sniffer.
(i386_frame_base_address): Update signature.
(i386_dummy_id): Rename from i386_unwind_dummy_id. Expect this_frame.
(i386_push_dummy_call): Update comment.
(i386_sigtramp_p, i386_svr4_sigtramp_p, i386_svr4_sigcontext_addr):
Expect this_frame.
(i386_gdbarch_init): Use set_gdbarch_dummy_id, dwarf2_append_unwinders,
and frame_unwind_append_unwinder.
* amd64-linux-tdep.c, amd64-sol2-tdep.c, amd64fbsd-tdep.c,
amd64nbsd-tdep.c, amd64obsd-tdep.c, i386-linux-tdep.c,
i386-nto-tdep.c, i386bsd-tdep.c, i386-sol2-tdep.c, i386obsd-tdep.c,
i386nbsd-tdep.c: Update for unwinder changes.
2008-04-30 23:19:45 +02:00
|
|
|
|
struct frame_info *this_frame,
|
|
|
|
|
struct trad_frame_cache *this_cache,
|
|
|
|
|
CORE_ADDR func)
|
2007-12-29 18:01:41 +01:00
|
|
|
|
{
|
Update i386 and amd64 ports for unwinder changes.
* amd64-tdep.c (amd64_frame_cache): Expect this_frame.
(amd64_frame_this_id, amd64_frame_prev_register): Update signature.
(amd64_frame_unwind): Use default_frame_sniffer.
(amd64_frame_sniffer): Delete.
(amd64_sigtramp_frame_cache): Expect this_frame.
(amd64_sigtramp_frame_this_id, amd64_sigtramp_frame_prev_register)
(amd64_sigtramp_frame_sniffer): Update signature.
(amd64_sigtramp_frame_unwind): Add amd64_sigtramp_frame_sniffer.
(amd64_frame_base_address): Expect this_frame.
(amd64_dummy_id): Renamed from amd64_unwind_dummy_id. Expect
this_frame.
(amd64_init_abi): Use set_gdbarch_dummy_id and
frame_unwind_append_unwinder.
* i386-tdep.c (i386_frame_cache): Expect this_frame.
(i386_frame_this_id, i386_frame_prev_register): Update signature.
(i386_frame_unwind): Use default_frame_sniffer.
(i386_frame_sniffer): Delete.
(i386_sigtramp_frame_cache): Expect this_frame.
(i386_sigtramp_frame_this_id, i386_sigtramp_frame_prev_register)
(i386_sigtramp_frame_sniffer): Update signature.
(i386_sigtramp_frame_unwind): Use i386_sigtramp_frame_sniffer.
(i386_frame_base_address): Update signature.
(i386_dummy_id): Rename from i386_unwind_dummy_id. Expect this_frame.
(i386_push_dummy_call): Update comment.
(i386_sigtramp_p, i386_svr4_sigtramp_p, i386_svr4_sigcontext_addr):
Expect this_frame.
(i386_gdbarch_init): Use set_gdbarch_dummy_id, dwarf2_append_unwinders,
and frame_unwind_append_unwinder.
* amd64-linux-tdep.c, amd64-sol2-tdep.c, amd64fbsd-tdep.c,
amd64nbsd-tdep.c, amd64obsd-tdep.c, i386-linux-tdep.c,
i386-nto-tdep.c, i386bsd-tdep.c, i386-sol2-tdep.c, i386obsd-tdep.c,
i386nbsd-tdep.c: Update for unwinder changes.
2008-04-30 23:19:45 +02:00
|
|
|
|
struct gdbarch *gdbarch = get_frame_arch (this_frame);
|
2007-12-29 18:01:41 +01:00
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
Update i386 and amd64 ports for unwinder changes.
* amd64-tdep.c (amd64_frame_cache): Expect this_frame.
(amd64_frame_this_id, amd64_frame_prev_register): Update signature.
(amd64_frame_unwind): Use default_frame_sniffer.
(amd64_frame_sniffer): Delete.
(amd64_sigtramp_frame_cache): Expect this_frame.
(amd64_sigtramp_frame_this_id, amd64_sigtramp_frame_prev_register)
(amd64_sigtramp_frame_sniffer): Update signature.
(amd64_sigtramp_frame_unwind): Add amd64_sigtramp_frame_sniffer.
(amd64_frame_base_address): Expect this_frame.
(amd64_dummy_id): Renamed from amd64_unwind_dummy_id. Expect
this_frame.
(amd64_init_abi): Use set_gdbarch_dummy_id and
frame_unwind_append_unwinder.
* i386-tdep.c (i386_frame_cache): Expect this_frame.
(i386_frame_this_id, i386_frame_prev_register): Update signature.
(i386_frame_unwind): Use default_frame_sniffer.
(i386_frame_sniffer): Delete.
(i386_sigtramp_frame_cache): Expect this_frame.
(i386_sigtramp_frame_this_id, i386_sigtramp_frame_prev_register)
(i386_sigtramp_frame_sniffer): Update signature.
(i386_sigtramp_frame_unwind): Use i386_sigtramp_frame_sniffer.
(i386_frame_base_address): Update signature.
(i386_dummy_id): Rename from i386_unwind_dummy_id. Expect this_frame.
(i386_push_dummy_call): Update comment.
(i386_sigtramp_p, i386_svr4_sigtramp_p, i386_svr4_sigcontext_addr):
Expect this_frame.
(i386_gdbarch_init): Use set_gdbarch_dummy_id, dwarf2_append_unwinders,
and frame_unwind_append_unwinder.
* amd64-linux-tdep.c, amd64-sol2-tdep.c, amd64fbsd-tdep.c,
amd64nbsd-tdep.c, amd64obsd-tdep.c, i386-linux-tdep.c,
i386-nto-tdep.c, i386bsd-tdep.c, i386-sol2-tdep.c, i386obsd-tdep.c,
i386nbsd-tdep.c: Update for unwinder changes.
2008-04-30 23:19:45 +02:00
|
|
|
|
CORE_ADDR sp = get_frame_register_unsigned (this_frame, I386_ESP_REGNUM);
|
2007-12-29 18:01:41 +01:00
|
|
|
|
CORE_ADDR base;
|
|
|
|
|
int *reg_offset;
|
|
|
|
|
int num_regs;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (self == &i386nbsd_sigtramp_sc16 || self == &i386nbsd_sigtramp_sc2)
|
|
|
|
|
{
|
|
|
|
|
reg_offset = i386nbsd_sc_reg_offset;
|
|
|
|
|
num_regs = ARRAY_SIZE (i386nbsd_sc_reg_offset);
|
|
|
|
|
|
|
|
|
|
/* Read in the sigcontext address */
|
|
|
|
|
base = read_memory_unsigned_integer (sp + 8, 4);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
reg_offset = i386nbsd_mc_reg_offset;
|
|
|
|
|
num_regs = ARRAY_SIZE (i386nbsd_mc_reg_offset);
|
|
|
|
|
|
|
|
|
|
/* Read in the ucontext address */
|
|
|
|
|
base = read_memory_unsigned_integer (sp + 8, 4);
|
|
|
|
|
/* offsetof(ucontext_t, uc_mcontext) == 36 */
|
|
|
|
|
base += 36;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < num_regs; i++)
|
|
|
|
|
if (reg_offset[i] != -1)
|
|
|
|
|
trad_frame_set_reg_addr (this_cache, i, base + reg_offset[i]);
|
|
|
|
|
|
|
|
|
|
/* Construct the frame ID using the function start. */
|
|
|
|
|
trad_frame_set_id (this_cache, frame_id_build (sp, func));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-09-02 01:24:19 +02:00
|
|
|
|
static void
|
|
|
|
|
i386nbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
|
|
|
{
|
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
|
|
|
|
|
/* Obviously NetBSD is BSD-based. */
|
|
|
|
|
i386bsd_init_abi (info, gdbarch);
|
|
|
|
|
|
2003-11-27 14:28:50 +01:00
|
|
|
|
/* NetBSD has a different `struct reg'. */
|
|
|
|
|
tdep->gregset_reg_offset = i386nbsd_r_reg_offset;
|
|
|
|
|
tdep->gregset_num_regs = ARRAY_SIZE (i386nbsd_r_reg_offset);
|
|
|
|
|
tdep->sizeof_gregset = 16 * 4;
|
|
|
|
|
|
2002-09-02 01:24:19 +02:00
|
|
|
|
/* NetBSD uses -freg-struct-return by default. */
|
|
|
|
|
tdep->struct_return = reg_struct_return;
|
|
|
|
|
|
2007-12-29 18:01:41 +01:00
|
|
|
|
/* NetBSD uses tramp_frame sniffers for signal trampolines. */
|
|
|
|
|
tdep->sigcontext_addr= 0;
|
|
|
|
|
tdep->sigtramp_start = 0;
|
|
|
|
|
tdep->sigtramp_end = 0;
|
|
|
|
|
tdep->sigtramp_p = 0;
|
|
|
|
|
tdep->sc_reg_offset = 0;
|
|
|
|
|
tdep->sc_num_regs = 0;
|
|
|
|
|
|
|
|
|
|
tramp_frame_prepend_unwinder (gdbarch, &i386nbsd_sigtramp_sc16);
|
|
|
|
|
tramp_frame_prepend_unwinder (gdbarch, &i386nbsd_sigtramp_sc2);
|
|
|
|
|
tramp_frame_prepend_unwinder (gdbarch, &i386nbsd_sigtramp_si2);
|
|
|
|
|
tramp_frame_prepend_unwinder (gdbarch, &i386nbsd_sigtramp_si31);
|
|
|
|
|
tramp_frame_prepend_unwinder (gdbarch, &i386nbsd_sigtramp_si4);
|
2003-11-27 14:28:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
2002-09-02 01:24:19 +02:00
|
|
|
|
/* NetBSD ELF. */
|
2003-11-27 14:28:50 +01:00
|
|
|
|
|
2002-09-02 01:24:19 +02:00
|
|
|
|
static void
|
|
|
|
|
i386nbsdelf_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
|
|
|
{
|
|
|
|
|
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
|
|
|
|
|
|
|
|
|
/* It's still NetBSD. */
|
|
|
|
|
i386nbsd_init_abi (info, gdbarch);
|
|
|
|
|
|
|
|
|
|
/* But ELF-based. */
|
|
|
|
|
i386_elf_init_abi (info, gdbarch);
|
|
|
|
|
|
|
|
|
|
/* NetBSD ELF uses SVR4-style shared libraries. */
|
2003-11-27 14:28:50 +01:00
|
|
|
|
set_solib_svr4_fetch_link_map_offsets
|
* amd64fbsd-tdep.c: Include "solib-svr4.h".
(amd64fbsd_init_abi): Set link map offsets.
* amd64nbsd-tdep.c: Include "slib-svr4.h".
(amd64nbsd_init_abi): Set link map offsets.
* amd64obsd-tdep.c: Include "solib-svr4.h".
(amd64obsd_init_abi): Set link map offsets.
* i386fbsd-tdep.c: Include "solib-svr4.h".
(i386fbsd_init_abi): Set link map offsets.
* i386nbsd-tdep.c: Include "solib-svr4.h".
(i386nbsdelf_init_abi): Set link map offsets.
* Makefile.in (amd64fbsd-tdep.o, amd64nbsd-tdep.o)
(amd64obsd-tdep.o, i386fbsd-tdep.o): Update dependencies.
* config/i386/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o,
solib-legacy.o and core-aout.o. Reformat.
* config/i386/fbsd64.mh (NATDEPFILES): Remove solib.o,
solib-svr4.o, solib-legacy.o. Reformat.
* config/i386/nbsdaout.mh (NATDEPFILES): Add solib.o. Reformat.
* config/i386/nbsdelf.mh: Reformat.
* config/i386/nbsd64.mh (NATDEPFILES): Remove solib.o,
solib-svr4.o, solib-legacy.o and corelow.o.
* config/i386/obsd.mh, config/i386/obsdaout.mh: Reformat.
* config/i386/obsd64.mh (NATDEPFILES): Remove solib.o,
solib-svr4.o, solib-legacy.o and corelow.o. Reformat.
* config/i386/fbsd.mt (TDEPFILES): Add solib.o, solib-svr4.o.
* config/i386/fbsd64.mt (TDEPFILES): Add solib.o, solib-svr4.o.
(TM_FILE): Set to tm-fbsd.h.
* config/i386/nbsd.mt (TDEPFILES): Reformat.
* config/i386/nbsd64.mt (TDEPFILES): Add corelow.o, solib.o and
solib-svr4.o.
* config/i386/obsd.mt (TDEPFILES): Add corelow.o, solib.o and
solib-svr4.o.
(TM_FILE): Set to nm-nbsd.h.
* config/i386/nm-fbsd.h: Update copyright year. Tweak comments.
Simplify shared library support. Don't include "elf/common.h".
(SVR4_SHARED_LIBS): Don't define.
* config/i386/nm-fbsd64.h: Update copyright year. Don't include
"solib.h".
* config/i386/nm-nbsd.h, config/i386/nm-nbsdaout.h,
config/i386/nm-obsd.h: Update copyright year. Tweak comments.
* config/i386/tm-fbsd.h: Update copyright tear. Tweak comments.
Don't include "i386/tm-i386.h". Include "solib.h".
* config/i386/tm-nbsd.h: Update copyright year. Tweak comments.
Don't include "i386/tm-i386.h".
* config/i386/xm-i386.h: Update copyright year. Tweak comments.
* config/i386/xm-nbsd.h: Update copyright year. Tweak comments.
Include "i386/xm-i386.h".
(HOST_LONG_DOUBLE_FORMAT): Remove.
2004-02-22 17:20:22 +01:00
|
|
|
|
(gdbarch, svr4_ilp32_fetch_link_map_offsets);
|
2002-09-02 01:24:19 +02:00
|
|
|
|
|
|
|
|
|
/* NetBSD ELF uses -fpcc-struct-return by default. */
|
|
|
|
|
tdep->struct_return = pcc_struct_return;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-22 02:02:20 +01:00
|
|
|
|
/* Provide a prototype to silence -Wmissing-prototypes. */
|
|
|
|
|
extern initialize_file_ftype _initialize_i386nbsd_tdep;
|
|
|
|
|
|
2002-05-11 23:22:51 +02:00
|
|
|
|
void
|
|
|
|
|
_initialize_i386nbsd_tdep (void)
|
|
|
|
|
{
|
2002-12-21 20:58:07 +01:00
|
|
|
|
gdbarch_register_osabi (bfd_arch_i386, 0, GDB_OSABI_NETBSD_ELF,
|
2002-09-02 01:24:19 +02:00
|
|
|
|
i386nbsdelf_init_abi);
|
2002-05-11 23:22:51 +02:00
|
|
|
|
}
|