(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
avx512fp16-vcvttph2w-1a.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-mavx512fp16 -O2" } */
       3  /* { dg-final { scan-assembler-times "vcvttph2w\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\[^\n\r]*%zmm\[0-9\]+(?:\n|\[ \\t\]+#)" 2 } } */
       4  /* { dg-final { scan-assembler-times "vcvttph2w\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\[^\n\r]*%zmm\[0-9\]+\{%k\[0-9\]\}\[^\{\n\r]*(?:\n|\[ \\t\]+#)" 1 } } */
       5  /* { dg-final { scan-assembler-times "vcvttph2w\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\[^\n\r]*%zmm\[0-9\]+\{%k\[0-9\]\}\{z\}\[^\n\r]*(?:\n|\[ \\t\]+#)" 1 } } */
       6  /* { dg-final { scan-assembler-times "vcvttph2w\[ \\t\]+\{sae\}\[^\{\n\]*%zmm\[0-9\]+\[^\n\r]*%zmm\[0-9\]+\{%k\[0-9\]\}\[^\{\n\r]*(?:\n|\[ \\t\]+#)" 1 } } */
       7  /* { dg-final { scan-assembler-times "vcvttph2w\[ \\t\]+\{sae\}\[^\{\n\]*%zmm\[0-9\]+\[^\n\r]*%zmm\[0-9\]+\{%k\[0-9\]\}\{z\}\[^\n\r]*(?:\n|\[ \\t\]+#)" 1 } } */
       8  
       9  #include <immintrin.h>
      10  
      11  volatile __m512i res, res1, res2;
      12  volatile __m512h x1, x2, x3;
      13  volatile __mmask32 m32;
      14  
      15  void extern
      16  avx512f_test (void)
      17  {
      18    res = _mm512_cvttph_epi16 (x1);
      19    res1 = _mm512_mask_cvttph_epi16 (res, m32, x2);
      20    res2 = _mm512_maskz_cvttph_epi16 (m32, x3);
      21    res = _mm512_cvtt_roundph_epi16 (x1, 4);
      22    res1 = _mm512_mask_cvtt_roundph_epi16 (res, m32, x2, 8);
      23    res2 = _mm512_maskz_cvtt_roundph_epi16 (m32, x3, 8);
      24  }