diff options
author | Richard Henderson | 2015-09-17 23:25:46 +0200 |
---|---|---|
committer | Richard Henderson | 2015-10-07 11:36:27 +0200 |
commit | 959082fc4a93a016a6b697e1e0c2b373d8a3a373 (patch) | |
tree | dda759b30da56f02813c9328372a4af3b23c0cb0 /target-sh4 | |
parent | target-*: Unconditionally emit tcg_gen_insn_start (diff) | |
download | qemu-959082fc4a93a016a6b697e1e0c2b373d8a3a373.tar.gz qemu-959082fc4a93a016a6b697e1e0c2b373d8a3a373.tar.xz qemu-959082fc4a93a016a6b697e1e0c2b373d8a3a373.zip |
target-*: Increment num_insns immediately after tcg_gen_insn_start
This does tidy the icount test common to all targets.
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-sh4')
-rw-r--r-- | target-sh4/translate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-sh4/translate.c b/target-sh4/translate.c index 1e43e6d62d..e0294e7d4e 100644 --- a/target-sh4/translate.c +++ b/target-sh4/translate.c @@ -1873,14 +1873,14 @@ gen_intermediate_code_internal(SuperHCPU *cpu, TranslationBlock *tb, tcg_ctx.gen_opc_icount[ii] = num_insns; } tcg_gen_insn_start(ctx.pc); + num_insns++; - if (num_insns + 1 == max_insns && (tb->cflags & CF_LAST_IO)) { + if (num_insns == max_insns && (tb->cflags & CF_LAST_IO)) { gen_io_start(); } ctx.opcode = cpu_lduw_code(env, ctx.pc); decode_opc(&ctx); - num_insns++; ctx.pc += 2; if ((ctx.pc & (TARGET_PAGE_SIZE - 1)) == 0) break; |