/* { dg-do run } */ /* { dg-options "-O2 -mavx512fp16 -mavx512vl -ftree-vectorize -fvect-cost-model=unlimited -mprefer-vector-width=256 -fdump-tree-slp-details" } */ /* { dg-require-effective-target avx512fp16 } */ /* { dg-final { scan-tree-dump-times {(?n)add new stmt:.*MEM } 2 "slp2" } } */ /* { dg-final { scan-tree-dump-times "basic block part vectorized using (?:32|64) byte vectors" 1 "slp2" } }*/ #include static void do_test (void); #define DO_TEST do_test #define AVX512FP16 #include "avx512-check.h" void __attribute__((noipa)) foo_ph (_Complex _Float16* a, _Complex _Float16* __restrict b) { a[0] = b[0]; a[1] = b[1]; a[2] = b[2]; a[3] = b[3]; a[4] = b[4]; a[5] = b[5]; a[6] = b[6]; a[7] = b[7]; } void do_test (void) { _Complex _Float16* ph_src = (_Complex _Float16*) malloc (32); _Complex _Float16* ph_dst = (_Complex _Float16*) malloc (32); char* p = (char* ) malloc (32); __builtin_memset (ph_dst, 0, 32); for (int i = 0; i != 32; i++) p[i] = i; __builtin_memcpy (ph_src, p, 32); foo_ph (ph_dst, ph_src); if (__builtin_memcmp (ph_dst, ph_src, 32) != 0) __builtin_abort (); return; }