* dwarf2out.c, fold-const.c, ipa-type-escape.c,
[official-gcc.git] / gcc / tree-ssa-loop-ivcanon.c
blobe8a94d66e6ce3bb6dddbebeb649d5630216467c6
1 /* Induction variable canonicalization.
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
9 later version.
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
14 for more details.
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
19 02110-1301, USA. */
21 /* This pass detects the loops that iterate a constant number of times,
22 adds a canonical induction variable (step -1, tested against 0)
23 and replaces the exit test. This enables the less powerful rtl
24 level analysis to use this information.
26 This might spoil the code in some cases (by increasing register pressure).
27 Note that in the case the new variable is not needed, ivopts will get rid
28 of it, so it might only be a problem when there are no other linear induction
29 variables. In that case the created optimization possibilities are likely
30 to pay up.
32 Additionally in case we detect that it is beneficial to unroll the
33 loop completely, we do it right here to expose the optimization
34 possibilities to the following passes. */
36 #include "config.h"
37 #include "system.h"
38 #include "coretypes.h"
39 #include "tm.h"
40 #include "tree.h"
41 #include "rtl.h"
42 #include "tm_p.h"
43 #include "hard-reg-set.h"
44 #include "basic-block.h"
45 #include "output.h"
46 #include "diagnostic.h"
47 #include "tree-flow.h"
48 #include "tree-dump.h"
49 #include "cfgloop.h"
50 #include "tree-pass.h"
51 #include "ggc.h"
52 #include "tree-chrec.h"
53 #include "tree-scalar-evolution.h"
54 #include "params.h"
55 #include "flags.h"
56 #include "tree-inline.h"
58 /* Specifies types of loops that may be unrolled. */
60 enum unroll_level
62 UL_SINGLE_ITER, /* Only loops that exit immediately in the first
63 iteration. */
64 UL_NO_GROWTH, /* Only loops whose unrolling will not cause increase
65 of code size. */
66 UL_ALL /* All suitable loops. */
69 /* Adds a canonical induction variable to LOOP iterating NITER times. EXIT
70 is the exit edge whose condition is replaced. */
72 static void
73 create_canonical_iv (struct loop *loop, edge exit, tree niter)
75 edge in;
76 tree cond, type, var;
77 block_stmt_iterator incr_at;
78 enum tree_code cmp;
80 if (dump_file && (dump_flags & TDF_DETAILS))
82 fprintf (dump_file, "Added canonical iv to loop %d, ", loop->num);
83 print_generic_expr (dump_file, niter, TDF_SLIM);
84 fprintf (dump_file, " iterations.\n");
87 cond = last_stmt (exit->src);
88 in = EDGE_SUCC (exit->src, 0);
89 if (in == exit)
90 in = EDGE_SUCC (exit->src, 1);
92 /* Note that we do not need to worry about overflows, since
93 type of niter is always unsigned and all comparisons are
94 just for equality/nonequality -- i.e. everything works
95 with a modulo arithmetics. */
97 type = TREE_TYPE (niter);
98 niter = fold_build2 (PLUS_EXPR, type,
99 niter,
100 build_int_cst (type, 1));
101 incr_at = bsi_last (in->src);
102 create_iv (niter,
103 fold_convert (type, integer_minus_one_node),
104 NULL_TREE, loop,
105 &incr_at, false, NULL, &var);
107 cmp = (exit->flags & EDGE_TRUE_VALUE) ? EQ_EXPR : NE_EXPR;
108 COND_EXPR_COND (cond) = build2 (cmp, boolean_type_node,
109 var,
110 build_int_cst (type, 0));
111 update_stmt (cond);
114 /* Computes an estimated number of insns in LOOP. */
116 unsigned
117 tree_num_loop_insns (struct loop *loop)
119 basic_block *body = get_loop_body (loop);
120 block_stmt_iterator bsi;
121 unsigned size = 1, i;
123 for (i = 0; i < loop->num_nodes; i++)
124 for (bsi = bsi_start (body[i]); !bsi_end_p (bsi); bsi_next (&bsi))
125 size += estimate_num_insns (bsi_stmt (bsi));
126 free (body);
128 return size;
131 /* Estimate number of insns of completely unrolled loop. We assume
132 that the size of the unrolled loop is decreased in the
133 following way (the numbers of insns are based on what
134 estimate_num_insns returns for appropriate statements):
136 1) exit condition gets removed (2 insns)
137 2) increment of the control variable gets removed (2 insns)
138 3) All remaining statements are likely to get simplified
139 due to constant propagation. Hard to estimate; just
140 as a heuristics we decrease the rest by 1/3.
142 NINSNS is the number of insns in the loop before unrolling.
143 NUNROLL is the number of times the loop is unrolled. */
145 static unsigned HOST_WIDE_INT
146 estimated_unrolled_size (unsigned HOST_WIDE_INT ninsns,
147 unsigned HOST_WIDE_INT nunroll)
149 HOST_WIDE_INT unr_insns = 2 * ((HOST_WIDE_INT) ninsns - 4) / 3;
150 if (unr_insns <= 0)
151 unr_insns = 1;
152 unr_insns *= (nunroll + 1);
154 return unr_insns;
157 /* Tries to unroll LOOP completely, i.e. NITER times. LOOPS is the
158 loop tree. UL determines which loops we are allowed to unroll.
159 EXIT is the exit of the loop that should be eliminated. */
161 static bool
162 try_unroll_loop_completely (struct loops *loops ATTRIBUTE_UNUSED,
163 struct loop *loop,
164 edge exit, tree niter,
165 enum unroll_level ul)
167 unsigned HOST_WIDE_INT n_unroll, ninsns, max_unroll, unr_insns;
168 tree old_cond, cond, dont_exit, do_exit;
170 if (loop->inner)
171 return false;
173 if (!host_integerp (niter, 1))
174 return false;
175 n_unroll = tree_low_cst (niter, 1);
177 max_unroll = PARAM_VALUE (PARAM_MAX_COMPLETELY_PEEL_TIMES);
178 if (n_unroll > max_unroll)
179 return false;
181 if (n_unroll)
183 if (ul == UL_SINGLE_ITER)
184 return false;
186 ninsns = tree_num_loop_insns (loop);
188 if (n_unroll * ninsns
189 > (unsigned) PARAM_VALUE (PARAM_MAX_COMPLETELY_PEELED_INSNS))
190 return false;
192 if (ul == UL_NO_GROWTH)
194 unr_insns = estimated_unrolled_size (ninsns, n_unroll);
196 if (dump_file && (dump_flags & TDF_DETAILS))
198 fprintf (dump_file, " Loop size: %d\n", (int) ninsns);
199 fprintf (dump_file, " Estimated size after unrolling: %d\n",
200 (int) unr_insns);
203 if (unr_insns > ninsns)
205 if (dump_file && (dump_flags & TDF_DETAILS))
206 fprintf (dump_file, "Not unrolling loop %d:\n", loop->num);
207 return false;
212 if (exit->flags & EDGE_TRUE_VALUE)
214 dont_exit = boolean_false_node;
215 do_exit = boolean_true_node;
217 else
219 dont_exit = boolean_true_node;
220 do_exit = boolean_false_node;
222 cond = last_stmt (exit->src);
224 if (n_unroll)
226 old_cond = COND_EXPR_COND (cond);
227 COND_EXPR_COND (cond) = dont_exit;
228 update_stmt (cond);
229 initialize_original_copy_tables ();
231 if (!tree_duplicate_loop_to_header_edge (loop, loop_preheader_edge (loop),
232 loops, n_unroll, NULL,
233 NULL, NULL, NULL, 0))
235 COND_EXPR_COND (cond) = old_cond;
236 update_stmt (cond);
237 free_original_copy_tables ();
238 return false;
240 free_original_copy_tables ();
243 COND_EXPR_COND (cond) = do_exit;
244 update_stmt (cond);
246 update_ssa (TODO_update_ssa);
248 if (dump_file && (dump_flags & TDF_DETAILS))
249 fprintf (dump_file, "Unrolled loop %d completely.\n", loop->num);
251 return true;
254 /* Adds a canonical induction variable to LOOP if suitable. LOOPS is the loops
255 tree. CREATE_IV is true if we may create a new iv. UL determines what
256 which loops we are allowed to completely unroll. If TRY_EVAL is true, we try
257 to determine the number of iterations of a loop by direct evaluation.
258 Returns true if cfg is changed. */
260 static bool
261 canonicalize_loop_induction_variables (struct loops *loops, struct loop *loop,
262 bool create_iv, enum unroll_level ul,
263 bool try_eval)
265 edge exit = NULL;
266 tree niter;
268 niter = number_of_iterations_in_loop (loop);
269 if (TREE_CODE (niter) == INTEGER_CST)
271 exit = loop->single_exit;
272 if (!just_once_each_iteration_p (loop, exit->src))
273 return false;
275 /* The result of number_of_iterations_in_loop is by one higher than
276 we expect (i.e. it returns number of executions of the exit
277 condition, not of the loop latch edge). */
278 niter = fold_build2 (MINUS_EXPR, TREE_TYPE (niter), niter,
279 build_int_cst (TREE_TYPE (niter), 1));
281 else
283 /* If the loop has more than one exit, try checking all of them
284 for # of iterations determinable through scev. */
285 if (!loop->single_exit)
286 niter = find_loop_niter (loop, &exit);
288 /* Finally if everything else fails, try brute force evaluation. */
289 if (try_eval
290 && (chrec_contains_undetermined (niter)
291 || TREE_CODE (niter) != INTEGER_CST))
292 niter = find_loop_niter_by_eval (loop, &exit);
294 if (chrec_contains_undetermined (niter)
295 || TREE_CODE (niter) != INTEGER_CST)
296 return false;
299 if (dump_file && (dump_flags & TDF_DETAILS))
301 fprintf (dump_file, "Loop %d iterates ", loop->num);
302 print_generic_expr (dump_file, niter, TDF_SLIM);
303 fprintf (dump_file, " times.\n");
306 if (try_unroll_loop_completely (loops, loop, exit, niter, ul))
307 return true;
309 if (create_iv)
310 create_canonical_iv (loop, exit, niter);
312 return false;
315 /* The main entry point of the pass. Adds canonical induction variables
316 to the suitable LOOPS. */
318 void
319 canonicalize_induction_variables (struct loops *loops)
321 unsigned i;
322 struct loop *loop;
323 bool changed = false;
325 for (i = 1; i < loops->num; i++)
327 loop = loops->parray[i];
329 if (loop)
330 changed |= canonicalize_loop_induction_variables (loops, loop,
331 true, UL_SINGLE_ITER,
332 true);
335 /* Clean up the information about numbers of iterations, since brute force
336 evaluation could reveal new information. */
337 scev_reset ();
339 if (changed)
340 cleanup_tree_cfg_loop ();
343 /* Unroll LOOPS completely if they iterate just few times. Unless
344 MAY_INCREASE_SIZE is true, perform the unrolling only if the
345 size of the code does not increase. */
347 void
348 tree_unroll_loops_completely (struct loops *loops, bool may_increase_size)
350 unsigned i;
351 struct loop *loop;
352 bool changed = false;
353 enum unroll_level ul = may_increase_size ? UL_ALL : UL_NO_GROWTH;
355 for (i = 1; i < loops->num; i++)
357 loop = loops->parray[i];
359 if (!loop)
360 continue;
362 changed |= canonicalize_loop_induction_variables (loops, loop,
363 false, ul,
364 !flag_tree_loop_ivcanon);
367 /* Clean up the information about numbers of iterations, since complete
368 unrolling might have invalidated it. */
369 scev_reset ();
371 if (changed)
372 cleanup_tree_cfg_loop ();
375 /* Checks whether LOOP is empty. */
377 static bool
378 empty_loop_p (struct loop *loop)
380 edge exit;
381 struct tree_niter_desc niter;
382 tree phi, def;
383 basic_block *body;
384 block_stmt_iterator bsi;
385 unsigned i;
386 tree stmt;
388 /* If the loop has multiple exits, it is too hard for us to handle.
389 Similarly, if the exit is not dominating, we cannot determine
390 whether the loop is not infinite. */
391 exit = single_dom_exit (loop);
392 if (!exit)
393 return false;
395 /* The loop must be finite. */
396 if (!number_of_iterations_exit (loop, exit, &niter, false))
397 return false;
399 /* Values of all loop exit phi nodes must be invariants. */
400 for (phi = phi_nodes (exit->dest); phi; phi = PHI_CHAIN (phi))
402 if (!is_gimple_reg (PHI_RESULT (phi)))
403 continue;
405 def = PHI_ARG_DEF_FROM_EDGE (phi, exit);
407 if (!expr_invariant_in_loop_p (loop, def))
408 return false;
411 /* And there should be no memory modifying or from other reasons
412 unremovable statements. */
413 body = get_loop_body (loop);
414 for (i = 0; i < loop->num_nodes; i++)
416 /* Irreducible region might be infinite. */
417 if (body[i]->flags & BB_IRREDUCIBLE_LOOP)
419 free (body);
420 return false;
423 for (bsi = bsi_start (body[i]); !bsi_end_p (bsi); bsi_next (&bsi))
425 stmt = bsi_stmt (bsi);
426 if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_VIRTUAL_DEFS)
427 || stmt_ann (stmt)->has_volatile_ops)
429 free (body);
430 return false;
433 /* Also, asm statements and calls may have side effects and we
434 cannot change the number of times they are executed. */
435 switch (TREE_CODE (stmt))
437 case RETURN_EXPR:
438 case MODIFY_EXPR:
439 stmt = get_call_expr_in (stmt);
440 if (!stmt)
441 break;
443 case CALL_EXPR:
444 if (TREE_SIDE_EFFECTS (stmt))
446 free (body);
447 return false;
449 break;
451 case ASM_EXPR:
452 /* We cannot remove volatile assembler. */
453 if (ASM_VOLATILE_P (stmt))
455 free (body);
456 return false;
458 break;
460 default:
461 break;
465 free (body);
467 return true;
470 /* Remove LOOP by making it exit in the first iteration. */
472 static void
473 remove_empty_loop (struct loop *loop)
475 edge exit = single_dom_exit (loop);
476 tree cond_stmt = last_stmt (exit->src);
477 tree do_exit;
479 if (exit->flags & EDGE_TRUE_VALUE)
480 do_exit = boolean_true_node;
481 else
482 do_exit = boolean_false_node;
484 COND_EXPR_COND (cond_stmt) = do_exit;
485 update_stmt (cond_stmt);
488 /* Removes LOOP if it is empty. Returns true if LOOP is removed. CHANGED
489 is set to true if LOOP or any of its subloops is removed. */
491 static bool
492 try_remove_empty_loop (struct loop *loop, bool *changed)
494 bool nonempty_subloop = false;
495 struct loop *sub;
497 /* First, all subloops must be removed. */
498 for (sub = loop->inner; sub; sub = sub->next)
499 nonempty_subloop |= !try_remove_empty_loop (sub, changed);
501 if (nonempty_subloop || !empty_loop_p (loop))
502 return false;
504 remove_empty_loop (loop);
505 *changed = true;
506 return true;
509 /* Remove the empty LOOPS. */
511 void
512 remove_empty_loops (struct loops *loops)
514 bool changed = false;
515 struct loop *loop;
517 for (loop = loops->tree_root->inner; loop; loop = loop->next)
518 try_remove_empty_loop (loop, &changed);
520 if (changed)
522 scev_reset ();
523 cleanup_tree_cfg_loop ();