* parse.c (write_dollar_variable): New function.
[deliverable/binutils-gdb.git] / gdb / sun3-nat.c
CommitLineData
93282e61
RP
1/* Host-dependent code for Sun-3 for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1989, 1991, 1992 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
6c9638b4 18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
93282e61
RP
19
20#include "defs.h"
21#include "inferior.h"
22#include "gdbcore.h"
23
24#include <sys/ptrace.h>
25#define KERNEL /* To get floating point reg definitions */
26#include <machine/reg.h>
27
28void
29fetch_inferior_registers (regno)
30 int regno;
31{
32 struct regs inferior_registers;
33#ifdef FP0_REGNUM
34 struct fp_status inferior_fp_registers;
35#endif
36 extern char registers[];
37
38 registers_fetched ();
39
40 ptrace (PTRACE_GETREGS, inferior_pid,
41 (PTRACE_ARG3_TYPE) &inferior_registers);
42#ifdef FP0_REGNUM
43 ptrace (PTRACE_GETFPREGS, inferior_pid,
44 (PTRACE_ARG3_TYPE) &inferior_fp_registers);
45#endif
46
ade40d31 47 memcpy (registers, &inferior_registers, 16 * 4);
93282e61 48#ifdef FP0_REGNUM
ade40d31 49 memcpy (&registers[REGISTER_BYTE (FP0_REGNUM)], &inferior_fp_registers,
93282e61
RP
50 sizeof inferior_fp_registers.fps_regs);
51#endif
52 *(int *)&registers[REGISTER_BYTE (PS_REGNUM)] = inferior_registers.r_ps;
53 *(int *)&registers[REGISTER_BYTE (PC_REGNUM)] = inferior_registers.r_pc;
54#ifdef FP0_REGNUM
ade40d31
RP
55 memcpy (&registers[REGISTER_BYTE (FPC_REGNUM)],
56 &inferior_fp_registers.fps_control,
93282e61
RP
57 sizeof inferior_fp_registers - sizeof inferior_fp_registers.fps_regs);
58#endif
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
65void
66store_inferior_registers (regno)
67 int regno;
68{
69 struct regs inferior_registers;
70#ifdef FP0_REGNUM
71 struct fp_status inferior_fp_registers;
72#endif
73 extern char registers[];
74
ade40d31 75 memcpy (&inferior_registers, registers, 16 * 4);
93282e61 76#ifdef FP0_REGNUM
ade40d31 77 memcpy (&inferior_fp_registers, &registers[REGISTER_BYTE (FP0_REGNUM)],
93282e61
RP
78 sizeof inferior_fp_registers.fps_regs);
79#endif
80 inferior_registers.r_ps = *(int *)&registers[REGISTER_BYTE (PS_REGNUM)];
81 inferior_registers.r_pc = *(int *)&registers[REGISTER_BYTE (PC_REGNUM)];
82
83#ifdef FP0_REGNUM
ade40d31
RP
84 memcpy (&inferior_fp_registers.fps_control,
85 &registers[REGISTER_BYTE (FPC_REGNUM)],
93282e61
RP
86 sizeof inferior_fp_registers - sizeof inferior_fp_registers.fps_regs);
87#endif
88
89 ptrace (PTRACE_SETREGS, inferior_pid,
90 (PTRACE_ARG3_TYPE) &inferior_registers);
91#if FP0_REGNUM
92 ptrace (PTRACE_SETFPREGS, inferior_pid,
93 (PTRACE_ARG3_TYPE) &inferior_fp_registers);
94#endif
95}
96
97
98/* All of this stuff is only relevant if both host and target are sun3. */
99/* Machine-dependent code for pulling registers out of a Sun-3 core file. */
100
101void
102fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
103 char *core_reg_sect;
104 unsigned core_reg_size;
105 int which;
106 unsigned int reg_addr; /* Unused in this version */
107{
108 extern char registers[];
109 struct regs *regs = (struct regs *) core_reg_sect;
110
111 if (which == 0) {
112 if (core_reg_size < sizeof (struct regs))
113 error ("Can't find registers in core file");
114
ade40d31 115 memcpy (registers, (char *)regs, 16 * 4);
93282e61
RP
116 supply_register (PS_REGNUM, (char *)&regs->r_ps);
117 supply_register (PC_REGNUM, (char *)&regs->r_pc);
118
119 } else if (which == 2) {
120
121#define fpustruct ((struct fpu *) core_reg_sect)
122
123 if (core_reg_size >= sizeof (struct fpu))
124 {
125#ifdef FP0_REGNUM
ade40d31
RP
126 memcpy (&registers[REGISTER_BYTE (FP0_REGNUM)],
127 fpustruct->f_fpstatus.fps_regs,
93282e61 128 sizeof fpustruct->f_fpstatus.fps_regs);
ade40d31
RP
129 memcpy (&registers[REGISTER_BYTE (FPC_REGNUM)],
130 &fpustruct->f_fpstatus.fps_control,
93282e61
RP
131 sizeof fpustruct->f_fpstatus -
132 sizeof fpustruct->f_fpstatus.fps_regs);
133#endif
134 }
135 else
199b2450 136 fprintf_unfiltered (gdb_stderr, "Couldn't read float regs from core file\n");
93282e61
RP
137 }
138}
This page took 0.202419 seconds and 4 git commands to generate.