re PR tree-optimization/34114 (Missed optimization: cannot determine loop termination)
authorBin Cheng <bin.cheng@arm.com>
Tue, 2 Aug 2016 10:13:28 +0000 (10:13 +0000)
committerBin Cheng <amker@gcc.gnu.org>
Tue, 2 Aug 2016 10:13:28 +0000 (10:13 +0000)
PR tree-optimization/34114
* tree-ssa-loop-niter.c (number_of_iterations_ne): Prove no-overflow
information for more control IVs.

gcc/testsuite
PR tree-optimization/34114
* gcc.dg/tree-ssa/loop-42.c: New test.

From-SVN: r238983

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/loop-42.c [new file with mode: 0644]
gcc/tree-ssa-loop-niter.c

index 5687ad5122404cb11e380b3b84bfdf9fff084873..7e23ba4da2dae36ca1c677bfe8a4f872fa9b65ed 100644 (file)
@@ -1,3 +1,9 @@
+2016-08-02  Bin Cheng  <bin.cheng@arm.com>
+
+       PR tree-optimization/34114
+       * tree-ssa-loop-niter.c (number_of_iterations_ne): Prove no-overflow
+       information for more control IVs.
+
 2016-08-02  Bin Cheng  <bin.cheng@arm.com>
 
        PR tree-optimization/34114
index f5bd074cf189225db9c76b047b5d28ee45cecafc..c1a98ec2e98058b645c66c8ffebcc910e3bc213d 100644 (file)
@@ -1,3 +1,8 @@
+2016-08-02  Bin Cheng  <bin.cheng@arm.com>
+
+       PR tree-optimization/34114
+       * gcc.dg/tree-ssa/loop-42.c: New test.
+
 2016-08-02  Tamar Christina  <tamar.christina@arm.com>
 
        * gcc.target/aarch64/vminmaxnm.c: New.
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/loop-42.c b/gcc/testsuite/gcc.dg/tree-ssa/loop-42.c
new file mode 100644 (file)
index 0000000..3f9d91a
--- /dev/null
@@ -0,0 +1,36 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -fdump-tree-ivcanon-details" } */
+
+void foo2 (unsigned int num, int *a)
+{
+  unsigned int i, n = (num - (num % 2));
+
+  for(i = 0; i != n; i += 2)
+    a[i] = 0;
+}
+
+void foo3 (unsigned int num, int *a)
+{
+  unsigned int i, n = (num - (num % 3));
+
+  for(i = 0; i != n; i += 3)
+    a[i] = 0;
+}
+
+void foo4 (unsigned int num, int *a)
+{
+  unsigned int i, n = (num - (num % 4));
+
+  for(i = 0; i != n; i += 4)
+    a[i] = 0;
+}
+
+void foo5 (unsigned int num, int *a)
+{
+  unsigned int i, n = (num - (num % 5));
+
+  for(i = 0; i != n; i += 5)
+    a[i] = 0;
+}
+
+/* { dg-final { scan-tree-dump-not "under assumptions " "ivcanon" } } */
index 191a07185158a8b28d1074392d3103ed98bc9edc..c740ffa9d6a88a9454094d2369393e616d547d35 100644 (file)
@@ -964,7 +964,6 @@ number_of_iterations_ne (struct loop *loop, tree type, affine_iv *iv,
   tree niter_type = unsigned_type_for (type);
   tree s, c, d, bits, assumption, tmp, bound;
   mpz_t max;
-  tree e;
 
   niter->control = *iv;
   niter->bound = final;
@@ -999,21 +998,76 @@ number_of_iterations_ne (struct loop *loop, tree type, affine_iv *iv,
                                 TYPE_SIGN (niter_type));
   mpz_clear (max);
 
-  /* Compute no-overflow information for the control iv.  Note we are
-     handling NE_EXPR, if iv base equals to final value, the loop exits
-     immediately, and the iv does not overflow.  */
-  if (tree_int_cst_sign_bit (iv->step))
-    e = fold_build2 (GE_EXPR, boolean_type_node, iv->base, final);
-  else
-    e = fold_build2 (LE_EXPR, boolean_type_node, iv->base, final);
-  e = simplify_using_initial_conditions (loop, e);
-  if (integer_onep (e)
-      && (integer_onep (s)
-         || (TREE_CODE (c) == INTEGER_CST
-             && TREE_CODE (s) == INTEGER_CST
-             && wi::mod_trunc (c, s, TYPE_SIGN (type)) == 0)))
+  /* Compute no-overflow information for the control iv.  This can be
+     proven when below two conditions hold.
+
+       1) |FINAL - base| is an exact multiple of step.
+       2) IV evaluates toward FINAL at beginning, i.e:
+
+           base <= FINAL ; step > 0
+           base >= FINAL ; step < 0
+
+         Note the first condition holds, the second can be then relaxed
+         to below condition.
+
+           base - step < FINAL ; step > 0
+                                 && base - step doesn't underflow
+           base - step > FINAL ; step < 0
+                                 && base - step doesn't overflow
+
+         The relaxation is important because after pass loop-ch, loop
+         with exit condition (IV != FINAL) will usually be guarded by
+         pre-condition (IV.base - IV.step != FINAL).  Please refer to
+         PR34114 as an example.
+
+     Also note, for NE_EXPR, base equals to FINAL is a special case, in
+     which the loop exits immediately, and the iv does not overflow.  */
+  if (!niter->control.no_overflow
+      && (integer_onep (s) || multiple_of_p (type, c, s)))
     {
-      niter->control.no_overflow = true;
+      tree t, cond, relaxed_cond = boolean_false_node;
+
+      if (tree_int_cst_sign_bit (iv->step))
+       {
+         cond = fold_build2 (GE_EXPR, boolean_type_node, iv->base, final);
+         if (TREE_CODE (type) == INTEGER_TYPE)
+           {
+             /* Only when base - step doesn't overflow.  */
+             t = TYPE_MAX_VALUE (type);
+             t = fold_build2 (PLUS_EXPR, type, t, iv->step);
+             t = fold_build2 (GE_EXPR, boolean_type_node, t, iv->base);
+             if (integer_nonzerop (t))
+               {
+                 t = fold_build2 (MINUS_EXPR, type, iv->base, iv->step);
+                 relaxed_cond = fold_build2 (GT_EXPR, boolean_type_node,
+                                             t, final);
+               }
+           }
+       }
+      else
+       {
+         cond = fold_build2 (LE_EXPR, boolean_type_node, iv->base, final);
+         if (TREE_CODE (type) == INTEGER_TYPE)
+           {
+             /* Only when base - step doesn't underflow.  */
+             t = TYPE_MIN_VALUE (type);
+             t = fold_build2 (PLUS_EXPR, type, t, iv->step);
+             t = fold_build2 (LE_EXPR, boolean_type_node, t, iv->base);
+             if (integer_nonzerop (t))
+               {
+                 t = fold_build2 (MINUS_EXPR, type, iv->base, iv->step);
+                 relaxed_cond = fold_build2 (LT_EXPR, boolean_type_node,
+                                             t, final);
+               }
+           }
+       }
+
+      t = simplify_using_initial_conditions (loop, cond);
+      if (!t || !integer_onep (t))
+       t = simplify_using_initial_conditions (loop, relaxed_cond);
+
+      if (t && integer_onep (t))
+       niter->control.no_overflow = true;
     }
 
   /* First the trivial cases -- when the step is 1.  */
@@ -1022,6 +1076,11 @@ number_of_iterations_ne (struct loop *loop, tree type, affine_iv *iv,
       niter->niter = c;
       return true;
     }
+  if (niter->control.no_overflow && multiple_of_p (type, c, s))
+    {
+      niter->niter = fold_build2 (FLOOR_DIV_EXPR, niter_type, c, s);
+      return true;
+    }
 
   /* Let nsd (step, size of mode) = d.  If d does not divide c, the loop
      is infinite.  Otherwise, the number of iterations is