diff options
author | Mark Kettenis <kettenis@gnu.org> | 2003-09-28 13:35:44 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2003-09-28 13:35:44 +0000 |
commit | 1f03e60bf50555cdf47644b2c9ad2bee61f2438c (patch) | |
tree | 2e14251e6bf2644a5c2c5c87ea8bb457a35402cb /gdb/i387-tdep.c | |
parent | 487b5f1317eab676835f06f70ad2d6e4bf03f393 (diff) | |
download | gdb-1f03e60bf50555cdf47644b2c9ad2bee61f2438c.tar.gz |
* i387-tdep.c (i387_supply_fsave, i387_supply_fxsave): Add
regcache argument and reverse the order of the other two
arguments. Remove local regcache variable. Determine
architecture from REGCACHE. Update comments.
* x86-64-tdep.c (x86_64_supply_fxsave): Add regcache argument and
reverse the order of the other two arguments. Remove local
regcache variable. Determine architecture from REGCACHE. Update
comments.
* i387-tdep.h (i387_supply_fsave, i387_supply_fxsave): Adjust
prototypes. Update comments.
* x86-64-tdep.c (x86_64_supply_fxsave): Adjust prototype. Adjust
comment.
* amd64fbsd-nat.c (supply_fpregset, fetch_inferior_registers):
Update.
* go32-nat.c (fetch_register, go32_fetch_registers): Update.
* i386-interix-nat.c (supply_fpregset): Update.
* i386-linux-nat.c (supply_fpregset, supply_fpxregset): Update.
* i386-nto-tdep.c (i386nto_supply_fpregset): Update.
* i386gnu-nat.c (fetch_fpregs, supply_fpregset): Update.
* i386bsd-nat.c (supply_fpregset, fetch_inferior_registers): Update.
* i386nbsd-tdep.c (fetch_core_registers, fetch_elfcore_registers):
Update.
* i386obsd-tdep.c (fetch_core_registers): Update.
* i386v4-nat.c (supply_fpregset): Update.
* x86-64-linux-nat.c (supply_fpregset): Update.
* x86-64-linux-tdep.c (fetch_core_registers): Update.
Diffstat (limited to 'gdb/i387-tdep.c')
-rw-r--r-- | gdb/i387-tdep.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index 63943e7b2d7..ff369f982fe 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -378,15 +378,14 @@ static int fsave_offset[] = (fsave + fsave_offset[regnum - I387_ST0_REGNUM]) -/* Fill register REGNUM in GDB's register cache with the appropriate - value from *FSAVE. This function masks off any of the reserved - bits in *FSAVE. */ +/* Fill register REGNUM in REGCACHE with the appropriate value from + *FSAVE. This function masks off any of the reserved bits in + *FSAVE. */ void -i387_supply_fsave (const void *fsave, int regnum) +i387_supply_fsave (struct regcache *regcache, int regnum, const void *fsave) { - struct regcache *regcache = current_regcache; - struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch); + struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache)); const char *regs = fsave; int i; @@ -524,15 +523,14 @@ static int fxsave_offset[] = static int i387_tag (const unsigned char *raw); -/* Fill register REGNUM in GDB's register cache with the appropriate +/* Fill register REGNUM in REGCACHE with the appropriate floating-point or SSE register value from *FXSAVE. This function masks off any of the reserved bits in *FXSAVE. */ void -i387_supply_fxsave (const void *fxsave, int regnum) +i387_supply_fxsave (struct regcache *regcache, int regnum, const void *fxsave) { - struct regcache *regcache = current_regcache; - struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch); + struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache)); const char *regs = fxsave; int i; |