tree-ssa-loop-ivcanon.c (constant_after_peeling): Do not require sth as strict as...
authorRichard Biener <rguenther@suse.de>
Fri, 21 Apr 2017 08:12:27 +0000 (08:12 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Fri, 21 Apr 2017 08:12:27 +0000 (08:12 +0000)
2016-04-21  Richard Biener  <rguenther@suse.de>

* tree-ssa-loop-ivcanon.c (constant_after_peeling): Do not require
sth as strict as a simple_iv but a chrec without symbols and an
operand defined in the loop we are peeling (and not some subloop).
(propagate_constants_for_unrolling): Propagate all constants.

* gcc.dg/vect/no-scevccp-outer-13.c: Adjust to prevent unrolling
of inner loops.
* gcc.dg/vect/no-scevccp-outer-7.c: Likewise.
* gcc.dg/vect/vect-104.c: Likewise.

From-SVN: r247048

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/no-scevccp-outer-13.c
gcc/testsuite/gcc.dg/vect/no-scevccp-outer-7.c
gcc/testsuite/gcc.dg/vect/vect-104.c
gcc/tree-ssa-loop-ivcanon.c

index 9a94fe68ddc5e072cf739ff0f2dbe7d2ad58ef03..d2bd25abd15424cd85ba963a34c07fa3ad6efe3d 100644 (file)
@@ -1,3 +1,10 @@
+2016-04-21  Richard Biener  <rguenther@suse.de>
+
+       * tree-ssa-loop-ivcanon.c (constant_after_peeling): Do not require
+       sth as strict as a simple_iv but a chrec without symbols and an
+       operand defined in the loop we are peeling (and not some subloop).
+       (propagate_constants_for_unrolling): Propagate all constants.
+
 2017-04-20  Uros Bizjak  <ubizjak@gmail.com>
 
        PR target/79804
index 22176e677b6b1997f9bf20d077e4265c2d23c27d..ffb00ec479986270e8928e351bc7dfa2445a3091 100644 (file)
@@ -1,3 +1,10 @@
+2016-04-21  Richard Biener  <rguenther@suse.de>
+
+       * gcc.dg/vect/no-scevccp-outer-13.c: Adjust to prevent unrolling
+       of inner loops.
+       * gcc.dg/vect/no-scevccp-outer-7.c: Likewise.
+       * gcc.dg/vect/vect-104.c: Likewise.
+
 2017-04-21  Eric Botcazou  <ebotcazou@adacore.com>
 
        PR tree-optimization/80426
index 04166494fbcf609d1283d73741e9f9c15d6629fc..c5e373f8210444f7adbe16759cca8a8b6abd8bac 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-require-effective-target vect_int } */
+/* { dg-additional-options "--param max-completely-peel-times=1" } */
 
 #include <stdarg.h>
 #include "tree-vect.h"
index 906b450dcbbd88158657e3f142238d6d3a48b75b..224148d2b1e6cf2bcd9ca11ccc4506d2a2499d64 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-require-effective-target vect_int } */
+/* { dg-additional-options "--param max-completely-peel-times=1" } */
 
 #include <stdarg.h>
 #include "tree-vect.h"
index 9667b55566cac7a5722ab526a6ce7a8e5a918769..c7478382915cd05ebeed39c7664f09db1fd42318 100644 (file)
@@ -1,4 +1,5 @@
 /* { dg-require-effective-target vect_int } */
+/* { dg-additional-options "--param max-completely-peel-times=1" } */
 
 #include <stdlib.h>
 #include <stdarg.h>
index 0c3b0d2a4071b0345e5bf0b4ad7b3dc88fbf0a55..31dc616c0ccfe21b8b12769f7d5d34851b3ddb85 100644 (file)
@@ -157,8 +157,6 @@ struct loop_size
 static bool
 constant_after_peeling (tree op, gimple *stmt, struct loop *loop)
 {
-  affine_iv iv;
-
   if (is_gimple_min_invariant (op))
     return true;
 
@@ -188,12 +186,12 @@ constant_after_peeling (tree op, gimple *stmt, struct loop *loop)
       return false;
     }
 
-  /* Induction variables are constants.  */
-  if (!simple_iv (loop, loop_containing_stmt (stmt), op, &iv, false))
-    return false;
-  if (!is_gimple_min_invariant (iv.base))
+  /* Induction variables are constants when defined in loop.  */
+  if (loop_containing_stmt (stmt) != loop)
     return false;
-  if (!is_gimple_min_invariant (iv.step))
+  tree ev = analyze_scalar_evolution (loop, op);
+  if (chrec_contains_undetermined (ev)
+      || chrec_contains_symbols (ev))
     return false;
   return true;
 }
@@ -1259,7 +1257,7 @@ propagate_constants_for_unrolling (basic_block bb)
 
       if (! SSA_NAME_OCCURS_IN_ABNORMAL_PHI (result)
          && gimple_phi_num_args (phi) == 1
-         && TREE_CODE (arg) == INTEGER_CST)
+         && CONSTANT_CLASS_P (arg))
        {
          replace_uses_by (result, arg);
          gsi_remove (&gsi, true);
@@ -1276,7 +1274,7 @@ propagate_constants_for_unrolling (basic_block bb)
       tree lhs;
 
       if (is_gimple_assign (stmt)
-         && gimple_assign_rhs_code (stmt) == INTEGER_CST
+         && TREE_CODE_CLASS (gimple_assign_rhs_code (stmt)) == tcc_constant
          && (lhs = gimple_assign_lhs (stmt), TREE_CODE (lhs) == SSA_NAME)
          && !SSA_NAME_OCCURS_IN_ABNORMAL_PHI (lhs))
        {