2000-02-01 11:19:29 +08:00
|
|
|
|
/* Low level interface to i386 running the GNU Hurd.
|
2001-03-06 16:22:02 +08:00
|
|
|
|
Copyright 1992, 1995, 1996, 1998, 2000, 2001
|
|
|
|
|
Free Software Foundation, Inc.
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
1999-07-08 04:19:36 +08:00
|
|
|
|
This file is part of GDB.
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
1999-07-08 04:19:36 +08:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
1999-07-08 04:19:36 +08:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
1999-07-08 04:19:36 +08:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "inferior.h"
|
|
|
|
|
#include "floatformat.h"
|
2001-03-01 09:39:22 +08:00
|
|
|
|
#include "regcache.h"
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-12-17 08:35:58 +08:00
|
|
|
|
#include "gdb_assert.h"
|
1999-04-16 09:35:26 +08:00
|
|
|
|
#include <errno.h>
|
2001-07-23 04:35:14 +08:00
|
|
|
|
#include <stdio.h>
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
|
|
|
|
#include <mach.h>
|
2000-02-01 11:19:29 +08:00
|
|
|
|
#include <mach_error.h>
|
1999-04-16 09:35:26 +08:00
|
|
|
|
#include <mach/message.h>
|
|
|
|
|
#include <mach/exception.h>
|
|
|
|
|
|
2002-01-19 20:51:04 +08:00
|
|
|
|
#include "i386-tdep.h"
|
|
|
|
|
|
1999-04-16 09:35:26 +08:00
|
|
|
|
#include "gnu-nat.h"
|
2002-05-12 01:22:27 +08:00
|
|
|
|
#include "i387-tdep.h"
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2002-04-25 05:44:47 +08:00
|
|
|
|
#ifdef HAVE_SYS_PROCFS_H
|
|
|
|
|
# include <sys/procfs.h>
|
|
|
|
|
# include "gregset.h"
|
|
|
|
|
#endif
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* Offset to the thread_state_t location where REG is stored. */
|
|
|
|
|
#define REG_OFFSET(reg) offsetof (struct i386_thread_state, reg)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2001-07-23 04:35:14 +08:00
|
|
|
|
/* At REG_OFFSET[N] is the offset to the thread_state_t location where
|
|
|
|
|
the GDB register N is stored. */
|
1999-07-08 04:19:36 +08:00
|
|
|
|
static int reg_offset[] =
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
1999-07-08 04:19:36 +08:00
|
|
|
|
REG_OFFSET (eax), REG_OFFSET (ecx), REG_OFFSET (edx), REG_OFFSET (ebx),
|
|
|
|
|
REG_OFFSET (uesp), REG_OFFSET (ebp), REG_OFFSET (esi), REG_OFFSET (edi),
|
|
|
|
|
REG_OFFSET (eip), REG_OFFSET (efl), REG_OFFSET (cs), REG_OFFSET (ss),
|
|
|
|
|
REG_OFFSET (ds), REG_OFFSET (es), REG_OFFSET (fs), REG_OFFSET (gs)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
};
|
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
#define REG_ADDR(state, regnum) ((char *)(state) + reg_offset[regnum])
|
|
|
|
|
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* Get the whole floating-point state of THREAD and record the
|
|
|
|
|
values of the corresponding (pseudo) registers. */
|
|
|
|
|
static void
|
|
|
|
|
fetch_fpregs (struct proc *thread)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
mach_msg_type_number_t count = i386_FLOAT_STATE_COUNT;
|
|
|
|
|
struct i386_float_state state;
|
|
|
|
|
error_t err;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
err = thread_get_state (thread->port, i386_FLOAT_STATE,
|
|
|
|
|
(thread_state_t) &state, &count);
|
|
|
|
|
if (err)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
warning ("Couldn't fetch floating-point state from %s",
|
|
|
|
|
proc_string (thread));
|
|
|
|
|
return;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
2000-02-01 11:19:29 +08:00
|
|
|
|
|
2001-07-23 04:35:14 +08:00
|
|
|
|
if (!state.initialized)
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* The floating-point state isn't initialized. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2001-07-23 04:35:14 +08:00
|
|
|
|
int i;
|
|
|
|
|
|
2002-01-19 20:51:04 +08:00
|
|
|
|
for (i = FP0_REGNUM; i <= FOP_REGNUM; i++)
|
2004-07-21 Andrew Cagney <cagney@gnu.org>
Use regcache_raw_supply instead of supply_register.
* regcache.h (supply_register): Delete declaration.
* regcache.c (supply_register): Delete function.
* wince.c (do_child_fetch_inferior_registers): Update.
* win32-nat.c (do_child_fetch_inferior_registers)
(fetch_elf_core_registers): Update.
* v850ice.c (v850ice_fetch_registers): Update.
* thread-db.c (thread_db_store_registers): Update.
* sol-thread.c (sol_thread_store_registers): Update.
* shnbsd-tdep.c (shnbsd_supply_reg): Update.
* rs6000-nat.c (fetch_register): Update.
* rom68k-rom.c (rom68k_supply_one_register): Update.
* remote.c (remote_wait, remote_async_wait): Update.
* remote-st.c (get_hex_regs): Update.
* remote-sim.c (gdbsim_fetch_register): Update.
* remote-sds.c (sds_fetch_registers): Update.
* remote-rdp.c (remote_rdp_fetch_register): Update.
* remote-rdi.c (arm_rdi_fetch_registers): Update.
* remote-mips.c (mips_wait, mips_fetch_registers): Update.
* remote-m32r-sdi.c (m32r_fetch_register): Update.
* remote-hms.c (init_hms_cmds): Update.
* remote-est.c (init_est_cmds): Update.
* remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
(e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
* ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
(fetch_register, supply_vrregset, supply_vrregset)
(fetch_spe_registers): Update.
* ppc-bdm.c (bdm_ppc_fetch_registers): Update.
* monitor.c (monitor_supply_register): Update.
* mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
* mipsnbsd-tdep.c (mipsnbsd_supply_reg)
(mipsnbsd_supply_fpreg): Update.
* mips-nat.c (fetch_inferior_registers)
(fetch_core_registers): Update.
* mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
(supply_fpregset, mips64_supply_gregset)
(mips64_supply_fpregset): Update.
* m68klinux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* m68k-tdep.c (supply_gregset, supply_fpregset): Update.
* m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
* lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
* irix5-nat.c (supply_gregset, supply_fpregset): Update.
* infptrace.c (fetch_register): Update.
* ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
* ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
* i386gnu-nat.c (fetch_fpregs, supply_gregset)
(gnu_fetch_registers, gnu_store_registers): Update.
* i386-nto-tdep.c (i386nto_supply_gregset): Update.
* i386-linux-nat.c (fetch_register, supply_gregset)
(dummy_sse_values): Update.
* hpux-thread.c (hpux_thread_fetch_registers): Update.
* hppah-nat.c (fetch_register): Update.
* hppa-linux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* go32-nat.c (fetch_register): Update.
* dve3900-rom.c (fetch_bitmapped_register)
(_initialize_r3900_rom): Update.
* cris-tdep.c (supply_gregset): Update.
* abug-rom.c (init_abug_cmds): Update.
* core-aout.c (fetch_core_registers): Update.
* armnbsd-nat.c (supply_gregset, supply_fparegset)
(fetch_register, fetch_fp_register): Update.
* arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
(fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
(fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
* alphanbsd-tdep.c (fetch_core_registers): Update.
* alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
* alpha-nat.c (fetch_osf_core_registers)
(fetch_osf_core_registers, fetch_osf_core_registers): Update.
* aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
(supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2004-07-22 09:31:49 +08:00
|
|
|
|
regcache_raw_supply (current_regcache, i, NULL);
|
2000-02-01 11:19:29 +08:00
|
|
|
|
|
|
|
|
|
return;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
2000-02-01 11:19:29 +08:00
|
|
|
|
|
|
|
|
|
/* Supply the floating-point registers. */
|
2003-09-28 21:35:44 +08:00
|
|
|
|
i387_supply_fsave (current_regcache, -1, state.hw_state);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
2000-02-01 11:19:29 +08:00
|
|
|
|
|
2002-04-25 05:44:47 +08:00
|
|
|
|
#ifdef HAVE_SYS_PROCFS_H
|
|
|
|
|
/* These two calls are used by the core-regset.c code for
|
|
|
|
|
reading ELF core files. */
|
|
|
|
|
void
|
|
|
|
|
supply_gregset (gdb_gregset_t *gregs)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2002-06-16 01:04:04 +08:00
|
|
|
|
for (i = 0; i < I386_NUM_GREGS; i++)
|
2004-07-21 Andrew Cagney <cagney@gnu.org>
Use regcache_raw_supply instead of supply_register.
* regcache.h (supply_register): Delete declaration.
* regcache.c (supply_register): Delete function.
* wince.c (do_child_fetch_inferior_registers): Update.
* win32-nat.c (do_child_fetch_inferior_registers)
(fetch_elf_core_registers): Update.
* v850ice.c (v850ice_fetch_registers): Update.
* thread-db.c (thread_db_store_registers): Update.
* sol-thread.c (sol_thread_store_registers): Update.
* shnbsd-tdep.c (shnbsd_supply_reg): Update.
* rs6000-nat.c (fetch_register): Update.
* rom68k-rom.c (rom68k_supply_one_register): Update.
* remote.c (remote_wait, remote_async_wait): Update.
* remote-st.c (get_hex_regs): Update.
* remote-sim.c (gdbsim_fetch_register): Update.
* remote-sds.c (sds_fetch_registers): Update.
* remote-rdp.c (remote_rdp_fetch_register): Update.
* remote-rdi.c (arm_rdi_fetch_registers): Update.
* remote-mips.c (mips_wait, mips_fetch_registers): Update.
* remote-m32r-sdi.c (m32r_fetch_register): Update.
* remote-hms.c (init_hms_cmds): Update.
* remote-est.c (init_est_cmds): Update.
* remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
(e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
* ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
(fetch_register, supply_vrregset, supply_vrregset)
(fetch_spe_registers): Update.
* ppc-bdm.c (bdm_ppc_fetch_registers): Update.
* monitor.c (monitor_supply_register): Update.
* mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
* mipsnbsd-tdep.c (mipsnbsd_supply_reg)
(mipsnbsd_supply_fpreg): Update.
* mips-nat.c (fetch_inferior_registers)
(fetch_core_registers): Update.
* mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
(supply_fpregset, mips64_supply_gregset)
(mips64_supply_fpregset): Update.
* m68klinux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* m68k-tdep.c (supply_gregset, supply_fpregset): Update.
* m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
* lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
* irix5-nat.c (supply_gregset, supply_fpregset): Update.
* infptrace.c (fetch_register): Update.
* ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
* ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
* i386gnu-nat.c (fetch_fpregs, supply_gregset)
(gnu_fetch_registers, gnu_store_registers): Update.
* i386-nto-tdep.c (i386nto_supply_gregset): Update.
* i386-linux-nat.c (fetch_register, supply_gregset)
(dummy_sse_values): Update.
* hpux-thread.c (hpux_thread_fetch_registers): Update.
* hppah-nat.c (fetch_register): Update.
* hppa-linux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* go32-nat.c (fetch_register): Update.
* dve3900-rom.c (fetch_bitmapped_register)
(_initialize_r3900_rom): Update.
* cris-tdep.c (supply_gregset): Update.
* abug-rom.c (init_abug_cmds): Update.
* core-aout.c (fetch_core_registers): Update.
* armnbsd-nat.c (supply_gregset, supply_fparegset)
(fetch_register, fetch_fp_register): Update.
* arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
(fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
(fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
* alphanbsd-tdep.c (fetch_core_registers): Update.
* alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
* alpha-nat.c (fetch_osf_core_registers)
(fetch_osf_core_registers, fetch_osf_core_registers): Update.
* aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
(supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2004-07-22 09:31:49 +08:00
|
|
|
|
regcache_raw_supply (current_regcache, i, REG_ADDR (gregs, i));
|
2002-04-25 05:44:47 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
supply_fpregset (gdb_fpregset_t *fpregs)
|
|
|
|
|
{
|
2003-09-28 21:35:44 +08:00
|
|
|
|
i387_supply_fsave (current_regcache, -1, fpregs);
|
2002-04-25 05:44:47 +08:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* Fetch register REGNO, or all regs if REGNO is -1. */
|
1999-04-16 09:35:26 +08:00
|
|
|
|
void
|
2000-02-01 11:19:29 +08:00
|
|
|
|
gnu_fetch_registers (int regno)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
|
|
|
|
struct proc *thread;
|
1999-07-08 04:19:36 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* Make sure we know about new threads. */
|
|
|
|
|
inf_update_procs (current_inferior);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2001-05-04 12:15:33 +08:00
|
|
|
|
thread = inf_tid_to_thread (current_inferior, PIDGET (inferior_ptid));
|
1999-07-08 04:19:36 +08:00
|
|
|
|
if (!thread)
|
2000-02-01 11:19:29 +08:00
|
|
|
|
error ("Can't fetch registers from thread %d: No such thread",
|
2001-05-04 12:15:33 +08:00
|
|
|
|
PIDGET (inferior_ptid));
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2002-06-16 01:04:04 +08:00
|
|
|
|
if (regno < I386_NUM_GREGS || regno == -1)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
thread_state_t state;
|
2001-07-23 04:35:14 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* This does the dirty work for us. */
|
|
|
|
|
state = proc_get_state (thread, 0);
|
|
|
|
|
if (!state)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
warning ("Couldn't fetch registers from %s",
|
|
|
|
|
proc_string (thread));
|
|
|
|
|
return;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
if (regno == -1)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
int i;
|
2001-07-23 04:35:14 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
proc_debug (thread, "fetching all register");
|
2001-07-23 04:35:14 +08:00
|
|
|
|
|
2002-06-16 01:04:04 +08:00
|
|
|
|
for (i = 0; i < I386_NUM_GREGS; i++)
|
2004-07-21 Andrew Cagney <cagney@gnu.org>
Use regcache_raw_supply instead of supply_register.
* regcache.h (supply_register): Delete declaration.
* regcache.c (supply_register): Delete function.
* wince.c (do_child_fetch_inferior_registers): Update.
* win32-nat.c (do_child_fetch_inferior_registers)
(fetch_elf_core_registers): Update.
* v850ice.c (v850ice_fetch_registers): Update.
* thread-db.c (thread_db_store_registers): Update.
* sol-thread.c (sol_thread_store_registers): Update.
* shnbsd-tdep.c (shnbsd_supply_reg): Update.
* rs6000-nat.c (fetch_register): Update.
* rom68k-rom.c (rom68k_supply_one_register): Update.
* remote.c (remote_wait, remote_async_wait): Update.
* remote-st.c (get_hex_regs): Update.
* remote-sim.c (gdbsim_fetch_register): Update.
* remote-sds.c (sds_fetch_registers): Update.
* remote-rdp.c (remote_rdp_fetch_register): Update.
* remote-rdi.c (arm_rdi_fetch_registers): Update.
* remote-mips.c (mips_wait, mips_fetch_registers): Update.
* remote-m32r-sdi.c (m32r_fetch_register): Update.
* remote-hms.c (init_hms_cmds): Update.
* remote-est.c (init_est_cmds): Update.
* remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
(e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
* ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
(fetch_register, supply_vrregset, supply_vrregset)
(fetch_spe_registers): Update.
* ppc-bdm.c (bdm_ppc_fetch_registers): Update.
* monitor.c (monitor_supply_register): Update.
* mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
* mipsnbsd-tdep.c (mipsnbsd_supply_reg)
(mipsnbsd_supply_fpreg): Update.
* mips-nat.c (fetch_inferior_registers)
(fetch_core_registers): Update.
* mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
(supply_fpregset, mips64_supply_gregset)
(mips64_supply_fpregset): Update.
* m68klinux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* m68k-tdep.c (supply_gregset, supply_fpregset): Update.
* m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
* lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
* irix5-nat.c (supply_gregset, supply_fpregset): Update.
* infptrace.c (fetch_register): Update.
* ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
* ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
* i386gnu-nat.c (fetch_fpregs, supply_gregset)
(gnu_fetch_registers, gnu_store_registers): Update.
* i386-nto-tdep.c (i386nto_supply_gregset): Update.
* i386-linux-nat.c (fetch_register, supply_gregset)
(dummy_sse_values): Update.
* hpux-thread.c (hpux_thread_fetch_registers): Update.
* hppah-nat.c (fetch_register): Update.
* hppa-linux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* go32-nat.c (fetch_register): Update.
* dve3900-rom.c (fetch_bitmapped_register)
(_initialize_r3900_rom): Update.
* cris-tdep.c (supply_gregset): Update.
* abug-rom.c (init_abug_cmds): Update.
* core-aout.c (fetch_core_registers): Update.
* armnbsd-nat.c (supply_gregset, supply_fparegset)
(fetch_register, fetch_fp_register): Update.
* arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
(fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
(fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
* alphanbsd-tdep.c (fetch_core_registers): Update.
* alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
* alpha-nat.c (fetch_osf_core_registers)
(fetch_osf_core_registers, fetch_osf_core_registers): Update.
* aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
(supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2004-07-22 09:31:49 +08:00
|
|
|
|
regcache_raw_supply (current_regcache, i, REG_ADDR (state, i));
|
2000-02-01 11:19:29 +08:00
|
|
|
|
thread->fetched_regs = ~0;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
proc_debug (thread, "fetching register %s", REGISTER_NAME (regno));
|
2001-07-23 04:35:14 +08:00
|
|
|
|
|
2004-07-21 Andrew Cagney <cagney@gnu.org>
Use regcache_raw_supply instead of supply_register.
* regcache.h (supply_register): Delete declaration.
* regcache.c (supply_register): Delete function.
* wince.c (do_child_fetch_inferior_registers): Update.
* win32-nat.c (do_child_fetch_inferior_registers)
(fetch_elf_core_registers): Update.
* v850ice.c (v850ice_fetch_registers): Update.
* thread-db.c (thread_db_store_registers): Update.
* sol-thread.c (sol_thread_store_registers): Update.
* shnbsd-tdep.c (shnbsd_supply_reg): Update.
* rs6000-nat.c (fetch_register): Update.
* rom68k-rom.c (rom68k_supply_one_register): Update.
* remote.c (remote_wait, remote_async_wait): Update.
* remote-st.c (get_hex_regs): Update.
* remote-sim.c (gdbsim_fetch_register): Update.
* remote-sds.c (sds_fetch_registers): Update.
* remote-rdp.c (remote_rdp_fetch_register): Update.
* remote-rdi.c (arm_rdi_fetch_registers): Update.
* remote-mips.c (mips_wait, mips_fetch_registers): Update.
* remote-m32r-sdi.c (m32r_fetch_register): Update.
* remote-hms.c (init_hms_cmds): Update.
* remote-est.c (init_est_cmds): Update.
* remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
(e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
* ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
(fetch_register, supply_vrregset, supply_vrregset)
(fetch_spe_registers): Update.
* ppc-bdm.c (bdm_ppc_fetch_registers): Update.
* monitor.c (monitor_supply_register): Update.
* mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
* mipsnbsd-tdep.c (mipsnbsd_supply_reg)
(mipsnbsd_supply_fpreg): Update.
* mips-nat.c (fetch_inferior_registers)
(fetch_core_registers): Update.
* mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
(supply_fpregset, mips64_supply_gregset)
(mips64_supply_fpregset): Update.
* m68klinux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* m68k-tdep.c (supply_gregset, supply_fpregset): Update.
* m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
* lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
* irix5-nat.c (supply_gregset, supply_fpregset): Update.
* infptrace.c (fetch_register): Update.
* ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
* ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
* i386gnu-nat.c (fetch_fpregs, supply_gregset)
(gnu_fetch_registers, gnu_store_registers): Update.
* i386-nto-tdep.c (i386nto_supply_gregset): Update.
* i386-linux-nat.c (fetch_register, supply_gregset)
(dummy_sse_values): Update.
* hpux-thread.c (hpux_thread_fetch_registers): Update.
* hppah-nat.c (fetch_register): Update.
* hppa-linux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* go32-nat.c (fetch_register): Update.
* dve3900-rom.c (fetch_bitmapped_register)
(_initialize_r3900_rom): Update.
* cris-tdep.c (supply_gregset): Update.
* abug-rom.c (init_abug_cmds): Update.
* core-aout.c (fetch_core_registers): Update.
* armnbsd-nat.c (supply_gregset, supply_fparegset)
(fetch_register, fetch_fp_register): Update.
* arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
(fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
(fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
* alphanbsd-tdep.c (fetch_core_registers): Update.
* alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
* alpha-nat.c (fetch_osf_core_registers)
(fetch_osf_core_registers, fetch_osf_core_registers): Update.
* aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
(supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2004-07-22 09:31:49 +08:00
|
|
|
|
regcache_raw_supply (current_regcache, regno,
|
|
|
|
|
REG_ADDR (state, regno));
|
2000-02-01 11:19:29 +08:00
|
|
|
|
thread->fetched_regs |= (1 << regno);
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-02-01 11:19:29 +08:00
|
|
|
|
|
2002-06-16 01:04:04 +08:00
|
|
|
|
if (regno >= I386_NUM_GREGS || regno == -1)
|
2000-02-01 11:19:29 +08:00
|
|
|
|
{
|
|
|
|
|
proc_debug (thread, "fetching floating-point registers");
|
2001-07-23 04:35:14 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
fetch_fpregs (thread);
|
|
|
|
|
}
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
|
|
|
|
|
/* Store the whole floating-point state into THREAD using information
|
|
|
|
|
from the corresponding (pseudo) registers. */
|
|
|
|
|
static void
|
2001-07-23 04:35:14 +08:00
|
|
|
|
store_fpregs (struct proc *thread, int regno)
|
2000-02-01 11:19:29 +08:00
|
|
|
|
{
|
|
|
|
|
mach_msg_type_number_t count = i386_FLOAT_STATE_COUNT;
|
|
|
|
|
struct i386_float_state state;
|
|
|
|
|
error_t err;
|
1999-07-08 04:19:36 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
err = thread_get_state (thread->port, i386_FLOAT_STATE,
|
|
|
|
|
(thread_state_t) &state, &count);
|
|
|
|
|
if (err)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
warning ("Couldn't fetch floating-point state from %s",
|
|
|
|
|
proc_string (thread));
|
|
|
|
|
return;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
1999-07-08 04:19:36 +08:00
|
|
|
|
|
2001-07-23 04:35:14 +08:00
|
|
|
|
/* FIXME: kettenis/2001-07-15: Is this right? Should we somehow
|
2002-11-07 10:40:28 +08:00
|
|
|
|
take into account DEPRECATED_REGISTER_VALID like the old code did? */
|
2001-07-23 04:35:14 +08:00
|
|
|
|
i387_fill_fsave (state.hw_state, regno);
|
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
err = thread_set_state (thread->port, i386_FLOAT_STATE,
|
|
|
|
|
(thread_state_t) &state, i386_FLOAT_STATE_COUNT);
|
|
|
|
|
if (err)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
warning ("Couldn't store floating-point state into %s",
|
|
|
|
|
proc_string (thread));
|
|
|
|
|
return;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
1999-07-08 04:19:36 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* Store at least register REGNO, or all regs if REGNO == -1. */
|
|
|
|
|
void
|
|
|
|
|
gnu_store_registers (int regno)
|
1999-07-08 04:19:36 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
struct proc *thread;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* Make sure we know about new threads. */
|
|
|
|
|
inf_update_procs (current_inferior);
|
1999-07-08 04:19:36 +08:00
|
|
|
|
|
2001-05-04 12:15:33 +08:00
|
|
|
|
thread = inf_tid_to_thread (current_inferior, PIDGET (inferior_ptid));
|
1999-04-16 09:35:26 +08:00
|
|
|
|
if (!thread)
|
2000-02-01 11:19:29 +08:00
|
|
|
|
error ("Couldn't store registers into thread %d: No such thread",
|
2001-05-04 12:15:33 +08:00
|
|
|
|
PIDGET (inferior_ptid));
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2002-06-16 01:04:04 +08:00
|
|
|
|
if (regno < I386_NUM_GREGS || regno == -1)
|
1999-04-16 09:35:26 +08:00
|
|
|
|
{
|
2000-02-01 11:19:29 +08:00
|
|
|
|
thread_state_t state;
|
|
|
|
|
thread_state_data_t old_state;
|
|
|
|
|
int was_aborted = thread->aborted;
|
|
|
|
|
int was_valid = thread->state_valid;
|
2000-03-11 08:34:50 +08:00
|
|
|
|
int trace;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
if (!was_aborted && was_valid)
|
|
|
|
|
memcpy (&old_state, &thread->state, sizeof (old_state));
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
state = proc_get_state (thread, 1);
|
|
|
|
|
if (!state)
|
|
|
|
|
{
|
|
|
|
|
warning ("Couldn't store registers into %s", proc_string (thread));
|
|
|
|
|
return;
|
|
|
|
|
}
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-03-11 08:34:50 +08:00
|
|
|
|
/* Save the T bit. We might try to restore the %eflags register
|
|
|
|
|
below, but changing the T bit would seriously confuse GDB. */
|
|
|
|
|
trace = ((struct i386_thread_state *)state)->efl & 0x100;
|
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
if (!was_aborted && was_valid)
|
|
|
|
|
/* See which registers have changed after aborting the thread. */
|
|
|
|
|
{
|
|
|
|
|
int check_regno;
|
|
|
|
|
|
2002-06-16 01:04:04 +08:00
|
|
|
|
for (check_regno = 0; check_regno < I386_NUM_GREGS; check_regno++)
|
2000-02-01 11:19:29 +08:00
|
|
|
|
if ((thread->fetched_regs & (1 << check_regno))
|
|
|
|
|
&& memcpy (REG_ADDR (&old_state, check_regno),
|
|
|
|
|
REG_ADDR (state, check_regno),
|
2003-10-02 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_REGISTER_RAW_SIZE): Rename
REGISTER_RAW_SIZE.
* gdbarch.h, gdbarch.c: Re-generate.
* aix-thread.c, alpha-tdep.h, arm-tdep.c, core-sol2.c: Update.
* cris-tdep.c, dve3900-rom.c, findvar.c, frame.c: Update.
* hppa-tdep.c, hppab-nat.c, hppah-nat.c, hppam3-nat.c: Update.
* hpux-thread.c, i386gnu-nat.c, ia64-aix-nat.c: Update.
* ia64-linux-nat.c, ia64-tdep.c, infcmd.c, infptrace.c: Update.
* infrun.c, irix5-nat.c, lynx-nat.c, mips-linux-tdep.c: Update.
* mips-nat.c, mips-tdep.c, mipsv4-nat.c, mn10300-tdep.c: Update.
* monitor.c, ns32k-tdep.c, ppc-linux-nat.c, regcache.c: Update.
* remote-e7000.c, remote-mips.c, remote-sim.c: Update.
* remote-vxmips.c, remote-vxsparc.c, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, rs6000-tdep.c, s390-tdep.c: Update.
* sh64-tdep.c, sparc-nat.c, sparc-tdep.c, stack.c: Update.
* target.c, tracepoint.c, v850-tdep.c, v850ice.c, valops.c: Update.
* vax-tdep.c, vax-tdep.h, x86-64-tdep.c, xstormy16-tdep.c: Update.
* config/m68k/tm-delta68.h, config/m68k/tm-vx68.h: Update.
* config/sparc/tm-sparc.h, config/sparc/tm-sparclynx.h: Update.
2003-10-02 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Rename
REGISTER_RAW_SIZE to DEPRECATED_REGISTER_RAW_SIZE.
* gdb.texinfo (Packets, Stop Reply Packets): Ditto.
* gdbint.texinfo (Target Architecture Definition): Rename
2003-10-02 Andrew Cagney <cagney@redhat.com>
* mi-main.c: Rename REGISTER_RAW_SIZE to
DEPRECATED_REGISTER_RAW_SIZE.
2003-10-03 04:28:31 +08:00
|
|
|
|
DEPRECATED_REGISTER_RAW_SIZE (check_regno)))
|
2000-02-01 11:19:29 +08:00
|
|
|
|
/* Register CHECK_REGNO has changed! Ack! */
|
|
|
|
|
{
|
|
|
|
|
warning ("Register %s changed after the thread was aborted",
|
|
|
|
|
REGISTER_NAME (check_regno));
|
|
|
|
|
if (regno >= 0 && regno != check_regno)
|
2001-07-23 04:35:14 +08:00
|
|
|
|
/* Update GDB's copy of the register. */
|
2004-07-21 Andrew Cagney <cagney@gnu.org>
Use regcache_raw_supply instead of supply_register.
* regcache.h (supply_register): Delete declaration.
* regcache.c (supply_register): Delete function.
* wince.c (do_child_fetch_inferior_registers): Update.
* win32-nat.c (do_child_fetch_inferior_registers)
(fetch_elf_core_registers): Update.
* v850ice.c (v850ice_fetch_registers): Update.
* thread-db.c (thread_db_store_registers): Update.
* sol-thread.c (sol_thread_store_registers): Update.
* shnbsd-tdep.c (shnbsd_supply_reg): Update.
* rs6000-nat.c (fetch_register): Update.
* rom68k-rom.c (rom68k_supply_one_register): Update.
* remote.c (remote_wait, remote_async_wait): Update.
* remote-st.c (get_hex_regs): Update.
* remote-sim.c (gdbsim_fetch_register): Update.
* remote-sds.c (sds_fetch_registers): Update.
* remote-rdp.c (remote_rdp_fetch_register): Update.
* remote-rdi.c (arm_rdi_fetch_registers): Update.
* remote-mips.c (mips_wait, mips_fetch_registers): Update.
* remote-m32r-sdi.c (m32r_fetch_register): Update.
* remote-hms.c (init_hms_cmds): Update.
* remote-est.c (init_est_cmds): Update.
* remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
(e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
* ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
* ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
(fetch_register, supply_vrregset, supply_vrregset)
(fetch_spe_registers): Update.
* ppc-bdm.c (bdm_ppc_fetch_registers): Update.
* monitor.c (monitor_supply_register): Update.
* mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
* mipsnbsd-tdep.c (mipsnbsd_supply_reg)
(mipsnbsd_supply_fpreg): Update.
* mips-nat.c (fetch_inferior_registers)
(fetch_core_registers): Update.
* mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
(supply_fpregset, mips64_supply_gregset)
(mips64_supply_fpregset): Update.
* m68klinux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* m68k-tdep.c (supply_gregset, supply_fpregset): Update.
* m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
* lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
* irix5-nat.c (supply_gregset, supply_fpregset): Update.
* infptrace.c (fetch_register): Update.
* ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
* ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
* i386gnu-nat.c (fetch_fpregs, supply_gregset)
(gnu_fetch_registers, gnu_store_registers): Update.
* i386-nto-tdep.c (i386nto_supply_gregset): Update.
* i386-linux-nat.c (fetch_register, supply_gregset)
(dummy_sse_values): Update.
* hpux-thread.c (hpux_thread_fetch_registers): Update.
* hppah-nat.c (fetch_register): Update.
* hppa-linux-nat.c (fetch_register, supply_gregset)
(supply_fpregset): Update.
* go32-nat.c (fetch_register): Update.
* dve3900-rom.c (fetch_bitmapped_register)
(_initialize_r3900_rom): Update.
* cris-tdep.c (supply_gregset): Update.
* abug-rom.c (init_abug_cmds): Update.
* core-aout.c (fetch_core_registers): Update.
* armnbsd-nat.c (supply_gregset, supply_fparegset)
(fetch_register, fetch_fp_register): Update.
* arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
(fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
(fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
* alphanbsd-tdep.c (fetch_core_registers): Update.
* alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
* alpha-nat.c (fetch_osf_core_registers)
(fetch_osf_core_registers, fetch_osf_core_registers): Update.
* aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
(supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2004-07-22 09:31:49 +08:00
|
|
|
|
regcache_raw_supply (current_regcache, check_regno,
|
|
|
|
|
REG_ADDR (state, check_regno));
|
2000-02-01 11:19:29 +08:00
|
|
|
|
else
|
|
|
|
|
warning ("... also writing this register! Suspicious...");
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
#define fill(state, regno) \
|
2003-09-17 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_REGISTER_BYTE): Rename REGISTER_BYTE.
* gdbarch.h, gdbarch.c: Regenerate.
* arm-linux-tdep.c, core-sol2.c, cris-tdep.c: Update.
* d10v-tdep.c, frame.c: Update.
* hppa-tdep.c, hppab-nat.c, hppah-nat.c, hppam3-nat.c: Update.
* hpux-thread.c, i386gnu-nat.c, ia64-aix-nat.c: Update.
* ia64-linux-nat.c, irix5-nat.c, lynx-nat.c, m68knbsd-nat.c: Update.
* mcore-tdep.c, mips-linux-tdep.c, mips-tdep.c: Update.
* mipsv4-nat.c, mn10300-tdep.c, ns32k-tdep.c: Update.
* ns32knbsd-nat.c, ppc-bdm.c, regcache.c, remote-sds.c: Update.
* remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Update.
* remote.c, rs6000-tdep.c, s390-tdep.c, sh64-tdep.c: Update.
* sparc-nat.c, sparc-tdep.c, sun3-nat.c, v850-tdep.c: Update.
* v850ice.c, vax-tdep.c, xstormy16-tdep.c: Update.
* config/m68k/tm-cisco.h, config/m68k/tm-delta68.h: Update.
* config/pa/nm-hppah.h: Update.
2003-09-17 Andrew Cagney <cagney@redhat.com>
* mi/mi-main.c: Rename REGISTER_BYTE to DEPRECATED_REGISTER_BYTE.
2003-09-17 22:24:31 +08:00
|
|
|
|
memcpy (REG_ADDR(state, regno), &deprecated_registers[DEPRECATED_REGISTER_BYTE (regno)], \
|
2003-10-02 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (DEPRECATED_REGISTER_RAW_SIZE): Rename
REGISTER_RAW_SIZE.
* gdbarch.h, gdbarch.c: Re-generate.
* aix-thread.c, alpha-tdep.h, arm-tdep.c, core-sol2.c: Update.
* cris-tdep.c, dve3900-rom.c, findvar.c, frame.c: Update.
* hppa-tdep.c, hppab-nat.c, hppah-nat.c, hppam3-nat.c: Update.
* hpux-thread.c, i386gnu-nat.c, ia64-aix-nat.c: Update.
* ia64-linux-nat.c, ia64-tdep.c, infcmd.c, infptrace.c: Update.
* infrun.c, irix5-nat.c, lynx-nat.c, mips-linux-tdep.c: Update.
* mips-nat.c, mips-tdep.c, mipsv4-nat.c, mn10300-tdep.c: Update.
* monitor.c, ns32k-tdep.c, ppc-linux-nat.c, regcache.c: Update.
* remote-e7000.c, remote-mips.c, remote-sim.c: Update.
* remote-vxmips.c, remote-vxsparc.c, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, rs6000-tdep.c, s390-tdep.c: Update.
* sh64-tdep.c, sparc-nat.c, sparc-tdep.c, stack.c: Update.
* target.c, tracepoint.c, v850-tdep.c, v850ice.c, valops.c: Update.
* vax-tdep.c, vax-tdep.h, x86-64-tdep.c, xstormy16-tdep.c: Update.
* config/m68k/tm-delta68.h, config/m68k/tm-vx68.h: Update.
* config/sparc/tm-sparc.h, config/sparc/tm-sparclynx.h: Update.
2003-10-02 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Rename
REGISTER_RAW_SIZE to DEPRECATED_REGISTER_RAW_SIZE.
* gdb.texinfo (Packets, Stop Reply Packets): Ditto.
* gdbint.texinfo (Target Architecture Definition): Rename
2003-10-02 Andrew Cagney <cagney@redhat.com>
* mi-main.c: Rename REGISTER_RAW_SIZE to
DEPRECATED_REGISTER_RAW_SIZE.
2003-10-03 04:28:31 +08:00
|
|
|
|
DEPRECATED_REGISTER_RAW_SIZE (regno))
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
if (regno == -1)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
2001-07-23 04:35:14 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
proc_debug (thread, "storing all registers");
|
1999-07-08 04:19:36 +08:00
|
|
|
|
|
2002-06-16 01:04:04 +08:00
|
|
|
|
for (i = 0; i < I386_NUM_GREGS; i++)
|
2002-11-07 10:40:28 +08:00
|
|
|
|
if (deprecated_register_valid[i])
|
2000-02-01 11:19:29 +08:00
|
|
|
|
fill (state, i);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
proc_debug (thread, "storing register %s", REGISTER_NAME (regno));
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2002-11-07 10:40:28 +08:00
|
|
|
|
gdb_assert (deprecated_register_valid[regno]);
|
2000-02-01 11:19:29 +08:00
|
|
|
|
fill (state, regno);
|
|
|
|
|
}
|
2000-03-11 08:34:50 +08:00
|
|
|
|
|
|
|
|
|
/* Restore the T bit. */
|
|
|
|
|
((struct i386_thread_state *)state)->efl &= ~0x100;
|
|
|
|
|
((struct i386_thread_state *)state)->efl |= trace;
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|
1999-07-08 04:19:36 +08:00
|
|
|
|
|
2000-02-01 11:19:29 +08:00
|
|
|
|
#undef fill
|
1999-04-16 09:35:26 +08:00
|
|
|
|
|
2002-06-16 01:04:04 +08:00
|
|
|
|
if (regno >= I386_NUM_GREGS || regno == -1)
|
2000-02-01 11:19:29 +08:00
|
|
|
|
{
|
|
|
|
|
proc_debug (thread, "storing floating-point registers");
|
2001-07-23 04:35:14 +08:00
|
|
|
|
|
|
|
|
|
store_fpregs (thread, regno);
|
2000-02-01 11:19:29 +08:00
|
|
|
|
}
|
1999-04-16 09:35:26 +08:00
|
|
|
|
}
|