2 Copyright (C) 2004, 2005 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
23 #include "coretypes.h"
28 #include "hard-reg-set.h"
29 #include "basic-block.h"
31 #include "diagnostic.h"
32 #include "tree-flow.h"
33 #include "tree-dump.h"
38 #include "tree-pass.h"
40 /* This file implements the loop unswitching, i.e. transformation of loops like
53 where inv is the loop invariant, into
72 Inv is considered invariant iff the values it compares are both invariant;
73 tree-ssa-loop-im.c ensures that all the suitable conditions are in this
76 static struct loop
*tree_unswitch_loop (struct loop
*, basic_block
, tree
);
77 static bool tree_unswitch_single_loop (struct loop
*, int);
78 static tree
tree_may_unswitch_on (basic_block
, struct loop
*);
80 /* Main entry point. Perform loop unswitching on all suitable loops. */
83 tree_ssa_unswitch_loops (void)
89 /* Go through inner loops (only original ones). */
90 FOR_EACH_LOOP (li
, loop
, LI_ONLY_OLD
| LI_ONLY_INNERMOST
)
92 changed
|= tree_unswitch_single_loop (loop
, 0);
96 return TODO_cleanup_cfg
;
100 /* Checks whether we can unswitch LOOP on condition at end of BB -- one of its
101 basic blocks (for what it means see comments below). */
104 tree_may_unswitch_on (basic_block bb
, struct loop
*loop
)
106 tree stmt
, def
, cond
, use
;
110 /* BB must end in a simple conditional jump. */
111 stmt
= last_stmt (bb
);
112 if (!stmt
|| TREE_CODE (stmt
) != COND_EXPR
)
115 /* Condition must be invariant. */
116 FOR_EACH_SSA_TREE_OPERAND (use
, stmt
, iter
, SSA_OP_USE
)
118 def
= SSA_NAME_DEF_STMT (use
);
119 def_bb
= bb_for_stmt (def
);
121 && flow_bb_inside_loop_p (loop
, def_bb
))
125 cond
= COND_EXPR_COND (stmt
);
126 /* To keep the things simple, we do not directly remove the conditions,
127 but just replace tests with 0/1. Prevent the infinite loop where we
128 would unswitch again on such a condition. */
129 if (integer_zerop (cond
) || integer_nonzerop (cond
))
135 /* Simplifies COND using checks in front of the entry of the LOOP. Just very
136 simplish (sufficient to prevent us from duplicating loop in unswitching
140 simplify_using_entry_checks (struct loop
*loop
, tree cond
)
142 edge e
= loop_preheader_edge (loop
);
147 stmt
= last_stmt (e
->src
);
149 && TREE_CODE (stmt
) == COND_EXPR
150 && operand_equal_p (COND_EXPR_COND (stmt
), cond
, 0))
151 return (e
->flags
& EDGE_TRUE_VALUE
153 : boolean_false_node
);
155 if (!single_pred_p (e
->src
))
158 e
= single_pred_edge (e
->src
);
159 if (e
->src
== ENTRY_BLOCK_PTR
)
164 /* Unswitch single LOOP. NUM is number of unswitchings done; we do not allow
165 it to grow too much, it is too easy to create example on that the code would
166 grow exponentially. */
169 tree_unswitch_single_loop (struct loop
*loop
, int num
)
174 tree cond
= NULL_TREE
, stmt
;
175 bool changed
= false;
177 /* Do not unswitch too much. */
178 if (num
> PARAM_VALUE (PARAM_MAX_UNSWITCH_LEVEL
))
180 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
181 fprintf (dump_file
, ";; Not unswitching anymore, hit max level\n");
185 /* Only unswitch innermost loops. */
188 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
189 fprintf (dump_file
, ";; Not unswitching, not innermost loop\n");
193 /* The loop should not be too large, to limit code growth. */
194 if (tree_num_loop_insns (loop
)
195 > (unsigned) PARAM_VALUE (PARAM_MAX_UNSWITCH_INSNS
))
197 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
198 fprintf (dump_file
, ";; Not unswitching, loop too big\n");
203 bbs
= get_loop_body (loop
);
207 /* Find a bb to unswitch on. */
208 for (; i
< loop
->num_nodes
; i
++)
209 if ((cond
= tree_may_unswitch_on (bbs
[i
], loop
)))
212 if (i
== loop
->num_nodes
)
218 cond
= simplify_using_entry_checks (loop
, cond
);
219 stmt
= last_stmt (bbs
[i
]);
220 if (integer_nonzerop (cond
))
222 /* Remove false path. */
223 COND_EXPR_COND (stmt
) = boolean_true_node
;
226 else if (integer_zerop (cond
))
228 /* Remove true path. */
229 COND_EXPR_COND (stmt
) = boolean_false_node
;
239 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
240 fprintf (dump_file
, ";; Unswitching loop\n");
242 initialize_original_copy_tables ();
243 /* Unswitch the loop on this condition. */
244 nloop
= tree_unswitch_loop (loop
, bbs
[i
], cond
);
247 free_original_copy_tables ();
252 /* Update the SSA form after unswitching. */
253 update_ssa (TODO_update_ssa
);
254 free_original_copy_tables ();
256 /* Invoke itself on modified loops. */
257 tree_unswitch_single_loop (nloop
, num
+ 1);
258 tree_unswitch_single_loop (loop
, num
+ 1);
263 /* Unswitch a LOOP w.r. to given basic block UNSWITCH_ON. We only support
264 unswitching of innermost loops. COND is the condition determining which
265 loop is entered -- the new loop is entered if COND is true. Returns NULL
266 if impossible, new loop otherwise. */
269 tree_unswitch_loop (struct loop
*loop
,
270 basic_block unswitch_on
, tree cond
)
272 basic_block condition_bb
;
274 /* Some sanity checking. */
275 gcc_assert (flow_bb_inside_loop_p (loop
, unswitch_on
));
276 gcc_assert (EDGE_COUNT (unswitch_on
->succs
) == 2);
277 gcc_assert (loop
->inner
== NULL
);
279 return loop_version (loop
, unshare_expr (cond
),
280 &condition_bb
, false);