* s390-tdep.c (s390_collect_regset): New function.

(s390_gregset, s390x_gregset, s390_fpregset): Add it.
This commit is contained in:
Ulrich Weigand 2006-05-06 01:12:11 +00:00
parent 875dc2fc84
commit 92f38ec2e1
2 changed files with 30 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2006-05-06 Ulrich Weigand <uweigand@de.ibm.com>
* s390-tdep.c (s390_collect_regset): New function.
(s390_gregset, s390x_gregset, s390_fpregset): Add it.
2006-05-06 Nick Roberts <nickrob@snap.net.nz>
* dwarf2read.c: Make LOC_OPTIMIZED_OUT the default value for a

View File

@ -444,19 +444,41 @@ s390_supply_regset (const struct regset *regset, struct regcache *regcache,
}
}
/* Collect register REGNUM from the register cache REGCACHE and store
it in the buffer specified by REGS and LEN as described by the
general-purpose register set REGSET. If REGNUM is -1, do this for
all registers in REGSET. */
static void
s390_collect_regset (const struct regset *regset,
const struct regcache *regcache,
int regnum, void *regs, size_t len)
{
const int *offset = regset->descr;
int i;
for (i = 0; i < S390_NUM_REGS; i++)
{
if ((regnum == i || regnum == -1) && offset[i] != -1)
regcache_raw_collect (regcache, i, (char *)regs + offset[i]);
}
}
static const struct regset s390_gregset = {
s390_regmap_gregset,
s390_supply_regset
s390_supply_regset,
s390_collect_regset
};
static const struct regset s390x_gregset = {
s390x_regmap_gregset,
s390_supply_regset
s390_supply_regset,
s390_collect_regset
};
static const struct regset s390_fpregset = {
s390_regmap_fpregset,
s390_supply_regset
s390_supply_regset,
s390_collect_regset
};
/* Return the appropriate register set for the core section identified