mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
gen-icount.h: Rename gen_icount_start/end to gen_tb_start/end
The gen_icount_start/end functions are now somewhat misnamed since they are useful for generic "start/end of TB" code, used for more than just icount. Rename them to gen_tb_start/end. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
3a808cc407
commit
806f352d3d
16 changed files with 32 additions and 32 deletions
|
@ -2913,7 +2913,7 @@ static void gen_intermediate_code_internal(
|
|||
dc.next_icount = tcg_temp_local_new_i32();
|
||||
}
|
||||
|
||||
gen_icount_start();
|
||||
gen_tb_start();
|
||||
|
||||
if (env->singlestep_enabled && env->exception_taken) {
|
||||
env->exception_taken = 0;
|
||||
|
@ -2991,7 +2991,7 @@ static void gen_intermediate_code_internal(
|
|||
if (dc.is_jmp == DISAS_NEXT) {
|
||||
gen_jumpi(&dc, dc.pc, 0);
|
||||
}
|
||||
gen_icount_end(tb, insn_count);
|
||||
gen_tb_end(tb, insn_count);
|
||||
*tcg_ctx.gen_opc_ptr = INDEX_op_end;
|
||||
|
||||
if (search_pc) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue