* defs.h: Incorporate param.h. All users changed.
* param-no-tm.h: Change users to define TM_FILE_OVERRIDE instead.
* param.h, param-no-tm.h: Removed.
* Update copyrights in all changed files.
* dbxread.c, dwarfread.c, inflow.c, infrun.c, m2-exp.y, putenv.c,
solib.c, symtab.h, tm-umax.h, valprint.c: Lint.
* tm-convex.h, tm-hp300hpux.h, tm-merlin.h, tm-sparc.h,
xm-merlin.h: Avoid host include files in target descriptions.
* getpagesize.h: Removed, libiberty copes now.
1991-11-21 19:42:05 +01:00
|
|
|
|
/* Host-dependent Motorola 88xxx support for GDB, the GNU Debugger.
|
|
|
|
|
Copyright 1988, 1990, 1991 Free Software Foundation, Inc.
|
1991-05-03 08:02:03 +02:00
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
1991-06-04 09:31:55 +02:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
1991-05-03 08:02:03 +02:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
1991-06-04 09:31:55 +02:00
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1991-05-03 08:02:03 +02:00
|
|
|
|
|
1991-06-04 09:31:55 +02:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
1991-05-03 08:02:03 +02: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 09:31:55 +02:00
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
1991-05-03 08:02:03 +02:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
#include "inferior.h"
|
|
|
|
|
|
|
|
|
|
#ifdef USG
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
#include <sys/dir.h>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include "gdbcore.h"
|
|
|
|
|
#include <sys/user.h>
|
|
|
|
|
|
1991-11-08 03:22:46 +01:00
|
|
|
|
#ifndef USER /* added to support BCS ptrace_user */
|
1991-05-03 08:02:03 +02:00
|
|
|
|
#define USER ptrace_user
|
|
|
|
|
#endif
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <sys/file.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "setjmp.h"
|
|
|
|
|
#include "value.h"
|
|
|
|
|
|
1991-11-08 03:22:46 +01:00
|
|
|
|
#ifdef DELTA88
|
|
|
|
|
#include <sys/ptrace.h>
|
1991-05-03 08:02:03 +02:00
|
|
|
|
|
1991-11-08 03:22:46 +01:00
|
|
|
|
/* define offsets to the pc instruction offsets in ptrace_user struct */
|
|
|
|
|
#define SXIP_OFFSET (char *)&u.pt_sigframe.sig_sxip - (char *)&u
|
|
|
|
|
#define SNIP_OFFSET (char *)&u.pt_sigframe.sig_snip - (char *)&u
|
|
|
|
|
#define SFIP_OFFSET (char *)&u.pt_sigframe.sig_sfip - (char *)&u
|
|
|
|
|
#else
|
|
|
|
|
/* define offsets to the pc instruction offsets in ptrace_user struct */
|
|
|
|
|
#define SXIP_OFFSET (char *)&u.pt_sigframe.dg_sigframe.sc_sxip - (char *)&u
|
|
|
|
|
#define SNIP_OFFSET (char *)&u.pt_sigframe.dg_sigframe.sc_snip - (char *)&u
|
1991-05-03 08:02:03 +02:00
|
|
|
|
#define SFIP_OFFSET (char *)&u.pt_sigframe.dg_sigframe.sc_sfip - (char *)&u
|
1991-11-08 03:22:46 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
1991-05-03 08:02:03 +02:00
|
|
|
|
extern int have_symbol_file_p();
|
|
|
|
|
|
|
|
|
|
extern jmp_buf stack_jmp;
|
|
|
|
|
|
|
|
|
|
extern int errno;
|
|
|
|
|
extern char registers[REGISTER_BYTES];
|
|
|
|
|
|
|
|
|
|
void
|
1992-02-22 02:46:16 +01:00
|
|
|
|
fetch_inferior_registers (regno)
|
|
|
|
|
int regno; /* Original value discarded */
|
1991-05-03 08:02:03 +02:00
|
|
|
|
{
|
|
|
|
|
register unsigned int regaddr;
|
|
|
|
|
char buf[MAX_REGISTER_RAW_SIZE];
|
|
|
|
|
register int i;
|
|
|
|
|
|
|
|
|
|
struct USER u;
|
|
|
|
|
unsigned int offset;
|
|
|
|
|
|
|
|
|
|
offset = (char *) &u.pt_r0 - (char *) &u;
|
|
|
|
|
regaddr = offset; /* byte offset to r0;*/
|
|
|
|
|
|
* 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 06:49:48 +02:00
|
|
|
|
/* offset = ptrace (3, inferior_pid, (PTRACE_ARG3_TYPE) offset, 0) - KERNEL_U_ADDR; */
|
1991-05-03 08:02:03 +02:00
|
|
|
|
for (regno = 0; regno < NUM_REGS; regno++)
|
|
|
|
|
{
|
|
|
|
|
/*regaddr = register_addr (regno, offset);*/
|
|
|
|
|
/* 88k enhancement */
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < REGISTER_RAW_SIZE (regno); i += 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 06:49:48 +02:00
|
|
|
|
*(int *) &buf[i] = ptrace (3, inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) regaddr, 0);
|
1991-05-03 08:02:03 +02:00
|
|
|
|
regaddr += sizeof (int);
|
|
|
|
|
}
|
|
|
|
|
supply_register (regno, buf);
|
|
|
|
|
}
|
|
|
|
|
/* now load up registers 36 - 38; special pc registers */
|
* 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 06:49:48 +02:00
|
|
|
|
*(int *) &buf[0] = ptrace (3,inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SXIP_OFFSET ,0);
|
1991-05-03 08:02:03 +02:00
|
|
|
|
supply_register (SXIP_REGNUM, buf);
|
* 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 06:49:48 +02:00
|
|
|
|
*(int *) &buf[0] = ptrace (3, inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SNIP_OFFSET,0);
|
1991-05-03 08:02:03 +02:00
|
|
|
|
supply_register (SNIP_REGNUM, buf);
|
* 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 06:49:48 +02:00
|
|
|
|
*(int *) &buf[0] = ptrace (3, inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SFIP_OFFSET,0);
|
1991-05-03 08:02:03 +02:00
|
|
|
|
supply_register (SFIP_REGNUM, buf);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Store our register values back into the inferior.
|
|
|
|
|
If REGNO is -1, do this for all registers.
|
|
|
|
|
Otherwise, REGNO specifies which register (so we can save time). */
|
|
|
|
|
|
1992-02-22 02:46:16 +01:00
|
|
|
|
void
|
1991-05-03 08:02:03 +02:00
|
|
|
|
store_inferior_registers (regno)
|
|
|
|
|
int regno;
|
|
|
|
|
{
|
|
|
|
|
register unsigned int regaddr;
|
|
|
|
|
char buf[80];
|
|
|
|
|
|
|
|
|
|
struct USER u;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unsigned int offset = (char *) &u.pt_r0 - (char *) &u;
|
|
|
|
|
|
|
|
|
|
regaddr = offset;
|
|
|
|
|
|
|
|
|
|
if (regno >= 0)
|
|
|
|
|
{
|
|
|
|
|
/* regaddr = register_addr (regno, offset); */
|
|
|
|
|
if (regno < PC_REGNUM)
|
|
|
|
|
{
|
|
|
|
|
regaddr = offset + regno * sizeof (int);
|
|
|
|
|
errno = 0;
|
* 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 06:49:48 +02:00
|
|
|
|
ptrace (6, inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) regaddr, read_register (regno));
|
1991-05-03 08:02:03 +02:00
|
|
|
|
if (errno != 0)
|
|
|
|
|
{
|
|
|
|
|
sprintf (buf, "writing register number %d", regno);
|
|
|
|
|
perror_with_name (buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (regno == SXIP_REGNUM)
|
* 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 06:49:48 +02:00
|
|
|
|
ptrace (6, inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SXIP_OFFSET, read_register(regno));
|
1991-05-03 08:02:03 +02:00
|
|
|
|
else if (regno == SNIP_REGNUM)
|
* 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 06:49:48 +02:00
|
|
|
|
ptrace (6, inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SNIP_OFFSET, read_register(regno));
|
1991-05-03 08:02:03 +02:00
|
|
|
|
else if (regno == SFIP_REGNUM)
|
* 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 06:49:48 +02:00
|
|
|
|
ptrace (6, inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SFIP_OFFSET, read_register(regno));
|
1991-05-03 08:02:03 +02:00
|
|
|
|
else printf ("Bad register number for store_inferior routine\n");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
for (regno = 0; regno < NUM_REGS - 3; regno++)
|
|
|
|
|
{
|
|
|
|
|
/* regaddr = register_addr (regno, offset); */
|
|
|
|
|
errno = 0;
|
|
|
|
|
regaddr = offset + regno * 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 06:49:48 +02:00
|
|
|
|
ptrace (6, inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) regaddr, read_register (regno));
|
1991-05-03 08:02:03 +02:00
|
|
|
|
if (errno != 0)
|
|
|
|
|
{
|
|
|
|
|
sprintf (buf, "writing register number %d", regno);
|
|
|
|
|
perror_with_name (buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
* 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 06:49:48 +02:00
|
|
|
|
ptrace (6,inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SXIP_OFFSET,read_register(SXIP_REGNUM));
|
|
|
|
|
ptrace (6,inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SNIP_OFFSET,read_register(SNIP_REGNUM));
|
|
|
|
|
ptrace (6,inferior_pid,
|
|
|
|
|
(PTRACE_ARG3_TYPE) SFIP_OFFSET,read_register(SFIP_REGNUM));
|
1991-05-03 08:02:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
/* Core files are now a function of BFD. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
core_file_command (filename, from_tty)
|
|
|
|
|
char *filename;
|
|
|
|
|
int from_tty;
|
|
|
|
|
{
|
|
|
|
|
int val;
|
|
|
|
|
extern char registers[];
|
|
|
|
|
|
|
|
|
|
/* Need symbol file and one with tdesc info for corefiles to work */
|
|
|
|
|
if (!have_symbol_file_p())
|
|
|
|
|
error ("Requires symbol-file and exec-file");
|
|
|
|
|
if (!execfile)
|
|
|
|
|
error ("Requires exec-file and symbol-file");
|
|
|
|
|
|
|
|
|
|
/* Discard all vestiges of any previous core file
|
|
|
|
|
and mark data and stack spaces as empty. */
|
|
|
|
|
|
|
|
|
|
if (corefile)
|
|
|
|
|
free (corefile);
|
|
|
|
|
corefile = 0;
|
|
|
|
|
|
|
|
|
|
if (corechan >= 0)
|
|
|
|
|
close (corechan);
|
|
|
|
|
corechan = -1;
|
|
|
|
|
|
|
|
|
|
data_start = 0;
|
|
|
|
|
data_end = 0;
|
|
|
|
|
stack_start = STACK_END_ADDR;
|
|
|
|
|
stack_end = STACK_END_ADDR;
|
|
|
|
|
|
|
|
|
|
/* Now, if a new core file was specified, open it and digest it. */
|
|
|
|
|
|
|
|
|
|
if (filename)
|
|
|
|
|
{
|
|
|
|
|
filename = tilde_expand (filename);
|
|
|
|
|
make_cleanup (free, filename);
|
|
|
|
|
|
|
|
|
|
if (have_inferior_p ())
|
|
|
|
|
error ("To look at a core file, you must kill the inferior with \"kill\".");
|
|
|
|
|
corechan = open (filename, O_RDONLY, 0);
|
|
|
|
|
if (corechan < 0)
|
|
|
|
|
perror_with_name (filename);
|
|
|
|
|
/* 4.2-style (and perhaps also sysV-style) core dump file. */
|
|
|
|
|
{
|
|
|
|
|
struct USER u;
|
|
|
|
|
|
|
|
|
|
int reg_offset;
|
|
|
|
|
|
|
|
|
|
val = myread (corechan, &u, sizeof u);
|
|
|
|
|
if (val < 0)
|
|
|
|
|
perror_with_name (filename);
|
|
|
|
|
data_start = u.pt_o_data_start;
|
|
|
|
|
|
|
|
|
|
data_end = data_start + u.pt_dsize;
|
|
|
|
|
stack_start = stack_end - u.pt_ssize;
|
|
|
|
|
data_offset = u.pt_dataptr;
|
|
|
|
|
stack_offset = data_offset + u.pt_dsize;
|
|
|
|
|
|
|
|
|
|
#if defined(BCS)
|
|
|
|
|
#if defined(DGUX)
|
|
|
|
|
|
|
|
|
|
reg_offset = 2048;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* defined (DGUX) */
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
/* original code: */
|
|
|
|
|
reg_offset = (int) u.pt_r0 - KERNEL_U_ADDR;
|
|
|
|
|
|
|
|
|
|
#endif /* defined(BCS) */
|
|
|
|
|
|
|
|
|
|
/* I don't know where to find this info.
|
|
|
|
|
So, for now, mark it as not available. */
|
|
|
|
|
/* N_SET_MAGIC (core_aouthdr, 0); */
|
|
|
|
|
bzero ((char *) &core_aouthdr, sizeof core_aouthdr);
|
|
|
|
|
|
|
|
|
|
/* Read the register values out of the core file and store
|
|
|
|
|
them where `read_register' will find them. */
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
register int regno;
|
|
|
|
|
|
|
|
|
|
for (regno = 0; regno < NUM_REGS; regno++)
|
|
|
|
|
{
|
|
|
|
|
char buf[MAX_REGISTER_RAW_SIZE];
|
|
|
|
|
|
|
|
|
|
val = lseek (corechan, register_addr (regno, reg_offset), 0);
|
|
|
|
|
if (val < 0)
|
|
|
|
|
perror_with_name (filename);
|
|
|
|
|
|
|
|
|
|
val = myread (corechan, buf, sizeof buf);
|
|
|
|
|
if (val < 0)
|
|
|
|
|
perror_with_name (filename);
|
|
|
|
|
supply_register (regno, buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (filename[0] == '/')
|
|
|
|
|
corefile = savestring (filename, strlen (filename));
|
|
|
|
|
else
|
|
|
|
|
{
|
1991-11-12 18:50:14 +01:00
|
|
|
|
corefile = concat (current_directory, "/", filename, NULL);
|
1991-05-03 08:02:03 +02:00
|
|
|
|
}
|
|
|
|
|
init_tdesc();
|
|
|
|
|
current_context = init_dcontext();
|
|
|
|
|
set_current_frame ( create_new_frame(get_frame_base (read_pc()),
|
|
|
|
|
read_pc ()));
|
|
|
|
|
select_frame (get_current_frame (), 0);
|
|
|
|
|
validate_files ();
|
|
|
|
|
}
|
|
|
|
|
else if (from_tty)
|
|
|
|
|
printf ("No core file now.\n");
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* blockend is the address of the end of the user structure */
|
|
|
|
|
m88k_register_u_addr (blockend, regnum)
|
|
|
|
|
{
|
|
|
|
|
struct USER u;
|
|
|
|
|
int ustart = blockend - sizeof (struct USER);
|
|
|
|
|
switch (regnum)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
case 1:
|
|
|
|
|
case 2:
|
|
|
|
|
case 3:
|
|
|
|
|
case 4:
|
|
|
|
|
case 5:
|
|
|
|
|
case 6:
|
|
|
|
|
case 7:
|
|
|
|
|
case 8:
|
|
|
|
|
case 9:
|
|
|
|
|
case 10:
|
|
|
|
|
case 11:
|
|
|
|
|
case 12:
|
|
|
|
|
case 13:
|
|
|
|
|
case 14:
|
|
|
|
|
case 15:
|
|
|
|
|
case 16:
|
|
|
|
|
case 17:
|
|
|
|
|
case 18:
|
|
|
|
|
case 19:
|
|
|
|
|
case 20:
|
|
|
|
|
case 21:
|
|
|
|
|
case 22:
|
|
|
|
|
case 23:
|
|
|
|
|
case 24:
|
|
|
|
|
case 25:
|
|
|
|
|
case 26:
|
|
|
|
|
case 27:
|
|
|
|
|
case 28:
|
|
|
|
|
case 29:
|
|
|
|
|
case 30:
|
|
|
|
|
case 31: return (ustart + ((int) &u.pt_r0 - (int) &u) + sizeof(REGISTER_TYPE) * regnum);
|
|
|
|
|
case PSR_REGNUM: return (ustart + ((int) &u.pt_psr - (int) &u));
|
|
|
|
|
case FPSR_REGNUM: return (ustart + ((int) &u.pt_fpsr - (int) &u));
|
|
|
|
|
case FPCR_REGNUM: return (ustart + ((int) &u.pt_fpcr - (int) &u));
|
|
|
|
|
case SXIP_REGNUM: return (ustart + SXIP_OFFSET);
|
|
|
|
|
case SNIP_REGNUM: return (ustart + SNIP_OFFSET);
|
|
|
|
|
case SFIP_REGNUM: return (ustart + SFIP_OFFSET);
|
|
|
|
|
default: return (blockend + sizeof (REGISTER_TYPE) * regnum);
|
|
|
|
|
}
|
|
|
|
|
}
|