mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 11:04:58 -06:00
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>
This commit is contained in:
parent
667b8e29c5
commit
959082fc4a
19 changed files with 41 additions and 39 deletions
|
@ -2097,6 +2097,7 @@ static inline void gen_intermediate_code_internal(TileGXCPU *cpu,
|
|||
tcg_ctx.gen_opc_icount[lj] = num_insns;
|
||||
}
|
||||
tcg_gen_insn_start(dc->pc);
|
||||
num_insns++;
|
||||
|
||||
translate_one_bundle(dc, cpu_ldq_data(env, dc->pc));
|
||||
|
||||
|
@ -2105,7 +2106,7 @@ static inline void gen_intermediate_code_internal(TileGXCPU *cpu,
|
|||
break;
|
||||
}
|
||||
dc->pc += TILEGX_BUNDLE_SIZE_IN_BYTES;
|
||||
if (++num_insns >= max_insns
|
||||
if (num_insns >= max_insns
|
||||
|| dc->pc >= next_page_start
|
||||
|| tcg_op_buf_full()) {
|
||||
/* Ending the TB due to TB size or page boundary. Set PC. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue