1 /* Host-dependent code for Sun-3 for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1989, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
25 #include <sys/ptrace.h>
26 #define KERNEL /* To get floating point reg definitions */
27 #include <machine/reg.h>
29 static void fetch_core_registers (char *, unsigned, int, CORE_ADDR
);
32 fetch_inferior_registers (int regno
)
34 struct regs inferior_registers
;
35 struct fp_status inferior_fp_registers
;
39 ptrace (PTRACE_GETREGS
, inferior_pid
,
40 (PTRACE_ARG3_TYPE
) & inferior_registers
);
43 ptrace (PTRACE_GETFPREGS
, inferior_pid
,
44 (PTRACE_ARG3_TYPE
) & inferior_fp_registers
);
46 memcpy (registers
, &inferior_registers
, 16 * 4);
48 memcpy (®isters
[REGISTER_BYTE (FP0_REGNUM
)], &inferior_fp_registers
,
49 sizeof inferior_fp_registers
.fps_regs
);
51 *(int *) ®isters
[REGISTER_BYTE (PS_REGNUM
)] = inferior_registers
.r_ps
;
52 *(int *) ®isters
[REGISTER_BYTE (PC_REGNUM
)] = inferior_registers
.r_pc
;
54 memcpy (®isters
[REGISTER_BYTE (FPC_REGNUM
)],
55 &inferior_fp_registers
.fps_control
,
56 sizeof inferior_fp_registers
-
57 sizeof inferior_fp_registers
.fps_regs
);
60 /* Store our register values back into the inferior.
61 If REGNO is -1, do this for all registers.
62 Otherwise, REGNO specifies which register (so we can save time). */
65 store_inferior_registers (int regno
)
67 struct regs inferior_registers
;
68 struct fp_status inferior_fp_registers
;
70 memcpy (&inferior_registers
, registers
, 16 * 4);
72 memcpy (&inferior_fp_registers
, ®isters
[REGISTER_BYTE (FP0_REGNUM
)],
73 sizeof inferior_fp_registers
.fps_regs
);
75 inferior_registers
.r_ps
= *(int *) ®isters
[REGISTER_BYTE (PS_REGNUM
)];
76 inferior_registers
.r_pc
= *(int *) ®isters
[REGISTER_BYTE (PC_REGNUM
)];
79 memcpy (&inferior_fp_registers
.fps_control
,
80 ®isters
[REGISTER_BYTE (FPC_REGNUM
)],
81 sizeof inferior_fp_registers
-
82 sizeof inferior_fp_registers
.fps_regs
);
84 ptrace (PTRACE_SETREGS
, inferior_pid
,
85 (PTRACE_ARG3_TYPE
) & inferior_registers
);
87 ptrace (PTRACE_SETFPREGS
, inferior_pid
,
88 (PTRACE_ARG3_TYPE
) & inferior_fp_registers
);
92 /* All of this stuff is only relevant if both host and target are sun3. */
93 /* Machine-dependent code for pulling registers out of a Sun-3 core file. */
96 fetch_core_registers (core_reg_sect
, core_reg_size
, which
, reg_addr
)
98 unsigned core_reg_size
;
100 CORE_ADDR reg_addr
; /* Unused in this version */
102 struct regs
*regs
= (struct regs
*) core_reg_sect
;
106 if (core_reg_size
< sizeof (struct regs
))
107 error ("Can't find registers in core file");
109 memcpy (registers
, (char *) regs
, 16 * 4);
110 supply_register (PS_REGNUM
, (char *) ®s
->r_ps
);
111 supply_register (PC_REGNUM
, (char *) ®s
->r_pc
);
117 #define fpustruct ((struct fpu *) core_reg_sect)
119 if (core_reg_size
>= sizeof (struct fpu
))
123 memcpy (®isters
[REGISTER_BYTE (FP0_REGNUM
)],
124 fpustruct
->f_fpstatus
.fps_regs
,
125 sizeof fpustruct
->f_fpstatus
.fps_regs
);
126 memcpy (®isters
[REGISTER_BYTE (FPC_REGNUM
)],
127 &fpustruct
->f_fpstatus
.fps_control
,
128 sizeof fpustruct
->f_fpstatus
-
129 sizeof fpustruct
->f_fpstatus
.fps_regs
);
133 fprintf_unfiltered (gdb_stderr
,
134 "Couldn't read float regs from core file\n");
139 /* Register that we are able to handle sun3 core file formats.
140 FIXME: is this really bfd_target_unknown_flavour? */
142 static struct core_fns sun3_core_fns
=
144 bfd_target_unknown_flavour
, /* core_flavour */
145 default_check_format
, /* check_format */
146 default_core_sniffer
, /* core_sniffer */
147 fetch_core_registers
, /* core_read_registers */
152 _initialize_core_sun3 (void)
154 add_core_fns (&sun3_core_fns
);