Daily bump.
[gcc.git] / gcc / tree-ssa-loop-manip.c
1 /* High-level loop manipulation functions.
2 Copyright (C) 2004-2021 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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 3, or (at your option) any
9 later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "backend.h"
24 #include "tree.h"
25 #include "gimple.h"
26 #include "cfghooks.h"
27 #include "tree-pass.h" /* ??? for TODO_update_ssa but this isn't a pass. */
28 #include "ssa.h"
29 #include "gimple-pretty-print.h"
30 #include "fold-const.h"
31 #include "cfganal.h"
32 #include "gimplify.h"
33 #include "gimple-iterator.h"
34 #include "gimplify-me.h"
35 #include "tree-cfg.h"
36 #include "tree-ssa-loop-ivopts.h"
37 #include "tree-ssa-loop-manip.h"
38 #include "tree-ssa-loop-niter.h"
39 #include "tree-ssa-loop.h"
40 #include "tree-into-ssa.h"
41 #include "tree-ssa.h"
42 #include "cfgloop.h"
43 #include "tree-scalar-evolution.h"
44 #include "tree-inline.h"
45
46 /* All bitmaps for rewriting into loop-closed SSA go on this obstack,
47 so that we can free them all at once. */
48 static bitmap_obstack loop_renamer_obstack;
49
50 /* Creates an induction variable with value BASE + STEP * iteration in LOOP.
51 It is expected that neither BASE nor STEP are shared with other expressions
52 (unless the sharing rules allow this). Use VAR as a base var_decl for it
53 (if NULL, a new temporary will be created). The increment will occur at
54 INCR_POS (after it if AFTER is true, before it otherwise). INCR_POS and
55 AFTER can be computed using standard_iv_increment_position. The ssa versions
56 of the variable before and after increment will be stored in VAR_BEFORE and
57 VAR_AFTER (unless they are NULL). */
58
59 void
60 create_iv (tree base, tree step, tree var, class loop *loop,
61 gimple_stmt_iterator *incr_pos, bool after,
62 tree *var_before, tree *var_after)
63 {
64 gassign *stmt;
65 gphi *phi;
66 tree initial, step1;
67 gimple_seq stmts;
68 tree vb, va;
69 enum tree_code incr_op = PLUS_EXPR;
70 edge pe = loop_preheader_edge (loop);
71
72 if (var != NULL_TREE)
73 {
74 vb = make_ssa_name (var);
75 va = make_ssa_name (var);
76 }
77 else
78 {
79 vb = make_temp_ssa_name (TREE_TYPE (base), NULL, "ivtmp");
80 va = make_temp_ssa_name (TREE_TYPE (base), NULL, "ivtmp");
81 }
82 if (var_before)
83 *var_before = vb;
84 if (var_after)
85 *var_after = va;
86
87 /* For easier readability of the created code, produce MINUS_EXPRs
88 when suitable. */
89 if (TREE_CODE (step) == INTEGER_CST)
90 {
91 if (TYPE_UNSIGNED (TREE_TYPE (step)))
92 {
93 step1 = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step);
94 if (tree_int_cst_lt (step1, step))
95 {
96 incr_op = MINUS_EXPR;
97 step = step1;
98 }
99 }
100 else
101 {
102 bool ovf;
103
104 if (!tree_expr_nonnegative_warnv_p (step, &ovf)
105 && may_negate_without_overflow_p (step))
106 {
107 incr_op = MINUS_EXPR;
108 step = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step);
109 }
110 }
111 }
112 if (POINTER_TYPE_P (TREE_TYPE (base)))
113 {
114 if (TREE_CODE (base) == ADDR_EXPR)
115 mark_addressable (TREE_OPERAND (base, 0));
116 step = convert_to_ptrofftype (step);
117 if (incr_op == MINUS_EXPR)
118 step = fold_build1 (NEGATE_EXPR, TREE_TYPE (step), step);
119 incr_op = POINTER_PLUS_EXPR;
120 }
121 /* Gimplify the step if necessary. We put the computations in front of the
122 loop (i.e. the step should be loop invariant). */
123 step = force_gimple_operand (step, &stmts, true, NULL_TREE);
124 if (stmts)
125 gsi_insert_seq_on_edge_immediate (pe, stmts);
126
127 stmt = gimple_build_assign (va, incr_op, vb, step);
128 /* Prevent the increment from inheriting a bogus location if it is not put
129 immediately after a statement whose location is known. */
130 if (after)
131 {
132 if (gsi_end_p (*incr_pos)
133 || (is_gimple_debug (gsi_stmt (*incr_pos))
134 && gsi_bb (*incr_pos)
135 && gsi_end_p (gsi_last_nondebug_bb (gsi_bb (*incr_pos)))))
136 {
137 edge e = single_succ_edge (gsi_bb (*incr_pos));
138 gimple_set_location (stmt, e->goto_locus);
139 }
140 gsi_insert_after (incr_pos, stmt, GSI_NEW_STMT);
141 }
142 else
143 {
144 gimple_stmt_iterator gsi = *incr_pos;
145 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
146 gsi_next_nondebug (&gsi);
147 if (!gsi_end_p (gsi))
148 gimple_set_location (stmt, gimple_location (gsi_stmt (gsi)));
149 gsi_insert_before (incr_pos, stmt, GSI_NEW_STMT);
150 }
151
152 initial = force_gimple_operand (base, &stmts, true, var);
153 if (stmts)
154 gsi_insert_seq_on_edge_immediate (pe, stmts);
155
156 phi = create_phi_node (vb, loop->header);
157 add_phi_arg (phi, initial, loop_preheader_edge (loop), UNKNOWN_LOCATION);
158 add_phi_arg (phi, va, loop_latch_edge (loop), UNKNOWN_LOCATION);
159 }
160
161 /* Return the innermost superloop LOOP of USE_LOOP that is a superloop of
162 both DEF_LOOP and USE_LOOP. */
163
164 static inline class loop *
165 find_sibling_superloop (class loop *use_loop, class loop *def_loop)
166 {
167 unsigned ud = loop_depth (use_loop);
168 unsigned dd = loop_depth (def_loop);
169 gcc_assert (ud > 0 && dd > 0);
170 if (ud > dd)
171 use_loop = superloop_at_depth (use_loop, dd);
172 if (ud < dd)
173 def_loop = superloop_at_depth (def_loop, ud);
174 while (loop_outer (use_loop) != loop_outer (def_loop))
175 {
176 use_loop = loop_outer (use_loop);
177 def_loop = loop_outer (def_loop);
178 gcc_assert (use_loop && def_loop);
179 }
180 return use_loop;
181 }
182
183 /* DEF_BB is a basic block containing a DEF that needs rewriting into
184 loop-closed SSA form. USE_BLOCKS is the set of basic blocks containing
185 uses of DEF that "escape" from the loop containing DEF_BB (i.e. blocks in
186 USE_BLOCKS are dominated by DEF_BB but not in the loop father of DEF_B).
187 ALL_EXITS[I] is the set of all basic blocks that exit loop I.
188
189 Compute the subset of LOOP_EXITS that exit the loop containing DEF_BB
190 or one of its loop fathers, in which DEF is live. This set is returned
191 in the bitmap LIVE_EXITS.
192
193 Instead of computing the complete livein set of the def, we use the loop
194 nesting tree as a form of poor man's structure analysis. This greatly
195 speeds up the analysis, which is important because this function may be
196 called on all SSA names that need rewriting, one at a time. */
197
198 static void
199 compute_live_loop_exits (bitmap live_exits, bitmap use_blocks,
200 bitmap *loop_exits, basic_block def_bb)
201 {
202 unsigned i;
203 bitmap_iterator bi;
204 class loop *def_loop = def_bb->loop_father;
205 unsigned def_loop_depth = loop_depth (def_loop);
206 bitmap def_loop_exits;
207
208 /* Normally the work list size is bounded by the number of basic
209 blocks in the largest loop. We don't know this number, but we
210 can be fairly sure that it will be relatively small. */
211 auto_vec<basic_block> worklist (MAX (8, n_basic_blocks_for_fn (cfun) / 128));
212
213 EXECUTE_IF_SET_IN_BITMAP (use_blocks, 0, i, bi)
214 {
215 basic_block use_bb = BASIC_BLOCK_FOR_FN (cfun, i);
216 class loop *use_loop = use_bb->loop_father;
217 gcc_checking_assert (def_loop != use_loop
218 && ! flow_loop_nested_p (def_loop, use_loop));
219 if (! flow_loop_nested_p (use_loop, def_loop))
220 use_bb = find_sibling_superloop (use_loop, def_loop)->header;
221 if (bitmap_set_bit (live_exits, use_bb->index))
222 worklist.safe_push (use_bb);
223 }
224
225 /* Iterate until the worklist is empty. */
226 while (! worklist.is_empty ())
227 {
228 edge e;
229 edge_iterator ei;
230
231 /* Pull a block off the worklist. */
232 basic_block bb = worklist.pop ();
233
234 /* Make sure we have at least enough room in the work list
235 for all predecessors of this block. */
236 worklist.reserve (EDGE_COUNT (bb->preds));
237
238 /* For each predecessor block. */
239 FOR_EACH_EDGE (e, ei, bb->preds)
240 {
241 basic_block pred = e->src;
242 class loop *pred_loop = pred->loop_father;
243 unsigned pred_loop_depth = loop_depth (pred_loop);
244 bool pred_visited;
245
246 /* We should have met DEF_BB along the way. */
247 gcc_assert (pred != ENTRY_BLOCK_PTR_FOR_FN (cfun));
248
249 if (pred_loop_depth >= def_loop_depth)
250 {
251 if (pred_loop_depth > def_loop_depth)
252 pred_loop = superloop_at_depth (pred_loop, def_loop_depth);
253 /* If we've reached DEF_LOOP, our train ends here. */
254 if (pred_loop == def_loop)
255 continue;
256 }
257 else if (! flow_loop_nested_p (pred_loop, def_loop))
258 pred = find_sibling_superloop (pred_loop, def_loop)->header;
259
260 /* Add PRED to the LIVEIN set. PRED_VISITED is true if
261 we had already added PRED to LIVEIN before. */
262 pred_visited = !bitmap_set_bit (live_exits, pred->index);
263
264 /* If we have visited PRED before, don't add it to the worklist.
265 If BB dominates PRED, then we're probably looking at a loop.
266 We're only interested in looking up in the dominance tree
267 because DEF_BB dominates all the uses. */
268 if (pred_visited || dominated_by_p (CDI_DOMINATORS, pred, bb))
269 continue;
270
271 worklist.quick_push (pred);
272 }
273 }
274
275 def_loop_exits = BITMAP_ALLOC (&loop_renamer_obstack);
276 for (class loop *loop = def_loop;
277 loop != current_loops->tree_root;
278 loop = loop_outer (loop))
279 bitmap_ior_into (def_loop_exits, loop_exits[loop->num]);
280 bitmap_and_into (live_exits, def_loop_exits);
281 BITMAP_FREE (def_loop_exits);
282 }
283
284 /* Add a loop-closing PHI for VAR in basic block EXIT. */
285
286 static void
287 add_exit_phi (basic_block exit, tree var)
288 {
289 gphi *phi;
290 edge e;
291 edge_iterator ei;
292
293 /* Check that at least one of the edges entering the EXIT block exits
294 the loop, or a superloop of that loop, that VAR is defined in. */
295 if (flag_checking)
296 {
297 gimple *def_stmt = SSA_NAME_DEF_STMT (var);
298 basic_block def_bb = gimple_bb (def_stmt);
299 FOR_EACH_EDGE (e, ei, exit->preds)
300 {
301 class loop *aloop = find_common_loop (def_bb->loop_father,
302 e->src->loop_father);
303 if (!flow_bb_inside_loop_p (aloop, e->dest))
304 break;
305 }
306 gcc_assert (e);
307 }
308
309 phi = create_phi_node (NULL_TREE, exit);
310 create_new_def_for (var, phi, gimple_phi_result_ptr (phi));
311 FOR_EACH_EDGE (e, ei, exit->preds)
312 add_phi_arg (phi, var, e, UNKNOWN_LOCATION);
313
314 if (dump_file && (dump_flags & TDF_DETAILS))
315 {
316 fprintf (dump_file, ";; Created LCSSA PHI: ");
317 print_gimple_stmt (dump_file, phi, 0, dump_flags);
318 }
319 }
320
321 /* Add exit phis for VAR that is used in LIVEIN.
322 Exits of the loops are stored in LOOP_EXITS. */
323
324 static void
325 add_exit_phis_var (tree var, bitmap use_blocks, bitmap *loop_exits)
326 {
327 unsigned index;
328 bitmap_iterator bi;
329 basic_block def_bb = gimple_bb (SSA_NAME_DEF_STMT (var));
330 bitmap live_exits = BITMAP_ALLOC (&loop_renamer_obstack);
331
332 gcc_checking_assert (! bitmap_bit_p (use_blocks, def_bb->index));
333
334 compute_live_loop_exits (live_exits, use_blocks, loop_exits, def_bb);
335
336 EXECUTE_IF_SET_IN_BITMAP (live_exits, 0, index, bi)
337 {
338 add_exit_phi (BASIC_BLOCK_FOR_FN (cfun, index), var);
339 }
340
341 BITMAP_FREE (live_exits);
342 }
343
344 /* Add exit phis for the names marked in NAMES_TO_RENAME.
345 Exits of the loops are stored in EXITS. Sets of blocks where the ssa
346 names are used are stored in USE_BLOCKS. */
347
348 static void
349 add_exit_phis (bitmap names_to_rename, bitmap *use_blocks, bitmap *loop_exits)
350 {
351 unsigned i;
352 bitmap_iterator bi;
353
354 EXECUTE_IF_SET_IN_BITMAP (names_to_rename, 0, i, bi)
355 {
356 add_exit_phis_var (ssa_name (i), use_blocks[i], loop_exits);
357 }
358 }
359
360 /* Fill the array of bitmaps LOOP_EXITS with all loop exit edge targets. */
361
362 static void
363 get_loops_exits (bitmap *loop_exits)
364 {
365 class loop *loop;
366 unsigned j;
367 edge e;
368
369 FOR_EACH_LOOP (loop, 0)
370 {
371 auto_vec<edge> exit_edges = get_loop_exit_edges (loop);
372 loop_exits[loop->num] = BITMAP_ALLOC (&loop_renamer_obstack);
373 FOR_EACH_VEC_ELT (exit_edges, j, e)
374 bitmap_set_bit (loop_exits[loop->num], e->dest->index);
375 }
376 }
377
378 /* For USE in BB, if it is used outside of the loop it is defined in,
379 mark it for rewrite. Record basic block BB where it is used
380 to USE_BLOCKS. Record the ssa name index to NEED_PHIS bitmap.
381 Note that for USEs in phis, BB should be the src of the edge corresponding to
382 the use, rather than the bb containing the phi. */
383
384 static void
385 find_uses_to_rename_use (basic_block bb, tree use, bitmap *use_blocks,
386 bitmap need_phis)
387 {
388 unsigned ver;
389 basic_block def_bb;
390 class loop *def_loop;
391
392 if (TREE_CODE (use) != SSA_NAME)
393 return;
394
395 ver = SSA_NAME_VERSION (use);
396 def_bb = gimple_bb (SSA_NAME_DEF_STMT (use));
397 if (!def_bb)
398 return;
399 def_loop = def_bb->loop_father;
400
401 /* If the definition is not inside a loop, it is not interesting. */
402 if (!loop_outer (def_loop))
403 return;
404
405 /* If the use is not outside of the loop it is defined in, it is not
406 interesting. */
407 if (flow_bb_inside_loop_p (def_loop, bb))
408 return;
409
410 /* If we're seeing VER for the first time, we still have to allocate
411 a bitmap for its uses. */
412 if (bitmap_set_bit (need_phis, ver))
413 use_blocks[ver] = BITMAP_ALLOC (&loop_renamer_obstack);
414 bitmap_set_bit (use_blocks[ver], bb->index);
415 }
416
417 /* For uses matching USE_FLAGS in STMT, mark names that are used outside of the
418 loop they are defined to rewrite. Record the set of blocks in which the ssa
419 names are used to USE_BLOCKS, and the ssa names themselves to NEED_PHIS. */
420
421 static void
422 find_uses_to_rename_stmt (gimple *stmt, bitmap *use_blocks, bitmap need_phis,
423 int use_flags)
424 {
425 ssa_op_iter iter;
426 tree var;
427 basic_block bb = gimple_bb (stmt);
428
429 if (is_gimple_debug (stmt))
430 return;
431
432 /* FOR_EACH_SSA_TREE_OPERAND iterator does not allows SSA_OP_VIRTUAL_USES
433 only. */
434 if (use_flags == SSA_OP_VIRTUAL_USES)
435 {
436 tree vuse = gimple_vuse (stmt);
437 if (vuse != NULL_TREE)
438 find_uses_to_rename_use (bb, gimple_vuse (stmt), use_blocks, need_phis);
439 }
440 else
441 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, use_flags)
442 find_uses_to_rename_use (bb, var, use_blocks, need_phis);
443 }
444
445 /* Marks names matching USE_FLAGS that are used in BB and outside of the loop
446 they are defined in for rewrite. Records the set of blocks in which the ssa
447 names are used to USE_BLOCKS. Record the SSA names that will
448 need exit PHIs in NEED_PHIS. */
449
450 static void
451 find_uses_to_rename_bb (basic_block bb, bitmap *use_blocks, bitmap need_phis,
452 int use_flags)
453 {
454 edge e;
455 edge_iterator ei;
456 bool do_virtuals = (use_flags & SSA_OP_VIRTUAL_USES) != 0;
457 bool do_nonvirtuals = (use_flags & SSA_OP_USE) != 0;
458
459 FOR_EACH_EDGE (e, ei, bb->succs)
460 for (gphi_iterator bsi = gsi_start_phis (e->dest); !gsi_end_p (bsi);
461 gsi_next (&bsi))
462 {
463 gphi *phi = bsi.phi ();
464 bool virtual_p = virtual_operand_p (gimple_phi_result (phi));
465 if ((virtual_p && do_virtuals)
466 || (!virtual_p && do_nonvirtuals))
467 find_uses_to_rename_use (bb, PHI_ARG_DEF_FROM_EDGE (phi, e),
468 use_blocks, need_phis);
469 }
470
471 for (gimple_stmt_iterator bsi = gsi_start_bb (bb); !gsi_end_p (bsi);
472 gsi_next (&bsi))
473 find_uses_to_rename_stmt (gsi_stmt (bsi), use_blocks, need_phis,
474 use_flags);
475 }
476
477 /* Marks names matching USE_FLAGS that are used outside of the loop they are
478 defined in for rewrite. Records the set of blocks in which the ssa names are
479 used to USE_BLOCKS. Record the SSA names that will need exit PHIs in
480 NEED_PHIS. If CHANGED_BBS is not NULL, scan only blocks in this set. */
481
482 static void
483 find_uses_to_rename (bitmap changed_bbs, bitmap *use_blocks, bitmap need_phis,
484 int use_flags)
485 {
486 basic_block bb;
487 unsigned index;
488 bitmap_iterator bi;
489
490 if (changed_bbs)
491 EXECUTE_IF_SET_IN_BITMAP (changed_bbs, 0, index, bi)
492 {
493 bb = BASIC_BLOCK_FOR_FN (cfun, index);
494 if (bb)
495 find_uses_to_rename_bb (bb, use_blocks, need_phis, use_flags);
496 }
497 else
498 FOR_EACH_BB_FN (bb, cfun)
499 find_uses_to_rename_bb (bb, use_blocks, need_phis, use_flags);
500 }
501
502 /* Mark uses of DEF that are used outside of the loop they are defined in for
503 rewrite. Record the set of blocks in which the ssa names are used to
504 USE_BLOCKS. Record the SSA names that will need exit PHIs in NEED_PHIS. */
505
506 static void
507 find_uses_to_rename_def (tree def, bitmap *use_blocks, bitmap need_phis)
508 {
509 gimple *use_stmt;
510 imm_use_iterator imm_iter;
511
512 FOR_EACH_IMM_USE_STMT (use_stmt, imm_iter, def)
513 {
514 if (is_gimple_debug (use_stmt))
515 continue;
516
517 basic_block use_bb = gimple_bb (use_stmt);
518
519 use_operand_p use_p;
520 FOR_EACH_IMM_USE_ON_STMT (use_p, imm_iter)
521 {
522 if (gimple_code (use_stmt) == GIMPLE_PHI)
523 {
524 edge e = gimple_phi_arg_edge (as_a <gphi *> (use_stmt),
525 PHI_ARG_INDEX_FROM_USE (use_p));
526 use_bb = e->src;
527 }
528 find_uses_to_rename_use (use_bb, USE_FROM_PTR (use_p), use_blocks,
529 need_phis);
530 }
531 }
532 }
533
534 /* Marks names matching USE_FLAGS that are defined in LOOP and used outside of
535 it for rewrite. Records the set of blocks in which the ssa names are used to
536 USE_BLOCKS. Record the SSA names that will need exit PHIs in NEED_PHIS. */
537
538 static void
539 find_uses_to_rename_in_loop (class loop *loop, bitmap *use_blocks,
540 bitmap need_phis, int use_flags)
541 {
542 bool do_virtuals = (use_flags & SSA_OP_VIRTUAL_USES) != 0;
543 bool do_nonvirtuals = (use_flags & SSA_OP_USE) != 0;
544 int def_flags = ((do_virtuals ? SSA_OP_VIRTUAL_DEFS : 0)
545 | (do_nonvirtuals ? SSA_OP_DEF : 0));
546
547
548 basic_block *bbs = get_loop_body (loop);
549
550 for (unsigned int i = 0; i < loop->num_nodes; i++)
551 {
552 basic_block bb = bbs[i];
553
554 for (gphi_iterator bsi = gsi_start_phis (bb); !gsi_end_p (bsi);
555 gsi_next (&bsi))
556 {
557 gphi *phi = bsi.phi ();
558 tree res = gimple_phi_result (phi);
559 bool virtual_p = virtual_operand_p (res);
560 if ((virtual_p && do_virtuals)
561 || (!virtual_p && do_nonvirtuals))
562 find_uses_to_rename_def (res, use_blocks, need_phis);
563 }
564
565 for (gimple_stmt_iterator bsi = gsi_start_bb (bb); !gsi_end_p (bsi);
566 gsi_next (&bsi))
567 {
568 gimple *stmt = gsi_stmt (bsi);
569 /* FOR_EACH_SSA_TREE_OPERAND iterator does not allows
570 SSA_OP_VIRTUAL_DEFS only. */
571 if (def_flags == SSA_OP_VIRTUAL_DEFS)
572 {
573 tree vdef = gimple_vdef (stmt);
574 if (vdef != NULL)
575 find_uses_to_rename_def (vdef, use_blocks, need_phis);
576 }
577 else
578 {
579 tree var;
580 ssa_op_iter iter;
581 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, def_flags)
582 find_uses_to_rename_def (var, use_blocks, need_phis);
583 }
584 }
585 }
586
587 XDELETEVEC (bbs);
588 }
589
590 /* Rewrites the program into a loop closed ssa form -- i.e. inserts extra
591 phi nodes to ensure that no variable is used outside the loop it is
592 defined in.
593
594 This strengthening of the basic ssa form has several advantages:
595
596 1) Updating it during unrolling/peeling/versioning is trivial, since
597 we do not need to care about the uses outside of the loop.
598 The same applies to virtual operands which are also rewritten into
599 loop closed SSA form. Note that virtual operands are always live
600 until function exit.
601 2) The behavior of all uses of an induction variable is the same.
602 Without this, you need to distinguish the case when the variable
603 is used outside of the loop it is defined in, for example
604
605 for (i = 0; i < 100; i++)
606 {
607 for (j = 0; j < 100; j++)
608 {
609 k = i + j;
610 use1 (k);
611 }
612 use2 (k);
613 }
614
615 Looking from the outer loop with the normal SSA form, the first use of k
616 is not well-behaved, while the second one is an induction variable with
617 base 99 and step 1.
618
619 If LOOP is non-null, only rewrite uses that have defs in LOOP. Otherwise,
620 if CHANGED_BBS is not NULL, we look for uses outside loops only in the
621 basic blocks in this set.
622
623 USE_FLAGS allows us to specify whether we want virtual, non-virtual or
624 both variables rewritten.
625
626 UPDATE_FLAG is used in the call to update_ssa. See
627 TODO_update_ssa* for documentation. */
628
629 void
630 rewrite_into_loop_closed_ssa_1 (bitmap changed_bbs, unsigned update_flag,
631 int use_flags, class loop *loop)
632 {
633 bitmap *use_blocks;
634 bitmap names_to_rename;
635
636 loops_state_set (LOOP_CLOSED_SSA);
637 if (number_of_loops (cfun) <= 1)
638 return;
639
640 /* If the pass has caused the SSA form to be out-of-date, update it
641 now. */
642 if (update_flag != 0)
643 update_ssa (update_flag);
644 else if (flag_checking)
645 verify_ssa (true, true);
646
647 bitmap_obstack_initialize (&loop_renamer_obstack);
648
649 names_to_rename = BITMAP_ALLOC (&loop_renamer_obstack);
650
651 /* Uses of names to rename. We don't have to initialize this array,
652 because we know that we will only have entries for the SSA names
653 in NAMES_TO_RENAME. */
654 use_blocks = XNEWVEC (bitmap, num_ssa_names);
655
656 if (loop != NULL)
657 {
658 gcc_assert (changed_bbs == NULL);
659 find_uses_to_rename_in_loop (loop, use_blocks, names_to_rename,
660 use_flags);
661 }
662 else
663 {
664 gcc_assert (loop == NULL);
665 find_uses_to_rename (changed_bbs, use_blocks, names_to_rename, use_flags);
666 }
667
668 if (!bitmap_empty_p (names_to_rename))
669 {
670 /* An array of bitmaps where LOOP_EXITS[I] is the set of basic blocks
671 that are the destination of an edge exiting loop number I. */
672 bitmap *loop_exits = XNEWVEC (bitmap, number_of_loops (cfun));
673 get_loops_exits (loop_exits);
674
675 /* Add the PHI nodes on exits of the loops for the names we need to
676 rewrite. */
677 add_exit_phis (names_to_rename, use_blocks, loop_exits);
678
679 free (loop_exits);
680
681 /* Fix up all the names found to be used outside their original
682 loops. */
683 update_ssa (TODO_update_ssa);
684 }
685
686 bitmap_obstack_release (&loop_renamer_obstack);
687 free (use_blocks);
688 }
689
690 /* Rewrites the non-virtual defs and uses into a loop closed ssa form. If
691 CHANGED_BBS is not NULL, we look for uses outside loops only in the basic
692 blocks in this set. UPDATE_FLAG is used in the call to update_ssa. See
693 TODO_update_ssa* for documentation. */
694
695 void
696 rewrite_into_loop_closed_ssa (bitmap changed_bbs, unsigned update_flag)
697 {
698 rewrite_into_loop_closed_ssa_1 (changed_bbs, update_flag, SSA_OP_USE, NULL);
699 }
700
701 /* Rewrites virtual defs and uses with def in LOOP into loop closed ssa
702 form. */
703
704 void
705 rewrite_virtuals_into_loop_closed_ssa (class loop *loop)
706 {
707 rewrite_into_loop_closed_ssa_1 (NULL, 0, SSA_OP_VIRTUAL_USES, loop);
708 }
709
710 /* Check invariants of the loop closed ssa form for the def in DEF_BB. */
711
712 static void
713 check_loop_closed_ssa_def (basic_block def_bb, tree def)
714 {
715 use_operand_p use_p;
716 imm_use_iterator iterator;
717 FOR_EACH_IMM_USE_FAST (use_p, iterator, def)
718 {
719 if (is_gimple_debug (USE_STMT (use_p)))
720 continue;
721
722 basic_block use_bb = gimple_bb (USE_STMT (use_p));
723 if (is_a <gphi *> (USE_STMT (use_p)))
724 use_bb = EDGE_PRED (use_bb, PHI_ARG_INDEX_FROM_USE (use_p))->src;
725
726 gcc_assert (flow_bb_inside_loop_p (def_bb->loop_father, use_bb));
727 }
728 }
729
730 /* Checks invariants of loop closed ssa form in BB. */
731
732 static void
733 check_loop_closed_ssa_bb (basic_block bb)
734 {
735 for (gphi_iterator bsi = gsi_start_phis (bb); !gsi_end_p (bsi);
736 gsi_next (&bsi))
737 {
738 gphi *phi = bsi.phi ();
739
740 if (!virtual_operand_p (PHI_RESULT (phi)))
741 check_loop_closed_ssa_def (bb, PHI_RESULT (phi));
742 }
743
744 for (gimple_stmt_iterator bsi = gsi_start_nondebug_bb (bb); !gsi_end_p (bsi);
745 gsi_next_nondebug (&bsi))
746 {
747 ssa_op_iter iter;
748 tree var;
749 gimple *stmt = gsi_stmt (bsi);
750
751 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_DEF)
752 check_loop_closed_ssa_def (bb, var);
753 }
754 }
755
756 /* Checks that invariants of the loop closed ssa form are preserved.
757 Call verify_ssa when VERIFY_SSA_P is true. Note all loops are checked
758 if LOOP is NULL, otherwise, only LOOP is checked. */
759
760 DEBUG_FUNCTION void
761 verify_loop_closed_ssa (bool verify_ssa_p, class loop *loop)
762 {
763 if (number_of_loops (cfun) <= 1)
764 return;
765
766 if (verify_ssa_p)
767 verify_ssa (false, true);
768
769 timevar_push (TV_VERIFY_LOOP_CLOSED);
770
771 if (loop == NULL)
772 {
773 basic_block bb;
774
775 FOR_EACH_BB_FN (bb, cfun)
776 if (bb->loop_father && bb->loop_father->num > 0)
777 check_loop_closed_ssa_bb (bb);
778 }
779 else
780 {
781 basic_block *bbs = get_loop_body (loop);
782
783 for (unsigned i = 0; i < loop->num_nodes; ++i)
784 check_loop_closed_ssa_bb (bbs[i]);
785
786 free (bbs);
787 }
788
789 timevar_pop (TV_VERIFY_LOOP_CLOSED);
790 }
791
792 /* Split loop exit edge EXIT. The things are a bit complicated by a need to
793 preserve the loop closed ssa form. If COPY_CONSTANTS_P is true then
794 forwarder PHIs are also created for constant arguments.
795 The newly created block is returned. */
796
797 basic_block
798 split_loop_exit_edge (edge exit, bool copy_constants_p)
799 {
800 basic_block dest = exit->dest;
801 basic_block bb = split_edge (exit);
802 gphi *phi, *new_phi;
803 tree new_name, name;
804 use_operand_p op_p;
805 gphi_iterator psi;
806 location_t locus;
807
808 for (psi = gsi_start_phis (dest); !gsi_end_p (psi); gsi_next (&psi))
809 {
810 phi = psi.phi ();
811 op_p = PHI_ARG_DEF_PTR_FROM_EDGE (phi, single_succ_edge (bb));
812 locus = gimple_phi_arg_location_from_edge (phi, single_succ_edge (bb));
813
814 name = USE_FROM_PTR (op_p);
815
816 /* If the argument of the PHI node is a constant, we do not need
817 to keep it inside loop. */
818 if (TREE_CODE (name) != SSA_NAME
819 && !copy_constants_p)
820 continue;
821
822 /* Otherwise create an auxiliary phi node that will copy the value
823 of the SSA name out of the loop. */
824 new_name = duplicate_ssa_name (PHI_RESULT (phi), NULL);
825 new_phi = create_phi_node (new_name, bb);
826 add_phi_arg (new_phi, name, exit, locus);
827 SET_USE (op_p, new_name);
828 }
829
830 return bb;
831 }
832
833 /* Returns the basic block in that statements should be emitted for induction
834 variables incremented at the end of the LOOP. */
835
836 basic_block
837 ip_end_pos (class loop *loop)
838 {
839 return loop->latch;
840 }
841
842 /* Returns the basic block in that statements should be emitted for induction
843 variables incremented just before exit condition of a LOOP. */
844
845 basic_block
846 ip_normal_pos (class loop *loop)
847 {
848 gimple *last;
849 basic_block bb;
850 edge exit;
851
852 if (!single_pred_p (loop->latch))
853 return NULL;
854
855 bb = single_pred (loop->latch);
856 last = last_stmt (bb);
857 if (!last
858 || gimple_code (last) != GIMPLE_COND)
859 return NULL;
860
861 exit = EDGE_SUCC (bb, 0);
862 if (exit->dest == loop->latch)
863 exit = EDGE_SUCC (bb, 1);
864
865 if (flow_bb_inside_loop_p (loop, exit->dest))
866 return NULL;
867
868 return bb;
869 }
870
871 /* Stores the standard position for induction variable increment in LOOP
872 (just before the exit condition if it is available and latch block is empty,
873 end of the latch block otherwise) to BSI. INSERT_AFTER is set to true if
874 the increment should be inserted after *BSI. */
875
876 void
877 standard_iv_increment_position (class loop *loop, gimple_stmt_iterator *bsi,
878 bool *insert_after)
879 {
880 basic_block bb = ip_normal_pos (loop), latch = ip_end_pos (loop);
881 gimple *last = last_stmt (latch);
882
883 if (!bb
884 || (last && gimple_code (last) != GIMPLE_LABEL))
885 {
886 *bsi = gsi_last_bb (latch);
887 *insert_after = true;
888 }
889 else
890 {
891 *bsi = gsi_last_bb (bb);
892 *insert_after = false;
893 }
894 }
895
896 /* Copies phi node arguments for duplicated blocks. The index of the first
897 duplicated block is FIRST_NEW_BLOCK. */
898
899 static void
900 copy_phi_node_args (unsigned first_new_block)
901 {
902 unsigned i;
903
904 for (i = first_new_block; i < (unsigned) last_basic_block_for_fn (cfun); i++)
905 BASIC_BLOCK_FOR_FN (cfun, i)->flags |= BB_DUPLICATED;
906
907 for (i = first_new_block; i < (unsigned) last_basic_block_for_fn (cfun); i++)
908 add_phi_args_after_copy_bb (BASIC_BLOCK_FOR_FN (cfun, i));
909
910 for (i = first_new_block; i < (unsigned) last_basic_block_for_fn (cfun); i++)
911 BASIC_BLOCK_FOR_FN (cfun, i)->flags &= ~BB_DUPLICATED;
912 }
913
914
915 /* The same as cfgloopmanip.c:duplicate_loop_to_header_edge, but also
916 updates the PHI nodes at start of the copied region. In order to
917 achieve this, only loops whose exits all lead to the same location
918 are handled.
919
920 Notice that we do not completely update the SSA web after
921 duplication. The caller is responsible for calling update_ssa
922 after the loop has been duplicated. */
923
924 bool
925 gimple_duplicate_loop_to_header_edge (class loop *loop, edge e,
926 unsigned int ndupl, sbitmap wont_exit,
927 edge orig, vec<edge> *to_remove,
928 int flags)
929 {
930 unsigned first_new_block;
931
932 if (!loops_state_satisfies_p (LOOPS_HAVE_SIMPLE_LATCHES))
933 return false;
934 if (!loops_state_satisfies_p (LOOPS_HAVE_PREHEADERS))
935 return false;
936
937 first_new_block = last_basic_block_for_fn (cfun);
938 if (!duplicate_loop_to_header_edge (loop, e, ndupl, wont_exit,
939 orig, to_remove, flags))
940 return false;
941
942 /* Readd the removed phi args for e. */
943 flush_pending_stmts (e);
944
945 /* Copy the phi node arguments. */
946 copy_phi_node_args (first_new_block);
947
948 scev_reset ();
949
950 return true;
951 }
952
953 /* Returns true if we can unroll LOOP FACTOR times. Number
954 of iterations of the loop is returned in NITER. */
955
956 bool
957 can_unroll_loop_p (class loop *loop, unsigned factor,
958 class tree_niter_desc *niter)
959 {
960 edge exit;
961
962 /* Check whether unrolling is possible. We only want to unroll loops
963 for that we are able to determine number of iterations. We also
964 want to split the extra iterations of the loop from its end,
965 therefore we require that the loop has precisely one
966 exit. */
967
968 exit = single_dom_exit (loop);
969 if (!exit)
970 return false;
971
972 if (!number_of_iterations_exit (loop, exit, niter, false)
973 || niter->cmp == ERROR_MARK
974 /* Scalar evolutions analysis might have copy propagated
975 the abnormal ssa names into these expressions, hence
976 emitting the computations based on them during loop
977 unrolling might create overlapping life ranges for
978 them, and failures in out-of-ssa. */
979 || contains_abnormal_ssa_name_p (niter->may_be_zero)
980 || contains_abnormal_ssa_name_p (niter->control.base)
981 || contains_abnormal_ssa_name_p (niter->control.step)
982 || contains_abnormal_ssa_name_p (niter->bound))
983 return false;
984
985 /* And of course, we must be able to duplicate the loop. */
986 if (!can_duplicate_loop_p (loop))
987 return false;
988
989 /* The final loop should be small enough. */
990 if (tree_num_loop_insns (loop, &eni_size_weights) * factor
991 > (unsigned) param_max_unrolled_insns)
992 return false;
993
994 return true;
995 }
996
997 /* Determines the conditions that control execution of LOOP unrolled FACTOR
998 times. DESC is number of iterations of LOOP. ENTER_COND is set to
999 condition that must be true if the main loop can be entered.
1000 EXIT_BASE, EXIT_STEP, EXIT_CMP and EXIT_BOUND are set to values describing
1001 how the exit from the unrolled loop should be controlled. */
1002
1003 static void
1004 determine_exit_conditions (class loop *loop, class tree_niter_desc *desc,
1005 unsigned factor, tree *enter_cond,
1006 tree *exit_base, tree *exit_step,
1007 enum tree_code *exit_cmp, tree *exit_bound)
1008 {
1009 gimple_seq stmts;
1010 tree base = desc->control.base;
1011 tree step = desc->control.step;
1012 tree bound = desc->bound;
1013 tree type = TREE_TYPE (step);
1014 tree bigstep, delta;
1015 tree min = lower_bound_in_type (type, type);
1016 tree max = upper_bound_in_type (type, type);
1017 enum tree_code cmp = desc->cmp;
1018 tree cond = boolean_true_node, assum;
1019
1020 /* For pointers, do the arithmetics in the type of step. */
1021 base = fold_convert (type, base);
1022 bound = fold_convert (type, bound);
1023
1024 *enter_cond = boolean_false_node;
1025 *exit_base = NULL_TREE;
1026 *exit_step = NULL_TREE;
1027 *exit_cmp = ERROR_MARK;
1028 *exit_bound = NULL_TREE;
1029 gcc_assert (cmp != ERROR_MARK);
1030
1031 /* We only need to be correct when we answer question
1032 "Do at least FACTOR more iterations remain?" in the unrolled loop.
1033 Thus, transforming BASE + STEP * i <> BOUND to
1034 BASE + STEP * i < BOUND is ok. */
1035 if (cmp == NE_EXPR)
1036 {
1037 if (tree_int_cst_sign_bit (step))
1038 cmp = GT_EXPR;
1039 else
1040 cmp = LT_EXPR;
1041 }
1042 else if (cmp == LT_EXPR)
1043 {
1044 gcc_assert (!tree_int_cst_sign_bit (step));
1045 }
1046 else if (cmp == GT_EXPR)
1047 {
1048 gcc_assert (tree_int_cst_sign_bit (step));
1049 }
1050 else
1051 gcc_unreachable ();
1052
1053 /* The main body of the loop may be entered iff:
1054
1055 1) desc->may_be_zero is false.
1056 2) it is possible to check that there are at least FACTOR iterations
1057 of the loop, i.e., BOUND - step * FACTOR does not overflow.
1058 3) # of iterations is at least FACTOR */
1059
1060 if (!integer_zerop (desc->may_be_zero))
1061 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node,
1062 invert_truthvalue (desc->may_be_zero),
1063 cond);
1064
1065 bigstep = fold_build2 (MULT_EXPR, type, step,
1066 build_int_cst_type (type, factor));
1067 delta = fold_build2 (MINUS_EXPR, type, bigstep, step);
1068 if (cmp == LT_EXPR)
1069 assum = fold_build2 (GE_EXPR, boolean_type_node,
1070 bound,
1071 fold_build2 (PLUS_EXPR, type, min, delta));
1072 else
1073 assum = fold_build2 (LE_EXPR, boolean_type_node,
1074 bound,
1075 fold_build2 (PLUS_EXPR, type, max, delta));
1076 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond);
1077
1078 bound = fold_build2 (MINUS_EXPR, type, bound, delta);
1079 assum = fold_build2 (cmp, boolean_type_node, base, bound);
1080 cond = fold_build2 (TRUTH_AND_EXPR, boolean_type_node, assum, cond);
1081
1082 cond = force_gimple_operand (unshare_expr (cond), &stmts, false, NULL_TREE);
1083 if (stmts)
1084 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
1085 /* cond now may be a gimple comparison, which would be OK, but also any
1086 other gimple rhs (say a && b). In this case we need to force it to
1087 operand. */
1088 if (!is_gimple_condexpr (cond))
1089 {
1090 cond = force_gimple_operand (cond, &stmts, true, NULL_TREE);
1091 if (stmts)
1092 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
1093 }
1094 *enter_cond = cond;
1095
1096 base = force_gimple_operand (unshare_expr (base), &stmts, true, NULL_TREE);
1097 if (stmts)
1098 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
1099 bound = force_gimple_operand (unshare_expr (bound), &stmts, true, NULL_TREE);
1100 if (stmts)
1101 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
1102
1103 *exit_base = base;
1104 *exit_step = bigstep;
1105 *exit_cmp = cmp;
1106 *exit_bound = bound;
1107 }
1108
1109 /* Scales the frequencies of all basic blocks in LOOP that are strictly
1110 dominated by BB by NUM/DEN. */
1111
1112 static void
1113 scale_dominated_blocks_in_loop (class loop *loop, basic_block bb,
1114 profile_count num, profile_count den)
1115 {
1116 basic_block son;
1117
1118 if (!den.nonzero_p () && !(num == profile_count::zero ()))
1119 return;
1120
1121 for (son = first_dom_son (CDI_DOMINATORS, bb);
1122 son;
1123 son = next_dom_son (CDI_DOMINATORS, son))
1124 {
1125 if (!flow_bb_inside_loop_p (loop, son))
1126 continue;
1127 scale_bbs_frequencies_profile_count (&son, 1, num, den);
1128 scale_dominated_blocks_in_loop (loop, son, num, den);
1129 }
1130 }
1131
1132 /* Return estimated niter for LOOP after unrolling by FACTOR times. */
1133
1134 gcov_type
1135 niter_for_unrolled_loop (class loop *loop, unsigned factor)
1136 {
1137 gcc_assert (factor != 0);
1138 bool profile_p = false;
1139 gcov_type est_niter = expected_loop_iterations_unbounded (loop, &profile_p);
1140 /* Note that this is really CEIL (est_niter + 1, factor) - 1, where the
1141 "+ 1" converts latch iterations to loop iterations and the "- 1"
1142 converts back. */
1143 gcov_type new_est_niter = est_niter / factor;
1144
1145 if (est_niter == -1)
1146 return -1;
1147
1148 /* Without profile feedback, loops for which we do not know a better estimate
1149 are assumed to roll 10 times. When we unroll such loop, it appears to
1150 roll too little, and it may even seem to be cold. To avoid this, we
1151 ensure that the created loop appears to roll at least 5 times (but at
1152 most as many times as before unrolling). Don't do adjustment if profile
1153 feedback is present. */
1154 if (new_est_niter < 5 && !profile_p)
1155 {
1156 if (est_niter < 5)
1157 new_est_niter = est_niter;
1158 else
1159 new_est_niter = 5;
1160 }
1161
1162 if (loop->any_upper_bound)
1163 {
1164 /* As above, this is really CEIL (upper_bound + 1, factor) - 1. */
1165 widest_int bound = wi::udiv_floor (loop->nb_iterations_upper_bound,
1166 factor);
1167 if (wi::ltu_p (bound, new_est_niter))
1168 new_est_niter = bound.to_uhwi ();
1169 }
1170
1171 return new_est_niter;
1172 }
1173
1174 /* Unroll LOOP FACTOR times. DESC describes number of iterations of LOOP.
1175 EXIT is the exit of the loop to that DESC corresponds.
1176
1177 If N is number of iterations of the loop and MAY_BE_ZERO is the condition
1178 under that loop exits in the first iteration even if N != 0,
1179
1180 while (1)
1181 {
1182 x = phi (init, next);
1183
1184 pre;
1185 if (st)
1186 break;
1187 post;
1188 }
1189
1190 becomes (with possibly the exit conditions formulated a bit differently,
1191 avoiding the need to create a new iv):
1192
1193 if (MAY_BE_ZERO || N < FACTOR)
1194 goto rest;
1195
1196 do
1197 {
1198 x = phi (init, next);
1199
1200 pre;
1201 post;
1202 pre;
1203 post;
1204 ...
1205 pre;
1206 post;
1207 N -= FACTOR;
1208
1209 } while (N >= FACTOR);
1210
1211 rest:
1212 init' = phi (init, x);
1213
1214 while (1)
1215 {
1216 x = phi (init', next);
1217
1218 pre;
1219 if (st)
1220 break;
1221 post;
1222 }
1223
1224 Before the loop is unrolled, TRANSFORM is called for it (only for the
1225 unrolled loop, but not for its versioned copy). DATA is passed to
1226 TRANSFORM. */
1227
1228 /* Probability in % that the unrolled loop is entered. Just a guess. */
1229 #define PROB_UNROLLED_LOOP_ENTERED 90
1230
1231 void
1232 tree_transform_and_unroll_loop (class loop *loop, unsigned factor,
1233 edge exit, class tree_niter_desc *desc,
1234 transform_callback transform,
1235 void *data)
1236 {
1237 gcond *exit_if;
1238 tree ctr_before, ctr_after;
1239 tree enter_main_cond, exit_base, exit_step, exit_bound;
1240 enum tree_code exit_cmp;
1241 gphi *phi_old_loop, *phi_new_loop, *phi_rest;
1242 gphi_iterator psi_old_loop, psi_new_loop;
1243 tree init, next, new_init;
1244 class loop *new_loop;
1245 basic_block rest, exit_bb;
1246 edge old_entry, new_entry, old_latch, precond_edge, new_exit;
1247 edge new_nonexit, e;
1248 gimple_stmt_iterator bsi;
1249 use_operand_p op;
1250 bool ok;
1251 unsigned i;
1252 profile_probability prob, prob_entry, scale_unrolled;
1253 profile_count freq_e, freq_h;
1254 gcov_type new_est_niter = niter_for_unrolled_loop (loop, factor);
1255 unsigned irr = loop_preheader_edge (loop)->flags & EDGE_IRREDUCIBLE_LOOP;
1256 auto_vec<edge> to_remove;
1257
1258 determine_exit_conditions (loop, desc, factor,
1259 &enter_main_cond, &exit_base, &exit_step,
1260 &exit_cmp, &exit_bound);
1261
1262 /* Let us assume that the unrolled loop is quite likely to be entered. */
1263 if (integer_nonzerop (enter_main_cond))
1264 prob_entry = profile_probability::always ();
1265 else
1266 prob_entry = profile_probability::guessed_always ()
1267 .apply_scale (PROB_UNROLLED_LOOP_ENTERED, 100);
1268
1269 /* The values for scales should keep profile consistent, and somewhat close
1270 to correct.
1271
1272 TODO: The current value of SCALE_REST makes it appear that the loop that
1273 is created by splitting the remaining iterations of the unrolled loop is
1274 executed the same number of times as the original loop, and with the same
1275 frequencies, which is obviously wrong. This does not appear to cause
1276 problems, so we do not bother with fixing it for now. To make the profile
1277 correct, we would need to change the probability of the exit edge of the
1278 loop, and recompute the distribution of frequencies in its body because
1279 of this change (scale the frequencies of blocks before and after the exit
1280 by appropriate factors). */
1281 scale_unrolled = prob_entry;
1282
1283 new_loop = loop_version (loop, enter_main_cond, NULL, prob_entry,
1284 prob_entry.invert (), scale_unrolled,
1285 profile_probability::guessed_always (),
1286 true);
1287 gcc_assert (new_loop != NULL);
1288 update_ssa (TODO_update_ssa);
1289
1290 /* Prepare the cfg and update the phi nodes. Move the loop exit to the
1291 loop latch (and make its condition dummy, for the moment). */
1292 rest = loop_preheader_edge (new_loop)->src;
1293 precond_edge = single_pred_edge (rest);
1294 split_edge (loop_latch_edge (loop));
1295 exit_bb = single_pred (loop->latch);
1296
1297 /* Since the exit edge will be removed, the frequency of all the blocks
1298 in the loop that are dominated by it must be scaled by
1299 1 / (1 - exit->probability). */
1300 if (exit->probability.initialized_p ())
1301 scale_dominated_blocks_in_loop (loop, exit->src,
1302 /* We are scaling up here so probability
1303 does not fit. */
1304 loop->header->count,
1305 loop->header->count
1306 - loop->header->count.apply_probability
1307 (exit->probability));
1308
1309 bsi = gsi_last_bb (exit_bb);
1310 exit_if = gimple_build_cond (EQ_EXPR, integer_zero_node,
1311 integer_zero_node,
1312 NULL_TREE, NULL_TREE);
1313
1314 gsi_insert_after (&bsi, exit_if, GSI_NEW_STMT);
1315 new_exit = make_edge (exit_bb, rest, EDGE_FALSE_VALUE | irr);
1316 rescan_loop_exit (new_exit, true, false);
1317
1318 /* Set the probability of new exit to the same of the old one. Fix
1319 the frequency of the latch block, by scaling it back by
1320 1 - exit->probability. */
1321 new_exit->probability = exit->probability;
1322 new_nonexit = single_pred_edge (loop->latch);
1323 new_nonexit->probability = exit->probability.invert ();
1324 new_nonexit->flags = EDGE_TRUE_VALUE;
1325 if (new_nonexit->probability.initialized_p ())
1326 scale_bbs_frequencies (&loop->latch, 1, new_nonexit->probability);
1327
1328 old_entry = loop_preheader_edge (loop);
1329 new_entry = loop_preheader_edge (new_loop);
1330 old_latch = loop_latch_edge (loop);
1331 for (psi_old_loop = gsi_start_phis (loop->header),
1332 psi_new_loop = gsi_start_phis (new_loop->header);
1333 !gsi_end_p (psi_old_loop);
1334 gsi_next (&psi_old_loop), gsi_next (&psi_new_loop))
1335 {
1336 phi_old_loop = psi_old_loop.phi ();
1337 phi_new_loop = psi_new_loop.phi ();
1338
1339 init = PHI_ARG_DEF_FROM_EDGE (phi_old_loop, old_entry);
1340 op = PHI_ARG_DEF_PTR_FROM_EDGE (phi_new_loop, new_entry);
1341 gcc_assert (operand_equal_for_phi_arg_p (init, USE_FROM_PTR (op)));
1342 next = PHI_ARG_DEF_FROM_EDGE (phi_old_loop, old_latch);
1343
1344 /* Prefer using original variable as a base for the new ssa name.
1345 This is necessary for virtual ops, and useful in order to avoid
1346 losing debug info for real ops. */
1347 if (TREE_CODE (next) == SSA_NAME
1348 && useless_type_conversion_p (TREE_TYPE (next),
1349 TREE_TYPE (init)))
1350 new_init = copy_ssa_name (next);
1351 else if (TREE_CODE (init) == SSA_NAME
1352 && useless_type_conversion_p (TREE_TYPE (init),
1353 TREE_TYPE (next)))
1354 new_init = copy_ssa_name (init);
1355 else if (useless_type_conversion_p (TREE_TYPE (next), TREE_TYPE (init)))
1356 new_init = make_temp_ssa_name (TREE_TYPE (next), NULL, "unrinittmp");
1357 else
1358 new_init = make_temp_ssa_name (TREE_TYPE (init), NULL, "unrinittmp");
1359
1360 phi_rest = create_phi_node (new_init, rest);
1361
1362 add_phi_arg (phi_rest, init, precond_edge, UNKNOWN_LOCATION);
1363 add_phi_arg (phi_rest, next, new_exit, UNKNOWN_LOCATION);
1364 SET_USE (op, new_init);
1365 }
1366
1367 remove_path (exit);
1368
1369 /* Transform the loop. */
1370 if (transform)
1371 (*transform) (loop, data);
1372
1373 /* Unroll the loop and remove the exits in all iterations except for the
1374 last one. */
1375 auto_sbitmap wont_exit (factor);
1376 bitmap_ones (wont_exit);
1377 bitmap_clear_bit (wont_exit, factor - 1);
1378
1379 ok = gimple_duplicate_loop_to_header_edge
1380 (loop, loop_latch_edge (loop), factor - 1,
1381 wont_exit, new_exit, &to_remove, DLTHE_FLAG_UPDATE_FREQ);
1382 gcc_assert (ok);
1383
1384 FOR_EACH_VEC_ELT (to_remove, i, e)
1385 {
1386 ok = remove_path (e);
1387 gcc_assert (ok);
1388 }
1389 update_ssa (TODO_update_ssa);
1390
1391 /* Ensure that the frequencies in the loop match the new estimated
1392 number of iterations, and change the probability of the new
1393 exit edge. */
1394
1395 freq_h = loop->header->count;
1396 freq_e = (loop_preheader_edge (loop))->count ();
1397 if (freq_h.nonzero_p ())
1398 {
1399 /* Avoid dropping loop body profile counter to 0 because of zero count
1400 in loop's preheader. */
1401 if (freq_h.nonzero_p () && !(freq_e == profile_count::zero ()))
1402 freq_e = freq_e.force_nonzero ();
1403 scale_loop_frequencies (loop, freq_e.probability_in (freq_h));
1404 }
1405
1406 exit_bb = single_pred (loop->latch);
1407 new_exit = find_edge (exit_bb, rest);
1408 new_exit->probability = profile_probability::always ()
1409 .apply_scale (1, new_est_niter + 1);
1410
1411 rest->count += new_exit->count ();
1412
1413 new_nonexit = single_pred_edge (loop->latch);
1414 prob = new_nonexit->probability;
1415 new_nonexit->probability = new_exit->probability.invert ();
1416 prob = new_nonexit->probability / prob;
1417 if (prob.initialized_p ())
1418 scale_bbs_frequencies (&loop->latch, 1, prob);
1419
1420 /* Finally create the new counter for number of iterations and add the new
1421 exit instruction. */
1422 bsi = gsi_last_nondebug_bb (exit_bb);
1423 exit_if = as_a <gcond *> (gsi_stmt (bsi));
1424 create_iv (exit_base, exit_step, NULL_TREE, loop,
1425 &bsi, false, &ctr_before, &ctr_after);
1426 gimple_cond_set_code (exit_if, exit_cmp);
1427 gimple_cond_set_lhs (exit_if, ctr_after);
1428 gimple_cond_set_rhs (exit_if, exit_bound);
1429 update_stmt (exit_if);
1430
1431 checking_verify_flow_info ();
1432 checking_verify_loop_structure ();
1433 checking_verify_loop_closed_ssa (true, loop);
1434 checking_verify_loop_closed_ssa (true, new_loop);
1435 }
1436
1437 /* Wrapper over tree_transform_and_unroll_loop for case we do not
1438 want to transform the loop before unrolling. The meaning
1439 of the arguments is the same as for tree_transform_and_unroll_loop. */
1440
1441 void
1442 tree_unroll_loop (class loop *loop, unsigned factor,
1443 edge exit, class tree_niter_desc *desc)
1444 {
1445 tree_transform_and_unroll_loop (loop, factor, exit, desc,
1446 NULL, NULL);
1447 }
1448
1449 /* Rewrite the phi node at position PSI in function of the main
1450 induction variable MAIN_IV and insert the generated code at GSI. */
1451
1452 static void
1453 rewrite_phi_with_iv (loop_p loop,
1454 gphi_iterator *psi,
1455 gimple_stmt_iterator *gsi,
1456 tree main_iv)
1457 {
1458 affine_iv iv;
1459 gassign *stmt;
1460 gphi *phi = psi->phi ();
1461 tree atype, mtype, val, res = PHI_RESULT (phi);
1462
1463 if (virtual_operand_p (res) || res == main_iv)
1464 {
1465 gsi_next (psi);
1466 return;
1467 }
1468
1469 if (!simple_iv (loop, loop, res, &iv, true))
1470 {
1471 gsi_next (psi);
1472 return;
1473 }
1474
1475 remove_phi_node (psi, false);
1476
1477 atype = TREE_TYPE (res);
1478 mtype = POINTER_TYPE_P (atype) ? sizetype : atype;
1479 val = fold_build2 (MULT_EXPR, mtype, unshare_expr (iv.step),
1480 fold_convert (mtype, main_iv));
1481 val = fold_build2 (POINTER_TYPE_P (atype)
1482 ? POINTER_PLUS_EXPR : PLUS_EXPR,
1483 atype, unshare_expr (iv.base), val);
1484 val = force_gimple_operand_gsi (gsi, val, false, NULL_TREE, true,
1485 GSI_SAME_STMT);
1486 stmt = gimple_build_assign (res, val);
1487 gsi_insert_before (gsi, stmt, GSI_SAME_STMT);
1488 }
1489
1490 /* Rewrite all the phi nodes of LOOP in function of the main induction
1491 variable MAIN_IV. */
1492
1493 static void
1494 rewrite_all_phi_nodes_with_iv (loop_p loop, tree main_iv)
1495 {
1496 unsigned i;
1497 basic_block *bbs = get_loop_body_in_dom_order (loop);
1498 gphi_iterator psi;
1499
1500 for (i = 0; i < loop->num_nodes; i++)
1501 {
1502 basic_block bb = bbs[i];
1503 gimple_stmt_iterator gsi = gsi_after_labels (bb);
1504
1505 if (bb->loop_father != loop)
1506 continue;
1507
1508 for (psi = gsi_start_phis (bb); !gsi_end_p (psi); )
1509 rewrite_phi_with_iv (loop, &psi, &gsi, main_iv);
1510 }
1511
1512 free (bbs);
1513 }
1514
1515 /* Bases all the induction variables in LOOP on a single induction variable
1516 (with base 0 and step 1), whose final value is compared with *NIT. When the
1517 IV type precision has to be larger than *NIT type precision, *NIT is
1518 converted to the larger type, the conversion code is inserted before the
1519 loop, and *NIT is updated to the new definition. When BUMP_IN_LATCH is true,
1520 the induction variable is incremented in the loop latch, otherwise it is
1521 incremented in the loop header. Return the induction variable that was
1522 created. */
1523
1524 tree
1525 canonicalize_loop_ivs (class loop *loop, tree *nit, bool bump_in_latch)
1526 {
1527 unsigned precision = TYPE_PRECISION (TREE_TYPE (*nit));
1528 unsigned original_precision = precision;
1529 tree type, var_before;
1530 gimple_stmt_iterator gsi;
1531 gphi_iterator psi;
1532 gcond *stmt;
1533 edge exit = single_dom_exit (loop);
1534 gimple_seq stmts;
1535 bool unsigned_p = false;
1536
1537 for (psi = gsi_start_phis (loop->header);
1538 !gsi_end_p (psi); gsi_next (&psi))
1539 {
1540 gphi *phi = psi.phi ();
1541 tree res = PHI_RESULT (phi);
1542 bool uns;
1543
1544 type = TREE_TYPE (res);
1545 if (virtual_operand_p (res)
1546 || (!INTEGRAL_TYPE_P (type)
1547 && !POINTER_TYPE_P (type))
1548 || TYPE_PRECISION (type) < precision)
1549 continue;
1550
1551 uns = POINTER_TYPE_P (type) | TYPE_UNSIGNED (type);
1552
1553 if (TYPE_PRECISION (type) > precision)
1554 unsigned_p = uns;
1555 else
1556 unsigned_p |= uns;
1557
1558 precision = TYPE_PRECISION (type);
1559 }
1560
1561 scalar_int_mode mode = smallest_int_mode_for_size (precision);
1562 precision = GET_MODE_PRECISION (mode);
1563 type = build_nonstandard_integer_type (precision, unsigned_p);
1564
1565 if (original_precision != precision
1566 || TYPE_UNSIGNED (TREE_TYPE (*nit)) != unsigned_p)
1567 {
1568 *nit = fold_convert (type, *nit);
1569 *nit = force_gimple_operand (*nit, &stmts, true, NULL_TREE);
1570 if (stmts)
1571 gsi_insert_seq_on_edge_immediate (loop_preheader_edge (loop), stmts);
1572 }
1573
1574 if (bump_in_latch)
1575 gsi = gsi_last_bb (loop->latch);
1576 else
1577 gsi = gsi_last_nondebug_bb (loop->header);
1578 create_iv (build_int_cst_type (type, 0), build_int_cst (type, 1), NULL_TREE,
1579 loop, &gsi, bump_in_latch, &var_before, NULL);
1580
1581 rewrite_all_phi_nodes_with_iv (loop, var_before);
1582
1583 stmt = as_a <gcond *> (last_stmt (exit->src));
1584 /* Make the loop exit if the control condition is not satisfied. */
1585 if (exit->flags & EDGE_TRUE_VALUE)
1586 {
1587 edge te, fe;
1588
1589 extract_true_false_edges_from_block (exit->src, &te, &fe);
1590 te->flags = EDGE_FALSE_VALUE;
1591 fe->flags = EDGE_TRUE_VALUE;
1592 }
1593 gimple_cond_set_code (stmt, LT_EXPR);
1594 gimple_cond_set_lhs (stmt, var_before);
1595 gimple_cond_set_rhs (stmt, *nit);
1596 update_stmt (stmt);
1597
1598 return var_before;
1599 }