diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-12-17 22:02:57 -0800 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2022-03-04 08:50:41 -1000 |
commit | 4e73f842e8b4d90776fb25a5b699b807902f1881 (patch) | |
tree | 9b0b35c0f0d92e05bc1b7a6c7b15ba9f6b9fdbb5 /tcg/i386/tcg-target.h | |
parent | 264e4182303488fdb2917cd908f9243b317bb499 (diff) | |
download | qemu-4e73f842e8b4d90776fb25a5b699b807902f1881.zip qemu-4e73f842e8b4d90776fb25a5b699b807902f1881.tar.gz qemu-4e73f842e8b4d90776fb25a5b699b807902f1881.tar.bz2 |
tcg/i386: Implement avx512 immediate rotate
AVX512VL has VPROLD and VPROLQ, layered onto the same
opcode as PSHIFTD, but requires EVEX encoding and W1.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/i386/tcg-target.h')
-rw-r--r-- | tcg/i386/tcg-target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/i386/tcg-target.h b/tcg/i386/tcg-target.h index 79af353..23a8b2a 100644 --- a/tcg/i386/tcg-target.h +++ b/tcg/i386/tcg-target.h @@ -195,7 +195,7 @@ extern bool have_movbe; #define TCG_TARGET_HAS_not_vec 0 #define TCG_TARGET_HAS_neg_vec 0 #define TCG_TARGET_HAS_abs_vec 1 -#define TCG_TARGET_HAS_roti_vec 0 +#define TCG_TARGET_HAS_roti_vec have_avx512vl #define TCG_TARGET_HAS_rots_vec 0 #define TCG_TARGET_HAS_rotv_vec 0 #define TCG_TARGET_HAS_shi_vec 1 |