2007-06-09 Markus Deuling <deuling@de.ibm.com>
[deliverable/binutils-gdb.git] / gdb / i386gnu-nat.c
1 /* Low level interface to i386 running the GNU Hurd.
2
3 Copyright (C) 1992, 1995, 1996, 1998, 2000, 2001, 2004, 2007
4 Free Software Foundation, Inc.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
22
23 #include "defs.h"
24 #include "inferior.h"
25 #include "floatformat.h"
26 #include "regcache.h"
27
28 #include "gdb_assert.h"
29 #include <errno.h>
30 #include <stdio.h>
31 #include "gdb_string.h"
32
33 #include <mach.h>
34 #include <mach_error.h>
35 #include <mach/message.h>
36 #include <mach/exception.h>
37
38 #include "i386-tdep.h"
39
40 #include "gnu-nat.h"
41 #include "i387-tdep.h"
42
43 #ifdef HAVE_SYS_PROCFS_H
44 # include <sys/procfs.h>
45 # include "gregset.h"
46 #endif
47
48 /* Offset to the thread_state_t location where REG is stored. */
49 #define REG_OFFSET(reg) offsetof (struct i386_thread_state, reg)
50
51 /* At REG_OFFSET[N] is the offset to the thread_state_t location where
52 the GDB register N is stored. */
53 static int reg_offset[] =
54 {
55 REG_OFFSET (eax), REG_OFFSET (ecx), REG_OFFSET (edx), REG_OFFSET (ebx),
56 REG_OFFSET (uesp), REG_OFFSET (ebp), REG_OFFSET (esi), REG_OFFSET (edi),
57 REG_OFFSET (eip), REG_OFFSET (efl), REG_OFFSET (cs), REG_OFFSET (ss),
58 REG_OFFSET (ds), REG_OFFSET (es), REG_OFFSET (fs), REG_OFFSET (gs)
59 };
60
61 #define REG_ADDR(state, regnum) ((char *)(state) + reg_offset[regnum])
62 #define CREG_ADDR(state, regnum) ((const char *)(state) + reg_offset[regnum])
63
64 \f
65 /* Get the whole floating-point state of THREAD and record the values
66 of the corresponding (pseudo) registers. */
67
68 static void
69 fetch_fpregs (struct regcache *regcache, struct proc *thread)
70 {
71 mach_msg_type_number_t count = i386_FLOAT_STATE_COUNT;
72 struct i386_float_state state;
73 error_t err;
74
75 err = thread_get_state (thread->port, i386_FLOAT_STATE,
76 (thread_state_t) &state, &count);
77 if (err)
78 {
79 warning (_("Couldn't fetch floating-point state from %s"),
80 proc_string (thread));
81 return;
82 }
83
84 if (!state.initialized)
85 {
86 /* The floating-point state isn't initialized. */
87 i387_supply_fsave (regcache, -1, NULL);
88 }
89 else
90 {
91 /* Supply the floating-point registers. */
92 i387_supply_fsave (regcache, -1, state.hw_state);
93 }
94 }
95
96 #ifdef HAVE_SYS_PROCFS_H
97 /* These two calls are used by the core-regset.c code for
98 reading ELF core files. */
99 void
100 supply_gregset (struct regcache *regcache, const gdb_gregset_t *gregs)
101 {
102 int i;
103 for (i = 0; i < I386_NUM_GREGS; i++)
104 regcache_raw_supply (regcache, i, CREG_ADDR (gregs, i));
105 }
106
107 void
108 supply_fpregset (struct regcache *regcache, const gdb_fpregset_t *fpregs)
109 {
110 i387_supply_fsave (regcache, -1, fpregs);
111 }
112 #endif
113
114 /* Fetch register REGNO, or all regs if REGNO is -1. */
115 void
116 gnu_fetch_registers (struct regcache *regcache, int regno)
117 {
118 struct proc *thread;
119
120 /* Make sure we know about new threads. */
121 inf_update_procs (current_inferior);
122
123 thread = inf_tid_to_thread (current_inferior, PIDGET (inferior_ptid));
124 if (!thread)
125 error (_("Can't fetch registers from thread %d: No such thread"),
126 PIDGET (inferior_ptid));
127
128 if (regno < I386_NUM_GREGS || regno == -1)
129 {
130 thread_state_t state;
131
132 /* This does the dirty work for us. */
133 state = proc_get_state (thread, 0);
134 if (!state)
135 {
136 warning (_("Couldn't fetch registers from %s"),
137 proc_string (thread));
138 return;
139 }
140
141 if (regno == -1)
142 {
143 int i;
144
145 proc_debug (thread, "fetching all register");
146
147 for (i = 0; i < I386_NUM_GREGS; i++)
148 regcache_raw_supply (regcache, i, REG_ADDR (state, i));
149 thread->fetched_regs = ~0;
150 }
151 else
152 {
153 proc_debug (thread, "fetching register %s",
154 gdbarch_register_name (current_gdbarch, regno));
155
156 regcache_raw_supply (regcache, regno,
157 REG_ADDR (state, regno));
158 thread->fetched_regs |= (1 << regno);
159 }
160 }
161
162 if (regno >= I386_NUM_GREGS || regno == -1)
163 {
164 proc_debug (thread, "fetching floating-point registers");
165
166 fetch_fpregs (regcache, thread);
167 }
168 }
169 \f
170
171 /* Store the whole floating-point state into THREAD using information
172 from the corresponding (pseudo) registers. */
173 static void
174 store_fpregs (const struct regcache *regcache, struct proc *thread, int regno)
175 {
176 mach_msg_type_number_t count = i386_FLOAT_STATE_COUNT;
177 struct i386_float_state state;
178 error_t err;
179
180 err = thread_get_state (thread->port, i386_FLOAT_STATE,
181 (thread_state_t) &state, &count);
182 if (err)
183 {
184 warning (_("Couldn't fetch floating-point state from %s"),
185 proc_string (thread));
186 return;
187 }
188
189 /* FIXME: kettenis/2001-07-15: Is this right? Should we somehow
190 take into account DEPRECATED_REGISTER_VALID like the old code did? */
191 i387_collect_fsave (regcache, regno, state.hw_state);
192
193 err = thread_set_state (thread->port, i386_FLOAT_STATE,
194 (thread_state_t) &state, i386_FLOAT_STATE_COUNT);
195 if (err)
196 {
197 warning (_("Couldn't store floating-point state into %s"),
198 proc_string (thread));
199 return;
200 }
201 }
202
203 /* Store at least register REGNO, or all regs if REGNO == -1. */
204 void
205 gnu_store_registers (struct regcache *regcache, int regno)
206 {
207 struct proc *thread;
208
209 /* Make sure we know about new threads. */
210 inf_update_procs (current_inferior);
211
212 thread = inf_tid_to_thread (current_inferior, PIDGET (inferior_ptid));
213 if (!thread)
214 error (_("Couldn't store registers into thread %d: No such thread"),
215 PIDGET (inferior_ptid));
216
217 if (regno < I386_NUM_GREGS || regno == -1)
218 {
219 thread_state_t state;
220 thread_state_data_t old_state;
221 int was_aborted = thread->aborted;
222 int was_valid = thread->state_valid;
223 int trace;
224
225 if (!was_aborted && was_valid)
226 memcpy (&old_state, &thread->state, sizeof (old_state));
227
228 state = proc_get_state (thread, 1);
229 if (!state)
230 {
231 warning (_("Couldn't store registers into %s"), proc_string (thread));
232 return;
233 }
234
235 /* Save the T bit. We might try to restore the %eflags register
236 below, but changing the T bit would seriously confuse GDB. */
237 trace = ((struct i386_thread_state *)state)->efl & 0x100;
238
239 if (!was_aborted && was_valid)
240 /* See which registers have changed after aborting the thread. */
241 {
242 int check_regno;
243
244 for (check_regno = 0; check_regno < I386_NUM_GREGS; check_regno++)
245 if ((thread->fetched_regs & (1 << check_regno))
246 && memcpy (REG_ADDR (&old_state, check_regno),
247 REG_ADDR (state, check_regno),
248 register_size (current_gdbarch, check_regno)))
249 /* Register CHECK_REGNO has changed! Ack! */
250 {
251 warning (_("Register %s changed after the thread was aborted"),
252 gdbarch_register_name (current_gdbarch, check_regno));
253 if (regno >= 0 && regno != check_regno)
254 /* Update GDB's copy of the register. */
255 regcache_raw_supply (regcache, check_regno,
256 REG_ADDR (state, check_regno));
257 else
258 warning (_("... also writing this register! Suspicious..."));
259 }
260 }
261
262 if (regno == -1)
263 {
264 int i;
265
266 proc_debug (thread, "storing all registers");
267
268 for (i = 0; i < I386_NUM_GREGS; i++)
269 if (regcache_valid_p (regcache, i))
270 regcache_raw_collect (regcache, i, REG_ADDR (state, i));
271 }
272 else
273 {
274 proc_debug (thread, "storing register %s",
275 gdbarch_register_name (current_gdbarch, regno));
276
277 gdb_assert (regcache_valid_p (regcache, regno));
278 regcache_raw_collect (regcache, regno, REG_ADDR (state, regno));
279 }
280
281 /* Restore the T bit. */
282 ((struct i386_thread_state *)state)->efl &= ~0x100;
283 ((struct i386_thread_state *)state)->efl |= trace;
284 }
285
286 if (regno >= I386_NUM_GREGS || regno == -1)
287 {
288 proc_debug (thread, "storing floating-point registers");
289
290 store_fpregs (regcache, thread, regno);
291 }
292 }
This page took 0.096413 seconds and 4 git commands to generate.