NetBSD/gnu/dist/gdb/ppcnbsd-nat.c

199 lines
5.5 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* NetBSD/powerpc native-dependent code for GDB, the GNU debugger.
Copyright 1986, 1987, 1989, 1991, 1992, 1994, 1995, 1996, 1997
Free Software Foundation, Inc.
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
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "defs.h"
#include "inferior.h"
#include "target.h"
#include "gdbcore.h"
#include "floatformat.h"
#include <sys/param.h>
#include <sys/ptrace.h>
#include <machine/frame.h>
#include <machine/reg.h>
#include <machine/pcb.h>
static void
fetch_core_registers PARAMS ((char *, unsigned int, int, CORE_ADDR));
void
fetch_inferior_registers (regno)
int regno;
{
struct reg infreg;
struct fpreg inffpreg;
/* Integer registers */
ptrace(PT_GETREGS, inferior_pid, (PTRACE_ARG3_TYPE) &infreg, 0);
memcpy(&registers[REGISTER_BYTE (GP0_REGNUM)], infreg.fixreg,
sizeof(infreg.fixreg));
*(long *) &registers[REGISTER_BYTE (PC_REGNUM)] = infreg.pc;
*(long *) &registers[REGISTER_BYTE (PS_REGNUM)] = 0; /* XXX */
*(long *) &registers[REGISTER_BYTE (CR_REGNUM)] = infreg.cr;
*(long *) &registers[REGISTER_BYTE (LR_REGNUM)] = infreg.lr;
*(long *) &registers[REGISTER_BYTE (CTR_REGNUM)] = infreg.ctr;
*(long *) &registers[REGISTER_BYTE (XER_REGNUM)] = infreg.xer;
*(long *) &registers[REGISTER_BYTE (MQ_REGNUM)] = 0;
/* Floating point registers */
ptrace(PT_GETFPREGS, inferior_pid, (PTRACE_ARG3_TYPE) &inffpreg, 0);
memcpy(&registers[REGISTER_BYTE (FP0_REGNUM)], inffpreg.fpreg,
sizeof(inffpreg.fpreg));
registers_fetched ();
}
void
store_inferior_registers (regno)
int regno;
{
struct reg infreg;
struct fpreg inffpreg;
/* Integer registers */
memcpy(infreg.fixreg, &registers[REGISTER_BYTE (GP0_REGNUM)],
sizeof(infreg.fixreg));
infreg.pc = *(long *) &registers[REGISTER_BYTE (PC_REGNUM)];
infreg.cr = *(long *) &registers[REGISTER_BYTE (CR_REGNUM)];
infreg.lr = *(long *) &registers[REGISTER_BYTE (LR_REGNUM)];
infreg.ctr = *(long *) &registers[REGISTER_BYTE (CTR_REGNUM)];
infreg.xer = *(long *) &registers[REGISTER_BYTE (XER_REGNUM)];
ptrace(PT_SETREGS, inferior_pid, (PTRACE_ARG3_TYPE) &infreg, 0);
/* Floating point registers */
memset(&inffpreg, 0, sizeof(inffpreg));
memcpy(inffpreg.fpreg, &registers[REGISTER_BYTE (FP0_REGNUM)],
sizeof(inffpreg.fpreg));
ptrace(PT_SETFPREGS, inferior_pid, (PTRACE_ARG3_TYPE) &inffpreg, 0);
registers_fetched ();
}
static void
fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
char *core_reg_sect;
unsigned core_reg_size;
int which;
CORE_ADDR reg_addr; /* Unused in this version */
{
struct md_coredump *core_reg;
struct trapframe *tf;
struct fpu *fs;
register int regnum;
/* We get everything from the .reg section. */
if (which != 0)
return;
core_reg = (struct md_coredump *)core_reg_sect;
tf = &core_reg->frame;
fs = &core_reg->fpstate;
if (core_reg_size < sizeof(*core_reg)) {
fprintf_unfiltered (gdb_stderr, "Couldn't read regs from core file\n");
return;
}
/* Integer registers */
for (regnum = 0; regnum < 32; regnum++)
*(long *) &registers[REGISTER_BYTE (regnum)] = tf->fixreg[regnum];
/* Floating point registers */
memcpy (&registers[REGISTER_BYTE (FP0_REGNUM)], fs->fpr, sizeof(fs->fpr));
/* Special registers (PC, LR) */
*(long *) &registers[REGISTER_BYTE (PC_REGNUM)] = tf->srr0;
*(long *) &registers[REGISTER_BYTE (LR_REGNUM)] = tf->lr;
registers_fetched ();
}
/* Register that we are able to handle rs6000 core file formats. */
static struct core_fns ppcnbsd_core_fns =
{
bfd_target_elf_flavour,
fetch_core_registers,
NULL
};
void
_initialize_core_ppcnbsd ()
{
add_core_fns (&ppcnbsd_core_fns);
}
/*
* kernel_u_size() is not helpful on NetBSD because
* the "u" struct is NOT in the core dump file.
*/
#ifdef FETCH_KCORE_REGISTERS
/*
* Get registers from a kernel crash dump or live kernel.
* Called by kcore-nbsd.c:get_kcore_registers().
*/
void
fetch_kcore_registers (pcb)
struct pcb *pcb;
{
struct switchframe sf;
int regno;
/*
* get the register values out of the sys pcb and
* store them where `read_register' will find them.
*/
if (target_read_memory(pcb->pcb_sp, (char *)&sf, sizeof(sf)))
error("Cannot read switchframe.");
supply_register(1, (char *)&pcb->pcb_sp);
supply_register(2, (char *)&sf.fixreg2);
supply_register(PC_REGNUM, (char *)&sf.fill);
supply_register(LR_REGNUM, (char *)&sf.fill);
supply_register(CR_REGNUM, (char *)&sf.cr);
for (regno = 13; regno < 32; regno++)
supply_register(regno, (char *)&sf.fixreg[regno - 13]);
/* The kernel does not use the FPU, so ignore it. */
registers_fetched ();
}
#endif /* FETCH_KCORE_REGISTERS */
ppc_float_info ()
{
int n;
double v;
if (!target_has_registers)
error ("The program has no registers now.");
for (n = 0; n < 32; n++)
{
floatformat_to_double (&floatformat_ieee_double_big,
&registers[REGISTER_BYTE (FP0_REGNUM) + (8 * n)], &v);
printf_unfiltered ("f%d\t\t%g\n", n, v);
}
}