Initial support for AVX-512{VL,BW,DQ}
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vpmovqd-2.c
blobf0e4e1274833ab8206970f199149719c07f85acd
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"
11 #define SIZE_HALF (AVX512F_LEN_HALF / 32)
13 void
14 CALC (int *r, long long *s, int mem)
16 int i;
17 int len = mem ? SIZE : SIZE_HALF;
18 for (i = 0; i < len; i++)
20 r[i] = (i < SIZE) ? (int) s[i] : 0;
24 void
25 TEST (void)
27 int i, sign;
28 UNION_TYPE (AVX512F_LEN_HALF, i_d) res1, res2, res3;
29 int res4[SIZE_HALF];
30 UNION_TYPE (AVX512F_LEN, i_q) src;
31 MASK_TYPE mask = MASK_VALUE;
32 int res_ref[SIZE_HALF];
33 int res_ref2[SIZE_HALF];
35 sign = -1;
36 for (i = 0; i < SIZE; i++)
38 src.a[i] = 1 + 34 * i * sign;
39 sign = sign * -1;
40 res2.a[i] = DEFAULT_VALUE;
41 res4[i] = DEFAULT_VALUE;
44 for (i = SIZE; i < SIZE_HALF; i++)
46 res_ref2[i] = DEFAULT_VALUE * 2;
47 res4[i] = DEFAULT_VALUE * 2;
50 res1.x = INTRINSIC (_cvtepi64_epi32) (src.x);
51 res2.x = INTRINSIC (_mask_cvtepi64_epi32) (res2.x, mask, src.x);
52 res3.x = INTRINSIC (_maskz_cvtepi64_epi32) (mask, src.x);
54 CALC (res_ref, src.a, 0);
56 if (UNION_CHECK (AVX512F_LEN_HALF, i_d) (res1, res_ref))
57 abort ();
59 MASK_MERGE (i_d) (res_ref, mask, SIZE);
60 if (UNION_CHECK (AVX512F_LEN_HALF, i_d) (res2, res_ref))
61 abort ();
63 MASK_ZERO (i_d) (res_ref, mask, SIZE);
64 if (UNION_CHECK (AVX512F_LEN_HALF, i_d) (res3, res_ref))
65 abort ();
67 INTRINSIC (_mask_cvtepi64_storeu_epi32) (res4, mask, src.x);
68 CALC (res_ref2, src.a, 1);
70 MASK_MERGE (i_d) (res_ref2, mask, SIZE);
71 if (checkVi (res4, res_ref2, SIZE_HALF))
72 abort ();