mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-11 20:05:36 +00:00
target/arm: Clean address for DC ZVA
This data access was forgotten when we added support for cleaning addresses of TBI information. Fixes: 3a471103ac1823ba Backports commit 597d61a3b1f94c53a3aaa77671697c0c5f797dbf from qemu.
This commit is contained in:
parent
a37d9b2be5
commit
e040675fbf
|
@ -1975,7 +1975,7 @@ static void handle_sys(DisasContext *s, uint32_t insn, bool isread,
|
||||||
return;
|
return;
|
||||||
case ARM_CP_DC_ZVA:
|
case ARM_CP_DC_ZVA:
|
||||||
/* Writes clear the aligned block of memory which rt points into. */
|
/* Writes clear the aligned block of memory which rt points into. */
|
||||||
tcg_rt = cpu_reg(s, rt);
|
tcg_rt = clean_data_tbi(s, cpu_reg(s, rt));
|
||||||
gen_helper_dc_zva(tcg_ctx, tcg_ctx->cpu_env, tcg_rt);
|
gen_helper_dc_zva(tcg_ctx, tcg_ctx->cpu_env, tcg_rt);
|
||||||
return;
|
return;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue