]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
target/sh4: fix TCG leak during gusa sequence
authorAlex Bennée <alex.bennee@linaro.org>
Wed, 6 Dec 2017 09:30:50 +0000 (09:30 +0000)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Mon, 8 Jan 2018 13:52:41 +0000 (07:52 -0600)
This fixes bug #1735384 while running java under qemu-sh4. When debug
was enabled it showed a problem with TCG temps. Once fixed I was able
to run java -version normally.

Cc: qemu-stable@nongnu.org
Reported-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20171206093050.25308-1-alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
(cherry picked from commit 6d56fc6cc372284a4571f09b361a9ccd99318103)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
target/sh4/translate.c

index 703020fe87f58f282ea296d36c2bbd4a86b35e8c..b4b5c822d080183f4e74188e340f524cb2f4821b 100644 (file)
@@ -2189,7 +2189,7 @@ static int decode_gusa(DisasContext *ctx, CPUSH4State *env, int *pmax_insns)
     }
 
     /* If op_src is not a valid register, then op_arg was a constant.  */
-    if (op_src < 0) {
+    if (op_src < 0 && !TCGV_IS_UNUSED(op_arg)) {
         tcg_temp_free_i32(op_arg);
     }