diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-06 14:12:13 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-06 14:12:13 +0000 |
commit | 390c15228a6b8663389bed8206e1b6e0f5434194 (patch) | |
tree | d594dcbfbc744d17896dbb219604cefb934c780b /gdb/alphabsd-nat.c | |
parent | 647478e0682504636c2bc9de109a44f70826cbb6 (diff) | |
download | binutils-390c15228a6b8663389bed8206e1b6e0f5434194.zip binutils-390c15228a6b8663389bed8206e1b6e0f5434194.tar.gz binutils-390c15228a6b8663389bed8206e1b6e0f5434194.tar.bz2 |
* alpha-tdep.c (alpha_supply_int_regs, alpha_fill_int_regs,
alpha_supply_fp_regs, alpha_fill_fp_regs): Add REGCACHE parameter,
use it instead of current_regcache.
* alpha-tdep.h (struct regcache): Add forward declaration.
(alpha_supply_int_regs, alpha_fill_int_regs, alpha_supply_fp_regs,
alpha_fill_fp_regs): Update prototypes.
* alpha-nat.c: (supply_gregset, fill_gregset, supply_fpregset,
fill_fpregset): Pass current_regcache to alpha_supply/fill_ routines.
* alpha-linux-nat.c: Include "regcache.h".
(supply_gregset, fill_gregset, supply_fpregset, fill_fpregset): Pass
current_regcache to alpha_supply/fill_ routines.
* alphabsd-tdep.c: Include "regcache.h".
(alphabsd_supply_reg, alphabsd_supply_fpreg): Add REGCACHE paramter,
pass it to alpha_supply_ routines. Make REGS const.
(alphabsd_fill_reg, alphabsd_fill_fpreg): Add REGCACHE parameter,
pass it to alpha_fill_ routines.
* alphabsd-tdep.h (struct regcache): Add forward declaration.
(alphabsd_supply_reg, alphabsd_fill_reg, alphabsd_supply_fpreg,
alphabsd_fill_fpreg): Update prototypes.
* alphanbsd-nat.c (supply_gregset, fill_gregset, supply_fpregset,
fill_fpregset, alphabsd_fetch_inferior_registers,
alphabsd_store_inferior_registers): Pass current_regcache to
alphabsd_supply/fill_ routines.
* Makefile.in (alpha-linux-nat.o, alphabsd-tdep.o): Update
dependencies.
Diffstat (limited to 'gdb/alphabsd-nat.c')
-rw-r--r-- | gdb/alphabsd-nat.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/alphabsd-nat.c b/gdb/alphabsd-nat.c index fc0f0ad..a8bf532 100644 --- a/gdb/alphabsd-nat.c +++ b/gdb/alphabsd-nat.c @@ -52,25 +52,25 @@ typedef struct fpreg fpregset_t; void supply_gregset (gregset_t *gregsetp) { - alphabsd_supply_reg ((char *) gregsetp, -1); + alphabsd_supply_reg (current_regcache, (char *) gregsetp, -1); } void fill_gregset (gregset_t *gregsetp, int regno) { - alphabsd_fill_reg ((char *) gregsetp, regno); + alphabsd_fill_reg (current_regcache, (char *) gregsetp, regno); } void supply_fpregset (fpregset_t *fpregsetp) { - alphabsd_supply_fpreg ((char *) fpregsetp, -1); + alphabsd_supply_fpreg (current_regcache, (char *) fpregsetp, -1); } void fill_fpregset (fpregset_t *fpregsetp, int regno) { - alphabsd_fill_fpreg ((char *) fpregsetp, regno); + alphabsd_fill_fpreg (current_regcache, (char *) fpregsetp, regno); } /* Determine if PT_GETREGS fetches this register. */ @@ -96,7 +96,7 @@ alphabsd_fetch_inferior_registers (int regno) (PTRACE_TYPE_ARG3) &gregs, 0) == -1) perror_with_name (_("Couldn't get registers")); - alphabsd_supply_reg ((char *) &gregs, regno); + alphabsd_supply_reg (current_regcache, (char *) &gregs, regno); if (regno != -1) return; } @@ -109,7 +109,7 @@ alphabsd_fetch_inferior_registers (int regno) (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) perror_with_name (_("Couldn't get floating point status")); - alphabsd_supply_fpreg ((char *) &fpregs, regno); + alphabsd_supply_fpreg (current_regcache, (char *) &fpregs, regno); } } @@ -126,7 +126,7 @@ alphabsd_store_inferior_registers (int regno) (PTRACE_TYPE_ARG3) &gregs, 0) == -1) perror_with_name (_("Couldn't get registers")); - alphabsd_fill_reg ((char *) &gregs, regno); + alphabsd_fill_reg (current_regcache, (char *) &gregs, regno); if (ptrace (PT_SETREGS, PIDGET (inferior_ptid), (PTRACE_TYPE_ARG3) &gregs, 0) == -1) @@ -144,7 +144,7 @@ alphabsd_store_inferior_registers (int regno) (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) perror_with_name (_("Couldn't get floating point status")); - alphabsd_fill_fpreg ((char *) &fpregs, regno); + alphabsd_fill_fpreg (current_regcache, (char *) &fpregs, regno); if (ptrace (PT_SETFPREGS, PIDGET (inferior_ptid), (PTRACE_TYPE_ARG3) &fpregs, 0) == -1) |