1 /* Native-dependent code for VAX UNIXen (including older BSD's).
3 Copyright (C) 2004, 2005 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
25 #include "gdb_assert.h"
26 #include <sys/types.h>
30 #ifdef HAVE_SYS_PTRACE_H
31 #include <sys/ptrace.h>
39 /* UNIX 32V and derivatives (including 3BSD). */
42 /* 4.2BSD and derivatives. */
43 #include <machine/reg.h>
47 #include "inf-ptrace.h"
49 /* Address of the user structure. This is the the value for 32V; 3BSD
50 uses a different value, but hey, who's still using those systems? */
51 CORE_ADDR vax_kernel_u_addr
= 0x80020000;
53 /* Location of the user's stored registers; usage is `u.u_ar0[XX]'.
54 For 4.2BSD and ULTRIX these are negative! See <machine/reg.h>. */
55 static int vax_register_index
[] =
57 R0
, R1
, R2
, R3
, R4
, R5
,
58 R6
, R7
, R8
, R9
, R10
, R11
,
63 vax_register_u_addr (CORE_ADDR u_ar0
, int regnum
)
65 gdb_assert (regnum
>= 0 && regnum
< ARRAY_SIZE (vax_register_index
));
67 /* Type is `int *u_ar0'. See <sys/user.h>. */
68 return u_ar0
+ vax_register_index
[regnum
- VAX_R0_REGNUM
] * 4;
72 vax_register_u_offset (int regnum
)
74 size_t u_ar0_offset
= offsetof (struct user
, u_ar0
);
79 pid
= PIDGET (inferior_ptid
);
80 u_ar0
= ptrace (PT_READ_U
, pid
, u_ar0_offset
, 0);
82 perror_with_name (_("Unable to determine location of registers"));
84 return vax_register_u_addr (u_ar0
, regnum
) - vax_kernel_u_addr
;
91 #define _PATH_UNIX "/vmunix"
94 /* Provide a prototype to silence -Wmissing-prototypes. */
95 void _initialize_vax_nat (void);
98 _initialize_vax_nat (void)
100 struct nlist names
[2];
102 names
[0].n_name
= "_u";
103 names
[1].n_name
= NULL
;
104 if (nlist (_PATH_UNIX
, names
) == 0)
105 vax_kernel_u_addr
= names
[0].n_value
;
107 add_target (inf_ptrace_trad_target (vax_register_u_offset
));