diff options
author | Richard Henderson | 2020-07-03 17:59:43 +0200 |
---|---|---|
committer | Peter Maydell | 2020-07-03 17:59:43 +0200 |
commit | 4b4dc9750a0aa0b9766bd755bf6512a84744ce8a (patch) | |
tree | ff0f8c53d889055223d3834aab40dadeff562716 /target/arm/translate-a64.h | |
parent | tests/acpi: virt: update golden masters for DSDT (diff) | |
download | qemu-4b4dc9750a0aa0b9766bd755bf6512a84744ce8a.tar.gz qemu-4b4dc9750a0aa0b9766bd755bf6512a84744ce8a.tar.xz qemu-4b4dc9750a0aa0b9766bd755bf6512a84744ce8a.zip |
target/arm: Fix temp double-free in sve ldr/str
The temp that gets assigned to clean_addr has been allocated with
new_tmp_a64, which means that it will be freed at the end of the
instruction. Freeing it earlier leads to assertion failure.
The loop creates a complication, in which we allocate a new local
temp, which does need freeing, and the final code path is shared
between the loop and non-loop.
Fix this complication by adding new_tmp_a64_local so that the new
local temp is freed at the end, and can be treated exactly like
the non-loop path.
Fixes: bba87d0a0f4
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20200702175605.1987125-1-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/translate-a64.h')
-rw-r--r-- | target/arm/translate-a64.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/translate-a64.h b/target/arm/translate-a64.h index 49e4865918..647f0c74f6 100644 --- a/target/arm/translate-a64.h +++ b/target/arm/translate-a64.h @@ -30,6 +30,7 @@ void unallocated_encoding(DisasContext *s); } while (0) TCGv_i64 new_tmp_a64(DisasContext *s); +TCGv_i64 new_tmp_a64_local(DisasContext *s); TCGv_i64 new_tmp_a64_zero(DisasContext *s); TCGv_i64 cpu_reg(DisasContext *s, int reg); TCGv_i64 cpu_reg_sp(DisasContext *s, int reg); |