mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 18:25:28 +00:00
target-arm: Fix aarch64 vec_reg_offset
Since CPUARMState.vfp.regs is not 16 byte aligned, the ^ 8 fixup used for a big-endian host doesn't do what's intended. Fix this by adding in the vfp.regs offset after computing the inter-register offset. Backports commit d437262fa8edd0d9fbe038a515dda3dbf7c5bb54 from qemu
This commit is contained in:
parent
ce9dca9c5e
commit
0f94929fa7
|
@ -554,7 +554,7 @@ static inline void assert_fp_access_checked(DisasContext *s)
|
|||
static inline int vec_reg_offset(DisasContext *s, int regno,
|
||||
int element, TCGMemOp size)
|
||||
{
|
||||
int offs = offsetof(CPUARMState, vfp.regs[regno * 2]);
|
||||
int offs = 0;
|
||||
#ifdef HOST_WORDS_BIGENDIAN
|
||||
/* This is complicated slightly because vfp.regs[2n] is
|
||||
* still the low half and vfp.regs[2n+1] the high half
|
||||
|
@ -567,6 +567,7 @@ static inline int vec_reg_offset(DisasContext *s, int regno,
|
|||
#else
|
||||
offs += element * (1 << size);
|
||||
#endif
|
||||
offs += offsetof(CPUARMState, vfp.regs[regno * 2]);
|
||||
assert_fp_access_checked(s);
|
||||
return offs;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue