mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 05:05:36 +00:00
target/arm: Use neon_element_offset in vfp_reg_offset
This seems a bit more readable than using offsetof CPU_DoubleU. Backports d8719785fde2f5041986853a314c05c6f567d3cb
This commit is contained in:
parent
c1ca9e53da
commit
e390c1ec7f
|
@ -1167,18 +1167,13 @@ neon_element_offset(int reg, int element, MemOp size)
|
|||
return neon_full_reg_offset(reg) + ofs;
|
||||
}
|
||||
|
||||
static inline long vfp_reg_offset(bool dp, unsigned reg)
|
||||
/* Return the offset of a VFP Dreg (dp = true) or VFP Sreg (dp = false). */
|
||||
static long vfp_reg_offset(bool dp, unsigned reg)
|
||||
{
|
||||
if (dp) {
|
||||
return offsetof(CPUARMState, vfp.zregs[reg >> 1].d[reg & 1]);
|
||||
return neon_element_offset(reg, 0, MO_64);
|
||||
} else {
|
||||
long ofs = offsetof(CPUARMState, vfp.zregs[reg >> 2].d[(reg >> 1) & 1]);
|
||||
if (reg & 1) {
|
||||
ofs += offsetof(CPU_DoubleU, l.upper);
|
||||
} else {
|
||||
ofs += offsetof(CPU_DoubleU, l.lower);
|
||||
}
|
||||
return ofs;
|
||||
return neon_element_offset(reg >> 1, reg & 1, MO_32);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue