GDB (xrefs)
/tmp/gdb-8.1/gdb/hppa-obsd-nat.c
Go to the documentation of this file.
1 /* Native-dependent code for OpenBSD/hppa.
2 
3  Copyright (C) 2004-2018 Free Software Foundation, Inc.
4 
5  This file is part of GDB.
6 
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 3 of the License, or
10  (at your option) any later version.
11 
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.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 
20 #include "defs.h"
21 #include "inferior.h"
22 #include "regcache.h"
23 #include "target.h"
24 
25 #include <sys/types.h>
26 #include <sys/ptrace.h>
27 #include <machine/reg.h>
28 
29 #include "hppa-tdep.h"
30 #include "inf-ptrace.h"
31 
32 #include "obsd-nat.h"
33 
34 static int
36 {
37  return (regnum >= HPPA_R0_REGNUM && regnum <= HPPA_CR27_REGNUM);
38 }
39 
40 static int
42 {
44 }
45 
46 /* Supply the general-purpose registers stored in GREGS to REGCACHE. */
47 
48 static void
49 hppaobsd_supply_gregset (struct regcache *regcache, const void *gregs)
50 {
51  gdb_byte zero[4] = { 0 };
52  const char *regs = gregs;
53  int regnum;
54 
58 
59  if (sizeof(struct reg) >= 46 * 4)
60  {
77  }
78  else
79  {
83  }
84 }
85 
86 /* Supply the floating-point registers stored in FPREGS to REGCACHE. */
87 
88 static void
89 hppaobsd_supply_fpregset (struct regcache *regcache, const void *fpregs)
90 {
91  const char *regs = fpregs;
92  int regnum;
93 
95  regnum += 2, regs += 8)
96  {
98  regcache_raw_supply (regcache, regnum + 1, regs + 4);
99  }
100 }
101 
102 /* Collect the general-purpose registers from REGCACHE and store them
103  in GREGS. */
104 
105 static void
107  void *gregs, int regnum)
108 {
109  char *regs = gregs;
110  int i;
111 
112  for (i = HPPA_R1_REGNUM; i <= HPPA_R31_REGNUM; i++)
113  {
114  if (regnum == -1 || regnum == i)
115  regcache_raw_collect (regcache, i, regs + i * 4);
116  }
117 
118  if (sizeof(struct reg) >= 46 * 4)
119  {
120  if (regnum == -1 || regnum == HPPA_IPSW_REGNUM)
122  if (regnum == -1 || regnum == HPPA_SAR_REGNUM)
124  if (regnum == -1 || regnum == HPPA_PCSQ_HEAD_REGNUM)
126  if (regnum == -1 || regnum == HPPA_PCSQ_TAIL_REGNUM)
128  if (regnum == -1 || regnum == HPPA_PCOQ_HEAD_REGNUM)
130  if (regnum == -1 || regnum == HPPA_PCOQ_TAIL_REGNUM)
132  if (regnum == -1 || regnum == HPPA_SR0_REGNUM)
134  if (regnum == -1 || regnum == HPPA_SR1_REGNUM)
136  if (regnum == -1 || regnum == HPPA_SR2_REGNUM)
138  if (regnum == -1 || regnum == HPPA_SR3_REGNUM)
140  if (regnum == -1 || regnum == HPPA_SR4_REGNUM)
142  if (regnum == -1 || regnum == HPPA_SR5_REGNUM)
144  if (regnum == -1 || regnum == HPPA_SR6_REGNUM)
146  if (regnum == -1 || regnum == HPPA_SR7_REGNUM)
148  if (regnum == -1 || regnum == HPPA_CR26_REGNUM)
150  if (regnum == -1 || regnum == HPPA_CR27_REGNUM)
152  }
153  else
154  {
155  if (regnum == -1 || regnum == HPPA_SAR_REGNUM)
157  if (regnum == -1 || regnum == HPPA_PCOQ_HEAD_REGNUM)
159  if (regnum == -1 || regnum == HPPA_PCOQ_TAIL_REGNUM)
161  }
162 }
163 
164 /* Collect the floating-point registers from REGCACHE and store them
165  in FPREGS. */
166 
167 static void
169  void *fpregs, int regnum)
170 {
171  char *regs = fpregs;
172  int i;
173 
174  for (i = HPPA_FP0_REGNUM; i <= HPPA_FP31R_REGNUM; i += 2, regs += 8)
175  {
176  if (regnum == -1 || regnum == i || regnum == i + 1)
177  {
178  regcache_raw_collect (regcache, i, regs);
179  regcache_raw_collect (regcache, i + 1, regs + 4);
180  }
181  }
182 }
183 
184 
185 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
186  for all registers (including the floating-point registers). */
187 
188 static void
190  struct regcache *regcache, int regnum)
191 {
193 
195  {
196  struct reg regs;
197 
198  if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
199  perror_with_name (_("Couldn't get registers"));
200 
202  }
203 
205  {
206  struct fpreg fpregs;
207 
208  if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
209  perror_with_name (_("Couldn't get floating point status"));
210 
212  }
213 }
214 
215 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
216  this for all registers (including the floating-point registers). */
217 
218 static void
220  struct regcache *regcache, int regnum)
221 {
223  {
224  struct reg regs;
225 
226  if (ptrace (PT_GETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
227  perror_with_name (_("Couldn't get registers"));
228 
230 
231  if (ptrace (PT_SETREGS, pid, (PTRACE_TYPE_ARG3) &regs, 0) == -1)
232  perror_with_name (_("Couldn't write registers"));
233  }
234 
236  {
237  struct fpreg fpregs;
238 
239  if (ptrace (PT_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
240  perror_with_name (_("Couldn't get floating point status"));
241 
243 
244  if (ptrace (PT_SETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
245  perror_with_name (_("Couldn't write floating point status"));
246  }
247 }
248 
249 void
251 {
252  struct target_ops *t;
253 
254  t = inf_ptrace_target ();
257  obsd_add_target (t);
258 }
static void hppaobsd_supply_fpregset(struct regcache *regcache, const void *fpregs)
Definition: hppa-obsd-nat.c:89
static int hppaobsd_gregset_supplies_p(int regnum)
Definition: hppa-obsd-nat.c:35
void obsd_add_target(struct target_ops *t)
Definition: obsd-nat.c:181
int ptid_get_pid(const ptid_t &ptid)
Definition: ptid.c:47
mach_port_t mach_port_t name mach_port_t mach_port_t name kern_return_t int int rusage_t pid_t pid
Definition: gnu-nat.c:1824
ptid_t regcache_get_ptid(const struct regcache *regcache)
Definition: regcache.c:229
#define _(String)
Definition: gdb_locale.h:35
struct target_ops * inf_ptrace_target(void)
Definition: inf-ptrace.c:676
PTRACE_TYPE_RET ptrace()
static void hppaobsd_collect_fpregset(struct regcache *regcache, void *fpregs, int regnum)
static void hppaobsd_store_registers(struct target_ops *ops, struct regcache *regcache, int regnum)
static void hppaobsd_fetch_registers(struct target_ops *ops, struct regcache *regcache, int regnum)
int regnum
Definition: aarch64-tdep.c:77
void _initialize_hppaobsd_nat(void)
static void hppaobsd_collect_gregset(const struct regcache *regcache, void *gregs, int regnum)
Definition: regdef.h:22
bfd_byte gdb_byte
Definition: common-types.h:38
void(* to_fetch_registers)(struct target_ops *, struct regcache *, int) TARGET_DEFAULT_IGNORE()
Definition: target.h:457
void void void void void void void void void perror_with_name(const char *string) ATTRIBUTE_NORETURN
Definition: utils.c:692
static int hppaobsd_fpregset_supplies_p(int regnum)
Definition: hppa-obsd-nat.c:41
static void hppaobsd_supply_gregset(struct regcache *regcache, const void *gregs)
Definition: hppa-obsd-nat.c:49
void regcache_raw_supply(struct regcache *regcache, int regnum, const void *buf)
Definition: regcache.c:1004
void regcache_raw_collect(const struct regcache *regcache, int regnum, void *buf)
Definition: regcache.c:1085
#define PTRACE_TYPE_ARG3
Definition: config.h:642
void(* to_store_registers)(struct target_ops *, struct regcache *, int) TARGET_DEFAULT_NORETURN(noprocess())
Definition: target.h:459