On 17/06/2015 19:54, Sergey Fedorov wrote: > > - /* tb_gen_code can flush our orig_tb, invalidate it now */ > - tb_phys_invalidate(orig_tb, -1); > - tb = tb_gen_code(cpu, pc, cs_base, flags, > + tb = tb_gen_code(cpu, orig_tb->pc, orig_tb->cs_base, orig_tb->flags, > max_cycles | CF_NOCACHE); > + tb->orig_tb = orig_tb;
What happens here if tb_gen_code calls tb_flush? Paolo