Re: [Qemu-devel] [PATCH v11 06/29] target/i386: [tcg] Refactor init_disas_context

2017-07-07 Thread Lluís Vilanova
Emilio G Cota writes: > On Wed, Jun 28, 2017 at 15:40:52 +0300, Lluís Vilanova wrote: [,,,] >> @@ -8425,7 +8415,7 @@ void gen_intermediate_code(CPUState *cpu, >> TranslationBlock *tb) >> dc-> code64 = (flags >> HF_CS64_SHIFT) & 1; >> #endif >> dc-> flags = flags; >> -dc->jmp_opt = !

Re: [Qemu-devel] [PATCH v11 06/29] target/i386: [tcg] Refactor init_disas_context

2017-07-01 Thread Richard Henderson
On 06/28/2017 05:40 AM, Lluís Vilanova wrote: Incrementally paves the way towards using the generic instruction translation loop. Signed-off-by: Lluís Vilanova --- target/i386/translate.c | 43 --- 1 file changed, 24 insertions(+), 19 deletions(-) R

Re: [Qemu-devel] [PATCH v11 06/29] target/i386: [tcg] Refactor init_disas_context

2017-06-29 Thread Emilio G. Cota
On Wed, Jun 28, 2017 at 15:40:52 +0300, Lluís Vilanova wrote: > Incrementally paves the way towards using the generic instruction translation > loop. > > Signed-off-by: Lluís Vilanova > --- > target/i386/translate.c | 43 --- > 1 file changed, 24 inserti

[Qemu-devel] [PATCH v11 06/29] target/i386: [tcg] Refactor init_disas_context

2017-06-28 Thread Lluís Vilanova
Incrementally paves the way towards using the generic instruction translation loop. Signed-off-by: Lluís Vilanova --- target/i386/translate.c | 43 --- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/target/i386/translate.c b/target/i386/