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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [vax-nat.c] - Diff between revs 834 and 842

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

Rev 834 Rev 842
/* Native-dependent code for VAX UNIXen (including older BSD's).
/* Native-dependent code for VAX UNIXen (including older BSD's).
 
 
   Copyright (C) 2004, 2005, 2007, 2008, 2009, 2010
   Copyright (C) 2004, 2005, 2007, 2008, 2009, 2010
   Free Software Foundation, Inc.
   Free Software Foundation, 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 3 of the License, or
   the Free Software Foundation; either version 3 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, see <http://www.gnu.org/licenses/>.  */
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
#include "defs.h"
#include "defs.h"
#include "inferior.h"
#include "inferior.h"
 
 
#include "gdb_assert.h"
#include "gdb_assert.h"
#include <sys/types.h>
#include <sys/types.h>
#include <sys/dir.h>
#include <sys/dir.h>
#include <sys/user.h>
#include <sys/user.h>
 
 
#ifdef HAVE_SYS_PTRACE_H
#ifdef HAVE_SYS_PTRACE_H
#include <sys/ptrace.h>
#include <sys/ptrace.h>
#endif
#endif
 
 
#ifndef PT_READ_U
#ifndef PT_READ_U
#define PT_READ_U 3
#define PT_READ_U 3
#endif
#endif
 
 
#ifdef SYS_REG_H
#ifdef SYS_REG_H
/* UNIX 32V and derivatives (including 3BSD).  */
/* UNIX 32V and derivatives (including 3BSD).  */
#include <sys/reg.h>
#include <sys/reg.h>
#else
#else
/* 4.2BSD and derivatives.  */
/* 4.2BSD and derivatives.  */
#include <machine/reg.h>
#include <machine/reg.h>
#endif
#endif
 
 
#include "vax-tdep.h"
#include "vax-tdep.h"
#include "inf-ptrace.h"
#include "inf-ptrace.h"
 
 
/* Address of the user structure.  This is the the value for 32V; 3BSD
/* Address of the user structure.  This is the the value for 32V; 3BSD
   uses a different value, but hey, who's still using those systems?  */
   uses a different value, but hey, who's still using those systems?  */
static CORE_ADDR vax_kernel_u_addr = 0x80020000;
static CORE_ADDR vax_kernel_u_addr = 0x80020000;
 
 
/* Location of the user's stored registers; usage is `u.u_ar0[XX]'.
/* Location of the user's stored registers; usage is `u.u_ar0[XX]'.
   For 4.2BSD and ULTRIX these are negative!  See <machine/reg.h>.  */
   For 4.2BSD and ULTRIX these are negative!  See <machine/reg.h>.  */
static int vax_register_index[] =
static int vax_register_index[] =
{
{
  R0, R1, R2, R3, R4, R5,
  R0, R1, R2, R3, R4, R5,
  R6, R7, R8, R9, R10, R11,
  R6, R7, R8, R9, R10, R11,
  AP, FP, SP, PC, PS
  AP, FP, SP, PC, PS
};
};
 
 
static CORE_ADDR
static CORE_ADDR
vax_register_u_addr (CORE_ADDR u_ar0, int regnum)
vax_register_u_addr (CORE_ADDR u_ar0, int regnum)
{
{
  gdb_assert (regnum >= 0 && regnum < ARRAY_SIZE (vax_register_index));
  gdb_assert (regnum >= 0 && regnum < ARRAY_SIZE (vax_register_index));
 
 
  /* Type is `int *u_ar0'.  See <sys/user.h>.  */
  /* Type is `int *u_ar0'.  See <sys/user.h>.  */
  return u_ar0 + vax_register_index[regnum - VAX_R0_REGNUM] * 4;
  return u_ar0 + vax_register_index[regnum - VAX_R0_REGNUM] * 4;
}
}
 
 
static CORE_ADDR
static CORE_ADDR
vax_register_u_offset (struct gdbarch *gdbarch, int regnum, int store_p)
vax_register_u_offset (struct gdbarch *gdbarch, int regnum, int store_p)
{
{
  size_t u_ar0_offset = offsetof (struct user, u_ar0);
  size_t u_ar0_offset = offsetof (struct user, u_ar0);
  CORE_ADDR u_ar0;
  CORE_ADDR u_ar0;
  int pid;
  int pid;
 
 
  errno = 0;
  errno = 0;
  pid = PIDGET (inferior_ptid);
  pid = PIDGET (inferior_ptid);
  u_ar0 = ptrace (PT_READ_U, pid, u_ar0_offset, 0);
  u_ar0 = ptrace (PT_READ_U, pid, u_ar0_offset, 0);
  if (errno)
  if (errno)
    perror_with_name (_("Unable to determine location of registers"));
    perror_with_name (_("Unable to determine location of registers"));
 
 
  return vax_register_u_addr (u_ar0, regnum) - vax_kernel_u_addr;
  return vax_register_u_addr (u_ar0, regnum) - vax_kernel_u_addr;
}
}


 
 
#include <nlist.h>
#include <nlist.h>
 
 
#ifndef _PATH_UNIX
#ifndef _PATH_UNIX
#define _PATH_UNIX "/vmunix"
#define _PATH_UNIX "/vmunix"
#endif
#endif
 
 
/* Provide a prototype to silence -Wmissing-prototypes.  */
/* Provide a prototype to silence -Wmissing-prototypes.  */
void _initialize_vax_nat (void);
void _initialize_vax_nat (void);
 
 
void
void
_initialize_vax_nat (void)
_initialize_vax_nat (void)
{
{
  struct nlist names[2];
  struct nlist names[2];
 
 
  names[0].n_name = "_u";
  names[0].n_name = "_u";
  names[1].n_name = NULL;
  names[1].n_name = NULL;
  if (nlist (_PATH_UNIX, names) == 0)
  if (nlist (_PATH_UNIX, names) == 0)
    vax_kernel_u_addr = names[0].n_value;
    vax_kernel_u_addr = names[0].n_value;
 
 
  add_target (inf_ptrace_trad_target (vax_register_u_offset));
  add_target (inf_ptrace_trad_target (vax_register_u_offset));
}
}
 
 

powered by: WebSVN 2.1.0

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