Re: [PATCH] target/i386: fix avx2 instructions vzeroall and vpermdq

2023-05-10 Thread Michael Tokarev
10.05.2023 17:52, lixinyu...@ict.ac.cn wrote: From: Xinyu Li vzeroall: xmm_regs should be used instead of xmm_t0 vpermdq: bit 3 and 7 of imm should be considered -stable material, it looks like? Thanks, /mjt

Re: [PATCH] target/i386: fix avx2 instructions vzeroall and vpermdq

2023-05-10 Thread Paolo Bonzini
Queued, thanks. Paolo

[PATCH] target/i386: fix avx2 instructions vzeroall and vpermdq

2023-05-10 Thread lixinyu20s
From: Xinyu Li vzeroall: xmm_regs should be used instead of xmm_t0 vpermdq: bit 3 and 7 of imm should be considered Signed-off-by: Xinyu Li --- target/i386/ops_sse.h | 8 target/i386/tcg/emit.c.inc | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/target/i386/