1 /* Native-dependent code for Motorola 68000 BSD's.
3 Copyright 2004 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., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
26 #include "gdb_assert.h"
27 #include <sys/types.h>
28 #include <sys/ptrace.h>
29 #include <machine/reg.h>
31 #include "m68k-tdep.h"
34 m68kbsd_gregset_supplies_p (int regnum)
36 return (regnum >= M68K_D0_REGNUM && regnum <= M68K_PC_REGNUM);
40 m68kbsd_fpregset_supplies_p (int regnum)
42 return (regnum >= M68K_FP0_REGNUM && regnum <= M68K_FPI_REGNUM);
45 /* Supply the general-purpose registers stored in GREGS to REGCACHE. */
48 m68kbsd_supply_gregset (struct regcache *regcache, const void *gregs)
50 const char *regs = gregs;
53 for (regnum = M68K_D0_REGNUM; regnum <= M68K_PC_REGNUM; regnum++)
54 regcache_raw_supply (regcache, regnum, regs + regnum * 4);
57 /* Supply the floating-point registers stored in FPREGS to REGCACHE. */
60 m68kbsd_supply_fpregset (struct regcache *regcache, const void *fpregs)
62 const char *regs = fpregs;
65 for (regnum = M68K_FP0_REGNUM; regnum <= M68K_FPI_REGNUM; regnum++)
66 regcache_raw_supply (regcache, regnum,
67 regs + m68kbsd_fpreg_offset (regnum));
70 /* Collect the general-purpose registers from REGCACHE and store them
74 m68kbsd_collect_gregset (const struct regcache *regcache,
75 void *gregs, int regnum)
80 for (i = M68K_D0_REGNUM; i <= M68K_PC_REGNUM; i++)
82 if (regnum == -1 || regnum == i)
83 regcache_raw_collect (regcache, i, regs + i * 4);
87 /* Collect the floating-point registers from REGCACHE and store them
91 m68kbsd_collect_fpregset (struct regcache *regcache,
92 void *fpregs, int regnum)
97 for (i = M68K_FP0_REGNUM; i <= M68K_FPI_REGNUM; i++)
99 if (regnum == -1 || regnum == i)
100 regcache_raw_collect (regcache, i, regs + m68kbsd_fpreg_offset (i));
105 /* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
106 for all registers (including the floating-point registers). */
109 fetch_inferior_registers (int regnum)
111 if (regnum == -1 || m68kbsd_gregset_supplies_p (regnum))
115 if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
116 (PTRACE_ARG3_TYPE) ®s, 0) == -1)
117 perror_with_name ("Couldn't get registers");
119 m68kbsd_supply_gregset (current_regcache, ®s);
122 if (regnum == -1 || m68kbsd_fpregset_supplies_p (regnum))
126 if (ptrace (PT_GETFPREGS, PIDGET (inferior_ptid),
127 (PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
128 perror_with_name ("Couldn't get floating point status");
130 m68kbsd_supply_fpregset (current_regcache, &fpregs);
134 /* Store register REGNUM back into the inferior. If REGNUM is -1, do
135 this for all registers (including the floating-point registers). */
138 store_inferior_registers (int regnum)
140 if (regnum == -1 || m68kbsd_gregset_supplies_p (regnum))
144 if (ptrace (PT_GETREGS, PIDGET (inferior_ptid),
145 (PTRACE_ARG3_TYPE) ®s, 0) == -1)
146 perror_with_name ("Couldn't get registers");
148 m68kbsd_collect_gregset (current_regcache, ®s, regnum);
150 if (ptrace (PT_SETREGS, PIDGET (inferior_ptid),
151 (PTRACE_ARG3_TYPE) ®s, 0) == -1)
152 perror_with_name ("Couldn't write registers");
155 if (regnum == -1 || m68kbsd_fpregset_supplies_p (regnum))
159 if (ptrace (PT_GETFPREGS, PIDGET (inferior_ptid),
160 (PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
161 perror_with_name ("Couldn't get floating point status");
163 m68kbsd_collect_fpregset (current_regcache, &fpregs, regnum);
165 if (ptrace (PT_SETFPREGS, PIDGET (inferior_ptid),
166 (PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
167 perror_with_name ("Couldn't write floating point status");