target/i386: assert that gen_update_eip_cur and gen_update_eip_next are the same in tb_stop
This is an invariant now that there are no calls to gen_eob_inhibit_irq() outside tb_stop. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2512f786bf
commit
ad8f2ad77e
@ -4798,6 +4798,7 @@ static void i386_tr_tb_stop(DisasContextBase *dcbase, CPUState *cpu)
|
||||
gen_jmp_rel_csize(dc, 0, 0);
|
||||
break;
|
||||
case DISAS_EOB_NEXT:
|
||||
assert(dc->base.pc_next == dc->pc);
|
||||
gen_update_eip_cur(dc);
|
||||
/* fall through */
|
||||
case DISAS_EOB_ONLY:
|
||||
@ -4807,6 +4808,7 @@ static void i386_tr_tb_stop(DisasContextBase *dcbase, CPUState *cpu)
|
||||
gen_eob_syscall(dc);
|
||||
break;
|
||||
case DISAS_EOB_INHIBIT_IRQ:
|
||||
assert(dc->base.pc_next == dc->pc);
|
||||
gen_update_eip_cur(dc);
|
||||
gen_eob_inhibit_irq(dc);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user