1 /* Native-dependent code for MIPS systems running NetBSD.
3 Copyright (C) 2000, 2001, 2002, 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., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
27 #include <sys/types.h>
28 #include <sys/ptrace.h>
29 #include <machine/reg.h>
32 #include "mips-tdep.h"
33 #include "mipsnbsd-tdep.h"
34 #include "inf-ptrace.h"
36 /* Determine if PT_GETREGS fetches this register. */
38 getregs_supplies (int regno
)
40 return ((regno
) >= MIPS_ZERO_REGNUM
&& (regno
) <= PC_REGNUM
);
44 mipsnbsd_fetch_inferior_registers (int regno
)
46 if (regno
== -1 || getregs_supplies (regno
))
50 if (ptrace (PT_GETREGS
, PIDGET (inferior_ptid
),
51 (PTRACE_TYPE_ARG3
) ®s
, 0) == -1)
52 perror_with_name (_("Couldn't get registers"));
54 mipsnbsd_supply_reg ((char *) ®s
, regno
);
59 if (regno
== -1 || regno
>= FP0_REGNUM
)
63 if (ptrace (PT_GETFPREGS
, PIDGET (inferior_ptid
),
64 (PTRACE_TYPE_ARG3
) &fpregs
, 0) == -1)
65 perror_with_name (_("Couldn't get floating point status"));
67 mipsnbsd_supply_fpreg ((char *) &fpregs
, regno
);
72 mipsnbsd_store_inferior_registers (int regno
)
74 if (regno
== -1 || getregs_supplies (regno
))
78 if (ptrace (PT_GETREGS
, PIDGET (inferior_ptid
),
79 (PTRACE_TYPE_ARG3
) ®s
, 0) == -1)
80 perror_with_name (_("Couldn't get registers"));
82 mipsnbsd_fill_reg ((char *) ®s
, regno
);
84 if (ptrace (PT_SETREGS
, PIDGET (inferior_ptid
),
85 (PTRACE_TYPE_ARG3
) ®s
, 0) == -1)
86 perror_with_name (_("Couldn't write registers"));
92 if (regno
== -1 || regno
>= FP0_REGNUM
)
96 if (ptrace (PT_GETFPREGS
, PIDGET (inferior_ptid
),
97 (PTRACE_TYPE_ARG3
) &fpregs
, 0) == -1)
98 perror_with_name (_("Couldn't get floating point status"));
100 mipsnbsd_fill_fpreg ((char *) &fpregs
, regno
);
102 if (ptrace (PT_SETFPREGS
, PIDGET (inferior_ptid
),
103 (PTRACE_TYPE_ARG3
) &fpregs
, 0) == -1)
104 perror_with_name (_("Couldn't write floating point status"));
109 /* Provide a prototype to silence -Wmissing-prototypes. */
110 void _initialize_mipsnbsd_nat (void);
113 _initialize_mipsnbsd_nat (void)
115 struct target_ops
*t
;
117 t
= inf_ptrace_target ();
118 t
->to_fetch_registers
= mipsnbsd_fetch_inferior_registers
;
119 t
->to_store_registers
= mipsnbsd_store_inferior_registers
;
120 t
->to_pid_to_exec_file
= nbsd_pid_to_exec_file
;