tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do not consider dependences...
authorRichard Biener <rguenther@suse.de>
Wed, 15 Jun 2016 09:53:07 +0000 (09:53 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Wed, 15 Jun 2016 09:53:07 +0000 (09:53 +0000)
2016-06-15  Richard Biener  <rguenther@suse.de>

* tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
not consider dependences between accesses that belong to the
same group.
(vect_analyze_data_ref_dependences): Do not analyze read-read
or self-dependences.

* gcc.dg/vect/bb-slp-pattern-2.c: Disable loop vectorization.

From-SVN: r237473

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/bb-slp-pattern-2.c
gcc/tree-vect-data-refs.c

index 907bb06bee90f23505b96431b9dbf074461ba6d5..f593bd52b706647de82d1dfb16dcb2fe4f74c8e4 100644 (file)
@@ -1,3 +1,11 @@
+2016-06-15  Richard Biener  <rguenther@suse.de>
+
+       * tree-vect-data-refs.c (vect_analyze_data_ref_dependence): Do
+       not consider dependences between accesses that belong to the
+       same group.
+       (vect_analyze_data_ref_dependences): Do not analyze read-read
+       or self-dependences.
+
 2016-06-14  David Malcolm  <dmalcolm@redhat.com>
 
        * spellcheck-tree.c: Include spellcheck-tree.h rather than
index 016045f5368a9d60426baa59f151de74366fe3b8..3eaaa91b03354b2224ebd9f7b402d1dc51b6e840 100644 (file)
@@ -1,3 +1,7 @@
+2016-06-15  Richard Biener  <rguenther@suse.de>
+
+       * gcc.dg/vect/bb-slp-pattern-2.c: Disable loop vectorization.
+
 2016-06-14  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>
 
        * gcc.target/powerpc/vsx-elemrev-2.c: Change effective target
index 4635626b9b6138871c8def449dac0602f551cf35..d32cb758591bf86f32f97a30977347908ec61559 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-require-effective-target vect_condition } */
+/* { dg-additional-options "-fno-tree-vectorize -ftree-slp-vectorize -ftree-loop-if-convert" } */
 
 #include "tree-vect.h"
 
index 084469f2afe361f2ba1e34d174bd36f1956f44e5..0ab8e6bf7f3a163da57b85bf83532ecffff98a10 100644 (file)
@@ -227,6 +227,12 @@ vect_analyze_data_ref_dependence (struct data_dependence_relation *ddr,
       || (DR_IS_READ (dra) && DR_IS_READ (drb)))
     return false;
 
+  /* We do not have to consider dependences between accesses that belong
+     to the same group.  */
+  if (GROUP_FIRST_ELEMENT (stmtinfo_a)
+      && GROUP_FIRST_ELEMENT (stmtinfo_a) == GROUP_FIRST_ELEMENT (stmtinfo_b))
+    return false;
+
   /* Even if we have an anti-dependence then, as the vectorized loop covers at
      least two scalar iterations, there is always also a true dependence.
      As the vectorizer does not re-order loads and stores we can ignore
@@ -469,7 +475,7 @@ vect_analyze_data_ref_dependences (loop_vec_info loop_vinfo, int *max_vf)
   LOOP_VINFO_NO_DATA_DEPENDENCIES (loop_vinfo) = true;
   if (!compute_all_dependences (LOOP_VINFO_DATAREFS (loop_vinfo),
                                &LOOP_VINFO_DDRS (loop_vinfo),
-                               LOOP_VINFO_LOOP_NEST (loop_vinfo), true))
+                               LOOP_VINFO_LOOP_NEST (loop_vinfo), false))
     return false;
 
   FOR_EACH_VEC_ELT (LOOP_VINFO_DDRS (loop_vinfo), i, ddr)