]>
Commit | Line | Data |
---|---|---|
c906108c SS |
1 | /* Host-dependent code for Sun-3 for GDB, the GNU debugger. |
2 | Copyright 1986, 1987, 1989, 1991, 1992 Free Software Foundation, Inc. | |
3 | ||
c5aa993b | 4 | This file is part of GDB. |
c906108c | 5 | |
c5aa993b JM |
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. | |
c906108c | 10 | |
c5aa993b JM |
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. | |
c906108c | 15 | |
c5aa993b JM |
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. */ | |
c906108c SS |
20 | |
21 | #include "defs.h" | |
22 | #include "inferior.h" | |
23 | #include "gdbcore.h" | |
24 | ||
25 | #include <sys/ptrace.h> | |
c5aa993b | 26 | #define KERNEL /* To get floating point reg definitions */ |
c906108c SS |
27 | #include <machine/reg.h> |
28 | ||
a14ed312 | 29 | static void fetch_core_registers (char *, unsigned, int, CORE_ADDR); |
c906108c SS |
30 | |
31 | void | |
32 | fetch_inferior_registers (regno) | |
33 | int regno; | |
34 | { | |
35 | struct regs inferior_registers; | |
c906108c | 36 | struct fp_status inferior_fp_registers; |
c906108c SS |
37 | |
38 | registers_fetched (); | |
c5aa993b | 39 | |
c906108c | 40 | ptrace (PTRACE_GETREGS, inferior_pid, |
c5aa993b | 41 | (PTRACE_ARG3_TYPE) & inferior_registers); |
60054393 MS |
42 | |
43 | if (FP0_REGNUM >= 0) | |
44 | ptrace (PTRACE_GETFPREGS, inferior_pid, | |
45 | (PTRACE_ARG3_TYPE) & inferior_fp_registers); | |
c5aa993b | 46 | |
c906108c | 47 | memcpy (registers, &inferior_registers, 16 * 4); |
60054393 MS |
48 | if (FP0_REGNUM >= 0) |
49 | memcpy (®isters[REGISTER_BYTE (FP0_REGNUM)], &inferior_fp_registers, | |
50 | sizeof inferior_fp_registers.fps_regs); | |
51 | ||
c5aa993b JM |
52 | *(int *) ®isters[REGISTER_BYTE (PS_REGNUM)] = inferior_registers.r_ps; |
53 | *(int *) ®isters[REGISTER_BYTE (PC_REGNUM)] = inferior_registers.r_pc; | |
60054393 MS |
54 | if (FP0_REGNUM >= 0) |
55 | memcpy (®isters[REGISTER_BYTE (FPC_REGNUM)], | |
56 | &inferior_fp_registers.fps_control, | |
57 | sizeof inferior_fp_registers - | |
58 | sizeof inferior_fp_registers.fps_regs); | |
c906108c SS |
59 | } |
60 | ||
61 | /* Store our register values back into the inferior. | |
62 | If REGNO is -1, do this for all registers. | |
63 | Otherwise, REGNO specifies which register (so we can save time). */ | |
64 | ||
65 | void | |
66 | store_inferior_registers (regno) | |
67 | int regno; | |
68 | { | |
69 | struct regs inferior_registers; | |
c906108c | 70 | struct fp_status inferior_fp_registers; |
c906108c SS |
71 | |
72 | memcpy (&inferior_registers, registers, 16 * 4); | |
60054393 MS |
73 | if (FP0_REGNUM >= 0) |
74 | memcpy (&inferior_fp_registers, ®isters[REGISTER_BYTE (FP0_REGNUM)], | |
75 | sizeof inferior_fp_registers.fps_regs); | |
76 | ||
c5aa993b JM |
77 | inferior_registers.r_ps = *(int *) ®isters[REGISTER_BYTE (PS_REGNUM)]; |
78 | inferior_registers.r_pc = *(int *) ®isters[REGISTER_BYTE (PC_REGNUM)]; | |
c906108c | 79 | |
60054393 MS |
80 | if (FP0_REGNUM >= 0) |
81 | memcpy (&inferior_fp_registers.fps_control, | |
82 | ®isters[REGISTER_BYTE (FPC_REGNUM)], | |
83 | sizeof inferior_fp_registers - | |
84 | sizeof inferior_fp_registers.fps_regs); | |
c906108c SS |
85 | |
86 | ptrace (PTRACE_SETREGS, inferior_pid, | |
c5aa993b | 87 | (PTRACE_ARG3_TYPE) & inferior_registers); |
60054393 MS |
88 | if (FP0_REGNUM >= 0) |
89 | ptrace (PTRACE_SETFPREGS, inferior_pid, | |
90 | (PTRACE_ARG3_TYPE) & inferior_fp_registers); | |
c906108c SS |
91 | } |
92 | ||
93 | ||
94 | /* All of this stuff is only relevant if both host and target are sun3. */ | |
95 | /* Machine-dependent code for pulling registers out of a Sun-3 core file. */ | |
96 | ||
97 | static void | |
98 | fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) | |
99 | char *core_reg_sect; | |
100 | unsigned core_reg_size; | |
101 | int which; | |
102 | CORE_ADDR reg_addr; /* Unused in this version */ | |
103 | { | |
c906108c SS |
104 | struct regs *regs = (struct regs *) core_reg_sect; |
105 | ||
c5aa993b JM |
106 | if (which == 0) |
107 | { | |
108 | if (core_reg_size < sizeof (struct regs)) | |
109 | error ("Can't find registers in core file"); | |
c906108c | 110 | |
c5aa993b JM |
111 | memcpy (registers, (char *) regs, 16 * 4); |
112 | supply_register (PS_REGNUM, (char *) ®s->r_ps); | |
113 | supply_register (PC_REGNUM, (char *) ®s->r_pc); | |
c906108c | 114 | |
c5aa993b JM |
115 | } |
116 | else if (which == 2) | |
117 | { | |
c906108c SS |
118 | |
119 | #define fpustruct ((struct fpu *) core_reg_sect) | |
120 | ||
c5aa993b JM |
121 | if (core_reg_size >= sizeof (struct fpu)) |
122 | { | |
60054393 MS |
123 | if (FP0_REGNUM >= 0) |
124 | { | |
125 | memcpy (®isters[REGISTER_BYTE (FP0_REGNUM)], | |
126 | fpustruct->f_fpstatus.fps_regs, | |
127 | sizeof fpustruct->f_fpstatus.fps_regs); | |
128 | memcpy (®isters[REGISTER_BYTE (FPC_REGNUM)], | |
129 | &fpustruct->f_fpstatus.fps_control, | |
130 | sizeof fpustruct->f_fpstatus - | |
131 | sizeof fpustruct->f_fpstatus.fps_regs); | |
132 | } | |
c5aa993b JM |
133 | } |
134 | else | |
60054393 MS |
135 | fprintf_unfiltered (gdb_stderr, |
136 | "Couldn't read float regs from core file\n"); | |
c5aa993b | 137 | } |
c906108c | 138 | } |
c906108c | 139 | \f |
c5aa993b | 140 | |
c906108c SS |
141 | /* Register that we are able to handle sun3 core file formats. |
142 | FIXME: is this really bfd_target_unknown_flavour? */ | |
143 | ||
144 | static struct core_fns sun3_core_fns = | |
145 | { | |
2acceee2 JM |
146 | bfd_target_unknown_flavour, /* core_flavour */ |
147 | default_check_format, /* check_format */ | |
148 | default_core_sniffer, /* core_sniffer */ | |
149 | fetch_core_registers, /* core_read_registers */ | |
150 | NULL /* next */ | |
c906108c SS |
151 | }; |
152 | ||
153 | void | |
154 | _initialize_core_sun3 () | |
155 | { | |
156 | add_core_fns (&sun3_core_fns); | |
157 | } |