mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 12:15:41 +00:00
target/arm: Flush high bits of sve register after AdvSIMD TBL/TBX
Writes to AdvSIMD registers flush the bits above 128. Backports commit 263273bc988e677ebadeaf7d0e49f6792a112db5 from qemu
This commit is contained in:
parent
18e9c4805f
commit
6eb8472344
|
@ -7218,6 +7218,7 @@ static void disas_simd_tb(DisasContext *s, uint32_t insn)
|
|||
tcg_temp_free_i64(tcg_ctx, tcg_resl);
|
||||
write_vec_element(s, tcg_resh, rd, 1, MO_64);
|
||||
tcg_temp_free_i64(tcg_ctx, tcg_resh);
|
||||
clear_vec_high(s, true, rd);
|
||||
}
|
||||
|
||||
/* ZIP/UZP/TRN
|
||||
|
|
Loading…
Reference in a new issue