1 /* { dg-do run } */
2 /* { dg-options "-O2 -mavx512f" } */
3 /* { dg-require-effective-target avx512f } */
4 
5 #define AVX512F
6 
7 #include "avx512f-helper.h"
8 
9 #define SIZE (AVX512F_LEN / 64)
10 #include "avx512f-mask-type.h"
11 
12 static void
CALC(unsigned long long * r,unsigned long long * s1,unsigned long long count)13 CALC (unsigned long long *r, unsigned long long *s1,
14       unsigned long long count)
15 {
16   int i;
17   for (i = 0; i < SIZE; i++)
18     {
19       r[i] = count < 64 ? (s1[i] >> count) : 0;
20     }
21 }
22 
23 void
TEST(void)24 TEST (void)
25 {
26   int i;
27   UNION_TYPE (AVX512F_LEN, i_uq) res1, res2, res3, src1;
28   MASK_TYPE mask = MASK_VALUE;
29   unsigned long long res_ref[SIZE];
30 
31   for (i = 0; i < SIZE; i++)
32     {
33       src1.a[i] = 2 + 7 * i % 291;
34     }
35 
36   for (i = 0; i < SIZE; i++)
37     res2.a[i] = DEFAULT_VALUE;
38 
39   res1.x = INTRINSIC (_srli_epi64) (src1.x, 3);
40   res2.x =
41     INTRINSIC (_mask_srli_epi64) (res2.x, mask, src1.x, 3);
42   res3.x = INTRINSIC (_maskz_srli_epi64) (mask, src1.x, 3);
43 
44   CALC (res_ref, src1.a, 3);
45 
46   if (UNION_CHECK (AVX512F_LEN, i_uq) (res1, res_ref))
47     abort ();
48 
49   MASK_MERGE (i_uq) (res_ref, mask, SIZE);
50   if (UNION_CHECK (AVX512F_LEN, i_uq) (res2, res_ref))
51     abort ();
52 
53   MASK_ZERO (i_uq) (res_ref, mask, SIZE);
54   if (UNION_CHECK (AVX512F_LEN, i_uq) (res3, res_ref))
55     abort ();
56 
57 
58   for (i = 0; i < SIZE; i++)
59     res2.a[i] = DEFAULT_VALUE;
60 
61   res1.x = INTRINSIC (_srli_epi64) (src1.x, 65);
62   res2.x =
63     INTRINSIC (_mask_srli_epi64) (res2.x, mask, src1.x, 65);
64   res3.x = INTRINSIC (_maskz_srli_epi64) (mask, src1.x, 65);
65 
66   CALC (res_ref, src1.a, 65);
67 
68   if (UNION_CHECK (AVX512F_LEN, i_uq) (res1, res_ref))
69     abort ();
70 
71   MASK_MERGE (i_uq) (res_ref, mask, SIZE);
72   if (UNION_CHECK (AVX512F_LEN, i_uq) (res2, res_ref))
73     abort ();
74 
75   MASK_ZERO (i_uq) (res_ref, mask, SIZE);
76   if (UNION_CHECK (AVX512F_LEN, i_uq) (res3, res_ref))
77     abort ();
78 }
79