Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vpsrldi-2.c
blob0e73097939834181946753a1f7585e79b8cb677e
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 / 32)
10 #include "avx512f-mask-type.h"
12 static void
13 CALC (unsigned int *r, unsigned int *s1, int count)
15 int i;
16 for (i = 0; i < SIZE; i++)
18 r[i] = count < 32 ? (s1[i] >> count) : 0;
22 void
23 TEST (void)
25 int i;
26 UNION_TYPE (AVX512F_LEN, i_ud) res1, res2, res3, src1;
27 MASK_TYPE mask = MASK_VALUE;
28 unsigned int res_ref[SIZE];
30 for (i = 0; i < SIZE; i++)
32 src1.a[i] = 2 + 7 * i % 291;
35 for (i = 0; i < SIZE; i++)
36 res2.a[i] = DEFAULT_VALUE;
38 res1.x = INTRINSIC (_srli_epi32) (src1.x, 3);
39 res2.x =
40 INTRINSIC (_mask_srli_epi32) (res2.x, mask, src1.x, 3);
41 res3.x = INTRINSIC (_maskz_srli_epi32) (mask, src1.x, 3);
43 CALC (res_ref, src1.a, 3);
45 if (UNION_CHECK (AVX512F_LEN, i_ud) (res1, res_ref))
46 abort ();
48 MASK_MERGE (i_ud) (res_ref, mask, SIZE);
49 if (UNION_CHECK (AVX512F_LEN, i_ud) (res2, res_ref))
50 abort ();
52 MASK_ZERO (i_ud) (res_ref, mask, SIZE);
53 if (UNION_CHECK (AVX512F_LEN, i_ud) (res3, res_ref))
54 abort ();
57 for (i = 0; i < SIZE; i++)
58 res2.a[i] = DEFAULT_VALUE;
60 res1.x = INTRINSIC (_srli_epi32) (src1.x, 33);
61 res2.x =
62 INTRINSIC (_mask_srli_epi32) (res2.x, mask, src1.x, 33);
63 res3.x = INTRINSIC (_maskz_srli_epi32) (mask, src1.x, 33);
65 CALC (res_ref, src1.a, 33);
67 if (UNION_CHECK (AVX512F_LEN, i_ud) (res1, res_ref))
68 abort ();
70 MASK_MERGE (i_ud) (res_ref, mask, SIZE);
71 if (UNION_CHECK (AVX512F_LEN, i_ud) (res2, res_ref))
72 abort ();
74 MASK_ZERO (i_ud) (res_ref, mask, SIZE);
75 if (UNION_CHECK (AVX512F_LEN, i_ud) (res3, res_ref))
76 abort ();