1 /* High-level loop manipulation functions.
2 Copyright (C) 2004, 2005 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
11 GCC is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
23 #include "coretypes.h"
28 #include "hard-reg-set.h"
29 #include "basic-block.h"
31 #include "diagnostic.h"
32 #include "tree-flow.h"
33 #include "tree-dump.h"
36 #include "tree-pass.h"
37 #include "cfglayout.h"
38 #include "tree-scalar-evolution.h"
40 /* Creates an induction variable with value BASE + STEP * iteration in LOOP.
41 It is expected that neither BASE nor STEP are shared with other expressions
42 (unless the sharing rules allow this). Use VAR as a base var_decl for it
43 (if NULL, a new temporary will be created). The increment will occur at
44 INCR_POS (after it if AFTER is true, before it otherwise). INCR_POS and
45 AFTER can be computed using standard_iv_increment_position. The ssa versions
46 of the variable before and after increment will be stored in VAR_BEFORE and
47 VAR_AFTER (unless they are NULL). */
50 create_iv (tree base
, tree step
, tree var
, struct loop
*loop
,
51 block_stmt_iterator
*incr_pos
, bool after
,
52 tree
*var_before
, tree
*var_after
)
54 tree stmt
, initial
, step1
, stmts
;
56 enum tree_code incr_op
= PLUS_EXPR
;
57 edge pe
= loop_preheader_edge (loop
);
61 var
= create_tmp_var (TREE_TYPE (base
), "ivtmp");
62 add_referenced_tmp_var (var
);
65 vb
= make_ssa_name (var
, NULL_TREE
);
68 va
= make_ssa_name (var
, NULL_TREE
);
72 /* For easier readability of the created code, produce MINUS_EXPRs
74 if (TREE_CODE (step
) == INTEGER_CST
)
76 if (TYPE_UNSIGNED (TREE_TYPE (step
)))
78 step1
= fold_build1 (NEGATE_EXPR
, TREE_TYPE (step
), step
);
79 if (tree_int_cst_lt (step1
, step
))
87 if (!tree_expr_nonnegative_p (step
)
88 && may_negate_without_overflow_p (step
))
91 step
= fold_build1 (NEGATE_EXPR
, TREE_TYPE (step
), step
);
96 /* Gimplify the step if necessary. We put the computations in front of the
97 loop (i.e. the step should be loop invariant). */
98 step
= force_gimple_operand (step
, &stmts
, true, var
);
100 bsi_insert_on_edge_immediate_loop (pe
, stmts
);
102 stmt
= build2 (MODIFY_EXPR
, void_type_node
, va
,
103 build2 (incr_op
, TREE_TYPE (base
),
105 SSA_NAME_DEF_STMT (va
) = stmt
;
107 bsi_insert_after (incr_pos
, stmt
, BSI_NEW_STMT
);
109 bsi_insert_before (incr_pos
, stmt
, BSI_NEW_STMT
);
111 initial
= force_gimple_operand (base
, &stmts
, true, var
);
113 bsi_insert_on_edge_immediate_loop (pe
, stmts
);
115 stmt
= create_phi_node (vb
, loop
->header
);
116 SSA_NAME_DEF_STMT (vb
) = stmt
;
117 add_phi_arg (stmt
, initial
, loop_preheader_edge (loop
));
118 add_phi_arg (stmt
, va
, loop_latch_edge (loop
));
121 /* Add exit phis for the USE on EXIT. */
124 add_exit_phis_edge (basic_block exit
, tree use
)
126 tree phi
, def_stmt
= SSA_NAME_DEF_STMT (use
);
127 basic_block def_bb
= bb_for_stmt (def_stmt
);
128 struct loop
*def_loop
;
132 /* Check that some of the edges entering the EXIT block exits a loop in
133 that USE is defined. */
134 FOR_EACH_EDGE (e
, ei
, exit
->preds
)
136 def_loop
= find_common_loop (def_bb
->loop_father
, e
->src
->loop_father
);
137 if (!flow_bb_inside_loop_p (def_loop
, e
->dest
))
144 phi
= create_phi_node (use
, exit
);
145 create_new_def_for (PHI_RESULT (phi
), phi
, PHI_RESULT_PTR (phi
));
146 FOR_EACH_EDGE (e
, ei
, exit
->preds
)
147 add_phi_arg (phi
, use
, e
);
150 /* Add exit phis for VAR that is used in LIVEIN.
151 Exits of the loops are stored in EXITS. */
154 add_exit_phis_var (tree var
, bitmap livein
, bitmap exits
)
158 basic_block def_bb
= bb_for_stmt (SSA_NAME_DEF_STMT (var
));
161 if (is_gimple_reg (var
))
162 bitmap_clear_bit (livein
, def_bb
->index
);
164 bitmap_set_bit (livein
, def_bb
->index
);
166 def
= BITMAP_ALLOC (NULL
);
167 bitmap_set_bit (def
, def_bb
->index
);
168 compute_global_livein (livein
, def
);
171 EXECUTE_IF_AND_IN_BITMAP (exits
, livein
, 0, index
, bi
)
173 add_exit_phis_edge (BASIC_BLOCK (index
), var
);
177 /* Add exit phis for the names marked in NAMES_TO_RENAME.
178 Exits of the loops are stored in EXITS. Sets of blocks where the ssa
179 names are used are stored in USE_BLOCKS. */
182 add_exit_phis (bitmap names_to_rename
, bitmap
*use_blocks
, bitmap loop_exits
)
187 EXECUTE_IF_SET_IN_BITMAP (names_to_rename
, 0, i
, bi
)
189 add_exit_phis_var (ssa_name (i
), use_blocks
[i
], loop_exits
);
193 /* Returns a bitmap of all loop exit edge targets. */
196 get_loops_exits (void)
198 bitmap exits
= BITMAP_ALLOC (NULL
);
205 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
206 if (e
->src
!= ENTRY_BLOCK_PTR
207 && !flow_bb_inside_loop_p (e
->src
->loop_father
, bb
))
209 bitmap_set_bit (exits
, bb
->index
);
217 /* For USE in BB, if it is used outside of the loop it is defined in,
218 mark it for rewrite. Record basic block BB where it is used
219 to USE_BLOCKS. Record the ssa name index to NEED_PHIS bitmap. */
222 find_uses_to_rename_use (basic_block bb
, tree use
, bitmap
*use_blocks
,
227 struct loop
*def_loop
;
229 if (TREE_CODE (use
) != SSA_NAME
)
232 /* We don't need to keep virtual operands in loop-closed form. */
233 if (!is_gimple_reg (use
))
236 ver
= SSA_NAME_VERSION (use
);
237 def_bb
= bb_for_stmt (SSA_NAME_DEF_STMT (use
));
240 def_loop
= def_bb
->loop_father
;
242 /* If the definition is not inside loop, it is not interesting. */
243 if (!def_loop
->outer
)
246 if (!use_blocks
[ver
])
247 use_blocks
[ver
] = BITMAP_ALLOC (NULL
);
248 bitmap_set_bit (use_blocks
[ver
], bb
->index
);
250 bitmap_set_bit (need_phis
, ver
);
253 /* For uses in STMT, mark names that are used outside of the loop they are
254 defined to rewrite. Record the set of blocks in that the ssa
255 names are defined to USE_BLOCKS and the ssa names themselves to
259 find_uses_to_rename_stmt (tree stmt
, bitmap
*use_blocks
, bitmap need_phis
)
263 basic_block bb
= bb_for_stmt (stmt
);
265 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, SSA_OP_ALL_USES
| SSA_OP_ALL_KILLS
)
266 find_uses_to_rename_use (bb
, var
, use_blocks
, need_phis
);
269 /* Marks names that are used in BB and outside of the loop they are
270 defined in for rewrite. Records the set of blocks in that the ssa
271 names are defined to USE_BLOCKS. Record the SSA names that will
272 need exit PHIs in NEED_PHIS. */
275 find_uses_to_rename_bb (basic_block bb
, bitmap
*use_blocks
, bitmap need_phis
)
277 block_stmt_iterator bsi
;
282 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
283 for (phi
= phi_nodes (e
->dest
); phi
; phi
= PHI_CHAIN (phi
))
284 find_uses_to_rename_use (bb
, PHI_ARG_DEF_FROM_EDGE (phi
, e
),
285 use_blocks
, need_phis
);
287 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
288 find_uses_to_rename_stmt (bsi_stmt (bsi
), use_blocks
, need_phis
);
291 /* Marks names that are used outside of the loop they are defined in
292 for rewrite. Records the set of blocks in that the ssa
293 names are defined to USE_BLOCKS. If CHANGED_BBS is not NULL,
294 scan only blocks in this set. */
297 find_uses_to_rename (bitmap changed_bbs
, bitmap
*use_blocks
, bitmap need_phis
)
303 if (changed_bbs
&& !bitmap_empty_p (changed_bbs
))
305 EXECUTE_IF_SET_IN_BITMAP (changed_bbs
, 0, index
, bi
)
307 find_uses_to_rename_bb (BASIC_BLOCK (index
), use_blocks
, need_phis
);
314 find_uses_to_rename_bb (bb
, use_blocks
, need_phis
);
319 /* Rewrites the program into a loop closed ssa form -- i.e. inserts extra
320 phi nodes to ensure that no variable is used outside the loop it is
323 This strengthening of the basic ssa form has several advantages:
325 1) Updating it during unrolling/peeling/versioning is trivial, since
326 we do not need to care about the uses outside of the loop.
327 2) The behavior of all uses of an induction variable is the same.
328 Without this, you need to distinguish the case when the variable
329 is used outside of the loop it is defined in, for example
331 for (i = 0; i < 100; i++)
333 for (j = 0; j < 100; j++)
341 Looking from the outer loop with the normal SSA form, the first use of k
342 is not well-behaved, while the second one is an induction variable with
345 If CHANGED_BBS is not NULL, we look for uses outside loops only in
346 the basic blocks in this set.
348 UPDATE_FLAG is used in the call to update_ssa. See
349 TODO_update_ssa* for documentation. */
352 rewrite_into_loop_closed_ssa (bitmap changed_bbs
, unsigned update_flag
)
354 bitmap loop_exits
= get_loops_exits ();
356 unsigned i
, old_num_ssa_names
;
357 bitmap names_to_rename
= BITMAP_ALLOC (NULL
);
359 /* If the pass has caused the SSA form to be out-of-date, update it
361 update_ssa (update_flag
);
363 old_num_ssa_names
= num_ssa_names
;
364 use_blocks
= xcalloc (old_num_ssa_names
, sizeof (bitmap
));
366 /* Find the uses outside loops. */
367 find_uses_to_rename (changed_bbs
, use_blocks
, names_to_rename
);
369 /* Add the PHI nodes on exits of the loops for the names we need to
371 add_exit_phis (names_to_rename
, use_blocks
, loop_exits
);
373 for (i
= 0; i
< old_num_ssa_names
; i
++)
374 BITMAP_FREE (use_blocks
[i
]);
376 BITMAP_FREE (loop_exits
);
377 BITMAP_FREE (names_to_rename
);
379 /* Fix up all the names found to be used outside their original
381 update_ssa (TODO_update_ssa
);
384 /* Check invariants of the loop closed ssa form for the USE in BB. */
387 check_loop_closed_ssa_use (basic_block bb
, tree use
)
392 if (TREE_CODE (use
) != SSA_NAME
|| !is_gimple_reg (use
))
395 def
= SSA_NAME_DEF_STMT (use
);
396 def_bb
= bb_for_stmt (def
);
398 || flow_bb_inside_loop_p (def_bb
->loop_father
, bb
));
401 /* Checks invariants of loop closed ssa form in statement STMT in BB. */
404 check_loop_closed_ssa_stmt (basic_block bb
, tree stmt
)
409 FOR_EACH_SSA_TREE_OPERAND (var
, stmt
, iter
, SSA_OP_ALL_USES
| SSA_OP_ALL_KILLS
)
410 check_loop_closed_ssa_use (bb
, var
);
413 /* Checks that invariants of the loop closed ssa form are preserved. */
416 verify_loop_closed_ssa (void)
419 block_stmt_iterator bsi
;
423 if (current_loops
== NULL
)
430 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
431 for (i
= 0; i
< (unsigned) PHI_NUM_ARGS (phi
); i
++)
432 check_loop_closed_ssa_use (PHI_ARG_EDGE (phi
, i
)->src
,
433 PHI_ARG_DEF (phi
, i
));
435 for (bsi
= bsi_start (bb
); !bsi_end_p (bsi
); bsi_next (&bsi
))
436 check_loop_closed_ssa_stmt (bb
, bsi_stmt (bsi
));
440 /* Split loop exit edge EXIT. The things are a bit complicated by a need to
441 preserve the loop closed ssa form. */
444 split_loop_exit_edge (edge exit
)
446 basic_block dest
= exit
->dest
;
447 basic_block bb
= loop_split_edge_with (exit
, NULL
);
448 tree phi
, new_phi
, new_name
, name
;
451 for (phi
= phi_nodes (dest
); phi
; phi
= PHI_CHAIN (phi
))
453 op_p
= PHI_ARG_DEF_PTR_FROM_EDGE (phi
, single_succ_edge (bb
));
455 name
= USE_FROM_PTR (op_p
);
457 /* If the argument of the phi node is a constant, we do not need
458 to keep it inside loop. */
459 if (TREE_CODE (name
) != SSA_NAME
)
462 /* Otherwise create an auxiliary phi node that will copy the value
463 of the ssa name out of the loop. */
464 new_name
= duplicate_ssa_name (name
, NULL
);
465 new_phi
= create_phi_node (new_name
, bb
);
466 SSA_NAME_DEF_STMT (new_name
) = new_phi
;
467 add_phi_arg (new_phi
, name
, exit
);
468 SET_USE (op_p
, new_name
);
472 /* Insert statement STMT to the edge E and update the loop structures.
473 Returns the newly created block (if any). */
476 bsi_insert_on_edge_immediate_loop (edge e
, tree stmt
)
478 basic_block src
, dest
, new_bb
;
484 loop_c
= find_common_loop (src
->loop_father
, dest
->loop_father
);
486 new_bb
= bsi_insert_on_edge_immediate (e
, stmt
);
491 add_bb_to_loop (new_bb
, loop_c
);
492 if (dest
->loop_father
->latch
== src
)
493 dest
->loop_father
->latch
= new_bb
;
498 /* Returns the basic block in that statements should be emitted for induction
499 variables incremented at the end of the LOOP. */
502 ip_end_pos (struct loop
*loop
)
507 /* Returns the basic block in that statements should be emitted for induction
508 variables incremented just before exit condition of a LOOP. */
511 ip_normal_pos (struct loop
*loop
)
517 if (!single_pred_p (loop
->latch
))
520 bb
= single_pred (loop
->latch
);
521 last
= last_stmt (bb
);
522 if (TREE_CODE (last
) != COND_EXPR
)
525 exit
= EDGE_SUCC (bb
, 0);
526 if (exit
->dest
== loop
->latch
)
527 exit
= EDGE_SUCC (bb
, 1);
529 if (flow_bb_inside_loop_p (loop
, exit
->dest
))
535 /* Stores the standard position for induction variable increment in LOOP
536 (just before the exit condition if it is available and latch block is empty,
537 end of the latch block otherwise) to BSI. INSERT_AFTER is set to true if
538 the increment should be inserted after *BSI. */
541 standard_iv_increment_position (struct loop
*loop
, block_stmt_iterator
*bsi
,
544 basic_block bb
= ip_normal_pos (loop
), latch
= ip_end_pos (loop
);
545 tree last
= last_stmt (latch
);
548 || (last
&& TREE_CODE (last
) != LABEL_EXPR
))
550 *bsi
= bsi_last (latch
);
551 *insert_after
= true;
555 *bsi
= bsi_last (bb
);
556 *insert_after
= false;
560 /* Copies phi node arguments for duplicated blocks. The index of the first
561 duplicated block is FIRST_NEW_BLOCK. */
564 copy_phi_node_args (unsigned first_new_block
)
568 for (i
= first_new_block
; i
< (unsigned) last_basic_block
; i
++)
569 BASIC_BLOCK (i
)->flags
|= BB_DUPLICATED
;
571 for (i
= first_new_block
; i
< (unsigned) last_basic_block
; i
++)
572 add_phi_args_after_copy_bb (BASIC_BLOCK (i
));
574 for (i
= first_new_block
; i
< (unsigned) last_basic_block
; i
++)
575 BASIC_BLOCK (i
)->flags
&= ~BB_DUPLICATED
;
579 /* The same as cfgloopmanip.c:duplicate_loop_to_header_edge, but also
580 updates the PHI nodes at start of the copied region. In order to
581 achieve this, only loops whose exits all lead to the same location
584 Notice that we do not completely update the SSA web after
585 duplication. The caller is responsible for calling update_ssa
586 after the loop has been duplicated. */
589 tree_duplicate_loop_to_header_edge (struct loop
*loop
, edge e
,
591 unsigned int ndupl
, sbitmap wont_exit
,
592 edge orig
, edge
*to_remove
,
593 unsigned int *n_to_remove
, int flags
)
595 unsigned first_new_block
;
597 if (!(loops
->state
& LOOPS_HAVE_SIMPLE_LATCHES
))
599 if (!(loops
->state
& LOOPS_HAVE_PREHEADERS
))
602 #ifdef ENABLE_CHECKING
603 verify_loop_closed_ssa ();
606 first_new_block
= last_basic_block
;
607 if (!duplicate_loop_to_header_edge (loop
, e
, loops
, ndupl
, wont_exit
,
608 orig
, to_remove
, n_to_remove
, flags
))
611 /* Readd the removed phi args for e. */
612 flush_pending_stmts (e
);
614 /* Copy the phi node arguments. */
615 copy_phi_node_args (first_new_block
);