re PR bootstrap/54281 (Fails to bootstrap with --disable-nls)
[official-gcc.git] / gcc / tree-ssa-loop-manip.c
blobab015df4bc5a07e1f9ddfbf1a66a5b90cd9b487a
1 /* High-level loop manipulation functions.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3, or (at your option) any
10 later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "tm_p.h"
27 #include "basic-block.h"
28 #include "tree-flow.h"
29 #include "dumpfile.h"
30 #include "gimple-pretty-print.h"
31 #include "cfgloop.h"
32 #include "tree-pass.h" /* ??? for TODO_update_ssa but this isn't a pass. */
33 #include "tree-scalar-evolution.h"
34 #include "params.h"
35 #include "tree-inline.h"
36 #include "langhooks.h"
38 /* All bitmaps for rewriting into loop-closed SSA go on this obstack,
39 so that we can free them all at once. */
40 static bitmap_obstack loop_renamer_obstack;
42 /* Creates an induction variable with value BASE + STEP * iteration in LOOP.
43 It is expected that neither BASE nor STEP are shared with other expressions
44 (unless the sharing rules allow this). Use VAR as a base var_decl for it
45 (if NULL, a new temporary will be created). The increment will occur at
46 INCR_POS (after it if AFTER is true, before it otherwise). INCR_POS and
47 AFTER can be computed using standard_iv_increment_position. The ssa versions
48 of the variable before and after increment will be stored in VAR_BEFORE and
49 VAR_AFTER (unless they are NULL). */
51 void
52 create_iv (tree base, tree step, tree var, struct loop *loop,
53 gimple_stmt_iterator *incr_pos, bool after,
54 tree *var_before, tree *var_after)
56 gimple stmt;
57 tree initial, step1;
58 gimple_seq stmts;
59 tree vb, va;
60 enum tree_code incr_op = PLUS_EXPR;
61 edge pe = loop_preheader_edge (loop);
63 if (var != NULL_TREE)
65 vb = make_ssa_name (var, NULL);
66 va = make_ssa_name (var, NULL);
68 else
70 vb = make_temp_ssa_name (TREE_TYPE (base), NULL, "ivtmp");
71 va = make_temp_ssa_name (TREE_TYPE (base), NULL, "ivtmp");
73 if (var_before)
74 *var_before = vb;
75 if (var_after)
76 *var_after = va;
78 /* For easier readability of the created code, produce MINUS_EXPRs
79 when suitable. */
80 if (TREE_CODE (step) == INTEGER_CST)
82 if (TYPE_UNSIGNED (TREE_TYPE (step)))
84 step1 = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step);
85 if (tree_int_cst_lt (step1, step))
87 incr_op = MINUS_EXPR;
88 step = step1;
91 else
93 bool ovf;
95 if (!tree_expr_nonnegative_warnv_p (step, &ovf)
96 && may_negate_without_overflow_p (step))
98 incr_op = MINUS_EXPR;
99 step = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step);
103 if (POINTER_TYPE_P (TREE_TYPE (base)))
105 if (TREE_CODE (base) == ADDR_EXPR)
106 mark_addressable (TREE_OPERAND (base, 0));
107 step = convert_to_ptrofftype (step);
108 if (incr_op == MINUS_EXPR)
109 step = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step);
110 incr_op = POINTER_PLUS_EXPR;
112 /* Gimplify the step if necessary. We put the computations in front of the
113 loop (i.e. the step should be loop invariant). */
114 step = force_gimple_operand (step, &stmts, true, NULL_TREE);
115 if (stmts)
116 gsi_insert_seq_on_edge_immediate (pe, stmts);
118 stmt = gimple_build_assign_with_ops (incr_op, va, vb, step);
119 if (after)
120 gsi_insert_after (incr_pos, stmt, GSI_NEW_STMT);
121 else
122 gsi_insert_before (incr_pos, stmt, GSI_NEW_STMT);
124 initial = force_gimple_operand (base, &stmts, true, var);
125 if (stmts)
126 gsi_insert_seq_on_edge_immediate (pe, stmts);
128 stmt = create_phi_node (vb, loop->header);
129 add_phi_arg (stmt, initial, loop_preheader_edge (loop), UNKNOWN_LOCATION);
130 add_phi_arg (stmt, va, loop_latch_edge (loop), UNKNOWN_LOCATION);
133 /* Return the innermost superloop LOOP of USE_LOOP that is a superloop of
134 both DEF_LOOP and USE_LOOP. */
136 static inline struct loop *
137 find_sibling_superloop (struct loop *use_loop, struct loop *def_loop)
139 unsigned ud = loop_depth (use_loop);
140 unsigned dd = loop_depth (def_loop);
141 gcc_assert (ud > 0 && dd > 0);
142 if (ud > dd)
143 use_loop = superloop_at_depth (use_loop, dd);
144 if (ud < dd)
145 def_loop = superloop_at_depth (def_loop, ud);
146 while (loop_outer (use_loop) != loop_outer (def_loop))
148 use_loop = loop_outer (use_loop);
149 def_loop = loop_outer (def_loop);
150 gcc_assert (use_loop && def_loop);
152 return use_loop;
155 /* DEF_BB is a basic block containing a DEF that needs rewriting into
156 loop-closed SSA form. USE_BLOCKS is the set of basic blocks containing
157 uses of DEF that "escape" from the loop containing DEF_BB (i.e. blocks in
158 USE_BLOCKS are dominated by DEF_BB but not in the loop father of DEF_B).
159 ALL_EXITS[I] is the set of all basic blocks that exit loop I.
161 Compute the subset of LOOP_EXITS that exit the loop containing DEF_BB
162 or one of its loop fathers, in which DEF is live. This set is returned
163 in the bitmap LIVE_EXITS.
165 Instead of computing the complete livein set of the def, we use the loop
166 nesting tree as a form of poor man's structure analysis. This greatly
167 speeds up the analysis, which is important because this function may be
168 called on all SSA names that need rewriting, one at a time. */
170 static void
171 compute_live_loop_exits (bitmap live_exits, bitmap use_blocks,
172 bitmap *loop_exits, basic_block def_bb)
174 unsigned i;
175 bitmap_iterator bi;
176 VEC (basic_block, heap) *worklist;
177 struct loop *def_loop = def_bb->loop_father;
178 unsigned def_loop_depth = loop_depth (def_loop);
179 bitmap def_loop_exits;
181 /* Normally the work list size is bounded by the number of basic
182 blocks in the largest loop. We don't know this number, but we
183 can be fairly sure that it will be relatively small. */
184 worklist = VEC_alloc (basic_block, heap, MAX (8, n_basic_blocks / 128));
186 EXECUTE_IF_SET_IN_BITMAP (use_blocks, 0, i, bi)
188 basic_block use_bb = BASIC_BLOCK (i);
189 struct loop *use_loop = use_bb->loop_father;
190 gcc_checking_assert (def_loop != use_loop
191 && ! flow_loop_nested_p (def_loop, use_loop));
192 if (! flow_loop_nested_p (use_loop, def_loop))
193 use_bb = find_sibling_superloop (use_loop, def_loop)->header;
194 if (bitmap_set_bit (live_exits, use_bb->index))
195 VEC_safe_push (basic_block, heap, worklist, use_bb);
198 /* Iterate until the worklist is empty. */
199 while (! VEC_empty (basic_block, worklist))
201 edge e;
202 edge_iterator ei;
204 /* Pull a block off the worklist. */
205 basic_block bb = VEC_pop (basic_block, worklist);
207 /* Make sure we have at least enough room in the work list
208 for all predecessors of this block. */
209 VEC_reserve (basic_block, heap, worklist, EDGE_COUNT (bb->preds));
211 /* For each predecessor block. */
212 FOR_EACH_EDGE (e, ei, bb->preds)
214 basic_block pred = e->src;
215 struct loop *pred_loop = pred->loop_father;
216 unsigned pred_loop_depth = loop_depth (pred_loop);
217 bool pred_visited;
219 /* We should have met DEF_BB along the way. */
220 gcc_assert (pred != ENTRY_BLOCK_PTR);
222 if (pred_loop_depth >= def_loop_depth)
224 if (pred_loop_depth > def_loop_depth)
225 pred_loop = superloop_at_depth (pred_loop, def_loop_depth);
226 /* If we've reached DEF_LOOP, our train ends here. */
227 if (pred_loop == def_loop)
228 continue;
230 else if (! flow_loop_nested_p (pred_loop, def_loop))
231 pred = find_sibling_superloop (pred_loop, def_loop)->header;
233 /* Add PRED to the LIVEIN set. PRED_VISITED is true if
234 we had already added PRED to LIVEIN before. */
235 pred_visited = !bitmap_set_bit (live_exits, pred->index);
237 /* If we have visited PRED before, don't add it to the worklist.
238 If BB dominates PRED, then we're probably looking at a loop.
239 We're only interested in looking up in the dominance tree
240 because DEF_BB dominates all the uses. */
241 if (pred_visited || dominated_by_p (CDI_DOMINATORS, pred, bb))
242 continue;
244 VEC_quick_push (basic_block, worklist, pred);
247 VEC_free (basic_block, heap, worklist);
249 def_loop_exits = BITMAP_ALLOC (&loop_renamer_obstack);
250 for (struct loop *loop = def_loop;
251 loop != current_loops->tree_root;
252 loop = loop_outer (loop))
253 bitmap_ior_into (def_loop_exits, loop_exits[loop->num]);
254 bitmap_and_into (live_exits, def_loop_exits);
255 BITMAP_FREE (def_loop_exits);
258 /* Add a loop-closing PHI for VAR in basic block EXIT. */
260 static void
261 add_exit_phi (basic_block exit, tree var)
263 gimple phi;
264 edge e;
265 edge_iterator ei;
267 #ifdef ENABLE_CHECKING
268 /* Check that at least one of the edges entering the EXIT block exits
269 the loop, or a superloop of that loop, that VAR is defined in. */
270 gimple def_stmt = SSA_NAME_DEF_STMT (var);
271 basic_block def_bb = gimple_bb (def_stmt);
272 FOR_EACH_EDGE (e, ei, exit->preds)
274 struct loop *aloop = find_common_loop (def_bb->loop_father,
275 e->src->loop_father);
276 if (!flow_bb_inside_loop_p (aloop, e->dest))
277 break;
280 gcc_checking_assert (e);
281 #endif
283 phi = create_phi_node (NULL_TREE, exit);
284 create_new_def_for (var, phi, gimple_phi_result_ptr (phi));
285 FOR_EACH_EDGE (e, ei, exit->preds)
286 add_phi_arg (phi, var, e, UNKNOWN_LOCATION);
288 if (dump_file && (dump_flags & TDF_DETAILS))
290 fprintf (dump_file, ";; Created LCSSA PHI: ");
291 print_gimple_stmt (dump_file, phi, 0, dump_flags);
295 /* Add exit phis for VAR that is used in LIVEIN.
296 Exits of the loops are stored in LOOP_EXITS. */
298 static void
299 add_exit_phis_var (tree var, bitmap use_blocks, bitmap *loop_exits)
301 unsigned index;
302 bitmap_iterator bi;
303 basic_block def_bb = gimple_bb (SSA_NAME_DEF_STMT (var));
304 bitmap live_exits = BITMAP_ALLOC (&loop_renamer_obstack);
306 gcc_checking_assert (! virtual_operand_p (var));
307 gcc_assert (! bitmap_bit_p (use_blocks, def_bb->index));
309 compute_live_loop_exits (live_exits, use_blocks, loop_exits, def_bb);
311 EXECUTE_IF_SET_IN_BITMAP (live_exits, 0, index, bi)
313 add_exit_phi (BASIC_BLOCK (index), var);
316 BITMAP_FREE (live_exits);
319 /* Add exit phis for the names marked in NAMES_TO_RENAME.
320 Exits of the loops are stored in EXITS. Sets of blocks where the ssa
321 names are used are stored in USE_BLOCKS. */
323 static void
324 add_exit_phis (bitmap names_to_rename, bitmap *use_blocks, bitmap *loop_exits)
326 unsigned i;
327 bitmap_iterator bi;
329 EXECUTE_IF_SET_IN_BITMAP (names_to_rename, 0, i, bi)
331 add_exit_phis_var (ssa_name (i), use_blocks[i], loop_exits);
335 /* Fill the array of bitmaps LOOP_EXITS with all loop exit edge targets. */
337 static void
338 get_loops_exits (bitmap *loop_exits)
340 loop_iterator li;
341 struct loop *loop;
342 unsigned j;
343 edge e;
345 FOR_EACH_LOOP (li, loop, 0)
347 VEC(edge, heap) *exit_edges = get_loop_exit_edges (loop);
348 loop_exits[loop->num] = BITMAP_ALLOC (&loop_renamer_obstack);
349 FOR_EACH_VEC_ELT (edge, exit_edges, j, e)
350 bitmap_set_bit (loop_exits[loop->num], e->dest->index);
351 VEC_free (edge, heap, exit_edges);
355 /* For USE in BB, if it is used outside of the loop it is defined in,
356 mark it for rewrite. Record basic block BB where it is used
357 to USE_BLOCKS. Record the ssa name index to NEED_PHIS bitmap. */
359 static void
360 find_uses_to_rename_use (basic_block bb, tree use, bitmap *use_blocks,
361 bitmap need_phis)
363 unsigned ver;
364 basic_block def_bb;
365 struct loop *def_loop;
367 if (TREE_CODE (use) != SSA_NAME)
368 return;
370 /* We don't need to keep virtual operands in loop-closed form. */
371 if (virtual_operand_p (use))
372 return;
374 ver = SSA_NAME_VERSION (use);
375 def_bb = gimple_bb (SSA_NAME_DEF_STMT (use));
376 if (!def_bb)
377 return;
378 def_loop = def_bb->loop_father;
380 /* If the definition is not inside a loop, it is not interesting. */
381 if (!loop_outer (def_loop))
382 return;
384 /* If the use is not outside of the loop it is defined in, it is not
385 interesting. */
386 if (flow_bb_inside_loop_p (def_loop, bb))
387 return;
389 /* If we're seeing VER for the first time, we still have to allocate
390 a bitmap for its uses. */
391 if (bitmap_set_bit (need_phis, ver))
392 use_blocks[ver] = BITMAP_ALLOC (&loop_renamer_obstack);
393 bitmap_set_bit (use_blocks[ver], bb->index);
396 /* For uses in STMT, mark names that are used outside of the loop they are
397 defined to rewrite. Record the set of blocks in that the ssa
398 names are defined to USE_BLOCKS and the ssa names themselves to
399 NEED_PHIS. */
401 static void
402 find_uses_to_rename_stmt (gimple stmt, bitmap *use_blocks, bitmap need_phis)
404 ssa_op_iter iter;
405 tree var;
406 basic_block bb = gimple_bb (stmt);
408 if (is_gimple_debug (stmt))
409 return;
411 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
412 find_uses_to_rename_use (bb, var, use_blocks, need_phis);
415 /* Marks names that are used in BB and outside of the loop they are
416 defined in for rewrite. Records the set of blocks in that the ssa
417 names are defined to USE_BLOCKS. Record the SSA names that will
418 need exit PHIs in NEED_PHIS. */
420 static void
421 find_uses_to_rename_bb (basic_block bb, bitmap *use_blocks, bitmap need_phis)
423 gimple_stmt_iterator bsi;
424 edge e;
425 edge_iterator ei;
427 FOR_EACH_EDGE (e, ei, bb->succs)
428 for (bsi = gsi_start_phis (e->dest); !gsi_end_p (bsi); gsi_next (&bsi))
430 gimple phi = gsi_stmt (bsi);
431 if (! virtual_operand_p (gimple_phi_result (phi)))
432 find_uses_to_rename_use (bb, PHI_ARG_DEF_FROM_EDGE (phi, e),
433 use_blocks, need_phis);
436 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
437 find_uses_to_rename_stmt (gsi_stmt (bsi), use_blocks, need_phis);
440 /* Marks names that are used outside of the loop they are defined in
441 for rewrite. Records the set of blocks in that the ssa
442 names are defined to USE_BLOCKS. If CHANGED_BBS is not NULL,
443 scan only blocks in this set. */
445 static void
446 find_uses_to_rename (bitmap changed_bbs, bitmap *use_blocks, bitmap need_phis)
448 basic_block bb;
449 unsigned index;
450 bitmap_iterator bi;
452 /* ??? If CHANGED_BBS is empty we rewrite the whole function -- why? */
453 if (changed_bbs && !bitmap_empty_p (changed_bbs))
455 EXECUTE_IF_SET_IN_BITMAP (changed_bbs, 0, index, bi)
457 find_uses_to_rename_bb (BASIC_BLOCK (index), use_blocks, need_phis);
460 else
462 FOR_EACH_BB (bb)
464 find_uses_to_rename_bb (bb, use_blocks, need_phis);
469 /* Rewrites the program into a loop closed ssa form -- i.e. inserts extra
470 phi nodes to ensure that no variable is used outside the loop it is
471 defined in.
473 This strengthening of the basic ssa form has several advantages:
475 1) Updating it during unrolling/peeling/versioning is trivial, since
476 we do not need to care about the uses outside of the loop.
477 2) The behavior of all uses of an induction variable is the same.
478 Without this, you need to distinguish the case when the variable
479 is used outside of the loop it is defined in, for example
481 for (i = 0; i < 100; i++)
483 for (j = 0; j < 100; j++)
485 k = i + j;
486 use1 (k);
488 use2 (k);
491 Looking from the outer loop with the normal SSA form, the first use of k
492 is not well-behaved, while the second one is an induction variable with
493 base 99 and step 1.
495 If CHANGED_BBS is not NULL, we look for uses outside loops only in
496 the basic blocks in this set.
498 UPDATE_FLAG is used in the call to update_ssa. See
499 TODO_update_ssa* for documentation. */
501 void
502 rewrite_into_loop_closed_ssa (bitmap changed_bbs, unsigned update_flag)
504 bitmap *loop_exits;
505 bitmap *use_blocks;
506 bitmap names_to_rename;
508 loops_state_set (LOOP_CLOSED_SSA);
509 if (number_of_loops () <= 1)
510 return;
512 /* If the pass has caused the SSA form to be out-of-date, update it
513 now. */
514 update_ssa (update_flag);
516 bitmap_obstack_initialize (&loop_renamer_obstack);
518 names_to_rename = BITMAP_ALLOC (&loop_renamer_obstack);
520 /* An array of bitmaps where LOOP_EXITS[I] is the set of basic blocks
521 that are the destination of an edge exiting loop number I. */
522 loop_exits = XNEWVEC (bitmap, number_of_loops ());
523 get_loops_exits (loop_exits);
525 /* Uses of names to rename. We don't have to initialize this array,
526 because we know that we will only have entries for the SSA names
527 in NAMES_TO_RENAME. */
528 use_blocks = XNEWVEC (bitmap, num_ssa_names);
530 /* Find the uses outside loops. */
531 find_uses_to_rename (changed_bbs, use_blocks, names_to_rename);
533 /* Add the PHI nodes on exits of the loops for the names we need to
534 rewrite. */
535 add_exit_phis (names_to_rename, use_blocks, loop_exits);
537 bitmap_obstack_release (&loop_renamer_obstack);
538 free (use_blocks);
539 free (loop_exits);
541 /* Fix up all the names found to be used outside their original
542 loops. */
543 update_ssa (TODO_update_ssa);
546 /* Check invariants of the loop closed ssa form for the USE in BB. */
548 static void
549 check_loop_closed_ssa_use (basic_block bb, tree use)
551 gimple def;
552 basic_block def_bb;
554 if (TREE_CODE (use) != SSA_NAME || virtual_operand_p (use))
555 return;
557 def = SSA_NAME_DEF_STMT (use);
558 def_bb = gimple_bb (def);
559 gcc_assert (!def_bb
560 || flow_bb_inside_loop_p (def_bb->loop_father, bb));
563 /* Checks invariants of loop closed ssa form in statement STMT in BB. */
565 static void
566 check_loop_closed_ssa_stmt (basic_block bb, gimple stmt)
568 ssa_op_iter iter;
569 tree var;
571 if (is_gimple_debug (stmt))
572 return;
574 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
575 check_loop_closed_ssa_use (bb, var);
578 /* Checks that invariants of the loop closed ssa form are preserved.
579 Call verify_ssa when VERIFY_SSA_P is true. */
581 DEBUG_FUNCTION void
582 verify_loop_closed_ssa (bool verify_ssa_p)
584 basic_block bb;
585 gimple_stmt_iterator bsi;
586 gimple phi;
587 edge e;
588 edge_iterator ei;
590 if (number_of_loops () <= 1)
591 return;
593 if (verify_ssa_p)
594 verify_ssa (false);
596 timevar_push (TV_VERIFY_LOOP_CLOSED);
598 FOR_EACH_BB (bb)
600 for (bsi = gsi_start_phis (bb); !gsi_end_p (bsi); gsi_next (&bsi))
602 phi = gsi_stmt (bsi);
603 FOR_EACH_EDGE (e, ei, bb->preds)
604 check_loop_closed_ssa_use (e->src,
605 PHI_ARG_DEF_FROM_EDGE (phi, e));
608 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
609 check_loop_closed_ssa_stmt (bb, gsi_stmt (bsi));
612 timevar_pop (TV_VERIFY_LOOP_CLOSED);
615 /* Split loop exit edge EXIT. The things are a bit complicated by a need to
616 preserve the loop closed ssa form. The newly created block is returned. */
618 basic_block
619 split_loop_exit_edge (edge exit)
621 basic_block dest = exit->dest;
622 basic_block bb = split_edge (exit);
623 gimple phi, new_phi;
624 tree new_name, name;
625 use_operand_p op_p;
626 gimple_stmt_iterator psi;
627 source_location locus;
629 for (psi = gsi_start_phis (dest); !gsi_end_p (psi); gsi_next (&psi))
631 phi = gsi_stmt (psi);
632 op_p = PHI_ARG_DEF_PTR_FROM_EDGE (phi, single_succ_edge (bb));
633 locus = gimple_phi_arg_location_from_edge (phi, single_succ_edge (bb));
635 name = USE_FROM_PTR (op_p);
637 /* If the argument of the PHI node is a constant, we do not need
638 to keep it inside loop. */
639 if (TREE_CODE (name) != SSA_NAME)
640 continue;
642 /* Otherwise create an auxiliary phi node that will copy the value
643 of the SSA name out of the loop. */
644 new_name = duplicate_ssa_name (name, NULL);
645 new_phi = create_phi_node (new_name, bb);
646 add_phi_arg (new_phi, name, exit, locus);
647 SET_USE (op_p, new_name);
650 return bb;
653 /* Returns the basic block in that statements should be emitted for induction
654 variables incremented at the end of the LOOP. */
656 basic_block
657 ip_end_pos (struct loop *loop)
659 return loop->latch;
662 /* Returns the basic block in that statements should be emitted for induction
663 variables incremented just before exit condition of a LOOP. */
665 basic_block
666 ip_normal_pos (struct loop *loop)
668 gimple last;
669 basic_block bb;
670 edge exit;
672 if (!single_pred_p (loop->latch))
673 return NULL;
675 bb = single_pred (loop->latch);
676 last = last_stmt (bb);
677 if (!last
678 || gimple_code (last) != GIMPLE_COND)
679 return NULL;
681 exit = EDGE_SUCC (bb, 0);
682 if (exit->dest == loop->latch)
683 exit = EDGE_SUCC (bb, 1);
685 if (flow_bb_inside_loop_p (loop, exit->dest))
686 return NULL;
688 return bb;
691 /* Stores the standard position for induction variable increment in LOOP
692 (just before the exit condition if it is available and latch block is empty,
693 end of the latch block otherwise) to BSI. INSERT_AFTER is set to true if
694 the increment should be inserted after *BSI. */
696 void
697 standard_iv_increment_position (struct loop *loop, gimple_stmt_iterator *bsi,
698 bool *insert_after)
700 basic_block bb = ip_normal_pos (loop), latch = ip_end_pos (loop);
701 gimple last = last_stmt (latch);
703 if (!bb
704 || (last && gimple_code (last) != GIMPLE_LABEL))
706 *bsi = gsi_last_bb (latch);
707 *insert_after = true;
709 else
711 *bsi = gsi_last_bb (bb);
712 *insert_after = false;
716 /* Copies phi node arguments for duplicated blocks. The index of the first
717 duplicated block is FIRST_NEW_BLOCK. */
719 static void
720 copy_phi_node_args (unsigned first_new_block)
722 unsigned i;
724 for (i = first_new_block; i < (unsigned) last_basic_block; i++)
725 BASIC_BLOCK (i)->flags |= BB_DUPLICATED;
727 for (i = first_new_block; i < (unsigned) last_basic_block; i++)
728 add_phi_args_after_copy_bb (BASIC_BLOCK (i));
730 for (i = first_new_block; i < (unsigned) last_basic_block; i++)
731 BASIC_BLOCK (i)->flags &= ~BB_DUPLICATED;
735 /* The same as cfgloopmanip.c:duplicate_loop_to_header_edge, but also
736 updates the PHI nodes at start of the copied region. In order to
737 achieve this, only loops whose exits all lead to the same location
738 are handled.
740 Notice that we do not completely update the SSA web after
741 duplication. The caller is responsible for calling update_ssa
742 after the loop has been duplicated. */
744 bool
745 gimple_duplicate_loop_to_header_edge (struct loop *loop, edge e,
746 unsigned int ndupl, sbitmap wont_exit,
747 edge orig, VEC (edge, heap) **to_remove,
748 int flags)
750 unsigned first_new_block;
752 if (!loops_state_satisfies_p (LOOPS_HAVE_SIMPLE_LATCHES))
753 return false;
754 if (!loops_state_satisfies_p (LOOPS_HAVE_PREHEADERS))
755 return false;
757 #ifdef ENABLE_CHECKING
758 if (loops_state_satisfies_p (LOOP_CLOSED_SSA))
759 verify_loop_closed_ssa (true);
760 #endif
762 first_new_block = last_basic_block;
763 if (!duplicate_loop_to_header_edge (loop, e, ndupl, wont_exit,
764 orig, to_remove, flags))
765 return false;
767 /* Readd the removed phi args for e. */
768 flush_pending_stmts (e);
770 /* Copy the phi node arguments. */
771 copy_phi_node_args (first_new_block);
773 scev_reset ();
775 return true;
778 /* Returns true if we can unroll LOOP FACTOR times. Number
779 of iterations of the loop is returned in NITER. */
781 bool
782 can_unroll_loop_p (struct loop *loop, unsigned factor,
783 struct tree_niter_desc *niter)
785 edge exit;
787 /* Check whether unrolling is possible. We only want to unroll loops
788 for that we are able to determine number of iterations. We also
789 want to split the extra iterations of the loop from its end,
790 therefore we require that the loop has precisely one
791 exit. */
793 exit = single_dom_exit (loop);
794 if (!exit)
795 return false;
797 if (!number_of_iterations_exit (loop, exit, niter, false)
798 || niter->cmp == ERROR_MARK
799 /* Scalar evolutions analysis might have copy propagated
800 the abnormal ssa names into these expressions, hence
801 emitting the computations based on them during loop
802 unrolling might create overlapping life ranges for
803 them, and failures in out-of-ssa. */
804 || contains_abnormal_ssa_name_p (niter->may_be_zero)
805 || contains_abnormal_ssa_name_p (niter->control.base)
806 || contains_abnormal_ssa_name_p (niter->control.step)
807 || contains_abnormal_ssa_name_p (niter->bound))
808 return false;
810 /* And of course, we must be able to duplicate the loop. */
811 if (!can_duplicate_loop_p (loop))
812 return false;
814 /* The final loop should be small enough. */
815 if (tree_num_loop_insns (loop, &eni_size_weights) * factor
816 > (unsigned) PARAM_VALUE (PARAM_MAX_UNROLLED_INSNS))
817 return false;
819 return true;
822 /* Determines the conditions that control execution of LOOP unrolled FACTOR
823 times. DESC is number of iterations of LOOP. ENTER_COND is set to
824 condition that must be true if the main loop can be entered.
825 EXIT_BASE, EXIT_STEP, EXIT_CMP and EXIT_BOUND are set to values describing
826 how the exit from the unrolled loop should be controlled. */
828 static void
829 determine_exit_conditions (struct loop *loop, struct tree_niter_desc *desc,
830 unsigned factor, tree *enter_cond,
831 tree *exit_base, tree *exit_step,
832 enum tree_code *exit_cmp, tree *exit_bound)
834 gimple_seq stmts;
835 tree base = desc->control.base;
836 tree step = desc->control.step;
837 tree bound = desc->bound;
838 tree type = TREE_TYPE (step);
839 tree bigstep, delta;
840 tree min = lower_bound_in_type (type, type);
841 tree max = upper_bound_in_type (type, type);
842 enum tree_code cmp = desc->cmp;
843 tree cond = boolean_true_node, assum;
845 /* For pointers, do the arithmetics in the type of step. */
846 base = fold_convert (type, base);
847 bound = fold_convert (type, bound);
849 *enter_cond = boolean_false_node;
850 *exit_base = NULL_TREE;
851 *exit_step = NULL_TREE;
852 *exit_cmp = ERROR_MARK;
853 *exit_bound = NULL_TREE;
854 gcc_assert (cmp != ERROR_MARK);
856 /* We only need to be correct when we answer question
857 "Do at least FACTOR more iterations remain?" in the unrolled loop.
858 Thus, transforming BASE + STEP * i <> BOUND to
859 BASE + STEP * i < BOUND is ok. */
860 if (cmp == NE_EXPR)
862 if (tree_int_cst_sign_bit (step))
863 cmp = GT_EXPR;
864 else
865 cmp = LT_EXPR;
867 else if (cmp == LT_EXPR)
869 gcc_assert (!tree_int_cst_sign_bit (step));
871 else if (cmp == GT_EXPR)
873 gcc_assert (tree_int_cst_sign_bit (step));
875 else
876 gcc_unreachable ();
878 /* The main body of the loop may be entered iff:
880 1) desc->may_be_zero is false.
881 2) it is possible to check that there are at least FACTOR iterations
882 of the loop, i.e., BOUND - step * FACTOR does not overflow.
883 3) # of iterations is at least FACTOR */
885 if (!integer_zerop (desc->may_be_zero))
886 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node,
887 invert_truthvalue (desc->may_be_zero),
888 cond);
890 bigstep = fold_build2 (MULT_EXPR, type, step,
891 build_int_cst_type (type, factor));
892 delta = fold_build2 (MINUS_EXPR, type, bigstep, step);
893 if (cmp == LT_EXPR)
894 assum = fold_build2 (GE_EXPR, boolean_type_node,
895 bound,
896 fold_build2 (PLUS_EXPR, type, min, delta));
897 else
898 assum = fold_build2 (LE_EXPR, boolean_type_node,
899 bound,
900 fold_build2 (PLUS_EXPR, type, max, delta));
901 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond);
903 bound = fold_build2 (MINUS_EXPR, type, bound, delta);
904 assum = fold_build2 (cmp, boolean_type_node, base, bound);
905 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond);
907 cond = force_gimple_operand (unshare_expr (cond), &stmts, false, NULL_TREE);
908 if (stmts)
909 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
910 /* cond now may be a gimple comparison, which would be OK, but also any
911 other gimple rhs (say a && b). In this case we need to force it to
912 operand. */
913 if (!is_gimple_condexpr (cond))
915 cond = force_gimple_operand (cond, &stmts, true, NULL_TREE);
916 if (stmts)
917 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
919 *enter_cond = cond;
921 base = force_gimple_operand (unshare_expr (base), &stmts, true, NULL_TREE);
922 if (stmts)
923 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
924 bound = force_gimple_operand (unshare_expr (bound), &stmts, true, NULL_TREE);
925 if (stmts)
926 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
928 *exit_base = base;
929 *exit_step = bigstep;
930 *exit_cmp = cmp;
931 *exit_bound = bound;
934 /* Scales the frequencies of all basic blocks in LOOP that are strictly
935 dominated by BB by NUM/DEN. */
937 static void
938 scale_dominated_blocks_in_loop (struct loop *loop, basic_block bb,
939 int num, int den)
941 basic_block son;
943 if (den == 0)
944 return;
946 for (son = first_dom_son (CDI_DOMINATORS, bb);
947 son;
948 son = next_dom_son (CDI_DOMINATORS, son))
950 if (!flow_bb_inside_loop_p (loop, son))
951 continue;
952 scale_bbs_frequencies_int (&son, 1, num, den);
953 scale_dominated_blocks_in_loop (loop, son, num, den);
957 /* Unroll LOOP FACTOR times. DESC describes number of iterations of LOOP.
958 EXIT is the exit of the loop to that DESC corresponds.
960 If N is number of iterations of the loop and MAY_BE_ZERO is the condition
961 under that loop exits in the first iteration even if N != 0,
963 while (1)
965 x = phi (init, next);
967 pre;
968 if (st)
969 break;
970 post;
973 becomes (with possibly the exit conditions formulated a bit differently,
974 avoiding the need to create a new iv):
976 if (MAY_BE_ZERO || N < FACTOR)
977 goto rest;
981 x = phi (init, next);
983 pre;
984 post;
985 pre;
986 post;
988 pre;
989 post;
990 N -= FACTOR;
992 } while (N >= FACTOR);
994 rest:
995 init' = phi (init, x);
997 while (1)
999 x = phi (init', next);
1001 pre;
1002 if (st)
1003 break;
1004 post;
1007 Before the loop is unrolled, TRANSFORM is called for it (only for the
1008 unrolled loop, but not for its versioned copy). DATA is passed to
1009 TRANSFORM. */
1011 /* Probability in % that the unrolled loop is entered. Just a guess. */
1012 #define PROB_UNROLLED_LOOP_ENTERED 90
1014 void
1015 tree_transform_and_unroll_loop (struct loop *loop, unsigned factor,
1016 edge exit, struct tree_niter_desc *desc,
1017 transform_callback transform,
1018 void *data)
1020 gimple exit_if;
1021 tree ctr_before, ctr_after;
1022 tree enter_main_cond, exit_base, exit_step, exit_bound;
1023 enum tree_code exit_cmp;
1024 gimple phi_old_loop, phi_new_loop, phi_rest;
1025 gimple_stmt_iterator psi_old_loop, psi_new_loop;
1026 tree init, next, new_init;
1027 struct loop *new_loop;
1028 basic_block rest, exit_bb;
1029 edge old_entry, new_entry, old_latch, precond_edge, new_exit;
1030 edge new_nonexit, e;
1031 gimple_stmt_iterator bsi;
1032 use_operand_p op;
1033 bool ok;
1034 unsigned est_niter, prob_entry, scale_unrolled, scale_rest, freq_e, freq_h;
1035 unsigned new_est_niter, i, prob;
1036 unsigned irr = loop_preheader_edge (loop)->flags & EDGE_IRREDUCIBLE_LOOP;
1037 sbitmap wont_exit;
1038 VEC (edge, heap) *to_remove = NULL;
1040 est_niter = expected_loop_iterations (loop);
1041 determine_exit_conditions (loop, desc, factor,
1042 &enter_main_cond, &exit_base, &exit_step,
1043 &exit_cmp, &exit_bound);
1045 /* Let us assume that the unrolled loop is quite likely to be entered. */
1046 if (integer_nonzerop (enter_main_cond))
1047 prob_entry = REG_BR_PROB_BASE;
1048 else
1049 prob_entry = PROB_UNROLLED_LOOP_ENTERED * REG_BR_PROB_BASE / 100;
1051 /* The values for scales should keep profile consistent, and somewhat close
1052 to correct.
1054 TODO: The current value of SCALE_REST makes it appear that the loop that
1055 is created by splitting the remaining iterations of the unrolled loop is
1056 executed the same number of times as the original loop, and with the same
1057 frequencies, which is obviously wrong. This does not appear to cause
1058 problems, so we do not bother with fixing it for now. To make the profile
1059 correct, we would need to change the probability of the exit edge of the
1060 loop, and recompute the distribution of frequencies in its body because
1061 of this change (scale the frequencies of blocks before and after the exit
1062 by appropriate factors). */
1063 scale_unrolled = prob_entry;
1064 scale_rest = REG_BR_PROB_BASE;
1066 new_loop = loop_version (loop, enter_main_cond, NULL,
1067 prob_entry, scale_unrolled, scale_rest, true);
1068 gcc_assert (new_loop != NULL);
1069 update_ssa (TODO_update_ssa);
1071 /* Determine the probability of the exit edge of the unrolled loop. */
1072 new_est_niter = est_niter / factor;
1074 /* Without profile feedback, loops for that we do not know a better estimate
1075 are assumed to roll 10 times. When we unroll such loop, it appears to
1076 roll too little, and it may even seem to be cold. To avoid this, we
1077 ensure that the created loop appears to roll at least 5 times (but at
1078 most as many times as before unrolling). */
1079 if (new_est_niter < 5)
1081 if (est_niter < 5)
1082 new_est_niter = est_niter;
1083 else
1084 new_est_niter = 5;
1087 /* Prepare the cfg and update the phi nodes. Move the loop exit to the
1088 loop latch (and make its condition dummy, for the moment). */
1089 rest = loop_preheader_edge (new_loop)->src;
1090 precond_edge = single_pred_edge (rest);
1091 split_edge (loop_latch_edge (loop));
1092 exit_bb = single_pred (loop->latch);
1094 /* Since the exit edge will be removed, the frequency of all the blocks
1095 in the loop that are dominated by it must be scaled by
1096 1 / (1 - exit->probability). */
1097 scale_dominated_blocks_in_loop (loop, exit->src,
1098 REG_BR_PROB_BASE,
1099 REG_BR_PROB_BASE - exit->probability);
1101 bsi = gsi_last_bb (exit_bb);
1102 exit_if = gimple_build_cond (EQ_EXPR, integer_zero_node,
1103 integer_zero_node,
1104 NULL_TREE, NULL_TREE);
1106 gsi_insert_after (&bsi, exit_if, GSI_NEW_STMT);
1107 new_exit = make_edge (exit_bb, rest, EDGE_FALSE_VALUE | irr);
1108 rescan_loop_exit (new_exit, true, false);
1110 /* Set the probability of new exit to the same of the old one. Fix
1111 the frequency of the latch block, by scaling it back by
1112 1 - exit->probability. */
1113 new_exit->count = exit->count;
1114 new_exit->probability = exit->probability;
1115 new_nonexit = single_pred_edge (loop->latch);
1116 new_nonexit->probability = REG_BR_PROB_BASE - exit->probability;
1117 new_nonexit->flags = EDGE_TRUE_VALUE;
1118 new_nonexit->count -= exit->count;
1119 if (new_nonexit->count < 0)
1120 new_nonexit->count = 0;
1121 scale_bbs_frequencies_int (&loop->latch, 1, new_nonexit->probability,
1122 REG_BR_PROB_BASE);
1124 old_entry = loop_preheader_edge (loop);
1125 new_entry = loop_preheader_edge (new_loop);
1126 old_latch = loop_latch_edge (loop);
1127 for (psi_old_loop = gsi_start_phis (loop->header),
1128 psi_new_loop = gsi_start_phis (new_loop->header);
1129 !gsi_end_p (psi_old_loop);
1130 gsi_next (&psi_old_loop), gsi_next (&psi_new_loop))
1132 phi_old_loop = gsi_stmt (psi_old_loop);
1133 phi_new_loop = gsi_stmt (psi_new_loop);
1135 init = PHI_ARG_DEF_FROM_EDGE (phi_old_loop, old_entry);
1136 op = PHI_ARG_DEF_PTR_FROM_EDGE (phi_new_loop, new_entry);
1137 gcc_assert (operand_equal_for_phi_arg_p (init, USE_FROM_PTR (op)));
1138 next = PHI_ARG_DEF_FROM_EDGE (phi_old_loop, old_latch);
1140 /* Prefer using original variable as a base for the new ssa name.
1141 This is necessary for virtual ops, and useful in order to avoid
1142 losing debug info for real ops. */
1143 if (TREE_CODE (next) == SSA_NAME
1144 && useless_type_conversion_p (TREE_TYPE (next),
1145 TREE_TYPE (init)))
1146 new_init = copy_ssa_name (next, NULL);
1147 else if (TREE_CODE (init) == SSA_NAME
1148 && useless_type_conversion_p (TREE_TYPE (init),
1149 TREE_TYPE (next)))
1150 new_init = copy_ssa_name (init, NULL);
1151 else if (useless_type_conversion_p (TREE_TYPE (next), TREE_TYPE (init)))
1152 new_init = make_temp_ssa_name (TREE_TYPE (next), NULL, "unrinittmp");
1153 else
1154 new_init = make_temp_ssa_name (TREE_TYPE (init), NULL, "unrinittmp");
1156 phi_rest = create_phi_node (new_init, rest);
1158 add_phi_arg (phi_rest, init, precond_edge, UNKNOWN_LOCATION);
1159 add_phi_arg (phi_rest, next, new_exit, UNKNOWN_LOCATION);
1160 SET_USE (op, new_init);
1163 remove_path (exit);
1165 /* Transform the loop. */
1166 if (transform)
1167 (*transform) (loop, data);
1169 /* Unroll the loop and remove the exits in all iterations except for the
1170 last one. */
1171 wont_exit = sbitmap_alloc (factor);
1172 sbitmap_ones (wont_exit);
1173 RESET_BIT (wont_exit, factor - 1);
1175 ok = gimple_duplicate_loop_to_header_edge
1176 (loop, loop_latch_edge (loop), factor - 1,
1177 wont_exit, new_exit, &to_remove, DLTHE_FLAG_UPDATE_FREQ);
1178 free (wont_exit);
1179 gcc_assert (ok);
1181 FOR_EACH_VEC_ELT (edge, to_remove, i, e)
1183 ok = remove_path (e);
1184 gcc_assert (ok);
1186 VEC_free (edge, heap, to_remove);
1187 update_ssa (TODO_update_ssa);
1189 /* Ensure that the frequencies in the loop match the new estimated
1190 number of iterations, and change the probability of the new
1191 exit edge. */
1192 freq_h = loop->header->frequency;
1193 freq_e = EDGE_FREQUENCY (loop_preheader_edge (loop));
1194 if (freq_h != 0)
1195 scale_loop_frequencies (loop, freq_e * (new_est_niter + 1), freq_h);
1197 exit_bb = single_pred (loop->latch);
1198 new_exit = find_edge (exit_bb, rest);
1199 new_exit->count = loop_preheader_edge (loop)->count;
1200 new_exit->probability = REG_BR_PROB_BASE / (new_est_niter + 1);
1202 rest->count += new_exit->count;
1203 rest->frequency += EDGE_FREQUENCY (new_exit);
1205 new_nonexit = single_pred_edge (loop->latch);
1206 prob = new_nonexit->probability;
1207 new_nonexit->probability = REG_BR_PROB_BASE - new_exit->probability;
1208 new_nonexit->count = exit_bb->count - new_exit->count;
1209 if (new_nonexit->count < 0)
1210 new_nonexit->count = 0;
1211 if (prob > 0)
1212 scale_bbs_frequencies_int (&loop->latch, 1, new_nonexit->probability,
1213 prob);
1215 /* Finally create the new counter for number of iterations and add the new
1216 exit instruction. */
1217 bsi = gsi_last_nondebug_bb (exit_bb);
1218 exit_if = gsi_stmt (bsi);
1219 create_iv (exit_base, exit_step, NULL_TREE, loop,
1220 &bsi, false, &ctr_before, &ctr_after);
1221 gimple_cond_set_code (exit_if, exit_cmp);
1222 gimple_cond_set_lhs (exit_if, ctr_after);
1223 gimple_cond_set_rhs (exit_if, exit_bound);
1224 update_stmt (exit_if);
1226 #ifdef ENABLE_CHECKING
1227 verify_flow_info ();
1228 verify_loop_structure ();
1229 verify_loop_closed_ssa (true);
1230 #endif
1233 /* Wrapper over tree_transform_and_unroll_loop for case we do not
1234 want to transform the loop before unrolling. The meaning
1235 of the arguments is the same as for tree_transform_and_unroll_loop. */
1237 void
1238 tree_unroll_loop (struct loop *loop, unsigned factor,
1239 edge exit, struct tree_niter_desc *desc)
1241 tree_transform_and_unroll_loop (loop, factor, exit, desc,
1242 NULL, NULL);
1245 /* Rewrite the phi node at position PSI in function of the main
1246 induction variable MAIN_IV and insert the generated code at GSI. */
1248 static void
1249 rewrite_phi_with_iv (loop_p loop,
1250 gimple_stmt_iterator *psi,
1251 gimple_stmt_iterator *gsi,
1252 tree main_iv)
1254 affine_iv iv;
1255 gimple stmt, phi = gsi_stmt (*psi);
1256 tree atype, mtype, val, res = PHI_RESULT (phi);
1258 if (virtual_operand_p (res) || res == main_iv)
1260 gsi_next (psi);
1261 return;
1264 if (!simple_iv (loop, loop, res, &iv, true))
1266 gsi_next (psi);
1267 return;
1270 remove_phi_node (psi, false);
1272 atype = TREE_TYPE (res);
1273 mtype = POINTER_TYPE_P (atype) ? sizetype : atype;
1274 val = fold_build2 (MULT_EXPR, mtype, unshare_expr (iv.step),
1275 fold_convert (mtype, main_iv));
1276 val = fold_build2 (POINTER_TYPE_P (atype)
1277 ? POINTER_PLUS_EXPR : PLUS_EXPR,
1278 atype, unshare_expr (iv.base), val);
1279 val = force_gimple_operand_gsi (gsi, val, false, NULL_TREE, true,
1280 GSI_SAME_STMT);
1281 stmt = gimple_build_assign (res, val);
1282 gsi_insert_before (gsi, stmt, GSI_SAME_STMT);
1283 SSA_NAME_DEF_STMT (res) = stmt;
1286 /* Rewrite all the phi nodes of LOOP in function of the main induction
1287 variable MAIN_IV. */
1289 static void
1290 rewrite_all_phi_nodes_with_iv (loop_p loop, tree main_iv)
1292 unsigned i;
1293 basic_block *bbs = get_loop_body_in_dom_order (loop);
1294 gimple_stmt_iterator psi;
1296 for (i = 0; i < loop->num_nodes; i++)
1298 basic_block bb = bbs[i];
1299 gimple_stmt_iterator gsi = gsi_after_labels (bb);
1301 if (bb->loop_father != loop)
1302 continue;
1304 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); )
1305 rewrite_phi_with_iv (loop, &psi, &gsi, main_iv);
1308 free (bbs);
1311 /* Bases all the induction variables in LOOP on a single induction
1312 variable (unsigned with base 0 and step 1), whose final value is
1313 compared with *NIT. When the IV type precision has to be larger
1314 than *NIT type precision, *NIT is converted to the larger type, the
1315 conversion code is inserted before the loop, and *NIT is updated to
1316 the new definition. When BUMP_IN_LATCH is true, the induction
1317 variable is incremented in the loop latch, otherwise it is
1318 incremented in the loop header. Return the induction variable that
1319 was created. */
1321 tree
1322 canonicalize_loop_ivs (struct loop *loop, tree *nit, bool bump_in_latch)
1324 unsigned precision = TYPE_PRECISION (TREE_TYPE (*nit));
1325 unsigned original_precision = precision;
1326 tree type, var_before;
1327 gimple_stmt_iterator gsi, psi;
1328 gimple stmt;
1329 edge exit = single_dom_exit (loop);
1330 gimple_seq stmts;
1331 enum machine_mode mode;
1332 bool unsigned_p = false;
1334 for (psi = gsi_start_phis (loop->header);
1335 !gsi_end_p (psi); gsi_next (&psi))
1337 gimple phi = gsi_stmt (psi);
1338 tree res = PHI_RESULT (phi);
1339 bool uns;
1341 type = TREE_TYPE (res);
1342 if (virtual_operand_p (res)
1343 || (!INTEGRAL_TYPE_P (type)
1344 && !POINTER_TYPE_P (type))
1345 || TYPE_PRECISION (type) < precision)
1346 continue;
1348 uns = POINTER_TYPE_P (type) | TYPE_UNSIGNED (type);
1350 if (TYPE_PRECISION (type) > precision)
1351 unsigned_p = uns;
1352 else
1353 unsigned_p |= uns;
1355 precision = TYPE_PRECISION (type);
1358 mode = smallest_mode_for_size (precision, MODE_INT);
1359 precision = GET_MODE_PRECISION (mode);
1360 type = build_nonstandard_integer_type (precision, unsigned_p);
1362 if (original_precision != precision)
1364 *nit = fold_convert (type, *nit);
1365 *nit = force_gimple_operand (*nit, &stmts, true, NULL_TREE);
1366 if (stmts)
1367 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
1370 if (bump_in_latch)
1371 gsi = gsi_last_bb (loop->latch);
1372 else
1373 gsi = gsi_last_nondebug_bb (loop->header);
1374 create_iv (build_int_cst_type (type, 0), build_int_cst (type, 1), NULL_TREE,
1375 loop, &gsi, bump_in_latch, &var_before, NULL);
1377 rewrite_all_phi_nodes_with_iv (loop, var_before);
1379 stmt = last_stmt (exit->src);
1380 /* Make the loop exit if the control condition is not satisfied. */
1381 if (exit->flags & EDGE_TRUE_VALUE)
1383 edge te, fe;
1385 extract_true_false_edges_from_block (exit->src, &te, &fe);
1386 te->flags = EDGE_FALSE_VALUE;
1387 fe->flags = EDGE_TRUE_VALUE;
1389 gimple_cond_set_code (stmt, LT_EXPR);
1390 gimple_cond_set_lhs (stmt, var_before);
1391 gimple_cond_set_rhs (stmt, *nit);
1392 update_stmt (stmt);
1394 return var_before;