PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512bw-vpabsw-2.c
blob29338096292e1fceb40665c5eb4090d66fcfd47c
1 /* { dg-do run } */
2 /* { dg-options "-O2 -mavx512bw" } */
3 /* { dg-require-effective-target avx512bw } */
5 #define AVX512BW
6 #include "avx512f-helper.h"
8 #define SIZE (AVX512F_LEN / 16)
9 #include "avx512f-mask-type.h"
11 void
12 CALC (short *s, short *r)
14 int i;
16 for (i = 0; i < SIZE; i++)
17 if (s[i] < 0)
18 r[i] = -s[i];
19 else
20 r[i] = s[i];
23 void
24 TEST (void)
26 UNION_TYPE (AVX512F_LEN, i_w) s, res1, res2, res3;
27 MASK_TYPE mask = MASK_VALUE;
28 short res_ref[SIZE];
29 int i;
31 for (i = 0; i < SIZE; i++)
33 s.a[i] = i * 7 + (i << 15) + 356;
34 res2.a[i] = DEFAULT_VALUE;
37 CALC (s.a, res_ref);
39 res1.x = INTRINSIC (_abs_epi16) (s.x);
40 res2.x = INTRINSIC (_mask_abs_epi16) (res2.x, mask, s.x);
41 res3.x = INTRINSIC (_maskz_abs_epi16) (mask, s.x);
43 if (UNION_CHECK (AVX512F_LEN, i_w) (res1, res_ref))
44 abort ();
45 MASK_MERGE (i_w) (res_ref, mask, SIZE);
46 if (UNION_CHECK (AVX512F_LEN, i_w) (res2, res_ref))
47 abort ();
49 MASK_ZERO (i_w) (res_ref, mask, SIZE);
50 if (UNION_CHECK (AVX512F_LEN, i_w) (res3, res_ref))
51 abort ();