1993-02-02 02:53:17 +01:00
|
|
|
|
/* HP/UX native interface for HP 300's, for GDB when running under Unix.
|
|
|
|
|
Copyright 1986, 1987, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
|
1992-10-28 08:08:52 +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-28 08:08:52 +01:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
#include "inferior.h"
|
|
|
|
|
|
|
|
|
|
/* Defining this means some system include files define some extra stuff. */
|
|
|
|
|
#define WOPR
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include <sys/user.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/ptrace.h>
|
|
|
|
|
#include <sys/reg.h>
|
|
|
|
|
#include <sys/trap.h>
|
|
|
|
|
|
|
|
|
|
#include "gdbcore.h"
|
|
|
|
|
|
|
|
|
|
#include <sys/file.h>
|
|
|
|
|
|
1993-04-28 23:20:40 +02:00
|
|
|
|
/* Get kernel_u_addr using HPUX-style nlist(). */
|
|
|
|
|
CORE_ADDR kernel_u_addr;
|
|
|
|
|
|
|
|
|
|
struct hpnlist {
|
|
|
|
|
char * n_name;
|
|
|
|
|
long n_value;
|
|
|
|
|
unsigned char n_type;
|
|
|
|
|
unsigned char n_length;
|
|
|
|
|
short n_almod;
|
|
|
|
|
short n_unused;
|
|
|
|
|
};
|
|
|
|
|
static struct hpnlist nl[] = {{ "_u", -1, }, { (char *) 0, }};
|
|
|
|
|
|
|
|
|
|
/* read the value of the u area from the hp-ux kernel */
|
* Makefile.in (init.c): Generate using the source, not munch. This
cleans up all kinds of hassles (which nm to use in munch, etc). The
new formatting conventions (mostly already followed) are that
the name of the _initialize_* routines must start in column zero,
and must not be inside #if.
* munch: Removed.
* Makefile.in: Remove references to munch.
* serial.c, remote.c, infptrace.c, maint.c, convex-tdep.c,
alpha-tdep.c, hp300ux-nat.c, hppab-nat.c, osfsolib.c, remote-es.c,
procfs.c, remote-udi.c, ser-go32.c, ultra3-xdep.c, sh-tdep.c,
i960-tdep.c, hppa-tdep.c, h8500-tdep.c, dpx2-nat.c, delta68-nat.c,
z8k-tdep.c: Make sure the above conventions are followed. Make
sure they are all declared as returning void. Clean up
miscellaneous comments and such.
1993-10-22 06:55:58 +01:00
|
|
|
|
void
|
|
|
|
|
_initialize_hp300ux_nat ()
|
1993-04-28 23:20:40 +02:00
|
|
|
|
{
|
|
|
|
|
#ifndef HPUX_VERSION_5
|
|
|
|
|
nlist ("/hp-ux", nl);
|
|
|
|
|
kernel_u_addr = nl[0].n_value;
|
|
|
|
|
#else /* HPUX version 5. */
|
|
|
|
|
kernel_u_addr = (CORE_ADDR) 0x0097900;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
1992-10-28 08:08:52 +01:00
|
|
|
|
#define INFERIOR_AR0(u) \
|
|
|
|
|
((ptrace \
|
|
|
|
|
(PT_RUAREA, inferior_pid, \
|
1993-04-28 23:20:40 +02:00
|
|
|
|
(PTRACE_ARG3_TYPE) ((char *) &u.u_ar0 - (char *) &u), 0, 0)) \
|
|
|
|
|
- kernel_u_addr)
|
1992-10-28 08:08:52 +01:00
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
fetch_inferior_register (regno, regaddr)
|
|
|
|
|
register int regno;
|
|
|
|
|
register unsigned int regaddr;
|
|
|
|
|
{
|
|
|
|
|
#ifndef HPUX_VERSION_5
|
|
|
|
|
if (regno == PS_REGNUM)
|
|
|
|
|
{
|
|
|
|
|
union { int i; short s[2]; } ps_val;
|
|
|
|
|
int regval;
|
|
|
|
|
|
|
|
|
|
ps_val.i = (ptrace (PT_RUAREA, inferior_pid, (PTRACE_ARG3_TYPE) regaddr,
|
1993-04-28 23:20:40 +02:00
|
|
|
|
0, 0));
|
1992-10-28 08:08:52 +01:00
|
|
|
|
regval = ps_val.s[0];
|
1993-04-28 23:20:40 +02:00
|
|
|
|
supply_register (regno, (char *)®val);
|
1992-10-28 08:08:52 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif /* not HPUX_VERSION_5 */
|
|
|
|
|
{
|
|
|
|
|
char buf[MAX_REGISTER_RAW_SIZE];
|
|
|
|
|
register int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < REGISTER_RAW_SIZE (regno); i += sizeof (int))
|
|
|
|
|
{
|
|
|
|
|
*(int *) &buf[i] = ptrace (PT_RUAREA, inferior_pid,
|
1993-04-28 23:20:40 +02:00
|
|
|
|
(PTRACE_ARG3_TYPE) regaddr, 0, 0);
|
1992-10-28 08:08:52 +01:00
|
|
|
|
regaddr += sizeof (int);
|
|
|
|
|
}
|
|
|
|
|
supply_register (regno, buf);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
1993-04-28 23:20:40 +02:00
|
|
|
|
store_inferior_register_1 (regno, regaddr, val)
|
1992-10-28 08:08:52 +01:00
|
|
|
|
int regno;
|
|
|
|
|
unsigned int regaddr;
|
1993-04-28 23:20:40 +02:00
|
|
|
|
int val;
|
1992-10-28 08:08:52 +01:00
|
|
|
|
{
|
|
|
|
|
errno = 0;
|
1993-04-28 23:20:40 +02:00
|
|
|
|
ptrace (PT_WUAREA, inferior_pid, (PTRACE_ARG3_TYPE) regaddr, val, 0);
|
1992-10-28 08:08:52 +01:00
|
|
|
|
#if 0
|
|
|
|
|
/* HP-UX randomly sets errno to non-zero for regno == 25.
|
|
|
|
|
However, the value is correctly written, so ignore errno. */
|
|
|
|
|
if (errno != 0)
|
|
|
|
|
{
|
|
|
|
|
char string_buf[64];
|
|
|
|
|
|
|
|
|
|
sprintf (string_buf, "writing register number %d", regno);
|
|
|
|
|
perror_with_name (string_buf);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
store_inferior_register (regno, regaddr)
|
|
|
|
|
register int regno;
|
|
|
|
|
register unsigned int regaddr;
|
|
|
|
|
{
|
|
|
|
|
#ifndef HPUX_VERSION_5
|
|
|
|
|
if (regno == PS_REGNUM)
|
|
|
|
|
{
|
|
|
|
|
union { int i; short s[2]; } ps_val;
|
|
|
|
|
|
|
|
|
|
ps_val.i = (ptrace (PT_RUAREA, inferior_pid, (PTRACE_ARG3_TYPE) regaddr,
|
1993-04-28 23:20:40 +02:00
|
|
|
|
0, 0));
|
1992-10-28 08:08:52 +01:00
|
|
|
|
ps_val.s[0] = (read_register (regno));
|
|
|
|
|
store_inferior_register_1 (regno, regaddr, ps_val.i);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif /* not HPUX_VERSION_5 */
|
|
|
|
|
{
|
|
|
|
|
char buf[MAX_REGISTER_RAW_SIZE];
|
|
|
|
|
register int i;
|
|
|
|
|
extern char registers[];
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < REGISTER_RAW_SIZE (regno); i += sizeof (int))
|
|
|
|
|
{
|
|
|
|
|
store_inferior_register_1
|
|
|
|
|
(regno, regaddr,
|
|
|
|
|
(*(int *) ®isters[(REGISTER_BYTE (regno)) + i]));
|
|
|
|
|
regaddr += sizeof (int);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fetch_inferior_registers (regno)
|
|
|
|
|
int regno;
|
|
|
|
|
{
|
|
|
|
|
struct user u;
|
|
|
|
|
register unsigned int ar0_offset;
|
|
|
|
|
|
|
|
|
|
ar0_offset = (INFERIOR_AR0 (u));
|
|
|
|
|
if (regno == -1)
|
|
|
|
|
{
|
|
|
|
|
for (regno = 0; (regno < FP0_REGNUM); regno++)
|
|
|
|
|
fetch_inferior_register (regno, (REGISTER_ADDR (ar0_offset, regno)));
|
|
|
|
|
for (; (regno < NUM_REGS); regno++)
|
|
|
|
|
fetch_inferior_register (regno, (FP_REGISTER_ADDR (u, regno)));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
fetch_inferior_register (regno,
|
|
|
|
|
(regno < FP0_REGNUM
|
|
|
|
|
? REGISTER_ADDR (ar0_offset, regno)
|
|
|
|
|
: FP_REGISTER_ADDR (u, regno)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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). */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
store_inferior_registers (regno)
|
|
|
|
|
register int regno;
|
|
|
|
|
{
|
|
|
|
|
struct user u;
|
|
|
|
|
register unsigned int ar0_offset;
|
|
|
|
|
extern char registers[];
|
|
|
|
|
|
|
|
|
|
if (regno >= FP0_REGNUM)
|
|
|
|
|
{
|
|
|
|
|
store_inferior_register (regno, (FP_REGISTER_ADDR (u, regno)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ar0_offset = (INFERIOR_AR0 (u));
|
|
|
|
|
if (regno >= 0)
|
|
|
|
|
{
|
|
|
|
|
store_inferior_register (regno, (REGISTER_ADDR (ar0_offset, regno)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (regno = 0; (regno < FP0_REGNUM); regno++)
|
|
|
|
|
store_inferior_register (regno, (REGISTER_ADDR (ar0_offset, regno)));
|
|
|
|
|
for (; (regno < NUM_REGS); regno++)
|
|
|
|
|
store_inferior_register (regno, (FP_REGISTER_ADDR (u, regno)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1993-07-22 21:49:44 +02:00
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
|
|
/* This function is no longer used. The version in coredep.c is used
|
|
|
|
|
instead. */
|
|
|
|
|
|
1992-10-28 08:08:52 +01:00
|
|
|
|
/* Take the register values out of a core file and store
|
|
|
|
|
them where `read_register' will find them. */
|
|
|
|
|
|
|
|
|
|
#ifdef HPUX_VERSION_5
|
|
|
|
|
#define e_PS e_regs[PS]
|
|
|
|
|
#define e_PC e_regs[PC]
|
|
|
|
|
#endif /* HPUX_VERSION_5 */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
|
|
|
|
|
char *core_reg_sect;
|
1993-04-28 23:20:40 +02:00
|
|
|
|
unsigned int core_reg_size;
|
1992-10-28 08:08:52 +01:00
|
|
|
|
int which;
|
|
|
|
|
unsigned int reg_addr; /* Unused in this version */
|
|
|
|
|
{
|
|
|
|
|
int val, regno;
|
|
|
|
|
struct user u;
|
|
|
|
|
struct exception_stack *pes = (struct exception_stack *) core_reg_sect;
|
|
|
|
|
#define es (*pes)
|
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
|
|
if (which == 0) {
|
|
|
|
|
if (core_reg_size <
|
|
|
|
|
((char *) &es.e_offset - (char *) &es.e_regs[R0]))
|
|
|
|
|
error ("Not enough registers in core file");
|
|
|
|
|
for (regno = 0; (regno < PS_REGNUM); regno++)
|
1993-04-28 23:20:40 +02:00
|
|
|
|
supply_register (regno, (char *) &es.e_regs[regno + R0]);
|
1992-10-28 08:08:52 +01:00
|
|
|
|
val = es.e_PS;
|
1993-04-28 23:20:40 +02:00
|
|
|
|
supply_register (regno++, (char *) &val);
|
|
|
|
|
supply_register (regno++, (char *) &es.e_PC);
|
1992-10-28 08:08:52 +01:00
|
|
|
|
|
|
|
|
|
} else if (which == 2) {
|
|
|
|
|
|
|
|
|
|
/* FIXME: This may not work if the float regs and control regs are
|
|
|
|
|
discontinuous. */
|
|
|
|
|
for (regno = FP0_REGNUM, buf = core_reg_sect;
|
|
|
|
|
(regno < NUM_REGS);
|
|
|
|
|
buf += REGISTER_RAW_SIZE (regno), regno++)
|
|
|
|
|
{
|
|
|
|
|
supply_register (regno, buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1993-04-28 23:20:40 +02:00
|
|
|
|
|
1993-07-22 21:49:44 +02:00
|
|
|
|
#endif /* 0 */
|
|
|
|
|
|
1993-04-28 23:20:40 +02:00
|
|
|
|
int
|
|
|
|
|
getpagesize ()
|
|
|
|
|
{
|
|
|
|
|
return 4096;
|
|
|
|
|
}
|