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