1992-10-16 12:35:02 +01:00
|
|
|
/* Native-dependent code for BSD Unix running on i386's, for GDB.
|
1996-01-04 22:09:59 +01:00
|
|
|
Copyright 1988, 1989, 1991, 1992, 1994, 1996 Free Software Foundation, Inc.
|
1992-10-09 12:48:24 +01: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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(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
|
|
|
|
along with this program; if not, write to the Free Software
|
1995-08-02 05:41:12 +02:00
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
1992-10-09 12:48:24 +01:00
|
|
|
|
|
|
|
#include "defs.h"
|
1996-02-21 02:52:37 +01:00
|
|
|
|
|
|
|
#ifdef FETCH_INFERIOR_REGISTERS
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ptrace.h>
|
|
|
|
#include <machine/reg.h>
|
|
|
|
#include <machine/frame.h>
|
|
|
|
#include "inferior.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
fetch_inferior_registers(regno)
|
|
|
|
int regno;
|
|
|
|
{
|
|
|
|
struct reg inferior_registers;
|
|
|
|
|
|
|
|
ptrace (PT_GETREGS, inferior_pid, (PTRACE_ARG3_TYPE) &inferior_registers, 0);
|
|
|
|
memcpy (®isters[REGISTER_BYTE (0)], &inferior_registers, 4*NUM_REGS);
|
|
|
|
registers_fetched ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
store_inferior_registers(regno)
|
|
|
|
int regno;
|
|
|
|
{
|
|
|
|
struct reg inferior_registers;
|
|
|
|
|
|
|
|
memcpy (&inferior_registers, ®isters[REGISTER_BYTE (0)], 4*NUM_REGS);
|
|
|
|
ptrace (PT_SETREGS, inferior_pid, (PTRACE_ARG3_TYPE) &inferior_registers, 0);
|
|
|
|
}
|
|
|
|
|
1996-03-05 21:09:21 +01:00
|
|
|
struct md_core {
|
|
|
|
struct reg intreg;
|
|
|
|
struct fpreg freg;
|
|
|
|
};
|
|
|
|
|
1996-02-21 02:52:37 +01:00
|
|
|
void
|
|
|
|
fetch_core_registers (core_reg_sect, core_reg_size, which, ignore)
|
|
|
|
char *core_reg_sect;
|
|
|
|
unsigned core_reg_size;
|
|
|
|
int which;
|
1996-09-09 05:01:49 +02:00
|
|
|
CORE_ADDR ignore;
|
1996-02-21 02:52:37 +01:00
|
|
|
{
|
1996-03-05 21:09:21 +01:00
|
|
|
struct md_core *core_reg = (struct md_core *)core_reg_sect;
|
|
|
|
|
|
|
|
/* integer registers */
|
|
|
|
memcpy(®isters[REGISTER_BYTE (0)], &core_reg->intreg,
|
|
|
|
sizeof(struct reg));
|
|
|
|
/* floating point registers */
|
|
|
|
/* XXX */
|
1996-02-21 02:52:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
1992-10-09 12:48:24 +01:00
|
|
|
#include <machine/reg.h>
|
|
|
|
|
|
|
|
/* this table must line up with REGISTER_NAMES in tm-i386.h */
|
|
|
|
/* symbols like 'tEAX' come from <machine/reg.h> */
|
|
|
|
static int tregmap[] =
|
|
|
|
{
|
|
|
|
tEAX, tECX, tEDX, tEBX,
|
|
|
|
tESP, tEBP, tESI, tEDI,
|
|
|
|
tEIP, tEFLAGS, tCS, tSS
|
|
|
|
};
|
1994-01-07 18:56:59 +01:00
|
|
|
|
1996-03-07 21:13:45 +01:00
|
|
|
#ifdef sEAX
|
1992-10-09 12:48:24 +01:00
|
|
|
static int sregmap[] =
|
|
|
|
{
|
|
|
|
sEAX, sECX, sEDX, sEBX,
|
|
|
|
sESP, sEBP, sESI, sEDI,
|
|
|
|
sEIP, sEFLAGS, sCS, sSS
|
|
|
|
};
|
1996-03-07 21:13:45 +01:00
|
|
|
#else /* No sEAX */
|
|
|
|
|
|
|
|
/* FreeBSD has decided to collapse the s* and t* symbols. So if the s*
|
|
|
|
ones aren't around, use the t* ones for sregmap too. */
|
|
|
|
|
|
|
|
static int sregmap[] =
|
|
|
|
{
|
|
|
|
tEAX, tECX, tEDX, tEBX,
|
|
|
|
tESP, tEBP, tESI, tEDI,
|
|
|
|
tEIP, tEFLAGS, tCS, tSS
|
|
|
|
};
|
|
|
|
#endif /* No sEAX */
|
1992-10-09 12:48:24 +01:00
|
|
|
|
|
|
|
/* blockend is the value of u.u_ar0, and points to the
|
|
|
|
place where ES is stored. */
|
|
|
|
|
|
|
|
int
|
|
|
|
i386_register_u_addr (blockend, regnum)
|
|
|
|
int blockend;
|
|
|
|
int regnum;
|
|
|
|
{
|
|
|
|
/* The following condition is a kludge to get at the proper register map
|
|
|
|
depending upon the state of pcb_flag.
|
|
|
|
The proper condition would be
|
|
|
|
if (u.u_pcb.pcb_flag & FM_TRAP)
|
|
|
|
but that would require a ptrace call here and wouldn't work
|
|
|
|
for corefiles. */
|
|
|
|
|
|
|
|
if (blockend < 0x1fcc)
|
|
|
|
return (blockend + 4 * tregmap[regnum]);
|
|
|
|
else
|
|
|
|
return (blockend + 4 * sregmap[regnum]);
|
|
|
|
}
|
* solib.c: *BSD systems need <a.out.h> to be included before
<link.h>.
* i386b-nat.c: Add i386_float_info(), etc.
* config/i386/nm-nbsd.h: #define FLOAT_INFO.
* config/nm-nbsd.h: New file, for generic NetBSD native support.
* config/i386/nm-nbsd.h: Use it.
* config/sparc/nm-nbsd.h: Use it.
* config/ns32k/nm-nbsd.h: Use it.
* configure.in (i386-*-netbsd): Use config/i386/nbsd.m[ht].
(ns32k-*-netbsd): Use config/ns32k/nbsd.m[ht].
* config/i386/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/i386.
* config/ns32k/{nbsd.mh,nbsd.mh,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/ns32k.
1994-09-24 00:30:31 +02:00
|
|
|
|
1996-02-21 02:52:37 +01:00
|
|
|
#endif /* !FETCH_INFERIOR_REGISTERS */
|
* solib.c: *BSD systems need <a.out.h> to be included before
<link.h>.
* i386b-nat.c: Add i386_float_info(), etc.
* config/i386/nm-nbsd.h: #define FLOAT_INFO.
* config/nm-nbsd.h: New file, for generic NetBSD native support.
* config/i386/nm-nbsd.h: Use it.
* config/sparc/nm-nbsd.h: Use it.
* config/ns32k/nm-nbsd.h: Use it.
* configure.in (i386-*-netbsd): Use config/i386/nbsd.m[ht].
(ns32k-*-netbsd): Use config/ns32k/nbsd.m[ht].
* config/i386/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/i386.
* config/ns32k/{nbsd.mh,nbsd.mh,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/ns32k.
1994-09-24 00:30:31 +02:00
|
|
|
|
|
|
|
#ifdef FLOAT_INFO
|
* configure.in: Check for unistd.h.
* configure: Regenerated.
* command.c, cp-valprint.c, fork-child.c, i386-tdep.c,
i386b-nat.c, inflow.c, main.c, maint.c, objfiles.c, solib.c,
source.c, stack.c, symfile.c, top.c, utils.c: Include strings.h
and/or unistd.h to bring prototypes into scope.
1995-08-01 00:46:03 +02:00
|
|
|
#include "language.h" /* for local_hex_string */
|
* solib.c: *BSD systems need <a.out.h> to be included before
<link.h>.
* i386b-nat.c: Add i386_float_info(), etc.
* config/i386/nm-nbsd.h: #define FLOAT_INFO.
* config/nm-nbsd.h: New file, for generic NetBSD native support.
* config/i386/nm-nbsd.h: Use it.
* config/sparc/nm-nbsd.h: Use it.
* config/ns32k/nm-nbsd.h: Use it.
* configure.in (i386-*-netbsd): Use config/i386/nbsd.m[ht].
(ns32k-*-netbsd): Use config/ns32k/nbsd.m[ht].
* config/i386/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/i386.
* config/ns32k/{nbsd.mh,nbsd.mh,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/ns32k.
1994-09-24 00:30:31 +02:00
|
|
|
#include "floatformat.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/dir.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <a.out.h>
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#define curpcb Xcurpcb /* XXX avoid leaking declaration from pcb.h */
|
|
|
|
#include <sys/user.h>
|
|
|
|
#undef curpcb
|
|
|
|
#include <sys/file.h>
|
* configure.in: Check for working mmap, ansi headers, string.h,
strings.h, and memory.h.
* configure: Regenerated.
* gdb_stat.h: New file, "portable" <sys/stat.h>.
* gdb_string.h: New file, "portable" <string.h>.
* altos-xdep.c, arm-tdep.c, arm-xdep.c, convex-tdep.c,
convex-xdep.c, coredep.c, cxux-nat.c, dbxread.c, exec.c,
gould-xdep.c, hppa-tdep.c, i386aix-nat.c, i386b-nat.c,
i386mach-nat.c, i386v-nat.c, infptrace.c, m88k-nat.c, main.c,
mdebugread.c, objfiles.c, os9kread.c, procfs.c, pyr-xdep.c,
rs6000-nat.c, source.c, standalone.c, stuff.c, sun386-nat.c,
symfile.c, symm-nat.c, symm-tdep.c, symtab.c, top.c, ultra3-nat.c,
ultra3-xdep.c, umax-xdep.c, xcoffread.c: Include "gdb_stat.h"
instead of <sys/stat.h>.
* alpha-tdep.c, breakpoint.c, buildsym.c, c-typeprint.c,
ch-typeprint.c, coffread.c, command.c, core-sol2.c, core-svr4.c,
core.c, corelow.c, cp-valprint.c, dbxread.c, dcache.c, demangle.c,
dpx2-nat.c, dstread.c, dwarfread.c, elfread.c, environ.c, eval.c,
exec.c, f-lang.c, f-typeprint.c, f-valprint.c, findvar.c,
fork-child.c, gdbtypes.c, hpread.c, i386-tdep.c, infcmd.c,
inflow.c, infptrace.c, infrun.c, irix5-nat.c, language.c,
m2-typeprint.c, main.c, mdebugread.c, minsyms.c, mipsread.c,
monitor.c, nlmread.c, objfiles.c, os9kread.c, osfsolib.c, parse.c,
printcmd.c, procfs.c, regex.c, remote-adapt.c, remote-arc.c,
remote-array.c, remote-bug.c, remote-e7000.c, remote-eb.c,
remote-es.c, remote-hms.c, remote-mm.c, remote-os9k.c,
remote-pa.c, remote-sim.c, remote-st.c, remote-udi.c,
remote-utils.c, remote-vx.c, remote-vx29k.c, remote-vx68.c,
remote-vx960.c, remote-vxmips.c, remote-vxsparc.c, remote.c,
solib.c, somread.c, source.c, stabsread.c, stack.c, symfile.c,
symmisc.c, symtab.c, target.c, top.c, typeprint.c, utils.c,
valarith.c, valops.c, valprint.c, values.c, xcoffread.c: Include
"gdb_string.h" instead of <string.h>.
* gdbtk.c: Likewise.
* config/xm-sysv4.h, i386/xm-ptx.h, m68k/xm-sun3os4.h,
sparc/xm-sun4os4.h (HAVE_MMAP): Removed.
* config/xm-lynx.h, config/i386/xm-ptx.h,
config/m68k/nm-apollo68b.h, config/m68k/xm-hp300hpux.h,
config/mips/xm-irix3.h, config/mips/xm-mips.h,
config/mips/xm-news-mips.h, config/mips/xm-riscos.h,
config/pa/hppah.h, config/rs6000/xm-rs6000.h,
config/sparc/xm-sun4os4.h, config/sparc/xm-sun4sol2.h,
config/vax/xm-vaxbsd.h, config/vax/xm-vaxult.h,
config/vax/xm-vaxult2.h (MEM_FNS_DECLARED): Removed.
* config/mips/xm-irix3.h, config/mips/xm-mips.h,
config/pa/xm-hppah.h (memcpy, memset): Removed declarations.
1995-08-01 22:14:27 +02:00
|
|
|
#include "gdb_stat.h"
|
* solib.c: *BSD systems need <a.out.h> to be included before
<link.h>.
* i386b-nat.c: Add i386_float_info(), etc.
* config/i386/nm-nbsd.h: #define FLOAT_INFO.
* config/nm-nbsd.h: New file, for generic NetBSD native support.
* config/i386/nm-nbsd.h: Use it.
* config/sparc/nm-nbsd.h: Use it.
* config/ns32k/nm-nbsd.h: Use it.
* configure.in (i386-*-netbsd): Use config/i386/nbsd.m[ht].
(ns32k-*-netbsd): Use config/ns32k/nbsd.m[ht].
* config/i386/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/i386.
* config/ns32k/{nbsd.mh,nbsd.mh,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/ns32k.
1994-09-24 00:30:31 +02:00
|
|
|
#include <sys/ptrace.h>
|
|
|
|
|
|
|
|
extern void print_387_control_word (); /* i387-tdep.h */
|
|
|
|
extern void print_387_status_word ();
|
|
|
|
|
|
|
|
#define fpstate save87
|
|
|
|
#define U_FPSTATE(u) u.u_pcb.pcb_savefpu
|
|
|
|
|
|
|
|
struct env387
|
|
|
|
{
|
|
|
|
unsigned short control;
|
|
|
|
unsigned short r0;
|
|
|
|
unsigned short status;
|
|
|
|
unsigned short r1;
|
|
|
|
unsigned short tag;
|
|
|
|
unsigned short r2;
|
|
|
|
unsigned long eip;
|
|
|
|
unsigned short code_seg;
|
|
|
|
unsigned short opcode;
|
|
|
|
unsigned long operand;
|
|
|
|
unsigned short operand_seg;
|
|
|
|
unsigned short r3;
|
|
|
|
unsigned char regs[8][10];
|
|
|
|
};
|
|
|
|
|
* configure.in: Check for unistd.h.
* configure: Regenerated.
* command.c, cp-valprint.c, fork-child.c, i386-tdep.c,
i386b-nat.c, inflow.c, main.c, maint.c, objfiles.c, solib.c,
source.c, stack.c, symfile.c, top.c, utils.c: Include strings.h
and/or unistd.h to bring prototypes into scope.
1995-08-01 00:46:03 +02:00
|
|
|
static void
|
* solib.c: *BSD systems need <a.out.h> to be included before
<link.h>.
* i386b-nat.c: Add i386_float_info(), etc.
* config/i386/nm-nbsd.h: #define FLOAT_INFO.
* config/nm-nbsd.h: New file, for generic NetBSD native support.
* config/i386/nm-nbsd.h: Use it.
* config/sparc/nm-nbsd.h: Use it.
* config/ns32k/nm-nbsd.h: Use it.
* configure.in (i386-*-netbsd): Use config/i386/nbsd.m[ht].
(ns32k-*-netbsd): Use config/ns32k/nbsd.m[ht].
* config/i386/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/i386.
* config/ns32k/{nbsd.mh,nbsd.mh,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/ns32k.
1994-09-24 00:30:31 +02:00
|
|
|
print_387_status (status, ep)
|
|
|
|
unsigned short status;
|
|
|
|
struct env387 *ep;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int bothstatus;
|
|
|
|
int top;
|
|
|
|
int fpreg;
|
|
|
|
|
|
|
|
bothstatus = ((status != 0) && (ep->status != 0));
|
|
|
|
if (status != 0)
|
|
|
|
{
|
|
|
|
if (bothstatus)
|
|
|
|
printf_unfiltered ("u: ");
|
|
|
|
print_387_status_word ((unsigned int)status);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ep->status != 0)
|
|
|
|
{
|
|
|
|
if (bothstatus)
|
|
|
|
printf_unfiltered ("e: ");
|
|
|
|
print_387_status_word ((unsigned int)ep->status);
|
|
|
|
}
|
|
|
|
|
|
|
|
print_387_control_word ((unsigned int)ep->control);
|
|
|
|
printf_unfiltered ("last exception: ");
|
|
|
|
printf_unfiltered ("opcode %s; ", local_hex_string(ep->opcode));
|
|
|
|
printf_unfiltered ("pc %s:", local_hex_string(ep->code_seg));
|
|
|
|
printf_unfiltered ("%s; ", local_hex_string(ep->eip));
|
|
|
|
printf_unfiltered ("operand %s", local_hex_string(ep->operand_seg));
|
|
|
|
printf_unfiltered (":%s\n", local_hex_string(ep->operand));
|
|
|
|
|
|
|
|
top = (ep->status >> 11) & 7;
|
|
|
|
|
|
|
|
printf_unfiltered ("regno tag msb lsb value\n");
|
|
|
|
for (fpreg = 7; fpreg >= 0; fpreg--)
|
|
|
|
{
|
|
|
|
double val;
|
|
|
|
|
|
|
|
printf_unfiltered ("%s %d: ", fpreg == top ? "=>" : " ", fpreg);
|
|
|
|
|
|
|
|
switch ((ep->tag >> (fpreg * 2)) & 3)
|
|
|
|
{
|
|
|
|
case 0: printf_unfiltered ("valid "); break;
|
|
|
|
case 1: printf_unfiltered ("zero "); break;
|
|
|
|
case 2: printf_unfiltered ("trap "); break;
|
|
|
|
case 3: printf_unfiltered ("empty "); break;
|
|
|
|
}
|
|
|
|
for (i = 9; i >= 0; i--)
|
|
|
|
printf_unfiltered ("%02x", ep->regs[fpreg][i]);
|
|
|
|
|
|
|
|
floatformat_to_double(&floatformat_i387_ext, (char *) ep->regs[fpreg],
|
|
|
|
&val);
|
|
|
|
printf_unfiltered (" %g\n", val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i386_float_info ()
|
|
|
|
{
|
|
|
|
struct user u; /* just for address computations */
|
|
|
|
int i;
|
|
|
|
/* fpstate defined in <sys/user.h> */
|
|
|
|
struct fpstate *fpstatep;
|
|
|
|
char buf[sizeof (struct fpstate) + 2 * sizeof (int)];
|
|
|
|
unsigned int uaddr;
|
|
|
|
char fpvalid;
|
|
|
|
unsigned int rounded_addr;
|
|
|
|
unsigned int rounded_size;
|
|
|
|
/*extern int corechan;*/
|
|
|
|
int skip;
|
|
|
|
extern int inferior_pid;
|
|
|
|
|
|
|
|
uaddr = (char *)&U_FPSTATE(u) - (char *)&u;
|
|
|
|
if (inferior_pid)
|
|
|
|
{
|
|
|
|
int *ip;
|
|
|
|
|
|
|
|
rounded_addr = uaddr & -sizeof (int);
|
|
|
|
rounded_size = (((uaddr + sizeof (struct fpstate)) - uaddr) +
|
|
|
|
sizeof (int) - 1) / sizeof (int);
|
|
|
|
skip = uaddr - rounded_addr;
|
|
|
|
|
|
|
|
ip = (int *)buf;
|
|
|
|
for (i = 0; i < rounded_size; i++)
|
|
|
|
{
|
|
|
|
*ip++ = ptrace (PT_READ_U, inferior_pid, (caddr_t)rounded_addr, 0);
|
|
|
|
rounded_addr += sizeof (int);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("float info: can't do a core file (yet)\n");
|
|
|
|
return;
|
|
|
|
#if 0
|
|
|
|
if (lseek (corechan, uaddr, 0) < 0)
|
|
|
|
perror_with_name ("seek on core file");
|
|
|
|
if (myread (corechan, buf, sizeof (struct fpstate)) < 0)
|
|
|
|
perror_with_name ("read from core file");
|
|
|
|
skip = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
print_387_status (0, (struct env387 *)buf);
|
|
|
|
}
|
|
|
|
|
1996-01-04 22:09:59 +01:00
|
|
|
int
|
|
|
|
kernel_u_size ()
|
|
|
|
{
|
|
|
|
return (sizeof (struct user));
|
|
|
|
}
|
|
|
|
|
* solib.c: *BSD systems need <a.out.h> to be included before
<link.h>.
* i386b-nat.c: Add i386_float_info(), etc.
* config/i386/nm-nbsd.h: #define FLOAT_INFO.
* config/nm-nbsd.h: New file, for generic NetBSD native support.
* config/i386/nm-nbsd.h: Use it.
* config/sparc/nm-nbsd.h: Use it.
* config/ns32k/nm-nbsd.h: Use it.
* configure.in (i386-*-netbsd): Use config/i386/nbsd.m[ht].
(ns32k-*-netbsd): Use config/ns32k/nbsd.m[ht].
* config/i386/{nbsd.mh,nbsd.mt,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/i386.
* config/ns32k/{nbsd.mh,nbsd.mh,nm-nbsd.h,tm-nbsd.h,xm-nbsd.h}:
New files, support for NetBSD/ns32k.
1994-09-24 00:30:31 +02:00
|
|
|
#endif
|