Re: [Qemu-devel] [PATCH] mttcg: Set jmp_env to handle exit from tb_gen_code

2017-02-21 Thread Pranith Kumar
Alex Bennée writes: > Pranith Kumar writes: > >> Alex Bennée writes: >> >>> Pranith Kumar writes: >>> tb_gen_code() can exit execution using cpu_exit_loop() when it cannot allocate new tb's. To handle this, we need to properly set the

Re: [Qemu-devel] [PATCH] mttcg: Set jmp_env to handle exit from tb_gen_code

2017-02-21 Thread Alex Bennée
Pranith Kumar writes: > Alex Bennée writes: > >> Pranith Kumar writes: >> >>> tb_gen_code() can exit execution using cpu_exit_loop() when it cannot >>> allocate new tb's. To handle this, we need to properly set the jmp_env >>> pointer ahead of

Re: [Qemu-devel] [PATCH] mttcg: Set jmp_env to handle exit from tb_gen_code

2017-02-20 Thread Pranith Kumar
On Mon, Feb 20, 2017 at 7:35 PM, Alex Bennée wrote: > > Pranith Kumar writes: > >> Alex Bennée writes: >> >>> Pranith Kumar writes: >>> tb_gen_code() can exit execution using cpu_exit_loop() when it cannot allocate

Re: [Qemu-devel] [PATCH] mttcg: Set jmp_env to handle exit from tb_gen_code

2017-02-20 Thread Alex Bennée
Pranith Kumar writes: > Alex Bennée writes: > >> Pranith Kumar writes: >> >>> tb_gen_code() can exit execution using cpu_exit_loop() when it cannot >>> allocate new tb's. To handle this, we need to properly set the jmp_env >>> pointer ahead of

Re: [Qemu-devel] [PATCH] mttcg: Set jmp_env to handle exit from tb_gen_code

2017-02-20 Thread Pranith Kumar
Alex Bennée writes: > Pranith Kumar writes: > >> tb_gen_code() can exit execution using cpu_exit_loop() when it cannot >> allocate new tb's. To handle this, we need to properly set the jmp_env >> pointer ahead of calling tb_gen_code(). >> >> CC:Alex Bennée

Re: [Qemu-devel] [PATCH] mttcg: Set jmp_env to handle exit from tb_gen_code

2017-02-20 Thread Alex Bennée
Pranith Kumar writes: > tb_gen_code() can exit execution using cpu_exit_loop() when it cannot > allocate new tb's. To handle this, we need to properly set the jmp_env > pointer ahead of calling tb_gen_code(). > > CC:Alex Bennée > CC: Richard

[Qemu-devel] [PATCH] mttcg: Set jmp_env to handle exit from tb_gen_code

2017-02-20 Thread Pranith Kumar
tb_gen_code() can exit execution using cpu_exit_loop() when it cannot allocate new tb's. To handle this, we need to properly set the jmp_env pointer ahead of calling tb_gen_code(). CC:Alex Bennée CC: Richard Henderson Signed-off-by: Pranith Kumar