Initial support for AVX-512{VL,BW,DQ}
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512bw-vpsllwi-2.c
blob21898f5cdb6a4b388b0bedc9f94ff2458cb98777
1 /* { dg-do run } */
2 /* { dg-options "-O2 -mavx512bw -DAVX512BW" } */
3 /* { dg-require-effective-target avx512bw } */
5 #include "avx512f-helper.h"
7 #define SIZE (AVX512F_LEN / 16)
8 #include "avx512f-mask-type.h"
10 CALC (short *r, short *s1, short count)
12 int i;
13 for (i = 0; i < SIZE; i++)
15 r[i] = count < 16 ? (s1[i] << count) : 0;
19 void
20 TEST (void)
22 int i, sign;
23 UNION_TYPE (AVX512F_LEN, i_w) res1, res2, res3, src1;
24 MASK_TYPE mask = MASK_VALUE;
25 short res_ref[SIZE];
27 sign = -1;
28 for (i = 0; i < SIZE; i++)
30 src1.a[i] = 2 + sign * 7 * i % 291;
31 sign = sign * -1;
34 for (i = 0; i < SIZE; i++)
35 res2.a[i] = DEFAULT_VALUE;
37 res1.x = INTRINSIC (_slli_epi16) (src1.x, 5);
38 res2.x = INTRINSIC (_mask_slli_epi16) (res2.x, mask, src1.x, 5);
39 res3.x = INTRINSIC (_maskz_slli_epi16) (mask, src1.x, 5);
41 CALC (res_ref, src1.a, 5);
43 if (UNION_CHECK (AVX512F_LEN, i_w) (res1, res_ref))
44 abort ();
46 MASK_MERGE (i_w) (res_ref, mask, SIZE);
47 if (UNION_CHECK (AVX512F_LEN, i_w) (res2, res_ref))
48 abort ();
50 MASK_ZERO (i_w) (res_ref, mask, SIZE);
51 if (UNION_CHECK (AVX512F_LEN, i_w) (res3, res_ref))
52 abort ();
55 for (i = 0; i < SIZE; i++)
56 res2.a[i] = DEFAULT_VALUE;
58 res1.x = INTRINSIC (_slli_epi16) (src1.x, 17);
59 res2.x = INTRINSIC (_mask_slli_epi16) (res2.x, mask, src1.x, 17);
60 res3.x = INTRINSIC (_maskz_slli_epi16) (mask, src1.x, 17);
62 CALC (res_ref, src1.a, 17);
64 if (UNION_CHECK (AVX512F_LEN, i_w) (res1, res_ref))
65 abort ();
67 MASK_MERGE (i_w) (res_ref, mask, SIZE);
68 if (UNION_CHECK (AVX512F_LEN, i_w) (res2, res_ref))
69 abort ();
71 MASK_ZERO (i_w) (res_ref, mask, SIZE);
72 if (UNION_CHECK (AVX512F_LEN, i_w) (res3, res_ref))
73 abort ();