slp-43.c: Increase loop count to enable vectorization with V64QImode.
authorRichard Biener <rguenther@suse.de>
Thu, 20 Jul 2017 10:03:34 +0000 (10:03 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 20 Jul 2017 10:03:34 +0000 (10:03 +0000)
2017-07-20  Richard Biener  <rguenther@suse.de>

* gcc.dg/vect/slp-43.c: Increase loop count to enable vectorization
with V64QImode.
* gcc.dg/vect/slp-45.c: Likewise.

From-SVN: r250380

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/slp-43.c
gcc/testsuite/gcc.dg/vect/slp-45.c

index 0a677739c186ee67aded2eb69ffab85510bc217d..d222849a98fb66e28ca66eecb0cde10b014b11c4 100644 (file)
@@ -1,3 +1,9 @@
+2017-07-20  Richard Biener  <rguenther@suse.de>
+
+       * gcc.dg/vect/slp-43.c: Increase loop count to enable vectorization
+       with V64QImode.
+       * gcc.dg/vect/slp-45.c: Likewise.
+
 2017-07-20  Naveen H.S  <Naveen.Hurugalawadi@cavium.com>
 
        * gcc.dg/tree-ssa/vrp116.c: New Test.
index fea3aadb3416cdeb301307916dc79a1d0bcf63a4..880a2961ae11b52f787badb680a51d3d2509fb90 100644 (file)
@@ -4,13 +4,16 @@
 #include <string.h>
 #include "tree-vect.h"
 
+/* AVX512BW has V64QImode, make char_1 vectorizable with that.  */
+#define MAX_VEC_ELEMENTS 64
+
 #define FOO(T,N) \
 void __attribute__((noinline,noclone)) \
 foo_ ## T ## _ ## N (T * __restrict__ in_, T * __restrict__ out_, int s) \
 { \
   T *in = __builtin_assume_aligned (in_, __BIGGEST_ALIGNMENT__); \
   T *out = __builtin_assume_aligned (out_, __BIGGEST_ALIGNMENT__); \
-  for (int i = 0; i < 16; i++) \
+  for (int i = 0; i < MAX_VEC_ELEMENTS; i++) \
     { \
       for (int j = 0; j < N; ++j) \
         out[j] = in[j]; \
@@ -23,9 +26,9 @@ foo_ ## T ## _ ## N (T * __restrict__ in_, T * __restrict__ out_, int s) \
  do { \
   memset (out, 0, 4096); \
   foo_ ## T ## _ ## N ((T *)in, (T *)out, 1); \
-  if (memcmp (in, out, sizeof (T) * 16 * N) != 0) \
+  if (memcmp (in, out, sizeof (T) * MAX_VEC_ELEMENTS * N) != 0) \
     __builtin_abort (); \
-  for (int i = sizeof (T) * 16 * N; i < 4096; ++i) \
+  for (int i = sizeof (T) * MAX_VEC_ELEMENTS * N; i < 4096; ++i) \
     if (out[i] != 0) \
       __builtin_abort (); \
  } while (0)
index a8300a4467097949cca2fba30f81c03f5acc1f95..20a9f815292e1e805fab8b8e2838a4922a4057d7 100644 (file)
@@ -4,13 +4,16 @@
 #include <string.h>
 #include "tree-vect.h"
 
+/* AVX512BW has V64QImode, make char_1 vectorizable with that.  */
+#define MAX_VEC_ELEMENTS 64
+
 #define FOO(T,N) \
 void __attribute__((noinline,noclone)) \
 foo_ ## T ## _ ## N (T * __restrict__ in_, T * __restrict__ out_, int s) \
 { \
   T *in = __builtin_assume_aligned (in_, __BIGGEST_ALIGNMENT__); \
   T *out = __builtin_assume_aligned (out_, __BIGGEST_ALIGNMENT__); \
-  for (int i = 0; i < 16; i++) \
+  for (int i = 0; i < MAX_VEC_ELEMENTS; i++) \
     { \
       for (int j = 0; j < N; ++j) \
         out[j] = in[j]; \
@@ -23,9 +26,9 @@ foo_ ## T ## _ ## N (T * __restrict__ in_, T * __restrict__ out_, int s) \
  do { \
   memset (out, 0, 4096); \
   foo_ ## T ## _ ## N ((T *)in, (T *)out, 1); \
-  if (memcmp (in, out, sizeof (T) * 16 * N) != 0) \
+  if (memcmp (in, out, sizeof (T) * MAX_VEC_ELEMENTS * N) != 0) \
     __builtin_abort (); \
-  for (int i = sizeof (T) * 16 * N; i < 4096; ++i) \
+  for (int i = sizeof (T) * MAX_VEC_ELEMENTS * N; i < 4096; ++i) \
     if (out[i] != 0) \
       __builtin_abort (); \
  } while (0)