summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/avx512f-vrndscaleps-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/avx512f-vrndscaleps-1.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/avx512f-vrndscaleps-1.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/i386/avx512f-vrndscaleps-1.c b/gcc/testsuite/gcc.target/i386/avx512f-vrndscaleps-1.c
new file mode 100644
index 00000000000..7d5aeaac8ce
--- /dev/null
+++ b/gcc/testsuite/gcc.target/i386/avx512f-vrndscaleps-1.c
@@ -0,0 +1,35 @@
+/* { dg-do compile } */
+/* { dg-options "-mavx512f -O2" } */
+/* { dg-final { scan-assembler-times "vrndscaleps\[ \\t\]+\[^\n\]*%zmm\[0-9\]+\[^\n\]*%zmm\[0-9\]\[^\{\]" 6} } */
+/* { dg-final { scan-assembler-times "vrndscaleps\[ \\t\]+\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\[^\{\]" 9} } */
+/* { dg-final { scan-assembler-times "vrndscaleps\[ \\t\]+\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\{z\}" 3} } */
+/* { dg-final { scan-assembler-times "vrndscaleps\[ \\t\]+\\S*,\[ \\t\]+\{sae\}\[^\n\]*%zmm\[0-9\]+\[^\n\]*%zmm\[0-9\]\[^\{\]" 3} } */
+/* { dg-final { scan-assembler-times "vrndscaleps\[ \\t\]+\\S*,\[ \\t\]+\{sae\}\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\[^\{\]" 6} } */
+
+#include <immintrin.h>
+
+volatile __m512 x;
+
+void extern
+avx512f_test (void)
+{
+ x = _mm512_roundscale_ps (x, 0x42);
+ x = _mm512_ceil_ps (x);
+ x = _mm512_floor_ps (x);
+ x = _mm512_mask_roundscale_ps (x, 2, x, 0x42);
+ x = _mm512_mask_ceil_ps (x, 2, x);
+ x = _mm512_mask_floor_ps (x, 2, x);
+ x = _mm512_maskz_roundscale_ps (2, x, 0x42);
+ x = _mm512_maskz_ceil_ps (2, x);
+ x = _mm512_maskz_floor_ps (2, x);
+
+ x = _mm512_roundscale_round_ps (x, 0x42, _MM_FROUND_NO_EXC);
+ x = _mm512_ceil_round_ps (x, _MM_FROUND_NO_EXC);
+ x = _mm512_floor_round_ps (x, _MM_FROUND_NO_EXC);
+ x = _mm512_mask_roundscale_round_ps (x, 2, x, 0x42, _MM_FROUND_NO_EXC);
+ x = _mm512_mask_ceil_round_ps (x, 2, x, _MM_FROUND_NO_EXC);
+ x = _mm512_mask_floor_round_ps (x, 2, x, _MM_FROUND_NO_EXC);
+ x = _mm512_maskz_roundscale_round_ps (2, x, 0x42, _MM_FROUND_NO_EXC);
+ x = _mm512_maskz_ceil_round_ps (2, x, _MM_FROUND_NO_EXC);
+ x = _mm512_maskz_floor_round_ps (2, x, _MM_FROUND_NO_EXC);
+}