1 /* Low level interface to i386 running the GNU Hurd.
3 Copyright (C) 1992, 1995, 1996, 1998, 2000, 2001, 2004, 2007
4 Free Software Foundation, Inc.
6 This file is part of GDB.
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.
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.
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. */
25 #include "floatformat.h"
28 #include "gdb_assert.h"
31 #include "gdb_string.h"
34 #include <mach_error.h>
35 #include <mach/message.h>
36 #include <mach/exception.h>
38 #include "i386-tdep.h"
41 #include "i387-tdep.h"
43 #ifdef HAVE_SYS_PROCFS_H
44 # include <sys/procfs.h>
48 /* Offset to the thread_state_t location where REG is stored. */
49 #define REG_OFFSET(reg) offsetof (struct i386_thread_state, reg)
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
[] =
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
)
61 #define REG_ADDR(state, regnum) ((char *)(state) + reg_offset[regnum])
64 /* Get the whole floating-point state of THREAD and record the values
65 of the corresponding (pseudo) registers. */
68 fetch_fpregs (struct proc
*thread
)
70 mach_msg_type_number_t count
= i386_FLOAT_STATE_COUNT
;
71 struct i386_float_state state
;
74 err
= thread_get_state (thread
->port
, i386_FLOAT_STATE
,
75 (thread_state_t
) &state
, &count
);
78 warning (_("Couldn't fetch floating-point state from %s"),
79 proc_string (thread
));
83 if (!state
.initialized
)
85 /* The floating-point state isn't initialized. */
86 i387_supply_fsave (current_regcache
, -1, NULL
);
90 /* Supply the floating-point registers. */
91 i387_supply_fsave (current_regcache
, -1, state
.hw_state
);
95 #ifdef HAVE_SYS_PROCFS_H
96 /* These two calls are used by the core-regset.c code for
97 reading ELF core files. */
99 supply_gregset (gdb_gregset_t
*gregs
)
102 for (i
= 0; i
< I386_NUM_GREGS
; i
++)
103 regcache_raw_supply (current_regcache
, i
, REG_ADDR (gregs
, i
));
107 supply_fpregset (gdb_fpregset_t
*fpregs
)
109 i387_supply_fsave (current_regcache
, -1, fpregs
);
113 /* Fetch register REGNO, or all regs if REGNO is -1. */
115 gnu_fetch_registers (int regno
)
119 /* Make sure we know about new threads. */
120 inf_update_procs (current_inferior
);
122 thread
= inf_tid_to_thread (current_inferior
, PIDGET (inferior_ptid
));
124 error (_("Can't fetch registers from thread %d: No such thread"),
125 PIDGET (inferior_ptid
));
127 if (regno
< I386_NUM_GREGS
|| regno
== -1)
129 thread_state_t state
;
131 /* This does the dirty work for us. */
132 state
= proc_get_state (thread
, 0);
135 warning (_("Couldn't fetch registers from %s"),
136 proc_string (thread
));
144 proc_debug (thread
, "fetching all register");
146 for (i
= 0; i
< I386_NUM_GREGS
; i
++)
147 regcache_raw_supply (current_regcache
, i
, REG_ADDR (state
, i
));
148 thread
->fetched_regs
= ~0;
152 proc_debug (thread
, "fetching register %s", REGISTER_NAME (regno
));
154 regcache_raw_supply (current_regcache
, regno
,
155 REG_ADDR (state
, regno
));
156 thread
->fetched_regs
|= (1 << regno
);
160 if (regno
>= I386_NUM_GREGS
|| regno
== -1)
162 proc_debug (thread
, "fetching floating-point registers");
164 fetch_fpregs (thread
);
169 /* Store the whole floating-point state into THREAD using information
170 from the corresponding (pseudo) registers. */
172 store_fpregs (struct proc
*thread
, int regno
)
174 mach_msg_type_number_t count
= i386_FLOAT_STATE_COUNT
;
175 struct i386_float_state state
;
178 err
= thread_get_state (thread
->port
, i386_FLOAT_STATE
,
179 (thread_state_t
) &state
, &count
);
182 warning (_("Couldn't fetch floating-point state from %s"),
183 proc_string (thread
));
187 /* FIXME: kettenis/2001-07-15: Is this right? Should we somehow
188 take into account DEPRECATED_REGISTER_VALID like the old code did? */
189 i387_fill_fsave (state
.hw_state
, regno
);
191 err
= thread_set_state (thread
->port
, i386_FLOAT_STATE
,
192 (thread_state_t
) &state
, i386_FLOAT_STATE_COUNT
);
195 warning (_("Couldn't store floating-point state into %s"),
196 proc_string (thread
));
201 /* Store at least register REGNO, or all regs if REGNO == -1. */
203 gnu_store_registers (int regno
)
205 struct regcache
*regcache
= current_regcache
;
208 /* Make sure we know about new threads. */
209 inf_update_procs (current_inferior
);
211 thread
= inf_tid_to_thread (current_inferior
, PIDGET (inferior_ptid
));
213 error (_("Couldn't store registers into thread %d: No such thread"),
214 PIDGET (inferior_ptid
));
216 if (regno
< I386_NUM_GREGS
|| regno
== -1)
218 thread_state_t state
;
219 thread_state_data_t old_state
;
220 int was_aborted
= thread
->aborted
;
221 int was_valid
= thread
->state_valid
;
224 if (!was_aborted
&& was_valid
)
225 memcpy (&old_state
, &thread
->state
, sizeof (old_state
));
227 state
= proc_get_state (thread
, 1);
230 warning (_("Couldn't store registers into %s"), proc_string (thread
));
234 /* Save the T bit. We might try to restore the %eflags register
235 below, but changing the T bit would seriously confuse GDB. */
236 trace
= ((struct i386_thread_state
*)state
)->efl
& 0x100;
238 if (!was_aborted
&& was_valid
)
239 /* See which registers have changed after aborting the thread. */
243 for (check_regno
= 0; check_regno
< I386_NUM_GREGS
; check_regno
++)
244 if ((thread
->fetched_regs
& (1 << check_regno
))
245 && memcpy (REG_ADDR (&old_state
, check_regno
),
246 REG_ADDR (state
, check_regno
),
247 register_size (current_gdbarch
, check_regno
)))
248 /* Register CHECK_REGNO has changed! Ack! */
250 warning (_("Register %s changed after the thread was aborted"),
251 REGISTER_NAME (check_regno
));
252 if (regno
>= 0 && regno
!= check_regno
)
253 /* Update GDB's copy of the register. */
254 regcache_raw_supply (regcache
, check_regno
,
255 REG_ADDR (state
, check_regno
));
257 warning (_("... also writing this register! Suspicious..."));
265 proc_debug (thread
, "storing all registers");
267 for (i
= 0; i
< I386_NUM_GREGS
; i
++)
268 if (regcache_valid_p (regcache
, i
))
269 regcache_raw_collect (regcache
, i
, REG_ADDR (state
, i
));
273 proc_debug (thread
, "storing register %s", REGISTER_NAME (regno
));
275 gdb_assert (regcache_valid_p (regcache
, regno
));
276 regcache_raw_collect (regcache
, regno
, REG_ADDR (state
, regno
));
279 /* Restore the T bit. */
280 ((struct i386_thread_state
*)state
)->efl
&= ~0x100;
281 ((struct i386_thread_state
*)state
)->efl
|= trace
;
284 if (regno
>= I386_NUM_GREGS
|| regno
== -1)
286 proc_debug (thread
, "storing floating-point registers");
288 store_fpregs (thread
, regno
);