PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512er-vrcp28ps-1.c
blob15f4a50cc1e0c4e3a1aee9a7ac81416db1f39499
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512er -O2" } */
3 /* { dg-final { scan-assembler-times "vrcp28ps\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+(?:\n|\[ \\t\]+#)" 1 } } */
4 /* { dg-final { scan-assembler-times "vrcp28ps\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
5 /* { dg-final { scan-assembler-times "vrcp28ps\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\{%k\[1-7\]\}\{z\}(?:\n|\[ \\t\]+#)" 1 } } */
6 /* { dg-final { scan-assembler-times "vrcp28ps\[ \\t\]+\[^\{\n\]*\{sae\}\[^\n\]*%zmm\[0-9\]+\[^\{\]*(?:\n|\[ \\t\]+#)" 1 } } */
7 /* { dg-final { scan-assembler-times "vrcp28ps\[ \\t\]+\[^\{\n\]*\{sae\}\[^\n\]*%zmm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
8 /* { dg-final { scan-assembler-times "vrcp28ps\[ \\t\]+\[^\{\n\]*\{sae\}\[^\n\]*%zmm\[0-9\]+\{%k\[1-7\]\}\{z\}(?:\n|\[ \\t\]+#)" 1 } } */
10 #include <immintrin.h>
12 volatile __m512 x;
13 volatile __mmask16 m;
15 void extern
16 avx512er_test (void)
18 x = _mm512_rcp28_ps (x);
19 x = _mm512_mask_rcp28_ps (x, m, x);
20 x = _mm512_maskz_rcp28_ps (m, x);
21 x = _mm512_rcp28_round_ps (x, _MM_FROUND_NO_EXC);
22 x = _mm512_mask_rcp28_round_ps (x, m, x, _MM_FROUND_NO_EXC);
23 x = _mm512_maskz_rcp28_round_ps (m, x, _MM_FROUND_NO_EXC);