OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.3/] [gdb/] [shnbsd-nat.c] - Diff between revs 1181 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1181 Rev 1765
/* Native-dependent code for SuperH running NetBSD, for GDB.
/* Native-dependent code for SuperH running NetBSD, for GDB.
   Copyright 2002 Free Software Foundation, Inc.
   Copyright 2002 Free Software Foundation, Inc.
   Contributed by Wasabi Systems, Inc.
   Contributed by Wasabi Systems, Inc.
 
 
   This file is part of GDB.
   This file is part of GDB.
 
 
   This program is free software; you can redistribute it and/or modify
   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
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330,
   Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.  */
   Boston, MA 02111-1307, USA.  */
 
 
#include <sys/types.h>
#include <sys/types.h>
#include <sys/ptrace.h>
#include <sys/ptrace.h>
#include <machine/reg.h>
#include <machine/reg.h>
 
 
#include "defs.h"
#include "defs.h"
#include "inferior.h"
#include "inferior.h"
 
 
#include "shnbsd-tdep.h"
#include "shnbsd-tdep.h"
 
 
/* Determine if PT_GETREGS fetches this register. */
/* Determine if PT_GETREGS fetches this register. */
#define GETREGS_SUPPLIES(regno) \
#define GETREGS_SUPPLIES(regno) \
  (((regno) >= R0_REGNUM && (regno) <= (R0_REGNUM + 15)) \
  (((regno) >= R0_REGNUM && (regno) <= (R0_REGNUM + 15)) \
|| (regno) == PC_REGNUM || (regno) == PR_REGNUM \
|| (regno) == PC_REGNUM || (regno) == PR_REGNUM \
|| (regno) == MACH_REGNUM || (regno) == MACL_REGNUM \
|| (regno) == MACH_REGNUM || (regno) == MACL_REGNUM \
|| (regno) == SR_REGNUM)
|| (regno) == SR_REGNUM)
 
 
void
void
fetch_inferior_registers (int regno)
fetch_inferior_registers (int regno)
{
{
  if (regno == -1 || GETREGS_SUPPLIES (regno))
  if (regno == -1 || GETREGS_SUPPLIES (regno))
    {
    {
      struct reg inferior_registers;
      struct reg inferior_registers;
 
 
      if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
      if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
        perror_with_name ("Couldn't get registers");
        perror_with_name ("Couldn't get registers");
 
 
      shnbsd_supply_reg ((char *) &inferior_registers, regno);
      shnbsd_supply_reg ((char *) &inferior_registers, regno);
 
 
      if (regno != -1)
      if (regno != -1)
        return;
        return;
    }
    }
}
}
 
 
void
void
store_inferior_registers (int regno)
store_inferior_registers (int regno)
{
{
  if (regno == -1 || GETREGS_SUPPLIES (regno))
  if (regno == -1 || GETREGS_SUPPLIES (regno))
    {
    {
      struct reg inferior_registers;
      struct reg inferior_registers;
 
 
      if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
      if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
        perror_with_name ("Couldn't get registers");
        perror_with_name ("Couldn't get registers");
 
 
      shnbsd_fill_reg ((char *) &inferior_registers, regno);
      shnbsd_fill_reg ((char *) &inferior_registers, regno);
 
 
      if (ptrace (PT_SETREGS, PIDGET (inferior_ptid),
      if (ptrace (PT_SETREGS, PIDGET (inferior_ptid),
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
                  (PTRACE_ARG3_TYPE) &inferior_registers, 0) == -1)
        perror_with_name ("Couldn't set registers");
        perror_with_name ("Couldn't set registers");
 
 
      if (regno != -1)
      if (regno != -1)
        return;
        return;
    }
    }
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.