1 /* CFG cleanup for trees.
2 Copyright (C) 2001-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
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/>. */
22 #include "coretypes.h"
26 #include "basic-block.h"
27 #include "diagnostic-core.h"
30 #include "langhooks.h"
31 #include "tree-ssa-alias.h"
32 #include "internal-fn.h"
34 #include "gimple-expr.h"
38 #include "gimple-iterator.h"
39 #include "gimple-ssa.h"
41 #include "tree-phinodes.h"
42 #include "ssa-iterators.h"
43 #include "stringpool.h"
44 #include "tree-ssanames.h"
45 #include "tree-ssa-loop-manip.h"
49 #include "tree-pass.h"
53 #include "tree-ssa-propagate.h"
54 #include "tree-scalar-evolution.h"
56 /* The set of blocks in that at least one of the following changes happened:
57 -- the statement at the end of the block was changed
58 -- the block was newly created
59 -- the set of the predecessors of the block changed
60 -- the set of the successors of the block changed
61 ??? Maybe we could track these changes separately, since they determine
62 what cleanups it makes sense to try on the block. */
63 bitmap cfgcleanup_altered_bbs
;
65 /* Remove any fallthru edge from EV. Return true if an edge was removed. */
68 remove_fallthru_edge (vec
<edge
, va_gc
> *ev
)
73 FOR_EACH_EDGE (e
, ei
, ev
)
74 if ((e
->flags
& EDGE_FALLTHRU
) != 0)
76 if (e
->flags
& EDGE_COMPLEX
)
77 e
->flags
&= ~EDGE_FALLTHRU
;
79 remove_edge_and_dominated_blocks (e
);
86 /* Disconnect an unreachable block in the control expression starting
90 cleanup_control_expr_graph (basic_block bb
, gimple_stmt_iterator gsi
)
94 gimple stmt
= gsi_stmt (gsi
);
97 if (!single_succ_p (bb
))
104 fold_defer_overflow_warnings ();
105 loc
= gimple_location (stmt
);
106 switch (gimple_code (stmt
))
109 val
= fold_binary_loc (loc
, gimple_cond_code (stmt
),
111 gimple_cond_lhs (stmt
),
112 gimple_cond_rhs (stmt
));
116 val
= gimple_switch_index (stmt
);
122 taken_edge
= find_taken_edge (bb
, val
);
125 fold_undefer_and_ignore_overflow_warnings ();
129 /* Remove all the edges except the one that is always executed. */
131 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
137 fold_undefer_overflow_warnings
138 (true, stmt
, WARN_STRICT_OVERFLOW_CONDITIONAL
);
142 taken_edge
->probability
+= e
->probability
;
143 taken_edge
->count
+= e
->count
;
144 remove_edge_and_dominated_blocks (e
);
151 fold_undefer_and_ignore_overflow_warnings ();
152 if (taken_edge
->probability
> REG_BR_PROB_BASE
)
153 taken_edge
->probability
= REG_BR_PROB_BASE
;
156 taken_edge
= single_succ_edge (bb
);
158 bitmap_set_bit (cfgcleanup_altered_bbs
, bb
->index
);
159 gsi_remove (&gsi
, true);
160 taken_edge
->flags
= EDGE_FALLTHRU
;
165 /* Try to remove superfluous control structures in basic block BB. Returns
166 true if anything changes. */
169 cleanup_control_flow_bb (basic_block bb
)
171 gimple_stmt_iterator gsi
;
175 /* If the last statement of the block could throw and now cannot,
176 we need to prune cfg. */
177 retval
|= gimple_purge_dead_eh_edges (bb
);
179 gsi
= gsi_last_bb (bb
);
183 stmt
= gsi_stmt (gsi
);
185 if (gimple_code (stmt
) == GIMPLE_COND
186 || gimple_code (stmt
) == GIMPLE_SWITCH
)
187 retval
|= cleanup_control_expr_graph (bb
, gsi
);
188 else if (gimple_code (stmt
) == GIMPLE_GOTO
189 && TREE_CODE (gimple_goto_dest (stmt
)) == ADDR_EXPR
190 && (TREE_CODE (TREE_OPERAND (gimple_goto_dest (stmt
), 0))
193 /* If we had a computed goto which has a compile-time determinable
194 destination, then we can eliminate the goto. */
198 basic_block target_block
;
200 /* First look at all the outgoing edges. Delete any outgoing
201 edges which do not go to the right block. For the one
202 edge which goes to the right block, fix up its flags. */
203 label
= TREE_OPERAND (gimple_goto_dest (stmt
), 0);
204 target_block
= label_to_block (label
);
205 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
207 if (e
->dest
!= target_block
)
208 remove_edge_and_dominated_blocks (e
);
211 /* Turn off the EDGE_ABNORMAL flag. */
212 e
->flags
&= ~EDGE_ABNORMAL
;
214 /* And set EDGE_FALLTHRU. */
215 e
->flags
|= EDGE_FALLTHRU
;
220 bitmap_set_bit (cfgcleanup_altered_bbs
, bb
->index
);
221 bitmap_set_bit (cfgcleanup_altered_bbs
, target_block
->index
);
223 /* Remove the GOTO_EXPR as it is not needed. The CFG has all the
224 relevant information we need. */
225 gsi_remove (&gsi
, true);
229 /* Check for indirect calls that have been turned into
231 else if (is_gimple_call (stmt
)
232 && gimple_call_noreturn_p (stmt
)
233 && remove_fallthru_edge (bb
->succs
))
239 /* Return true if basic block BB does nothing except pass control
240 flow to another block and that we can safely insert a label at
241 the start of the successor block.
243 As a precondition, we require that BB be not equal to
247 tree_forwarder_block_p (basic_block bb
, bool phi_wanted
)
249 gimple_stmt_iterator gsi
;
252 /* BB must have a single outgoing edge. */
253 if (single_succ_p (bb
) != 1
254 /* If PHI_WANTED is false, BB must not have any PHI nodes.
255 Otherwise, BB must have PHI nodes. */
256 || gimple_seq_empty_p (phi_nodes (bb
)) == phi_wanted
257 /* BB may not be a predecessor of the exit block. */
258 || single_succ (bb
) == EXIT_BLOCK_PTR_FOR_FN (cfun
)
259 /* Nor should this be an infinite loop. */
260 || single_succ (bb
) == bb
261 /* BB may not have an abnormal outgoing edge. */
262 || (single_succ_edge (bb
)->flags
& EDGE_ABNORMAL
))
265 gcc_checking_assert (bb
!= ENTRY_BLOCK_PTR_FOR_FN (cfun
));
267 locus
= single_succ_edge (bb
)->goto_locus
;
269 /* There should not be an edge coming from entry, or an EH edge. */
274 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
275 if (e
->src
== ENTRY_BLOCK_PTR_FOR_FN (cfun
) || (e
->flags
& EDGE_EH
))
277 /* If goto_locus of any of the edges differs, prevent removing
278 the forwarder block for -O0. */
279 else if (optimize
== 0 && e
->goto_locus
!= locus
)
283 /* Now walk through the statements backward. We can ignore labels,
284 anything else means this is not a forwarder block. */
285 for (gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
287 gimple stmt
= gsi_stmt (gsi
);
289 switch (gimple_code (stmt
))
292 if (DECL_NONLOCAL (gimple_label_label (stmt
)))
294 if (optimize
== 0 && gimple_location (stmt
) != locus
)
298 /* ??? For now, hope there's a corresponding debug
299 assignment at the destination. */
311 /* Protect loop latches, headers and preheaders. */
312 if (bb
->loop_father
->header
== bb
)
314 dest
= EDGE_SUCC (bb
, 0)->dest
;
316 if (dest
->loop_father
->header
== dest
)
322 /* If all the PHI nodes in DEST have alternatives for E1 and E2 and
323 those alternatives are equal in each of the PHI nodes, then return
324 true, else return false. */
327 phi_alternatives_equal (basic_block dest
, edge e1
, edge e2
)
329 int n1
= e1
->dest_idx
;
330 int n2
= e2
->dest_idx
;
331 gimple_stmt_iterator gsi
;
333 for (gsi
= gsi_start_phis (dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
335 gimple phi
= gsi_stmt (gsi
);
336 tree val1
= gimple_phi_arg_def (phi
, n1
);
337 tree val2
= gimple_phi_arg_def (phi
, n2
);
339 gcc_assert (val1
!= NULL_TREE
);
340 gcc_assert (val2
!= NULL_TREE
);
342 if (!operand_equal_for_phi_arg_p (val1
, val2
))
349 /* Removes forwarder block BB. Returns false if this failed. */
352 remove_forwarder_block (basic_block bb
)
354 edge succ
= single_succ_edge (bb
), e
, s
;
355 basic_block dest
= succ
->dest
;
358 gimple_stmt_iterator gsi
, gsi_to
;
359 bool can_move_debug_stmts
;
361 /* We check for infinite loops already in tree_forwarder_block_p.
362 However it may happen that the infinite loop is created
363 afterwards due to removal of forwarders. */
367 /* If the destination block consists of a nonlocal label or is a
368 EH landing pad, do not merge it. */
369 label
= first_stmt (dest
);
371 && gimple_code (label
) == GIMPLE_LABEL
372 && (DECL_NONLOCAL (gimple_label_label (label
))
373 || EH_LANDING_PAD_NR (gimple_label_label (label
)) != 0))
376 /* If there is an abnormal edge to basic block BB, but not into
377 dest, problems might occur during removal of the phi node at out
378 of ssa due to overlapping live ranges of registers.
380 If there is an abnormal edge in DEST, the problems would occur
381 anyway since cleanup_dead_labels would then merge the labels for
382 two different eh regions, and rest of exception handling code
385 So if there is an abnormal edge to BB, proceed only if there is
386 no abnormal edge to DEST and there are no phi nodes in DEST. */
387 if (bb_has_abnormal_pred (bb
)
388 && (bb_has_abnormal_pred (dest
)
389 || !gimple_seq_empty_p (phi_nodes (dest
))))
392 /* If there are phi nodes in DEST, and some of the blocks that are
393 predecessors of BB are also predecessors of DEST, check that the
394 phi node arguments match. */
395 if (!gimple_seq_empty_p (phi_nodes (dest
)))
397 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
399 s
= find_edge (e
->src
, dest
);
403 if (!phi_alternatives_equal (dest
, succ
, s
))
408 can_move_debug_stmts
= MAY_HAVE_DEBUG_STMTS
&& single_pred_p (dest
);
410 /* Redirect the edges. */
411 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
)); )
413 bitmap_set_bit (cfgcleanup_altered_bbs
, e
->src
->index
);
415 if (e
->flags
& EDGE_ABNORMAL
)
417 /* If there is an abnormal edge, redirect it anyway, and
418 move the labels to the new block to make it legal. */
419 s
= redirect_edge_succ_nodup (e
, dest
);
422 s
= redirect_edge_and_branch (e
, dest
);
426 /* Create arguments for the phi nodes, since the edge was not
428 for (gsi
= gsi_start_phis (dest
);
432 gimple phi
= gsi_stmt (gsi
);
433 source_location l
= gimple_phi_arg_location_from_edge (phi
, succ
);
434 tree def
= gimple_phi_arg_def (phi
, succ
->dest_idx
);
435 add_phi_arg (phi
, unshare_expr (def
), s
, l
);
440 /* Move nonlocal labels and computed goto targets as well as user
441 defined labels and labels with an EH landing pad number to the
442 new block, so that the redirection of the abnormal edges works,
443 jump targets end up in a sane place and debug information for
444 labels is retained. */
445 gsi_to
= gsi_start_bb (dest
);
446 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); )
449 label
= gsi_stmt (gsi
);
450 if (is_gimple_debug (label
))
452 decl
= gimple_label_label (label
);
453 if (EH_LANDING_PAD_NR (decl
) != 0
454 || DECL_NONLOCAL (decl
)
455 || FORCED_LABEL (decl
)
456 || !DECL_ARTIFICIAL (decl
))
458 gsi_remove (&gsi
, false);
459 gsi_insert_before (&gsi_to
, label
, GSI_SAME_STMT
);
465 /* Move debug statements if the destination has a single predecessor. */
466 if (can_move_debug_stmts
)
468 gsi_to
= gsi_after_labels (dest
);
469 for (gsi
= gsi_after_labels (bb
); !gsi_end_p (gsi
); )
471 gimple debug
= gsi_stmt (gsi
);
472 if (!is_gimple_debug (debug
))
474 gsi_remove (&gsi
, false);
475 gsi_insert_before (&gsi_to
, debug
, GSI_SAME_STMT
);
479 bitmap_set_bit (cfgcleanup_altered_bbs
, dest
->index
);
481 /* Update the dominators. */
482 if (dom_info_available_p (CDI_DOMINATORS
))
484 basic_block dom
, dombb
, domdest
;
486 dombb
= get_immediate_dominator (CDI_DOMINATORS
, bb
);
487 domdest
= get_immediate_dominator (CDI_DOMINATORS
, dest
);
490 /* Shortcut to avoid calling (relatively expensive)
491 nearest_common_dominator unless necessary. */
495 dom
= nearest_common_dominator (CDI_DOMINATORS
, domdest
, dombb
);
497 set_immediate_dominator (CDI_DOMINATORS
, dest
, dom
);
500 /* And kill the forwarder block. */
501 delete_basic_block (bb
);
506 /* STMT is a call that has been discovered noreturn. Fixup the CFG
507 and remove LHS. Return true if something changed. */
510 fixup_noreturn_call (gimple stmt
)
512 basic_block bb
= gimple_bb (stmt
);
513 bool changed
= false;
515 if (gimple_call_builtin_p (stmt
, BUILT_IN_RETURN
))
518 /* First split basic block if stmt is not last. */
519 if (stmt
!= gsi_stmt (gsi_last_bb (bb
)))
520 split_block (bb
, stmt
);
522 changed
|= remove_fallthru_edge (bb
->succs
);
524 /* If there is LHS, remove it. */
525 if (gimple_call_lhs (stmt
))
527 tree op
= gimple_call_lhs (stmt
);
528 gimple_call_set_lhs (stmt
, NULL_TREE
);
530 /* We need to remove SSA name to avoid checking errors.
531 All uses are dominated by the noreturn and thus will
532 be removed afterwards.
533 We proactively remove affected non-PHI statements to avoid
534 fixup_cfg from trying to update them and crashing. */
535 if (TREE_CODE (op
) == SSA_NAME
)
538 imm_use_iterator iter
;
541 unsigned int bb_index
;
543 bitmap blocks
= BITMAP_ALLOC (NULL
);
545 FOR_EACH_IMM_USE_STMT (use_stmt
, iter
, op
)
547 if (gimple_code (use_stmt
) != GIMPLE_PHI
)
548 bitmap_set_bit (blocks
, gimple_bb (use_stmt
)->index
);
550 FOR_EACH_IMM_USE_ON_STMT (use_p
, iter
)
551 SET_USE (use_p
, error_mark_node
);
553 EXECUTE_IF_SET_IN_BITMAP (blocks
, 0, bb_index
, bi
)
554 delete_basic_block (BASIC_BLOCK_FOR_FN (cfun
, bb_index
));
555 BITMAP_FREE (blocks
);
556 release_ssa_name (op
);
561 /* Similarly remove VDEF if there is any. */
562 else if (gimple_vdef (stmt
))
568 /* Split basic blocks on calls in the middle of a basic block that are now
569 known not to return, and remove the unreachable code. */
572 split_bbs_on_noreturn_calls (void)
574 bool changed
= false;
578 /* Detect cases where a mid-block call is now known not to return. */
580 while (vec_safe_length (MODIFIED_NORETURN_CALLS (cfun
)))
582 stmt
= MODIFIED_NORETURN_CALLS (cfun
)->pop ();
583 bb
= gimple_bb (stmt
);
584 /* BB might be deleted at this point, so verify first
585 BB is present in the cfg. */
587 || bb
->index
< NUM_FIXED_BLOCKS
588 || bb
->index
>= last_basic_block_for_fn (cfun
)
589 || BASIC_BLOCK_FOR_FN (cfun
, bb
->index
) != bb
590 || !gimple_call_noreturn_p (stmt
))
593 changed
|= fixup_noreturn_call (stmt
);
599 /* Tries to cleanup cfg in basic block BB. Returns true if anything
603 cleanup_tree_cfg_bb (basic_block bb
)
605 bool retval
= cleanup_control_flow_bb (bb
);
607 if (tree_forwarder_block_p (bb
, false)
608 && remove_forwarder_block (bb
))
611 /* Merging the blocks may create new opportunities for folding
612 conditional branches (due to the elimination of single-valued PHI
614 if (single_succ_p (bb
)
615 && can_merge_blocks_p (bb
, single_succ (bb
)))
617 merge_blocks (bb
, single_succ (bb
));
624 /* Iterate the cfg cleanups, while anything changes. */
627 cleanup_tree_cfg_1 (void)
633 retval
|= split_bbs_on_noreturn_calls ();
635 /* Prepare the worklists of altered blocks. */
636 cfgcleanup_altered_bbs
= BITMAP_ALLOC (NULL
);
638 /* During forwarder block cleanup, we may redirect edges out of
639 SWITCH_EXPRs, which can get expensive. So we want to enable
640 recording of edge to CASE_LABEL_EXPR. */
641 start_recording_case_labels ();
643 /* Start by iterating over all basic blocks. We cannot use FOR_EACH_BB_FN,
644 since the basic blocks may get removed. */
645 n
= last_basic_block_for_fn (cfun
);
646 for (i
= NUM_FIXED_BLOCKS
; i
< n
; i
++)
648 bb
= BASIC_BLOCK_FOR_FN (cfun
, i
);
650 retval
|= cleanup_tree_cfg_bb (bb
);
653 /* Now process the altered blocks, as long as any are available. */
654 while (!bitmap_empty_p (cfgcleanup_altered_bbs
))
656 i
= bitmap_first_set_bit (cfgcleanup_altered_bbs
);
657 bitmap_clear_bit (cfgcleanup_altered_bbs
, i
);
658 if (i
< NUM_FIXED_BLOCKS
)
661 bb
= BASIC_BLOCK_FOR_FN (cfun
, i
);
665 retval
|= cleanup_tree_cfg_bb (bb
);
667 /* Rerun split_bbs_on_noreturn_calls, in case we have altered any noreturn
669 retval
|= split_bbs_on_noreturn_calls ();
672 end_recording_case_labels ();
673 BITMAP_FREE (cfgcleanup_altered_bbs
);
678 /* Remove unreachable blocks and other miscellaneous clean up work.
679 Return true if the flowgraph was modified, false otherwise. */
682 cleanup_tree_cfg_noloop (void)
686 timevar_push (TV_TREE_CLEANUP_CFG
);
688 /* Iterate until there are no more cleanups left to do. If any
689 iteration changed the flowgraph, set CHANGED to true.
691 If dominance information is available, there cannot be any unreachable
693 if (!dom_info_available_p (CDI_DOMINATORS
))
695 changed
= delete_unreachable_blocks ();
696 calculate_dominance_info (CDI_DOMINATORS
);
700 #ifdef ENABLE_CHECKING
701 verify_dominators (CDI_DOMINATORS
);
706 changed
|= cleanup_tree_cfg_1 ();
708 gcc_assert (dom_info_available_p (CDI_DOMINATORS
));
711 #ifdef ENABLE_CHECKING
715 timevar_pop (TV_TREE_CLEANUP_CFG
);
717 if (changed
&& current_loops
)
718 loops_state_set (LOOPS_NEED_FIXUP
);
723 /* Repairs loop structures. */
726 repair_loop_structures (void)
729 unsigned n_new_loops
;
731 calculate_dominance_info (CDI_DOMINATORS
);
733 timevar_push (TV_REPAIR_LOOPS
);
734 changed_bbs
= BITMAP_ALLOC (NULL
);
735 n_new_loops
= fix_loop_structure (changed_bbs
);
737 /* This usually does nothing. But sometimes parts of cfg that originally
738 were inside a loop get out of it due to edge removal (since they
739 become unreachable by back edges from latch). Also a former
740 irreducible loop can become reducible - in this case force a full
741 rewrite into loop-closed SSA form. */
742 if (loops_state_satisfies_p (LOOP_CLOSED_SSA
))
743 rewrite_into_loop_closed_ssa (n_new_loops
? NULL
: changed_bbs
,
746 BITMAP_FREE (changed_bbs
);
748 #ifdef ENABLE_CHECKING
749 verify_loop_structure ();
753 timevar_pop (TV_REPAIR_LOOPS
);
756 /* Cleanup cfg and repair loop structures. */
759 cleanup_tree_cfg (void)
761 bool changed
= cleanup_tree_cfg_noloop ();
763 if (current_loops
!= NULL
764 && loops_state_satisfies_p (LOOPS_NEED_FIXUP
))
765 repair_loop_structures ();
770 /* Tries to merge the PHI nodes at BB into those at BB's sole successor.
771 Returns true if successful. */
774 remove_forwarder_block_with_phi (basic_block bb
)
776 edge succ
= single_succ_edge (bb
);
777 basic_block dest
= succ
->dest
;
779 basic_block dombb
, domdest
, dom
;
781 /* We check for infinite loops already in tree_forwarder_block_p.
782 However it may happen that the infinite loop is created
783 afterwards due to removal of forwarders. */
787 /* If the destination block consists of a nonlocal label, do not
789 label
= first_stmt (dest
);
791 && gimple_code (label
) == GIMPLE_LABEL
792 && DECL_NONLOCAL (gimple_label_label (label
)))
795 /* Redirect each incoming edge to BB to DEST. */
796 while (EDGE_COUNT (bb
->preds
) > 0)
798 edge e
= EDGE_PRED (bb
, 0), s
;
799 gimple_stmt_iterator gsi
;
801 s
= find_edge (e
->src
, dest
);
804 /* We already have an edge S from E->src to DEST. If S and
805 E->dest's sole successor edge have the same PHI arguments
806 at DEST, redirect S to DEST. */
807 if (phi_alternatives_equal (dest
, s
, succ
))
809 e
= redirect_edge_and_branch (e
, dest
);
810 redirect_edge_var_map_clear (e
);
814 /* PHI arguments are different. Create a forwarder block by
815 splitting E so that we can merge PHI arguments on E to
817 e
= single_succ_edge (split_edge (e
));
820 s
= redirect_edge_and_branch (e
, dest
);
822 /* redirect_edge_and_branch must not create a new edge. */
825 /* Add to the PHI nodes at DEST each PHI argument removed at the
827 for (gsi
= gsi_start_phis (dest
);
831 gimple phi
= gsi_stmt (gsi
);
832 tree def
= gimple_phi_arg_def (phi
, succ
->dest_idx
);
833 source_location locus
= gimple_phi_arg_location_from_edge (phi
, succ
);
835 if (TREE_CODE (def
) == SSA_NAME
)
837 edge_var_map_vector
*head
;
841 /* If DEF is one of the results of PHI nodes removed during
842 redirection, replace it with the PHI argument that used
844 head
= redirect_edge_var_map_vector (e
);
845 FOR_EACH_VEC_SAFE_ELT (head
, i
, vm
)
847 tree old_arg
= redirect_edge_var_map_result (vm
);
848 tree new_arg
= redirect_edge_var_map_def (vm
);
853 locus
= redirect_edge_var_map_location (vm
);
859 add_phi_arg (phi
, def
, s
, locus
);
862 redirect_edge_var_map_clear (e
);
865 /* Update the dominators. */
866 dombb
= get_immediate_dominator (CDI_DOMINATORS
, bb
);
867 domdest
= get_immediate_dominator (CDI_DOMINATORS
, dest
);
870 /* Shortcut to avoid calling (relatively expensive)
871 nearest_common_dominator unless necessary. */
875 dom
= nearest_common_dominator (CDI_DOMINATORS
, domdest
, dombb
);
877 set_immediate_dominator (CDI_DOMINATORS
, dest
, dom
);
879 /* Remove BB since all of BB's incoming edges have been redirected
881 delete_basic_block (bb
);
886 /* This pass merges PHI nodes if one feeds into another. For example,
887 suppose we have the following:
894 # tem_6 = PHI <tem_17(8), tem_23(7)>;
897 # tem_3 = PHI <tem_6(9), tem_2(5)>;
900 Then we merge the first PHI node into the second one like so:
907 # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
912 merge_phi_nodes (void)
914 basic_block
*worklist
= XNEWVEC (basic_block
, n_basic_blocks_for_fn (cfun
));
915 basic_block
*current
= worklist
;
918 calculate_dominance_info (CDI_DOMINATORS
);
920 /* Find all PHI nodes that we may be able to merge. */
921 FOR_EACH_BB_FN (bb
, cfun
)
925 /* Look for a forwarder block with PHI nodes. */
926 if (!tree_forwarder_block_p (bb
, true))
929 dest
= single_succ (bb
);
931 /* We have to feed into another basic block with PHI
933 if (gimple_seq_empty_p (phi_nodes (dest
))
934 /* We don't want to deal with a basic block with
936 || bb_has_abnormal_pred (bb
))
939 if (!dominated_by_p (CDI_DOMINATORS
, dest
, bb
))
941 /* If BB does not dominate DEST, then the PHI nodes at
942 DEST must be the only users of the results of the PHI
948 gimple_stmt_iterator gsi
;
949 unsigned int dest_idx
= single_succ_edge (bb
)->dest_idx
;
951 /* BB dominates DEST. There may be many users of the PHI
952 nodes in BB. However, there is still a trivial case we
953 can handle. If the result of every PHI in BB is used
954 only by a PHI in DEST, then we can trivially merge the
955 PHI nodes from BB into DEST. */
956 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
959 gimple phi
= gsi_stmt (gsi
);
960 tree result
= gimple_phi_result (phi
);
961 use_operand_p imm_use
;
964 /* If the PHI's result is never used, then we can just
966 if (has_zero_uses (result
))
969 /* Get the single use of the result of this PHI node. */
970 if (!single_imm_use (result
, &imm_use
, &use_stmt
)
971 || gimple_code (use_stmt
) != GIMPLE_PHI
972 || gimple_bb (use_stmt
) != dest
973 || gimple_phi_arg_def (use_stmt
, dest_idx
) != result
)
977 /* If the loop above iterated through all the PHI nodes
978 in BB, then we can merge the PHIs from BB into DEST. */
984 /* Now let's drain WORKLIST. */
985 bool changed
= false;
986 while (current
!= worklist
)
989 changed
|= remove_forwarder_block_with_phi (bb
);
993 /* Removing forwarder blocks can cause formerly irreducible loops
994 to become reducible if we merged two entry blocks. */
997 loops_state_set (LOOPS_NEED_FIXUP
);
1003 gate_merge_phi (void)
1010 const pass_data pass_data_merge_phi
=
1012 GIMPLE_PASS
, /* type */
1013 "mergephi", /* name */
1014 OPTGROUP_NONE
, /* optinfo_flags */
1015 true, /* has_gate */
1016 true, /* has_execute */
1017 TV_TREE_MERGE_PHI
, /* tv_id */
1018 ( PROP_cfg
| PROP_ssa
), /* properties_required */
1019 0, /* properties_provided */
1020 0, /* properties_destroyed */
1021 0, /* todo_flags_start */
1022 TODO_verify_ssa
, /* todo_flags_finish */
1025 class pass_merge_phi
: public gimple_opt_pass
1028 pass_merge_phi (gcc::context
*ctxt
)
1029 : gimple_opt_pass (pass_data_merge_phi
, ctxt
)
1032 /* opt_pass methods: */
1033 opt_pass
* clone () { return new pass_merge_phi (m_ctxt
); }
1034 bool gate () { return gate_merge_phi (); }
1035 unsigned int execute () { return merge_phi_nodes (); }
1037 }; // class pass_merge_phi
1042 make_pass_merge_phi (gcc::context
*ctxt
)
1044 return new pass_merge_phi (ctxt
);
1047 /* Pass: cleanup the CFG just before expanding trees to RTL.
1048 This is just a round of label cleanups and case node grouping
1049 because after the tree optimizers have run such cleanups may
1053 execute_cleanup_cfg_post_optimizing (void)
1055 unsigned int todo
= 0;
1056 if (cleanup_tree_cfg ())
1057 todo
|= TODO_update_ssa
;
1058 maybe_remove_unreachable_handlers ();
1059 cleanup_dead_labels ();
1060 group_case_labels ();
1061 if ((flag_compare_debug_opt
|| flag_compare_debug
)
1062 && flag_dump_final_insns
)
1064 FILE *final_output
= fopen (flag_dump_final_insns
, "a");
1068 error ("could not open final insn dump file %qs: %m",
1069 flag_dump_final_insns
);
1070 flag_dump_final_insns
= NULL
;
1074 int save_unnumbered
= flag_dump_unnumbered
;
1075 int save_noaddr
= flag_dump_noaddr
;
1077 flag_dump_noaddr
= flag_dump_unnumbered
= 1;
1078 fprintf (final_output
, "\n");
1079 dump_enumerated_decls (final_output
, dump_flags
| TDF_NOUID
);
1080 flag_dump_noaddr
= save_noaddr
;
1081 flag_dump_unnumbered
= save_unnumbered
;
1082 if (fclose (final_output
))
1084 error ("could not close final insn dump file %qs: %m",
1085 flag_dump_final_insns
);
1086 flag_dump_final_insns
= NULL
;
1095 const pass_data pass_data_cleanup_cfg_post_optimizing
=
1097 GIMPLE_PASS
, /* type */
1098 "optimized", /* name */
1099 OPTGROUP_NONE
, /* optinfo_flags */
1100 false, /* has_gate */
1101 true, /* has_execute */
1102 TV_TREE_CLEANUP_CFG
, /* tv_id */
1103 PROP_cfg
, /* properties_required */
1104 0, /* properties_provided */
1105 0, /* properties_destroyed */
1106 0, /* todo_flags_start */
1107 TODO_remove_unused_locals
, /* todo_flags_finish */
1110 class pass_cleanup_cfg_post_optimizing
: public gimple_opt_pass
1113 pass_cleanup_cfg_post_optimizing (gcc::context
*ctxt
)
1114 : gimple_opt_pass (pass_data_cleanup_cfg_post_optimizing
, ctxt
)
1117 /* opt_pass methods: */
1118 unsigned int execute () {
1119 return execute_cleanup_cfg_post_optimizing ();
1122 }; // class pass_cleanup_cfg_post_optimizing
1127 make_pass_cleanup_cfg_post_optimizing (gcc::context
*ctxt
)
1129 return new pass_cleanup_cfg_post_optimizing (ctxt
);