]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/sparc-nat.c
Add --enable-auto-import extension.
[thirdparty/binutils-gdb.git] / gdb / sparc-nat.c
CommitLineData
c906108c 1/* Functions specific to running gdb native on a SPARC running SunOS4.
b6ba6518
KB
2 Copyright 1989, 1992, 1993, 1994, 1996, 1997, 1998, 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 "target.h"
25#include "gdbcore.h"
4e052eda 26#include "regcache.h"
c906108c 27
7781cd62
DB
28#ifdef HAVE_SYS_PARAM_H
29#include <sys/param.h>
30#endif
c906108c
SS
31#include <signal.h>
32#include <sys/ptrace.h>
33#include <sys/wait.h>
34#ifdef __linux__
35#include <asm/reg.h>
36#else
37#include <machine/reg.h>
38#endif
39#include <sys/user.h>
40
41/* We don't store all registers immediately when requested, since they
42 get sent over in large chunks anyway. Instead, we accumulate most
43 of the changes and send them over once. "deferred_stores" keeps
44 track of which sets of registers we have locally-changed copies of,
45 so we only need send the groups that have changed. */
46
47#define INT_REGS 1
48#define STACK_REGS 2
49#define FP_REGS 4
50
c906108c
SS
51/* Fetch one or more registers from the inferior. REGNO == -1 to get
52 them all. We actually fetch more than requested, when convenient,
53 marking them as valid so we won't fetch them again. */
54
55void
fba45db2 56fetch_inferior_registers (int regno)
c906108c
SS
57{
58 struct regs inferior_registers;
59 struct fp_status inferior_fp_registers;
60 int i;
61
62 /* We should never be called with deferred stores, because a prerequisite
63 for writing regs is to have fetched them all (PREPARE_TO_STORE), sigh. */
c5aa993b 64 if (deferred_stores)
e1e9e218 65 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
66
67 DO_DEFERRED_STORES;
68
69 /* Global and Out regs are fetched directly, as well as the control
70 registers. If we're getting one of the in or local regs,
71 and the stack pointer has not yet been fetched,
72 we have to do that first, since they're found in memory relative
73 to the stack pointer. */
c5aa993b 74 if (regno < O7_REGNUM /* including -1 */
c906108c 75 || regno >= Y_REGNUM
8262ee23 76 || (!deprecated_register_valid[SP_REGNUM] && regno < I7_REGNUM))
c906108c 77 {
39f77062 78 if (0 != ptrace (PTRACE_GETREGS, PIDGET (inferior_ptid),
c5aa993b
JM
79 (PTRACE_ARG3_TYPE) & inferior_registers, 0))
80 perror ("ptrace_getregs");
81
c906108c
SS
82 registers[REGISTER_BYTE (0)] = 0;
83 memcpy (&registers[REGISTER_BYTE (1)], &inferior_registers.r_g1,
84 15 * REGISTER_RAW_SIZE (G0_REGNUM));
c5aa993b
JM
85 *(int *) &registers[REGISTER_BYTE (PS_REGNUM)] = inferior_registers.r_ps;
86 *(int *) &registers[REGISTER_BYTE (PC_REGNUM)] = inferior_registers.r_pc;
87 *(int *) &registers[REGISTER_BYTE (NPC_REGNUM)] = inferior_registers.r_npc;
88 *(int *) &registers[REGISTER_BYTE (Y_REGNUM)] = inferior_registers.r_y;
c906108c
SS
89
90 for (i = G0_REGNUM; i <= O7_REGNUM; i++)
8262ee23
AC
91 deprecated_register_valid[i] = 1;
92 deprecated_register_valid[Y_REGNUM] = 1;
93 deprecated_register_valid[PS_REGNUM] = 1;
94 deprecated_register_valid[PC_REGNUM] = 1;
95 deprecated_register_valid[NPC_REGNUM] = 1;
c906108c 96 /* If we don't set these valid, read_register_bytes() rereads
c5aa993b 97 all the regs every time it is called! FIXME. */
8262ee23
AC
98 deprecated_register_valid[WIM_REGNUM] = 1; /* Not true yet, FIXME */
99 deprecated_register_valid[TBR_REGNUM] = 1; /* Not true yet, FIXME */
100 deprecated_register_valid[CPS_REGNUM] = 1; /* Not true yet, FIXME */
c906108c
SS
101 }
102
103 /* Floating point registers */
104 if (regno == -1 ||
105 regno == FPS_REGNUM ||
106 (regno >= FP0_REGNUM && regno <= FP0_REGNUM + 31))
107 {
39f77062 108 if (0 != ptrace (PTRACE_GETFPREGS, PIDGET (inferior_ptid),
c5aa993b 109 (PTRACE_ARG3_TYPE) & inferior_fp_registers,
c906108c 110 0))
c5aa993b 111 perror ("ptrace_getfpregs");
c906108c
SS
112 memcpy (&registers[REGISTER_BYTE (FP0_REGNUM)], &inferior_fp_registers,
113 sizeof inferior_fp_registers.fpu_fr);
114 memcpy (&registers[REGISTER_BYTE (FPS_REGNUM)],
c5aa993b
JM
115 &inferior_fp_registers.Fpu_fsr,
116 sizeof (FPU_FSR_TYPE));
117 for (i = FP0_REGNUM; i <= FP0_REGNUM + 31; i++)
8262ee23
AC
118 deprecated_register_valid[i] = 1;
119 deprecated_register_valid[FPS_REGNUM] = 1;
c906108c
SS
120 }
121
122 /* These regs are saved on the stack by the kernel. Only read them
123 all (16 ptrace calls!) if we really need them. */
124 if (regno == -1)
125 {
7d69eeec
JJ
126 CORE_ADDR sp = *(unsigned int *) & registers[REGISTER_BYTE (SP_REGNUM)];
127 target_read_memory (sp, &registers[REGISTER_BYTE (L0_REGNUM)],
c5aa993b 128 16 * REGISTER_RAW_SIZE (L0_REGNUM));
c906108c 129 for (i = L0_REGNUM; i <= I7_REGNUM; i++)
8262ee23 130 deprecated_register_valid[i] = 1;
c906108c
SS
131 }
132 else if (regno >= L0_REGNUM && regno <= I7_REGNUM)
133 {
7d69eeec 134 CORE_ADDR sp = *(unsigned int *) & registers[REGISTER_BYTE (SP_REGNUM)];
c906108c 135 i = REGISTER_BYTE (regno);
8262ee23 136 if (deprecated_register_valid[regno])
c5aa993b 137 printf_unfiltered ("register %d valid and read\n", regno);
c906108c
SS
138 target_read_memory (sp + i - REGISTER_BYTE (L0_REGNUM),
139 &registers[i], REGISTER_RAW_SIZE (regno));
8262ee23 140 deprecated_register_valid[regno] = 1;
c906108c
SS
141 }
142}
143
144/* Store our register values back into the inferior.
145 If REGNO is -1, do this for all registers.
146 Otherwise, REGNO specifies which register (so we can save time). */
147
148void
fba45db2 149store_inferior_registers (int regno)
c906108c
SS
150{
151 struct regs inferior_registers;
152 struct fp_status inferior_fp_registers;
153 int wanna_store = INT_REGS + STACK_REGS + FP_REGS;
154
155 /* First decide which pieces of machine-state we need to modify.
156 Default for regno == -1 case is all pieces. */
157 if (regno >= 0)
e1925118
DM
158 {
159 if (FP0_REGNUM <= regno && regno < FP0_REGNUM + 32)
160 {
c906108c 161 wanna_store = FP_REGS;
e1925118
DM
162 }
163 else
164 {
165 if (regno == SP_REGNUM)
166 wanna_store = INT_REGS + STACK_REGS;
167 else if (regno < L0_REGNUM || regno > I7_REGNUM)
168 wanna_store = INT_REGS;
169 else if (regno == FPS_REGNUM)
170 wanna_store = FP_REGS;
171 else
172 wanna_store = STACK_REGS;
173 }
174 }
c906108c
SS
175
176 /* See if we're forcing the stores to happen now, or deferring. */
177 if (regno == -2)
178 {
179 wanna_store = deferred_stores;
180 deferred_stores = 0;
181 }
182 else
183 {
184 if (wanna_store == STACK_REGS)
185 {
186 /* Fall through and just store one stack reg. If we deferred
187 it, we'd have to store them all, or remember more info. */
188 }
189 else
190 {
191 deferred_stores |= wanna_store;
192 return;
193 }
194 }
195
196 if (wanna_store & STACK_REGS)
197 {
7d69eeec 198 CORE_ADDR sp = *(unsigned int *) & registers[REGISTER_BYTE (SP_REGNUM)];
c906108c
SS
199
200 if (regno < 0 || regno == SP_REGNUM)
201 {
8262ee23 202 if (!deprecated_register_valid[L0_REGNUM + 5])
e1e9e218 203 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c5aa993b 204 target_write_memory (sp,
c906108c 205 &registers[REGISTER_BYTE (L0_REGNUM)],
c5aa993b 206 16 * REGISTER_RAW_SIZE (L0_REGNUM));
c906108c
SS
207 }
208 else
209 {
8262ee23 210 if (!deprecated_register_valid[regno])
e1e9e218 211 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
212 target_write_memory (sp + REGISTER_BYTE (regno) - REGISTER_BYTE (L0_REGNUM),
213 &registers[REGISTER_BYTE (regno)],
214 REGISTER_RAW_SIZE (regno));
215 }
c5aa993b 216
c906108c
SS
217 }
218
219 if (wanna_store & INT_REGS)
220 {
8262ee23 221 if (!deprecated_register_valid[G1_REGNUM])
e1e9e218 222 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
223
224 memcpy (&inferior_registers.r_g1, &registers[REGISTER_BYTE (G1_REGNUM)],
225 15 * REGISTER_RAW_SIZE (G1_REGNUM));
226
227 inferior_registers.r_ps =
c5aa993b 228 *(int *) &registers[REGISTER_BYTE (PS_REGNUM)];
c906108c 229 inferior_registers.r_pc =
c5aa993b 230 *(int *) &registers[REGISTER_BYTE (PC_REGNUM)];
c906108c 231 inferior_registers.r_npc =
c5aa993b 232 *(int *) &registers[REGISTER_BYTE (NPC_REGNUM)];
c906108c 233 inferior_registers.r_y =
c5aa993b 234 *(int *) &registers[REGISTER_BYTE (Y_REGNUM)];
c906108c 235
39f77062 236 if (0 != ptrace (PTRACE_SETREGS, PIDGET (inferior_ptid),
c5aa993b
JM
237 (PTRACE_ARG3_TYPE) & inferior_registers, 0))
238 perror ("ptrace_setregs");
c906108c
SS
239 }
240
241 if (wanna_store & FP_REGS)
242 {
8262ee23 243 if (!deprecated_register_valid[FP0_REGNUM + 9])
e1e9e218 244 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c
SS
245 memcpy (&inferior_fp_registers, &registers[REGISTER_BYTE (FP0_REGNUM)],
246 sizeof inferior_fp_registers.fpu_fr);
c5aa993b 247 memcpy (&inferior_fp_registers.Fpu_fsr,
c906108c
SS
248 &registers[REGISTER_BYTE (FPS_REGNUM)], sizeof (FPU_FSR_TYPE));
249 if (0 !=
39f77062 250 ptrace (PTRACE_SETFPREGS, PIDGET (inferior_ptid),
c5aa993b
JM
251 (PTRACE_ARG3_TYPE) & inferior_fp_registers, 0))
252 perror ("ptrace_setfpregs");
c906108c
SS
253 }
254}
255
c67b4c45
KB
256/* Provide registers to GDB from a core file.
257
258 CORE_REG_SECT points to an array of bytes, which are the contents
259 of a `note' from a core file which BFD thinks might contain
260 register contents. CORE_REG_SIZE is its size.
261
262 WHICH says which register set corelow suspects this is:
263 0 --- the general-purpose register set
264 2 --- the floating-point register set
265
266 IGNORE is unused. */
c906108c
SS
267
268static void
c67b4c45
KB
269fetch_core_registers (char *core_reg_sect, unsigned core_reg_size,
270 int which, CORE_ADDR ignore)
c906108c
SS
271{
272
c5aa993b
JM
273 if (which == 0)
274 {
c906108c 275
c5aa993b 276 /* Integer registers */
c906108c
SS
277
278#define gregs ((struct regs *)core_reg_sect)
c5aa993b
JM
279 /* G0 *always* holds 0. */
280 *(int *) &registers[REGISTER_BYTE (0)] = 0;
c906108c 281
c5aa993b
JM
282 /* The globals and output registers. */
283 memcpy (&registers[REGISTER_BYTE (G1_REGNUM)], &gregs->r_g1,
284 15 * REGISTER_RAW_SIZE (G1_REGNUM));
285 *(int *) &registers[REGISTER_BYTE (PS_REGNUM)] = gregs->r_ps;
286 *(int *) &registers[REGISTER_BYTE (PC_REGNUM)] = gregs->r_pc;
287 *(int *) &registers[REGISTER_BYTE (NPC_REGNUM)] = gregs->r_npc;
288 *(int *) &registers[REGISTER_BYTE (Y_REGNUM)] = gregs->r_y;
289
290 /* My best guess at where to get the locals and input
291 registers is exactly where they usually are, right above
292 the stack pointer. If the core dump was caused by a bus error
293 from blowing away the stack pointer (as is possible) then this
294 won't work, but it's worth the try. */
295 {
296 int sp;
297
298 sp = *(int *) &registers[REGISTER_BYTE (SP_REGNUM)];
299 if (0 != target_read_memory (sp, &registers[REGISTER_BYTE (L0_REGNUM)],
300 16 * REGISTER_RAW_SIZE (L0_REGNUM)))
301 {
302 /* fprintf_unfiltered so user can still use gdb */
303 fprintf_unfiltered (gdb_stderr,
304 "Couldn't read input and local registers from core file\n");
305 }
306 }
c906108c 307 }
c5aa993b
JM
308 else if (which == 2)
309 {
c906108c 310
c5aa993b 311 /* Floating point registers */
c906108c
SS
312
313#define fpuregs ((struct fpu *) core_reg_sect)
c5aa993b
JM
314 if (core_reg_size >= sizeof (struct fpu))
315 {
316 memcpy (&registers[REGISTER_BYTE (FP0_REGNUM)], fpuregs->fpu_regs,
317 sizeof (fpuregs->fpu_regs));
318 memcpy (&registers[REGISTER_BYTE (FPS_REGNUM)], &fpuregs->fpu_fsr,
319 sizeof (FPU_FSR_TYPE));
320 }
321 else
322 fprintf_unfiltered (gdb_stderr, "Couldn't read float regs from core file\n");
323 }
c906108c
SS
324}
325
326int
fba45db2 327kernel_u_size (void)
c906108c
SS
328{
329 return (sizeof (struct user));
330}
c906108c 331\f
c5aa993b 332
c906108c
SS
333/* Register that we are able to handle sparc core file formats.
334 FIXME: is this really bfd_target_unknown_flavour? */
335
336static struct core_fns sparc_core_fns =
337{
2acceee2
JM
338 bfd_target_unknown_flavour, /* core_flavour */
339 default_check_format, /* check_format */
340 default_core_sniffer, /* core_sniffer */
341 fetch_core_registers, /* core_read_registers */
342 NULL /* next */
c906108c
SS
343};
344
345void
fba45db2 346_initialize_core_sparc (void)
c906108c
SS
347{
348 add_core_fns (&sparc_core_fns);
349}