]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
target/mips: optimize indirect branches
authorAurelien Jarno <aurelien@aurel32.net>
Sun, 30 Apr 2017 14:52:54 +0000 (16:52 +0200)
committerRichard Henderson <rth@twiddle.net>
Mon, 5 Jun 2017 16:25:42 +0000 (09:25 -0700)
Cc: Yongbok Kim <yongbok.kim@imgtec.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Message-Id: <20170430145254.25616-4-aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
target/mips/translate.c

index 1a7ac07c678ac9f75de12854ef2c97228a9740a7..559f8fed89f8ce45d19d0c3519a4b090135ea06b 100644 (file)
@@ -10725,7 +10725,7 @@ static void gen_branch(DisasContext *ctx, int insn_bytes)
                 save_cpu_state(ctx, 0);
                 gen_helper_raise_exception_debug(cpu_env);
             }
-            tcg_gen_exit_tb(0);
+            tcg_gen_lookup_and_goto_ptr(cpu_PC);
             break;
         default:
             fprintf(stderr, "unknown branch 0x%x\n", proc_hflags);