mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 22:07:58 +08:00
Use regcache->tdesc instead of arm_hwcap
arm_hwcap is a global variable, and we should avoid using it as much as we can. Instead of checking arm_hwcap, we can check whether regcache->tdesc is a certain kind of target description. This is what this patch does. gdb/gdbserver: 2015-07-30 Yao Qi <yao.qi@linaro.org> * linux-arm-low.c (arm_fill_wmmxregset): Don't use arm_hwcap. Use regcache->tdesc instead. (arm_store_wmmxregset): Likewise. (arm_fill_vfpregset): Likewise. (arm_store_vfpregset): Likewise.
This commit is contained in:
@ -1,3 +1,11 @@
|
||||
2015-07-30 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* linux-arm-low.c (arm_fill_wmmxregset): Don't use arm_hwcap.
|
||||
Use regcache->tdesc instead.
|
||||
(arm_store_wmmxregset): Likewise.
|
||||
(arm_fill_vfpregset): Likewise.
|
||||
(arm_store_vfpregset): Likewise.
|
||||
|
||||
2015-07-30 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* linux-arm-low.c: Include arch/arm.h.
|
||||
|
@ -185,7 +185,7 @@ arm_fill_wmmxregset (struct regcache *regcache, void *buf)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (!(arm_hwcap & HWCAP_IWMMXT))
|
||||
if (regcache->tdesc != tdesc_arm_with_iwmmxt)
|
||||
return;
|
||||
|
||||
for (i = 0; i < 16; i++)
|
||||
@ -202,7 +202,7 @@ arm_store_wmmxregset (struct regcache *regcache, const void *buf)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (!(arm_hwcap & HWCAP_IWMMXT))
|
||||
if (regcache->tdesc != tdesc_arm_with_iwmmxt)
|
||||
return;
|
||||
|
||||
for (i = 0; i < 16; i++)
|
||||
@ -219,13 +219,13 @@ arm_fill_vfpregset (struct regcache *regcache, void *buf)
|
||||
{
|
||||
int i, num, base;
|
||||
|
||||
if (!(arm_hwcap & HWCAP_VFP))
|
||||
return;
|
||||
|
||||
if ((arm_hwcap & (HWCAP_VFPv3 | HWCAP_VFPv3D16)) == HWCAP_VFPv3)
|
||||
if (regcache->tdesc == tdesc_arm_with_neon
|
||||
|| regcache->tdesc == tdesc_arm_with_vfpv3)
|
||||
num = 32;
|
||||
else
|
||||
else if (regcache->tdesc == tdesc_arm_with_vfpv2)
|
||||
num = 16;
|
||||
else
|
||||
return;
|
||||
|
||||
base = find_regno (regcache->tdesc, "d0");
|
||||
for (i = 0; i < num; i++)
|
||||
@ -239,13 +239,13 @@ arm_store_vfpregset (struct regcache *regcache, const void *buf)
|
||||
{
|
||||
int i, num, base;
|
||||
|
||||
if (!(arm_hwcap & HWCAP_VFP))
|
||||
return;
|
||||
|
||||
if ((arm_hwcap & (HWCAP_VFPv3 | HWCAP_VFPv3D16)) == HWCAP_VFPv3)
|
||||
if (regcache->tdesc == tdesc_arm_with_neon
|
||||
|| regcache->tdesc == tdesc_arm_with_vfpv3)
|
||||
num = 32;
|
||||
else
|
||||
else if (regcache->tdesc == tdesc_arm_with_vfpv2)
|
||||
num = 16;
|
||||
else
|
||||
return;
|
||||
|
||||
base = find_regno (regcache->tdesc, "d0");
|
||||
for (i = 0; i < num; i++)
|
||||
|
Reference in New Issue
Block a user