PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vpcmpeqd-2.c
blob42089f81997ae8d198efbbcb8ec56ba5d6bc9a31
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 (MASK_TYPE *r, int *s1, int *s2)
15 int i;
16 *r = 0;
17 MASK_TYPE one = 1;
19 for (i = 0; i < SIZE; i++)
20 if (s1[i] == s2[i])
21 *r = *r | (one << i);
24 void
25 TEST (void)
27 int i;
28 UNION_TYPE (AVX512F_LEN, i_d) src1, src2;
29 MASK_TYPE res_ref, res1, res2;
30 MASK_TYPE mask = MASK_VALUE;
31 res1 = 0;
32 res2 = 0;
34 for (i = 0; i < SIZE / 2; i++)
36 src1.a[i * 2] = i;
37 src1.a[i * 2 + 1] = i * i;
38 src2.a[i * 2] = 2 * i;
39 src2.a[i * 2 + 1] = i * i;
42 res1 = INTRINSIC (_cmpeq_epi32_mask) (src1.x, src2.x);
43 res2 = INTRINSIC (_mask_cmpeq_epi32_mask) (mask, src1.x, src2.x);
45 CALC (&res_ref, src1.a, src2.a);
47 if (res_ref != res1)
48 abort ();
50 res_ref &= mask;
52 if (res_ref != res2)
53 abort ();