Protoization.
[deliverable/binutils-gdb.git] / gdb / i386mach-nat.c
CommitLineData
c906108c
SS
1/* Native dependent code for Mach 386's for GDB, the GNU debugger.
2 Copyright (C) 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 "frame.h"
23#include "inferior.h"
24#include "gdbcore.h"
25
26#include <sys/param.h>
27#include <sys/dir.h>
28#include <sys/user.h>
29#include <signal.h>
30#include <sys/ioctl.h>
31#include <fcntl.h>
32
33#include <sys/ptrace.h>
34#include <machine/reg.h>
35
36#include <sys/file.h>
37#include "gdb_stat.h"
38#include <sys/core.h>
39
a14ed312 40static void fetch_core_registers (char *, unsigned, int, CORE_ADDR);
c906108c
SS
41
42void
43fetch_inferior_registers (regno)
c5aa993b 44 int regno; /* Original value discarded */
c906108c
SS
45{
46 struct regs inferior_registers;
47 struct fp_state inferior_fp_registers;
c906108c
SS
48
49 registers_fetched ();
50
51 ptrace (PTRACE_GETREGS, inferior_pid,
c5aa993b 52 (PTRACE_ARG3_TYPE) & inferior_registers);
c906108c 53 ptrace (PTRACE_GETFPREGS, inferior_pid,
c5aa993b 54 (PTRACE_ARG3_TYPE) & inferior_fp_registers);
c906108c
SS
55
56 memcpy (registers, &inferior_registers, sizeof inferior_registers);
57
58 memcpy (&registers[REGISTER_BYTE (FP0_REGNUM)],
c5aa993b
JM
59 inferior_fp_registers.f_st,
60 sizeof inferior_fp_registers.f_st);
c906108c 61 memcpy (&registers[REGISTER_BYTE (FPC_REGNUM)],
c5aa993b
JM
62 &inferior_fp_registers.f_ctrl,
63 sizeof inferior_fp_registers - sizeof inferior_fp_registers.f_st);
c906108c
SS
64}
65
66/* Store our register values back into the inferior.
67 If REGNO is -1, do this for all registers.
68 Otherwise, REGNO specifies which register (so we can save time). */
69
70void
fba45db2 71store_inferior_registers (int regno)
c906108c
SS
72{
73 struct regs inferior_registers;
74 struct fp_state inferior_fp_registers;
c906108c
SS
75
76 memcpy (&inferior_registers, registers, 20 * 4);
77
c5aa993b
JM
78 memcpy (inferior_fp_registers.f_st, &registers[REGISTER_BYTE (FP0_REGNUM)],
79 sizeof inferior_fp_registers.f_st);
c906108c 80 memcpy (&inferior_fp_registers.f_ctrl,
c5aa993b
JM
81 &registers[REGISTER_BYTE (FPC_REGNUM)],
82 sizeof inferior_fp_registers - sizeof inferior_fp_registers.f_st);
83
c906108c
SS
84#ifdef PTRACE_FP_BUG
85 if (regno == FP_REGNUM || regno == -1)
86 /* Storing the frame pointer requires a gross hack, in which an
87 instruction that moves eax into ebp gets single-stepped. */
88 {
89 int stack = inferior_registers.r_reg[SP_REGNUM];
90 int stuff = ptrace (PTRACE_PEEKDATA, inferior_pid,
91 (PTRACE_ARG3_TYPE) stack);
92 int reg = inferior_registers.r_reg[EAX];
93 inferior_registers.r_reg[EAX] =
94 inferior_registers.r_reg[FP_REGNUM];
95 ptrace (PTRACE_SETREGS, inferior_pid,
c5aa993b 96 (PTRACE_ARG3_TYPE) & inferior_registers);
c906108c
SS
97 ptrace (PTRACE_POKEDATA, inferior_pid, (PTRACE_ARG3_TYPE) stack, 0xc589);
98 ptrace (PTRACE_SINGLESTEP, inferior_pid, (PTRACE_ARG3_TYPE) stack, 0);
99 wait (0);
100 ptrace (PTRACE_POKEDATA, inferior_pid, (PTRACE_ARG3_TYPE) stack, stuff);
101 inferior_registers.r_reg[EAX] = reg;
102 }
103#endif
104 ptrace (PTRACE_SETREGS, inferior_pid,
c5aa993b 105 (PTRACE_ARG3_TYPE) & inferior_registers);
c906108c 106 ptrace (PTRACE_SETFPREGS, inferior_pid,
c5aa993b 107 (PTRACE_ARG3_TYPE) & inferior_fp_registers);
c906108c
SS
108}
109
110
111
112/* Work with core files, for GDB. */
113
114static void
115fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
116 char *core_reg_sect;
117 unsigned core_reg_size;
118 int which;
119 CORE_ADDR reg_addr; /* Unused in this version */
120{
121 int val;
c906108c 122
c5aa993b
JM
123 switch (which)
124 {
125 case 0:
126 case 1:
127 memcpy (registers, core_reg_sect, core_reg_size);
128 break;
c906108c 129
c5aa993b 130 case 2:
c5aa993b
JM
131 memcpy (&registers[REGISTER_BYTE (FP0_REGNUM)],
132 core_reg_sect,
133 core_reg_size); /* FIXME, probably bogus */
c906108c 134#ifdef FPC_REGNUM
c5aa993b
JM
135 memcpy (&registers[REGISTER_BYTE (FPC_REGNUM)],
136 &corestr.c_fpu.f_fpstatus.f_ctrl,
137 sizeof corestr.c_fpu.f_fpstatus -
138 sizeof corestr.c_fpu.f_fpstatus.f_st);
c906108c 139#endif
c5aa993b
JM
140 break;
141 }
c906108c 142}
c906108c 143\f
c5aa993b 144
c906108c
SS
145/* Register that we are able to handle i386mach core file formats.
146 FIXME: is this really bfd_target_unknown_flavour? */
147
148static struct core_fns i386mach_core_fns =
149{
2acceee2
JM
150 bfd_target_unknown_flavour, /* core_flavour */
151 default_check_format, /* check_format */
152 default_core_sniffer, /* core_sniffer */
153 fetch_core_registers, /* core_read_registers */
154 NULL /* next */
c906108c
SS
155};
156
157void
fba45db2 158_initialize_core_i386mach (void)
c906108c
SS
159{
160 add_core_fns (&i386mach_core_fns);
161}
This page took 0.070352 seconds and 4 git commands to generate.