2015-12-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512vl-vpermt2ps-1.c
blob0d7e37bb548e022094347f973a2f3387980adffa
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512vl -O2" } */
3 /* { dg-final { scan-assembler-times "vpermt2ps\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+(?:\n|\[ \\t\]+#)" 1 } } */
4 /* { dg-final { scan-assembler-times "vpermt2ps\[ \\t\]+\[^\{\n\]*%xmm\[0-9\]+(?:\n|\[ \\t\]+#)" 1 } } */
5 /* { dg-final { scan-assembler-times "vpermt2ps\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
6 /* { dg-final { scan-assembler-times "vpermt2ps\[ \\t\]+\[^\{\n\]*%xmm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
7 /* { dg-final { scan-assembler-times "vpermt2ps\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+\{%k\[1-7\]\}\{z\}(?:\n|\[ \\t\]+#)" 1 } } */
8 /* { dg-final { scan-assembler-times "vpermt2ps\[ \\t\]+\[^\{\n\]*%xmm\[0-9\]+\{%k\[1-7\]\}\{z\}(?:\n|\[ \\t\]+#)" 1 } } */
10 #include <immintrin.h>
12 volatile __m256 x1;
13 volatile __m128 x2;
14 volatile __m256i y;
15 volatile __m128i z;
16 volatile __mmask8 m;
18 void extern
19 avx512vl_test (void)
21 x1 = _mm256_permutex2var_ps (x1, y, x1);
22 x1 = _mm256_mask_permutex2var_ps (x1, m, y, x1);
23 x1 = _mm256_maskz_permutex2var_ps (m, x1, y, x1);
24 x2 = _mm_permutex2var_ps (x2, z, x2);
25 x2 = _mm_mask_permutex2var_ps (x2, m, z, x2);
26 x2 = _mm_maskz_permutex2var_ps (m, x2, z, x2);