1991-03-28 16:28:29 +00:00
|
|
|
|
/* Intel 386 stuff.
|
1991-09-18 23:15:20 +00:00
|
|
|
|
Copyright (C) 1988, 1989, 1991 Free Software Foundation, Inc.
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
1991-06-04 07:31:55 +00:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
1991-03-28 16:28:29 +00:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1991-06-04 07:31:55 +00:00
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
1991-06-04 07:31:55 +00:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
1991-03-28 16:28:29 +00:00
|
|
|
|
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
|
1991-06-04 07:31:55 +00:00
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
#include "inferior.h"
|
1991-09-18 23:15:20 +00:00
|
|
|
|
#include "language.h"
|
1991-03-28 16:28:29 +00:00
|
|
|
|
#include "gdbcore.h"
|
|
|
|
|
|
|
|
|
|
#ifdef USG
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
#include <sys/dir.h>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include <sys/user.h>
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/file.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/reg.h>
|
1991-09-18 23:15:20 +00:00
|
|
|
|
#include "ieee-float.h"
|
|
|
|
|
|
1991-11-13 04:13:38 +00:00
|
|
|
|
#include "target.h"
|
|
|
|
|
|
1991-09-18 23:15:20 +00:00
|
|
|
|
extern struct ext_format ext_format_i387;
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
1992-09-04 07:37:18 +00:00
|
|
|
|
/* this table must line up with REGISTER_NAMES in tm-i386v.h */
|
1991-03-28 16:28:29 +00:00
|
|
|
|
/* symbols like 'EAX' come from <sys/reg.h> */
|
|
|
|
|
static int regmap[] =
|
|
|
|
|
{
|
|
|
|
|
EAX, ECX, EDX, EBX,
|
|
|
|
|
UESP, EBP, ESI, EDI,
|
|
|
|
|
EIP, EFL, CS, SS,
|
|
|
|
|
DS, ES, FS, GS,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* blockend is the value of u.u_ar0, and points to the
|
|
|
|
|
* place where GS is stored
|
|
|
|
|
*/
|
1992-02-22 01:46:16 +00:00
|
|
|
|
|
|
|
|
|
int
|
1991-03-28 16:28:29 +00:00
|
|
|
|
i386_register_u_addr (blockend, regnum)
|
1992-02-22 01:46:16 +00:00
|
|
|
|
int blockend;
|
|
|
|
|
int regnum;
|
1991-03-28 16:28:29 +00:00
|
|
|
|
{
|
|
|
|
|
#if 0
|
|
|
|
|
/* this will be needed if fp registers are reinstated */
|
|
|
|
|
/* for now, you can look at them with 'info float'
|
|
|
|
|
* sys5 wont let you change them with ptrace anyway
|
|
|
|
|
*/
|
|
|
|
|
if (regnum >= FP0_REGNUM && regnum <= FP7_REGNUM)
|
|
|
|
|
{
|
|
|
|
|
int ubase, fpstate;
|
|
|
|
|
struct user u;
|
|
|
|
|
ubase = blockend + 4 * (SS + 1) - KSTKSZ;
|
|
|
|
|
fpstate = ubase + ((char *)&u.u_fpstate - (char *)&u);
|
|
|
|
|
return (fpstate + 0x1c + 10 * (regnum - FP0_REGNUM));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
return (blockend + 4 * regmap[regnum]);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
1991-10-25 23:10:12 +00:00
|
|
|
|
#if 0
|
|
|
|
|
/* mauro@olympus 1991.10.20 -- compiling the following code causes
|
|
|
|
|
undefined symbols at link time, specifically: corechan, have_inferior_p */
|
1991-03-28 16:28:29 +00: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
|
|
|
|
|
print_387_status (status, ep)
|
|
|
|
|
unsigned short status;
|
|
|
|
|
struct env387 *ep;
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int bothstatus;
|
|
|
|
|
int top;
|
|
|
|
|
int fpreg;
|
|
|
|
|
unsigned char *p;
|
|
|
|
|
|
|
|
|
|
bothstatus = ((status != 0) && (ep->status != 0));
|
|
|
|
|
if (status != 0)
|
|
|
|
|
{
|
|
|
|
|
if (bothstatus)
|
|
|
|
|
printf ("u: ");
|
|
|
|
|
print_387_status_word (status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ep->status != 0)
|
|
|
|
|
{
|
|
|
|
|
if (bothstatus)
|
|
|
|
|
printf ("e: ");
|
|
|
|
|
print_387_status_word (ep->status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print_387_control_word (ep->control);
|
|
|
|
|
printf ("last exception: ");
|
1991-09-18 23:15:20 +00:00
|
|
|
|
printf ("opcode %s; ", local_hex_string(ep->opcode));
|
|
|
|
|
printf ("pc %s:", local_hex_string(ep->code_seg));
|
|
|
|
|
printf ("%s; ", local_hex_string(ep->eip));
|
|
|
|
|
printf ("operand %s", local_hex_string(ep->operand_seg));
|
|
|
|
|
printf (":%s\n", local_hex_string(ep->operand));
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
|
|
|
|
top = (ep->status >> 11) & 7;
|
|
|
|
|
|
|
|
|
|
printf ("regno tag msb lsb value\n");
|
|
|
|
|
for (fpreg = 7; fpreg >= 0; fpreg--)
|
|
|
|
|
{
|
|
|
|
|
double val;
|
|
|
|
|
|
|
|
|
|
printf ("%s %d: ", fpreg == top ? "=>" : " ", fpreg);
|
|
|
|
|
|
|
|
|
|
switch ((ep->tag >> (fpreg * 2)) & 3)
|
|
|
|
|
{
|
|
|
|
|
case 0: printf ("valid "); break;
|
|
|
|
|
case 1: printf ("zero "); break;
|
|
|
|
|
case 2: printf ("trap "); break;
|
|
|
|
|
case 3: printf ("empty "); break;
|
|
|
|
|
}
|
|
|
|
|
for (i = 9; i >= 0; i--)
|
|
|
|
|
printf ("%02x", ep->regs[fpreg][i]);
|
|
|
|
|
|
1991-09-18 23:15:20 +00:00
|
|
|
|
ieee_extended_to_double (&ext_format_i387, (char *)ep->regs[fpreg],
|
|
|
|
|
&val);
|
1991-03-28 16:28:29 +00:00
|
|
|
|
printf (" %g\n", val);
|
|
|
|
|
}
|
|
|
|
|
if (ep->r0)
|
1992-03-15 01:09:14 +00:00
|
|
|
|
warning ("reserved0 is %s\n", local_hex_string(ep->r0));
|
1991-03-28 16:28:29 +00:00
|
|
|
|
if (ep->r1)
|
1992-03-15 01:09:14 +00:00
|
|
|
|
warning ("reserved1 is %s\n", local_hex_string(ep->r1));
|
1991-03-28 16:28:29 +00:00
|
|
|
|
if (ep->r2)
|
1992-03-15 01:09:14 +00:00
|
|
|
|
warning ("reserved2 is %s\n", local_hex_string(ep->r2));
|
1991-03-28 16:28:29 +00:00
|
|
|
|
if (ep->r3)
|
1992-03-15 01:09:14 +00:00
|
|
|
|
warning ("reserved3 is %s\n", local_hex_string(ep->r3));
|
1991-03-28 16:28:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef U_FPSTATE
|
|
|
|
|
#define U_FPSTATE(u) u.u_fpstate
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
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;
|
1991-11-13 04:13:38 +00:00
|
|
|
|
char fpvalid = 0;
|
1991-03-28 16:28:29 +00:00
|
|
|
|
unsigned int rounded_addr;
|
|
|
|
|
unsigned int rounded_size;
|
|
|
|
|
extern int corechan;
|
|
|
|
|
int skip;
|
|
|
|
|
|
|
|
|
|
uaddr = (char *)&u.u_fpvalid - (char *)&u;
|
1991-11-13 04:13:38 +00:00
|
|
|
|
if (target_has_execution)
|
1991-03-28 16:28:29 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned int data;
|
|
|
|
|
unsigned int mask;
|
|
|
|
|
|
|
|
|
|
rounded_addr = uaddr & -sizeof (int);
|
* Makefile.in (VERSION): Bump to 4.5.6.
* coffread.c (coff_end_symtab): Cast 2nd arg of complain() to
correct type.
* defs.h (NORETURN): Define away for Lucid compiler.
* remote.c (remote_timer, remote_interrupt): Signal handlers
take one int arg.
* ser-termios.c (serial_write, serial_close): Return whatever
value the write/close call returns, rather than falling off end.
* inferior.h (PTRACE_ARG3_TYPE): Third arg to ptrace is int on
more systems than it is "char *". Define PTRACE_ARG3_TYPE to
default to int.
* infptrace.c, hppabsd-xdep.c, hppahpux-xdep.c, i386-xdep.c,
inferior.h (call_ptrace): Use PTRACE_ARG3_TYPE to declare type
of third arg.
* a68v-xdep.c, arm-xdep.c, convex-xdep.c, hp300ux-xdep.c, infrun.c,
m88k-xdep.c, mach386-xdep.c, mips-xdep.c, os68k-xdep.c, pyr-tdep.c,
pyr-xdep.c, rs6000-xdep.c, sparc-xdep.c, sun3-xdep.c, sun386-xdep.c,
symm-xdep.c, ultra3-xdep.c: Use PTRACE_ARG3_TYPE to cast ptrace
argument 3.
* sparc-xdep.c, a68v-xdep.c (fetch_inferior_registers,
store_inferior_registers): Supply missing fourth argument to
ptrace().
1992-06-24 04:49:48 +00:00
|
|
|
|
data = ptrace (3, inferior_pid, (PTRACE_ARG3_TYPE) rounded_addr, 0);
|
1991-03-28 16:28:29 +00:00
|
|
|
|
mask = 0xff << ((uaddr - rounded_addr) * 8);
|
|
|
|
|
|
|
|
|
|
fpvalid = ((data & mask) != 0);
|
|
|
|
|
}
|
1991-11-13 04:13:38 +00:00
|
|
|
|
#if 0
|
1991-03-28 16:28:29 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (lseek (corechan, uaddr, 0) < 0)
|
|
|
|
|
perror ("seek on core file");
|
|
|
|
|
if (myread (corechan, &fpvalid, 1) < 0)
|
|
|
|
|
perror ("read on core file");
|
|
|
|
|
|
|
|
|
|
}
|
1991-11-13 04:13:38 +00:00
|
|
|
|
#endif /* no core support yet */
|
1991-03-28 16:28:29 +00:00
|
|
|
|
|
|
|
|
|
if (fpvalid == 0)
|
|
|
|
|
{
|
|
|
|
|
printf ("no floating point status saved\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uaddr = (char *)&U_FPSTATE(u) - (char *)&u;
|
1991-11-13 04:13:38 +00:00
|
|
|
|
if (target_has_execution)
|
1991-03-28 16:28:29 +00:00
|
|
|
|
{
|
|
|
|
|
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++)
|
|
|
|
|
{
|
* Makefile.in (VERSION): Bump to 4.5.6.
* coffread.c (coff_end_symtab): Cast 2nd arg of complain() to
correct type.
* defs.h (NORETURN): Define away for Lucid compiler.
* remote.c (remote_timer, remote_interrupt): Signal handlers
take one int arg.
* ser-termios.c (serial_write, serial_close): Return whatever
value the write/close call returns, rather than falling off end.
* inferior.h (PTRACE_ARG3_TYPE): Third arg to ptrace is int on
more systems than it is "char *". Define PTRACE_ARG3_TYPE to
default to int.
* infptrace.c, hppabsd-xdep.c, hppahpux-xdep.c, i386-xdep.c,
inferior.h (call_ptrace): Use PTRACE_ARG3_TYPE to declare type
of third arg.
* a68v-xdep.c, arm-xdep.c, convex-xdep.c, hp300ux-xdep.c, infrun.c,
m88k-xdep.c, mach386-xdep.c, mips-xdep.c, os68k-xdep.c, pyr-tdep.c,
pyr-xdep.c, rs6000-xdep.c, sparc-xdep.c, sun3-xdep.c, sun386-xdep.c,
symm-xdep.c, ultra3-xdep.c: Use PTRACE_ARG3_TYPE to cast ptrace
argument 3.
* sparc-xdep.c, a68v-xdep.c (fetch_inferior_registers,
store_inferior_registers): Supply missing fourth argument to
ptrace().
1992-06-24 04:49:48 +00:00
|
|
|
|
*ip++ = ptrace (3, inferior_pid, (PTRACE_ARG3_TYPE) rounded_addr, 0);
|
1991-03-28 16:28:29 +00:00
|
|
|
|
rounded_addr += sizeof (int);
|
|
|
|
|
}
|
|
|
|
|
}
|
1991-11-13 04:13:38 +00:00
|
|
|
|
#if 0
|
1991-03-28 16:28:29 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
1991-11-13 04:13:38 +00:00
|
|
|
|
#endif /* 0 */
|
|
|
|
|
|
1991-03-28 16:28:29 +00:00
|
|
|
|
fpstatep = (struct fpstate *)(buf + skip);
|
|
|
|
|
print_387_status (fpstatep->status, (struct env387 *)fpstatep->state);
|
|
|
|
|
}
|
1991-10-25 23:10:12 +00:00
|
|
|
|
#endif /* mauro@olympus 1991.10.20 */
|