* remote.c (remote_write_bytes): Add default case to switch
[deliverable/binutils-gdb.git] / gdb / a68v-nat.c
CommitLineData
c906108c
SS
1/* Host-dependent code for Apollo-68ks for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1989, 1991 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
24#ifndef _ISP__M68K
25#define _ISP__M68K 1
26#endif
27
28#include <ptrace.h>
29
30extern int errno;
31
32void
fba45db2 33fetch_inferior_registers (int ignored)
c906108c
SS
34{
35 struct ptrace_$data_regs_m68k inferior_registers;
36 struct ptrace_$floating_regs_m68k inferior_fp_registers;
37 struct ptrace_$control_regs_m68k inferior_control_registers;
c906108c 38
c5aa993b
JM
39 ptrace_$init_control (&inferior_control_registers);
40 inferior_fp_registers.size = sizeof (inferior_fp_registers);
c906108c
SS
41
42 registers_fetched ();
c5aa993b 43
c906108c 44 ptrace (PTRACE_GETREGS, inferior_pid,
c5aa993b 45 (PTRACE_ARG3_TYPE) & inferior_registers,
c906108c 46 ptrace_$data_set,
c5aa993b 47 (PTRACE_ARG3_TYPE) & inferior_registers,
c906108c
SS
48 ptrace_$data_set);
49
50 ptrace (PTRACE_GETREGS, inferior_pid,
c5aa993b
JM
51 (PTRACE_ARG3_TYPE) & inferior_fp_registers,
52 ptrace_$floating_set_m68k,
53 (PTRACE_ARG3_TYPE) & inferior_fp_registers,
54 ptrace_$floating_set_m68k);
c906108c
SS
55
56 ptrace (PTRACE_GETREGS, inferior_pid,
c5aa993b
JM
57 (PTRACE_ARG3_TYPE) & inferior_control_registers,
58 ptrace_$control_set_m68k,
59 (PTRACE_ARG3_TYPE) & inferior_control_registers,
60 ptrace_$control_set_m68k);
c906108c
SS
61
62 bcopy (&inferior_registers, registers, 16 * 4);
63 bcopy (&inferior_fp_registers, &registers[REGISTER_BYTE (FP0_REGNUM)],
64 sizeof inferior_fp_registers.regs);
c5aa993b
JM
65 *(int *) &registers[REGISTER_BYTE (PS_REGNUM)] = inferior_control_registers.sr;
66 *(int *) &registers[REGISTER_BYTE (PC_REGNUM)] = inferior_control_registers.pc;
c906108c
SS
67}
68
69/* Store our register values back into the inferior.
70 If REGNO is -1, do this for all registers.
71 Otherwise, REGNO specifies which register (so we can save time). */
72
73void
fba45db2 74store_inferior_registers (int regno)
c906108c
SS
75{
76 struct ptrace_$data_regs_m68k inferior_registers;
77 struct ptrace_$floating_regs_m68k inferior_fp_registers;
78 struct ptrace_$control_regs_m68k inferior_control_registers;
c906108c 79
c5aa993b
JM
80 ptrace_$init_control (&inferior_control_registers);
81 inferior_fp_registers.size = sizeof (inferior_fp_registers);
c906108c
SS
82
83 ptrace (PTRACE_GETREGS, inferior_pid,
c5aa993b
JM
84 (PTRACE_ARG3_TYPE) & inferior_fp_registers,
85 ptrace_$floating_set_m68k,
86 (PTRACE_ARG3_TYPE) & inferior_fp_registers,
87 ptrace_$floating_set_m68k);
c906108c
SS
88
89 ptrace (PTRACE_GETREGS, inferior_pid,
c5aa993b
JM
90 (PTRACE_ARG3_TYPE) & inferior_control_registers,
91 ptrace_$control_set_m68k,
92 (PTRACE_ARG3_TYPE) & inferior_control_registers,
93 ptrace_$control_set_m68k);
c906108c 94
c5aa993b 95 bcopy (registers, &inferior_registers, sizeof (inferior_registers));
c906108c
SS
96
97 bcopy (&registers[REGISTER_BYTE (FP0_REGNUM)], inferior_fp_registers.regs,
98 sizeof inferior_fp_registers.regs);
99
c5aa993b
JM
100 inferior_control_registers.sr = *(int *) &registers[REGISTER_BYTE (PS_REGNUM)];
101 inferior_control_registers.pc = *(int *) &registers[REGISTER_BYTE (PC_REGNUM)];
c906108c
SS
102
103 ptrace (PTRACE_SETREGS, inferior_pid,
c5aa993b 104 (PTRACE_ARG3_TYPE) & inferior_registers,
c906108c 105 ptrace_$data_set_m68k,
c5aa993b 106 (PTRACE_ARG3_TYPE) & inferior_registers,
c906108c
SS
107 ptrace_$data_set_m68k);
108
109 ptrace (PTRACE_SETREGS, inferior_pid,
c5aa993b 110 (PTRACE_ARG3_TYPE) & inferior_fp_registers,
c906108c 111 ptrace_$floating_set_m68k,
c5aa993b 112 (PTRACE_ARG3_TYPE) & inferior_fp_registers,
c906108c
SS
113 ptrace_$floating_set_m68k);
114
115 ptrace (PTRACE_SETREGS, inferior_pid,
c5aa993b 116 (PTRACE_ARG3_TYPE) & inferior_control_registers,
c906108c 117 ptrace_$control_set_m68k,
c5aa993b 118 (PTRACE_ARG3_TYPE) & inferior_control_registers,
c906108c
SS
119 ptrace_$control_set_m68k);
120}
This page took 0.071566 seconds and 4 git commands to generate.