diff options
author | Richard Biener <rguenther@suse.de> | 2016-08-17 08:11:32 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2016-08-17 08:11:32 +0000 |
commit | 622d8b69482a3c8f2a0df0324033719a771932fd (patch) | |
tree | 68cacd35181faa08cb0557b268b448c1241f5d1d /gcc/tree-ssa-loop-unswitch.c | |
parent | 892a653cc93da08467301e5cc18ddec7c85462f2 (diff) | |
download | gcc-622d8b69482a3c8f2a0df0324033719a771932fd.zip gcc-622d8b69482a3c8f2a0df0324033719a771932fd.tar.gz gcc-622d8b69482a3c8f2a0df0324033719a771932fd.tar.bz2 |
re PR tree-optimization/23855 (loop header should also be pulled out of the inner loop too)
2016-08-17 Richard Biener <rguenther@suse.de>
PR tree-optimization/23855
* tree-ssa-loop-unswitch.c: Include tree-ssa-loop-manip.h.
(tree_unswitch_outer_loop): Iterate find_loop_guard as long as we
find guards to hoist. Do not update SSA form but rewrite virtuals
into loop closed SSA.
(find_loop_guard): Adjust to skip already hoisted guards. Do
not mark virtuals for renaming or update SSA form.
* gcc.dg/loop-unswitch-2.c: Adjust.
From-SVN: r239523
Diffstat (limited to 'gcc/tree-ssa-loop-unswitch.c')
-rw-r--r-- | gcc/tree-ssa-loop-unswitch.c | 45 |
1 files changed, 30 insertions, 15 deletions
diff --git a/gcc/tree-ssa-loop-unswitch.c b/gcc/tree-ssa-loop-unswitch.c index 73bdc6e..40905af 100644 --- a/gcc/tree-ssa-loop-unswitch.c +++ b/gcc/tree-ssa-loop-unswitch.c @@ -37,6 +37,7 @@ along with GCC; see the file COPYING3. If not see #include "tree-inline.h" #include "gimple-iterator.h" #include "cfghooks.h" +#include "tree-ssa-loop-manip.h" /* This file implements the loop unswitching, i.e. transformation of loops like @@ -451,14 +452,15 @@ tree_unswitch_outer_loop (struct loop *loop) return false; } - guard = find_loop_guard (loop); - if (guard) + bool changed = false; + while ((guard = find_loop_guard (loop))) { + if (! changed) + rewrite_virtuals_into_loop_closed_ssa (loop); hoist_guard (loop, guard); - update_ssa (TODO_update_ssa); - return true; + changed = true; } - return false; + return changed; } /* Checks if the body of the LOOP is within an invariant guard. If this @@ -501,13 +503,28 @@ find_loop_guard (struct loop *loop) b) anything defined in something1, something2 and something3 is not used outside of the loop. */ - while (single_succ_p (header)) - header = single_succ (header); - if (!last_stmt (header) - || gimple_code (last_stmt (header)) != GIMPLE_COND) - return NULL; - - extract_true_false_edges_from_block (header, &te, &fe); + gcond *cond; + do + { + if (single_succ_p (header)) + header = single_succ (header); + else + { + cond = dyn_cast <gcond *> (last_stmt (header)); + if (! cond) + return NULL; + extract_true_false_edges_from_block (header, &te, &fe); + /* Make sure to skip earlier hoisted guards that are left + in place as if (true). */ + if (gimple_cond_true_p (cond)) + header = te->dest; + else if (gimple_cond_false_p (cond)) + header = fe->dest; + else + break; + } + } + while (1); if (!flow_bb_inside_loop_p (loop, te->dest) || !flow_bb_inside_loop_p (loop, fe->dest)) return NULL; @@ -549,7 +566,7 @@ find_loop_guard (struct loop *loop) guard_edge->src->index, guard_edge->dest->index, loop->num); /* Check if condition operands do not have definitions inside loop since any bb copying is not performed. */ - FOR_EACH_SSA_TREE_OPERAND (use, last_stmt (header), iter, SSA_OP_USE) + FOR_EACH_SSA_TREE_OPERAND (use, cond, iter, SSA_OP_USE) { gimple *def = SSA_NAME_DEF_STMT (use); basic_block def_bb = gimple_bb (def); @@ -762,8 +779,6 @@ hoist_guard (struct loop *loop, edge guard) } } - mark_virtual_operands_for_renaming (cfun); - update_ssa (TODO_update_ssa); if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, " guard hoisted.\n"); } |