binutils-gdb/gdb/i386b-nat.c

292 lines
7.1 KiB
C
Raw Normal View History

/* Native-dependent code for BSD Unix running on i386's, for GDB.
2001-03-06 09:22:02 +01:00
Copyright 1988, 1989, 1991, 1992, 1994, 1995, 1996, 1998, 1999, 2000,
2001 Free Software Foundation, Inc.
1999-07-07 22:19:36 +02:00
This file is part of GDB.
1999-07-07 22:19:36 +02:00
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.
1999-07-07 22:19:36 +02:00
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.
1999-07-07 22:19:36 +02:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#include "defs.h"
#ifdef FETCH_INFERIOR_REGISTERS
#include <sys/types.h>
#include <sys/ptrace.h>
#include <machine/reg.h>
#include <machine/frame.h>
#include "inferior.h"
1999-12-07 04:56:43 +01:00
#include "gdbcore.h" /* for registers_fetched() */
#include "regcache.h"
void
2000-07-30 03:48:28 +02:00
fetch_inferior_registers (int regno)
{
struct reg inferior_registers;
2001-05-04 06:15:33 +02:00
ptrace (PT_GETREGS, PIDGET (inferior_ptid),
(PTRACE_ARG3_TYPE) & inferior_registers, 0);
1999-07-07 22:19:36 +02:00
memcpy (&registers[REGISTER_BYTE (0)], &inferior_registers, 4 * NUM_REGS);
registers_fetched ();
}
void
2000-07-30 03:48:28 +02:00
store_inferior_registers (int regno)
{
struct reg inferior_registers;
1999-07-07 22:19:36 +02:00
memcpy (&inferior_registers, &registers[REGISTER_BYTE (0)], 4 * NUM_REGS);
2001-05-04 06:15:33 +02:00
ptrace (PT_SETREGS, PIDGET (inferior_ptid),
(PTRACE_ARG3_TYPE) & inferior_registers, 0);
}
1999-07-07 22:19:36 +02:00
struct md_core
{
struct reg intreg;
struct fpreg freg;
};
void
2000-07-30 03:48:28 +02:00
fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, int which,
CORE_ADDR ignore)
{
1999-07-07 22:19:36 +02:00
struct md_core *core_reg = (struct md_core *) core_reg_sect;
/* integer registers */
1999-07-07 22:19:36 +02:00
memcpy (&registers[REGISTER_BYTE (0)], &core_reg->intreg,
sizeof (struct reg));
/* floating point registers */
/* XXX */
}
#else
#include <machine/reg.h>
/* this table must line up with REGISTER_NAMES in tm-i386.h */
/* symbols like 'tEAX' come from <machine/reg.h> */
1999-07-07 22:19:36 +02:00
static int tregmap[] =
{
tEAX, tECX, tEDX, tEBX,
tESP, tEBP, tESI, tEDI,
tEIP, tEFLAGS, tCS, tSS
};
#ifdef sEAX
1999-07-07 22:19:36 +02:00
static int sregmap[] =
{
sEAX, sECX, sEDX, sEBX,
sESP, sEBP, sESI, sEDI,
sEIP, sEFLAGS, sCS, sSS
};
#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. */
1999-07-07 22:19:36 +02:00
static int sregmap[] =
{
tEAX, tECX, tEDX, tEBX,
tESP, tEBP, tESI, tEDI,
tEIP, tEFLAGS, tCS, tSS
};
#endif /* No sEAX */
/* blockend is the value of u.u_ar0, and points to the
place where ES is stored. */
int
2000-07-30 03:48:28 +02:00
i386_register_u_addr (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]);
}
#endif /* !FETCH_INFERIOR_REGISTERS */
#ifdef FLOAT_INFO
#include "expression.h"
1999-07-07 22:19:36 +02:00
#include "language.h" /* for local_hex_string */
#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>
1999-07-07 22:19:36 +02:00
#define curpcb Xcurpcb /* XXX avoid leaking declaration from pcb.h */
#include <sys/user.h>
#undef curpcb
#include <sys/file.h>
#include "gdb_stat.h"
#include <sys/ptrace.h>
1999-07-07 22:19:36 +02:00
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
1999-07-07 22:19:36 +02:00
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];
};
static void
2000-07-30 03:48:28 +02:00
print_387_status (unsigned short status, struct env387 *ep)
{
int i;
int bothstatus;
int top;
int fpreg;
1999-07-07 22:19:36 +02:00
bothstatus = ((status != 0) && (ep->status != 0));
1999-07-07 22:19:36 +02:00
if (status != 0)
{
if (bothstatus)
printf_unfiltered ("u: ");
1999-07-07 22:19:36 +02:00
print_387_status_word ((unsigned int) status);
}
1999-07-07 22:19:36 +02:00
if (ep->status != 0)
{
if (bothstatus)
printf_unfiltered ("e: ");
1999-07-07 22:19:36 +02:00
print_387_status_word ((unsigned int) ep->status);
}
1999-07-07 22:19:36 +02:00
print_387_control_word ((unsigned int) ep->control);
printf_unfiltered ("last exception: ");
1999-07-07 22:19:36 +02:00
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;
1999-07-07 22:19:36 +02:00
printf_unfiltered ("regno tag msb lsb value\n");
1999-07-07 22:19:36 +02:00
for (fpreg = 7; fpreg >= 0; fpreg--)
{
double val;
1999-07-07 22:19:36 +02:00
printf_unfiltered ("%s %d: ", fpreg == top ? "=>" : " ", fpreg);
switch ((ep->tag >> (fpreg * 2)) & 3)
{
1999-07-07 22:19:36 +02:00
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]);
1999-07-07 22:19:36 +02:00
floatformat_to_double (&floatformat_i387_ext, (char *) ep->regs[fpreg],
&val);
printf_unfiltered (" %g\n", val);
}
}
2000-07-30 03:48:28 +02:00
i386_float_info (void)
{
1999-07-07 22:19:36 +02:00
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;
1999-07-07 22:19:36 +02:00
/*extern int corechan; */
int skip;
1999-07-07 22:19:36 +02:00
uaddr = (char *) &U_FPSTATE (u) - (char *) &u;
2001-05-04 06:15:33 +02:00
if (! ptid_equal (inferior_ptid, null_ptid))
{
int *ip;
1999-07-07 22:19:36 +02:00
rounded_addr = uaddr & -sizeof (int);
rounded_size = (((uaddr + sizeof (struct fpstate)) - uaddr) +
sizeof (int) - 1) / sizeof (int);
skip = uaddr - rounded_addr;
1999-07-07 22:19:36 +02:00
ip = (int *) buf;
for (i = 0; i < rounded_size; i++)
{
2001-05-04 06:15:33 +02:00
*ip++ = ptrace (PT_READ_U, PIDGET (inferior_ptid),
(caddr_t) rounded_addr, 0);
rounded_addr += sizeof (int);
}
1999-07-07 22:19:36 +02:00
}
else
{
1999-07-07 22:19:36 +02:00
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");
1999-07-07 22:19:36 +02:00
if (myread (corechan, buf, sizeof (struct fpstate)) < 0)
perror_with_name ("read from core file");
skip = 0;
#endif
}
1999-07-07 22:19:36 +02:00
print_387_status (0, (struct env387 *) buf);
}
int
2000-07-30 03:48:28 +02:00
kernel_u_size (void)
{
return (sizeof (struct user));
}
#endif