mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
target/arm: Clean address for DC ZVA
This data access was forgotten when we added support for cleaning
addresses of TBI information.
Fixes: 3a471103ac
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20200302175829.2183-8-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
1371b02c5a
commit
597d61a3b1
1 changed files with 1 additions and 1 deletions
|
@ -1784,7 +1784,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(cpu_env, tcg_rt);
|
gen_helper_dc_zva(cpu_env, tcg_rt);
|
||||||
return;
|
return;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue