mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-02 19:46:09 +08:00
regcache_cooked_read -> regcache->cooked_read
Similarly, this patch replaces regcache_cooked_read with regcache->cooked_read. gdb: 2018-01-22 Yao Qi <yao.qi@linaro.org> * ia64-tdep.c (ia64_pseudo_register_read): Call regcache->cooked_read instead of regcache_cooked_read_unsigned. * m32c-tdep.c (m32c_cat_read): Likewise. (m32c_r3r2r1r0_read): Likewise. * m68hc11-tdep.c (m68hc11_pseudo_register_read): Likewise. * xtensa-tdep.c (xtensa_register_read_masked): Likewise.
This commit is contained in:
@ -483,17 +483,16 @@ m32c_cat_read (struct m32c_reg *reg, struct regcache *cache, gdb_byte *buf)
|
||||
|
||||
if (gdbarch_byte_order (reg->arch) == BFD_ENDIAN_BIG)
|
||||
{
|
||||
status = regcache_cooked_read (cache, reg->rx->num, buf);
|
||||
status = cache->cooked_read (reg->rx->num, buf);
|
||||
if (status == REG_VALID)
|
||||
status = regcache_cooked_read (cache, reg->ry->num, buf + high_bytes);
|
||||
status = cache->cooked_read (reg->ry->num, buf + high_bytes);
|
||||
}
|
||||
else
|
||||
{
|
||||
status = regcache_cooked_read (cache, reg->rx->num, buf + low_bytes);
|
||||
status = cache->cooked_read (reg->rx->num, buf + low_bytes);
|
||||
if (status == REG_VALID)
|
||||
status = regcache_cooked_read (cache, reg->ry->num, buf);
|
||||
status = cache->cooked_read (reg->ry->num, buf);
|
||||
}
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
@ -537,23 +536,23 @@ m32c_r3r2r1r0_read (struct m32c_reg *reg, struct regcache *cache, gdb_byte *buf)
|
||||
|
||||
if (gdbarch_byte_order (reg->arch) == BFD_ENDIAN_BIG)
|
||||
{
|
||||
status = regcache_cooked_read (cache, tdep->r0->num, buf + len * 3);
|
||||
status = cache->cooked_read (tdep->r0->num, buf + len * 3);
|
||||
if (status == REG_VALID)
|
||||
status = regcache_cooked_read (cache, tdep->r1->num, buf + len * 2);
|
||||
status = cache->cooked_read (tdep->r1->num, buf + len * 2);
|
||||
if (status == REG_VALID)
|
||||
status = regcache_cooked_read (cache, tdep->r2->num, buf + len * 1);
|
||||
status = cache->cooked_read (tdep->r2->num, buf + len * 1);
|
||||
if (status == REG_VALID)
|
||||
status = regcache_cooked_read (cache, tdep->r3->num, buf);
|
||||
status = cache->cooked_read (tdep->r3->num, buf);
|
||||
}
|
||||
else
|
||||
{
|
||||
status = regcache_cooked_read (cache, tdep->r0->num, buf);
|
||||
status = cache->cooked_read (tdep->r0->num, buf);
|
||||
if (status == REG_VALID)
|
||||
status = regcache_cooked_read (cache, tdep->r1->num, buf + len * 1);
|
||||
status = cache->cooked_read (tdep->r1->num, buf + len * 1);
|
||||
if (status == REG_VALID)
|
||||
status = regcache_cooked_read (cache, tdep->r2->num, buf + len * 2);
|
||||
status = cache->cooked_read (tdep->r2->num, buf + len * 2);
|
||||
if (status == REG_VALID)
|
||||
status = regcache_cooked_read (cache, tdep->r3->num, buf + len * 3);
|
||||
status = cache->cooked_read (tdep->r3->num, buf + len * 3);
|
||||
}
|
||||
|
||||
return status;
|
||||
|
Reference in New Issue
Block a user