Initial support for AVX-512{VL,BW,DQ}
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512vl-vprorvq-1.c
blob58435058035912d2ca917b38fe190ec8728931fd
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512vl -O2" } */
3 /* { dg-final { scan-assembler-times "vprorvq\[ \\t\]+\[^\n\]*%ymm\[0-9\]\[^\{\]" 3 } } */
4 /* { dg-final { scan-assembler-times "vprorvq\[ \\t\]+\[^\n\]*%ymm\[0-9\]\{%k\[1-7\]\}\[^\{\]" 1 } } */
5 /* { dg-final { scan-assembler-times "vprorvq\[ \\t\]+\[^\n\]*%ymm\[0-9\]\{%k\[1-7\]\}\{z\}" 1 } } */
6 /* { dg-final { scan-assembler-times "vprorvq\[ \\t\]+\[^\n\]*%xmm\[0-9\]\[^\{\]" 3 } } */
7 /* { dg-final { scan-assembler-times "vprorvq\[ \\t\]+\[^\n\]*%xmm\[0-9\]\{%k\[1-7\]\}\[^\{\]" 1 } } */
8 /* { dg-final { scan-assembler-times "vprorvq\[ \\t\]+\[^\n\]*%xmm\[0-9\]\{%k\[1-7\]\}\{z\}" 1 } } */
10 #include <immintrin.h>
12 volatile __m256i x;
13 volatile __m128i y;
14 volatile __mmask8 m;
16 void extern
17 avx512vl_test (void)
19 x = _mm256_rorv_epi64 (x, x);
20 x = _mm256_mask_rorv_epi64 (x, m, x, x);
21 x = _mm256_maskz_rorv_epi64 (m, x, x);
23 y = _mm_rorv_epi64 (y, y);
24 y = _mm_mask_rorv_epi64 (y, m, y, y);
25 y = _mm_maskz_rorv_epi64 (m, y, y);