Re: [PATCH 01/18] i386: Rework sse_op_table1

2022-08-26 Thread Paolo Bonzini
Il ven 26 ago 2022, 01:39 Richard Henderson ha scritto: > On 8/25/22 15:13, Paolo Bonzini wrote: > > @@ -3112,6 +3165,7 @@ static void gen_sse(CPUX86State *env, DisasContext > *s, int b, > > { > > int b1, op1_offset, op2_offset, is_xmm, val; > > int modrm, mod, rm, reg; > > +

Re: [PATCH 01/18] i386: Rework sse_op_table1

2022-08-25 Thread Richard Henderson
On 8/25/22 15:13, Paolo Bonzini wrote: @@ -3112,6 +3165,7 @@ static void gen_sse(CPUX86State *env, DisasContext *s, int b, { int b1, op1_offset, op2_offset, is_xmm, val; int modrm, mod, rm, reg; +struct SSEOpHelper_table1 sse_op; SSEFunc_0_epp sse_fn_epp;

[PATCH 01/18] i386: Rework sse_op_table1

2022-08-25 Thread Paolo Bonzini
From: Paul Brook Add a flags field each row in sse_op_table1. Initially this is only used as a replacement for the magic SSE_SPECIAL and SSE_DUMMY pointers, the other flags will become relevant as the rest of the AVX implementation is built out. Signed-off-by: Paul Brook Message-Id: