PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vbroadcastf32x4-2.c
blobd0a3f7e6492a0702e85d54e140237195b9f0c037
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 (float *r, float *s)
15 int i;
16 for (i = 0; i < SIZE; i++)
18 r[i] = s[i % 4];
22 void
23 TEST (void)
25 int i, sign;
26 UNION_TYPE (AVX512F_LEN,) res1, res2, res3;
27 UNION_TYPE (128,) src;
28 MASK_TYPE mask = MASK_VALUE;
29 float res_ref[SIZE];
31 sign = -1;
32 for (i = 0; i < 4; i++)
34 src.a[i] = 34.67 * i * sign;
35 sign = sign * -1;
37 for (i = 0; i < SIZE; i++)
38 res2.a[i] = DEFAULT_VALUE;
40 res1.x = INTRINSIC (_broadcast_f32x4) (src.x);
41 res2.x = INTRINSIC (_mask_broadcast_f32x4) (res2.x, mask, src.x);
42 res3.x = INTRINSIC (_maskz_broadcast_f32x4) (mask, src.x);
44 CALC (res_ref, src.a);
46 if (UNION_CHECK (AVX512F_LEN,) (res1, res_ref))
47 abort ();
49 MASK_MERGE ()(res_ref, mask, SIZE);
50 if (UNION_CHECK (AVX512F_LEN,) (res2, res_ref))
51 abort ();
53 MASK_ZERO ()(res_ref, mask, SIZE);
54 if (UNION_CHECK (AVX512F_LEN,) (res3, res_ref))
55 abort ();