* remote-fileio.c (remote_fileio_return_success): Take a gdb_byte
[deliverable/binutils-gdb.git] / gdb / ppcobsd-nat.c
CommitLineData
d195bc9f
MK
1/* Native-dependent code for OpenBSD/powerpc.
2
197e01b6 3 Copyright (C) 2004, 2005 Free Software Foundation, Inc.
d195bc9f
MK
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 2 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, write to the Free Software
197e01b6
EZ
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
d195bc9f
MK
21
22#include "defs.h"
0ae4f2cb 23#include "gdbcore.h"
d195bc9f
MK
24#include "inferior.h"
25#include "regcache.h"
26
27#include <stddef.h>
28#include <sys/types.h>
29#include <sys/ptrace.h>
0ae4f2cb
MK
30#include <sys/signal.h>
31#include <machine/frame.h>
32#include <machine/pcb.h>
d195bc9f
MK
33#include <machine/reg.h>
34
c79ac407 35#include "ppc-tdep.h"
d195bc9f 36#include "ppcobsd-tdep.h"
65d034bc 37#include "inf-ptrace.h"
0ae4f2cb 38#include "bsd-kvm.h"
d195bc9f
MK
39
40/* OpenBSD/powerpc doesn't have PT_GETFPREGS/PT_SETFPREGS like
41 NetBSD/powerpc and FreeBSD/powerpc. */
42
43/* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
44 for all registers. */
45
65d034bc
MK
46static void
47ppcobsd_fetch_registers (int regnum)
d195bc9f
MK
48{
49 struct reg regs;
50
51 if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
9f8e0089 52 (PTRACE_TYPE_ARG3) &regs, 0) == -1)
e2e0b3e5 53 perror_with_name (_("Couldn't get registers"));
d195bc9f
MK
54
55 ppcobsd_supply_gregset (&ppcobsd_gregset, current_regcache, -1,
56 &regs, sizeof regs);
57}
58
59/* Store register REGNUM back into the inferior. If REGNUM is -1, do
60 this for all registers. */
61
65d034bc
MK
62static void
63ppcobsd_store_registers (int regnum)
d195bc9f
MK
64{
65 struct reg regs;
66
67 if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
9f8e0089 68 (PTRACE_TYPE_ARG3) &regs, 0) == -1)
e2e0b3e5 69 perror_with_name (_("Couldn't get registers"));
d195bc9f
MK
70
71 ppcobsd_collect_gregset (&ppcobsd_gregset, current_regcache,
72 regnum, &regs, sizeof regs);
73
74 if (ptrace (PT_SETREGS, PIDGET (inferior_ptid),
9f8e0089 75 (PTRACE_TYPE_ARG3) &regs, 0) == -1)
e2e0b3e5 76 perror_with_name (_("Couldn't write registers"));
d195bc9f
MK
77}
78\f
79
0ae4f2cb
MK
80static int
81ppcobsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
82{
83 struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
84 struct switchframe sf;
85 struct callframe cf;
86 int i, regnum;
87
88 /* The following is true for OpenBSD 3.7:
89
90 The pcb contains %r1 (the stack pointer) at the point of the
91 context switch in cpu_switch(). At that point we have a stack
92 frame as described by `struct switchframe', and below that a call
93 frame as described by `struct callframe'. From this information
94 we reconstruct the register state as it would look when we are in
95 cpu_switch(). */
96
97 /* The stack pointer shouldn't be zero. */
98 if (pcb->pcb_sp == 0)
99 return 0;
100
101 read_memory (pcb->pcb_sp, (gdb_byte *)&sf, sizeof sf);
102 regcache_raw_supply (regcache, SP_REGNUM, &sf.sp);
103 regcache_raw_supply (regcache, tdep->ppc_cr_regnum, &sf.cr);
104 regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 2, &sf.fixreg2);
105 for (i = 0, regnum = tdep->ppc_gp0_regnum + 13; i < 19; i++, regnum++)
106 regcache_raw_supply (regcache, regnum, &sf.fixreg[i]);
107
108 read_memory (sf.sp, (gdb_byte *)&cf, sizeof cf);
109 regcache_raw_supply (regcache, PC_REGNUM, &cf.lr);
110 regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 30, &cf.r30);
111 regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 31, &cf.r31);
112
113 return 1;
114}
115\f
116
d195bc9f
MK
117/* Provide a prototype to silence -Wmissing-prototypes. */
118void _initialize_ppcobsd_nat (void);
119
120void
121_initialize_ppcobsd_nat (void)
122{
65d034bc
MK
123 struct target_ops *t;
124
125 /* Add in local overrides. */
126 t = inf_ptrace_target ();
127 t->to_fetch_registers = ppcobsd_fetch_registers;
128 t->to_store_registers = ppcobsd_store_registers;
129 add_target (t);
130
d195bc9f
MK
131 /* General-purpose registers. */
132 ppcobsd_reg_offsets.r0_offset = offsetof (struct reg, gpr);
133 ppcobsd_reg_offsets.pc_offset = offsetof (struct reg, pc);
134 ppcobsd_reg_offsets.ps_offset = offsetof (struct reg, ps);
135 ppcobsd_reg_offsets.cr_offset = offsetof (struct reg, cnd);
136 ppcobsd_reg_offsets.lr_offset = offsetof (struct reg, lr);
137 ppcobsd_reg_offsets.ctr_offset = offsetof (struct reg, cnt);
138 ppcobsd_reg_offsets.xer_offset = offsetof (struct reg, xer);
139 ppcobsd_reg_offsets.mq_offset = offsetof (struct reg, mq);
140
141 /* Floating-point registers. */
142 ppcobsd_reg_offsets.f0_offset = offsetof (struct reg, fpr);
143 ppcobsd_reg_offsets.fpscr_offset = -1;
144
145 /* AltiVec registers. */
146 ppcobsd_reg_offsets.vr0_offset = offsetof (struct vreg, vreg);
147 ppcobsd_reg_offsets.vscr_offset = offsetof (struct vreg, vscr);
148 ppcobsd_reg_offsets.vrsave_offset = offsetof (struct vreg, vrsave);
0ae4f2cb
MK
149
150 /* Support debugging kernel virtual memory images. */
151 bsd_kvm_add_target (ppcobsd_supply_pcb);
d195bc9f 152}
This page took 0.221743 seconds and 4 git commands to generate.