Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vpsllqi-2.c
blob39be492d0e3016a7fe4969b0c9625188e838a8fd
1 /* { dg-do run } */
2 /* { dg-options "-O2 -mavx512f" } */
3 /* { dg-require-effective-target avx512f } */
5 #define AVX512F
7 #include "avx512f-helper.h"
9 #define SIZE (AVX512F_LEN / 64)
10 #include "avx512f-mask-type.h"
12 static void
13 CALC (long long *r, long long *s1, long long count)
15 int i;
16 for (i = 0; i < SIZE; i++)
18 r[i] = count < 64 ? (s1[i] << count) : 0;
22 void
23 TEST (void)
25 int i, sign;
26 UNION_TYPE (AVX512F_LEN, i_q) res1, res2, res3, src1;
27 MASK_TYPE mask = MASK_VALUE;
28 long long res_ref[SIZE];
30 sign = -1;
31 for (i = 0; i < SIZE; i++)
33 src1.a[i] = 2 + sign * 7 * i % 291;
34 sign = sign * -1;
37 for (i = 0; i < SIZE; i++)
38 res2.a[i] = DEFAULT_VALUE;
40 res1.x = INTRINSIC (_slli_epi64) (src1.x, 3);
41 res2.x = INTRINSIC (_mask_slli_epi64) (res2.x, mask, src1.x, 3);
42 res3.x = INTRINSIC (_maskz_slli_epi64) (mask, src1.x, 3);
44 CALC (res_ref, src1.a, 3);
46 if (UNION_CHECK (AVX512F_LEN, i_q) (res1, res_ref))
47 abort ();
49 MASK_MERGE (i_q) (res_ref, mask, SIZE);
50 if (UNION_CHECK (AVX512F_LEN, i_q) (res2, res_ref))
51 abort ();
53 MASK_ZERO (i_q) (res_ref, mask, SIZE);
54 if (UNION_CHECK (AVX512F_LEN, i_q) (res3, res_ref))
55 abort ();
58 for (i = 0; i < SIZE; i++)
59 res2.a[i] = DEFAULT_VALUE;
61 res1.x = INTRINSIC (_slli_epi64) (src1.x, 65);
62 res2.x = INTRINSIC (_mask_slli_epi64) (res2.x, mask, src1.x, 65);
63 res3.x = INTRINSIC (_maskz_slli_epi64) (mask, src1.x, 65);
65 CALC (res_ref, src1.a, 65);
67 if (UNION_CHECK (AVX512F_LEN, i_q) (res1, res_ref))
68 abort ();
70 MASK_MERGE (i_q) (res_ref, mask, SIZE);
71 if (UNION_CHECK (AVX512F_LEN, i_q) (res2, res_ref))
72 abort ();
74 MASK_ZERO (i_q) (res_ref, mask, SIZE);
75 if (UNION_CHECK (AVX512F_LEN, i_q) (res3, res_ref))
76 abort ();