1 /* CFG cleanup for trees.
2 Copyright (C) 2001-2013 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"
31 #include "langhooks.h"
33 #include "gimple-ssa.h"
35 #include "tree-phinodes.h"
36 #include "ssa-iterators.h"
37 #include "tree-ssanames.h"
38 #include "tree-ssa-loop-manip.h"
41 #include "tree-pass.h"
45 #include "tree-ssa-propagate.h"
46 #include "tree-scalar-evolution.h"
48 /* The set of blocks in that at least one of the following changes happened:
49 -- the statement at the end of the block was changed
50 -- the block was newly created
51 -- the set of the predecessors of the block changed
52 -- the set of the successors of the block changed
53 ??? Maybe we could track these changes separately, since they determine
54 what cleanups it makes sense to try on the block. */
55 bitmap cfgcleanup_altered_bbs
;
57 /* Remove any fallthru edge from EV. Return true if an edge was removed. */
60 remove_fallthru_edge (vec
<edge
, va_gc
> *ev
)
65 FOR_EACH_EDGE (e
, ei
, ev
)
66 if ((e
->flags
& EDGE_FALLTHRU
) != 0)
68 if (e
->flags
& EDGE_COMPLEX
)
69 e
->flags
&= ~EDGE_FALLTHRU
;
71 remove_edge_and_dominated_blocks (e
);
78 /* Disconnect an unreachable block in the control expression starting
82 cleanup_control_expr_graph (basic_block bb
, gimple_stmt_iterator gsi
)
86 gimple stmt
= gsi_stmt (gsi
);
89 if (!single_succ_p (bb
))
96 fold_defer_overflow_warnings ();
97 loc
= gimple_location (stmt
);
98 switch (gimple_code (stmt
))
101 val
= fold_binary_loc (loc
, gimple_cond_code (stmt
),
103 gimple_cond_lhs (stmt
),
104 gimple_cond_rhs (stmt
));
108 val
= gimple_switch_index (stmt
);
114 taken_edge
= find_taken_edge (bb
, val
);
117 fold_undefer_and_ignore_overflow_warnings ();
121 /* Remove all the edges except the one that is always executed. */
123 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
129 fold_undefer_overflow_warnings
130 (true, stmt
, WARN_STRICT_OVERFLOW_CONDITIONAL
);
134 taken_edge
->probability
+= e
->probability
;
135 taken_edge
->count
+= e
->count
;
136 remove_edge_and_dominated_blocks (e
);
143 fold_undefer_and_ignore_overflow_warnings ();
144 if (taken_edge
->probability
> REG_BR_PROB_BASE
)
145 taken_edge
->probability
= REG_BR_PROB_BASE
;
148 taken_edge
= single_succ_edge (bb
);
150 bitmap_set_bit (cfgcleanup_altered_bbs
, bb
->index
);
151 gsi_remove (&gsi
, true);
152 taken_edge
->flags
= EDGE_FALLTHRU
;
157 /* Try to remove superfluous control structures in basic block BB. Returns
158 true if anything changes. */
161 cleanup_control_flow_bb (basic_block bb
)
163 gimple_stmt_iterator gsi
;
167 /* If the last statement of the block could throw and now cannot,
168 we need to prune cfg. */
169 retval
|= gimple_purge_dead_eh_edges (bb
);
171 gsi
= gsi_last_bb (bb
);
175 stmt
= gsi_stmt (gsi
);
177 if (gimple_code (stmt
) == GIMPLE_COND
178 || gimple_code (stmt
) == GIMPLE_SWITCH
)
179 retval
|= cleanup_control_expr_graph (bb
, gsi
);
180 else if (gimple_code (stmt
) == GIMPLE_GOTO
181 && TREE_CODE (gimple_goto_dest (stmt
)) == ADDR_EXPR
182 && (TREE_CODE (TREE_OPERAND (gimple_goto_dest (stmt
), 0))
185 /* If we had a computed goto which has a compile-time determinable
186 destination, then we can eliminate the goto. */
190 basic_block target_block
;
192 /* First look at all the outgoing edges. Delete any outgoing
193 edges which do not go to the right block. For the one
194 edge which goes to the right block, fix up its flags. */
195 label
= TREE_OPERAND (gimple_goto_dest (stmt
), 0);
196 target_block
= label_to_block (label
);
197 for (ei
= ei_start (bb
->succs
); (e
= ei_safe_edge (ei
)); )
199 if (e
->dest
!= target_block
)
200 remove_edge_and_dominated_blocks (e
);
203 /* Turn off the EDGE_ABNORMAL flag. */
204 e
->flags
&= ~EDGE_ABNORMAL
;
206 /* And set EDGE_FALLTHRU. */
207 e
->flags
|= EDGE_FALLTHRU
;
212 bitmap_set_bit (cfgcleanup_altered_bbs
, bb
->index
);
213 bitmap_set_bit (cfgcleanup_altered_bbs
, target_block
->index
);
215 /* Remove the GOTO_EXPR as it is not needed. The CFG has all the
216 relevant information we need. */
217 gsi_remove (&gsi
, true);
221 /* Check for indirect calls that have been turned into
223 else if (is_gimple_call (stmt
)
224 && gimple_call_noreturn_p (stmt
)
225 && remove_fallthru_edge (bb
->succs
))
231 /* Return true if basic block BB does nothing except pass control
232 flow to another block and that we can safely insert a label at
233 the start of the successor block.
235 As a precondition, we require that BB be not equal to
239 tree_forwarder_block_p (basic_block bb
, bool phi_wanted
)
241 gimple_stmt_iterator gsi
;
244 /* BB must have a single outgoing edge. */
245 if (single_succ_p (bb
) != 1
246 /* If PHI_WANTED is false, BB must not have any PHI nodes.
247 Otherwise, BB must have PHI nodes. */
248 || gimple_seq_empty_p (phi_nodes (bb
)) == phi_wanted
249 /* BB may not be a predecessor of EXIT_BLOCK_PTR. */
250 || single_succ (bb
) == EXIT_BLOCK_PTR
251 /* Nor should this be an infinite loop. */
252 || single_succ (bb
) == bb
253 /* BB may not have an abnormal outgoing edge. */
254 || (single_succ_edge (bb
)->flags
& EDGE_ABNORMAL
))
257 gcc_checking_assert (bb
!= ENTRY_BLOCK_PTR
);
259 locus
= single_succ_edge (bb
)->goto_locus
;
261 /* There should not be an edge coming from entry, or an EH edge. */
266 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
267 if (e
->src
== ENTRY_BLOCK_PTR
|| (e
->flags
& EDGE_EH
))
269 /* If goto_locus of any of the edges differs, prevent removing
270 the forwarder block for -O0. */
271 else if (optimize
== 0 && e
->goto_locus
!= locus
)
275 /* Now walk through the statements backward. We can ignore labels,
276 anything else means this is not a forwarder block. */
277 for (gsi
= gsi_last_bb (bb
); !gsi_end_p (gsi
); gsi_prev (&gsi
))
279 gimple stmt
= gsi_stmt (gsi
);
281 switch (gimple_code (stmt
))
284 if (DECL_NONLOCAL (gimple_label_label (stmt
)))
286 if (optimize
== 0 && gimple_location (stmt
) != locus
)
290 /* ??? For now, hope there's a corresponding debug
291 assignment at the destination. */
303 /* Protect loop latches, headers and preheaders. */
304 if (bb
->loop_father
->header
== bb
)
306 dest
= EDGE_SUCC (bb
, 0)->dest
;
308 if (dest
->loop_father
->header
== dest
)
314 /* If all the PHI nodes in DEST have alternatives for E1 and E2 and
315 those alternatives are equal in each of the PHI nodes, then return
316 true, else return false. */
319 phi_alternatives_equal (basic_block dest
, edge e1
, edge e2
)
321 int n1
= e1
->dest_idx
;
322 int n2
= e2
->dest_idx
;
323 gimple_stmt_iterator gsi
;
325 for (gsi
= gsi_start_phis (dest
); !gsi_end_p (gsi
); gsi_next (&gsi
))
327 gimple phi
= gsi_stmt (gsi
);
328 tree val1
= gimple_phi_arg_def (phi
, n1
);
329 tree val2
= gimple_phi_arg_def (phi
, n2
);
331 gcc_assert (val1
!= NULL_TREE
);
332 gcc_assert (val2
!= NULL_TREE
);
334 if (!operand_equal_for_phi_arg_p (val1
, val2
))
341 /* Removes forwarder block BB. Returns false if this failed. */
344 remove_forwarder_block (basic_block bb
)
346 edge succ
= single_succ_edge (bb
), e
, s
;
347 basic_block dest
= succ
->dest
;
350 gimple_stmt_iterator gsi
, gsi_to
;
351 bool can_move_debug_stmts
;
353 /* We check for infinite loops already in tree_forwarder_block_p.
354 However it may happen that the infinite loop is created
355 afterwards due to removal of forwarders. */
359 /* If the destination block consists of a nonlocal label or is a
360 EH landing pad, do not merge it. */
361 label
= first_stmt (dest
);
363 && gimple_code (label
) == GIMPLE_LABEL
364 && (DECL_NONLOCAL (gimple_label_label (label
))
365 || EH_LANDING_PAD_NR (gimple_label_label (label
)) != 0))
368 /* If there is an abnormal edge to basic block BB, but not into
369 dest, problems might occur during removal of the phi node at out
370 of ssa due to overlapping live ranges of registers.
372 If there is an abnormal edge in DEST, the problems would occur
373 anyway since cleanup_dead_labels would then merge the labels for
374 two different eh regions, and rest of exception handling code
377 So if there is an abnormal edge to BB, proceed only if there is
378 no abnormal edge to DEST and there are no phi nodes in DEST. */
379 if (bb_has_abnormal_pred (bb
)
380 && (bb_has_abnormal_pred (dest
)
381 || !gimple_seq_empty_p (phi_nodes (dest
))))
384 /* If there are phi nodes in DEST, and some of the blocks that are
385 predecessors of BB are also predecessors of DEST, check that the
386 phi node arguments match. */
387 if (!gimple_seq_empty_p (phi_nodes (dest
)))
389 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
391 s
= find_edge (e
->src
, dest
);
395 if (!phi_alternatives_equal (dest
, succ
, s
))
400 can_move_debug_stmts
= MAY_HAVE_DEBUG_STMTS
&& single_pred_p (dest
);
402 /* Redirect the edges. */
403 for (ei
= ei_start (bb
->preds
); (e
= ei_safe_edge (ei
)); )
405 bitmap_set_bit (cfgcleanup_altered_bbs
, e
->src
->index
);
407 if (e
->flags
& EDGE_ABNORMAL
)
409 /* If there is an abnormal edge, redirect it anyway, and
410 move the labels to the new block to make it legal. */
411 s
= redirect_edge_succ_nodup (e
, dest
);
414 s
= redirect_edge_and_branch (e
, dest
);
418 /* Create arguments for the phi nodes, since the edge was not
420 for (gsi
= gsi_start_phis (dest
);
424 gimple phi
= gsi_stmt (gsi
);
425 source_location l
= gimple_phi_arg_location_from_edge (phi
, succ
);
426 tree def
= gimple_phi_arg_def (phi
, succ
->dest_idx
);
427 add_phi_arg (phi
, unshare_expr (def
), s
, l
);
432 /* Move nonlocal labels and computed goto targets as well as user
433 defined labels and labels with an EH landing pad number to the
434 new block, so that the redirection of the abnormal edges works,
435 jump targets end up in a sane place and debug information for
436 labels is retained. */
437 gsi_to
= gsi_start_bb (dest
);
438 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); )
441 label
= gsi_stmt (gsi
);
442 if (is_gimple_debug (label
))
444 decl
= gimple_label_label (label
);
445 if (EH_LANDING_PAD_NR (decl
) != 0
446 || DECL_NONLOCAL (decl
)
447 || FORCED_LABEL (decl
)
448 || !DECL_ARTIFICIAL (decl
))
450 gsi_remove (&gsi
, false);
451 gsi_insert_before (&gsi_to
, label
, GSI_SAME_STMT
);
457 /* Move debug statements if the destination has a single predecessor. */
458 if (can_move_debug_stmts
)
460 gsi_to
= gsi_after_labels (dest
);
461 for (gsi
= gsi_after_labels (bb
); !gsi_end_p (gsi
); )
463 gimple debug
= gsi_stmt (gsi
);
464 if (!is_gimple_debug (debug
))
466 gsi_remove (&gsi
, false);
467 gsi_insert_before (&gsi_to
, debug
, GSI_SAME_STMT
);
471 bitmap_set_bit (cfgcleanup_altered_bbs
, dest
->index
);
473 /* Update the dominators. */
474 if (dom_info_available_p (CDI_DOMINATORS
))
476 basic_block dom
, dombb
, domdest
;
478 dombb
= get_immediate_dominator (CDI_DOMINATORS
, bb
);
479 domdest
= get_immediate_dominator (CDI_DOMINATORS
, dest
);
482 /* Shortcut to avoid calling (relatively expensive)
483 nearest_common_dominator unless necessary. */
487 dom
= nearest_common_dominator (CDI_DOMINATORS
, domdest
, dombb
);
489 set_immediate_dominator (CDI_DOMINATORS
, dest
, dom
);
492 /* And kill the forwarder block. */
493 delete_basic_block (bb
);
498 /* STMT is a call that has been discovered noreturn. Fixup the CFG
499 and remove LHS. Return true if something changed. */
502 fixup_noreturn_call (gimple stmt
)
504 basic_block bb
= gimple_bb (stmt
);
505 bool changed
= false;
507 if (gimple_call_builtin_p (stmt
, BUILT_IN_RETURN
))
510 /* First split basic block if stmt is not last. */
511 if (stmt
!= gsi_stmt (gsi_last_bb (bb
)))
512 split_block (bb
, stmt
);
514 changed
|= remove_fallthru_edge (bb
->succs
);
516 /* If there is LHS, remove it. */
517 if (gimple_call_lhs (stmt
))
519 tree op
= gimple_call_lhs (stmt
);
520 gimple_call_set_lhs (stmt
, NULL_TREE
);
522 /* We need to remove SSA name to avoid checking errors.
523 All uses are dominated by the noreturn and thus will
524 be removed afterwards.
525 We proactively remove affected non-PHI statements to avoid
526 fixup_cfg from trying to update them and crashing. */
527 if (TREE_CODE (op
) == SSA_NAME
)
530 imm_use_iterator iter
;
533 unsigned int bb_index
;
535 bitmap blocks
= BITMAP_ALLOC (NULL
);
537 FOR_EACH_IMM_USE_STMT (use_stmt
, iter
, op
)
539 if (gimple_code (use_stmt
) != GIMPLE_PHI
)
540 bitmap_set_bit (blocks
, gimple_bb (use_stmt
)->index
);
542 FOR_EACH_IMM_USE_ON_STMT (use_p
, iter
)
543 SET_USE (use_p
, error_mark_node
);
545 EXECUTE_IF_SET_IN_BITMAP (blocks
, 0, bb_index
, bi
)
546 delete_basic_block (BASIC_BLOCK (bb_index
));
547 BITMAP_FREE (blocks
);
548 release_ssa_name (op
);
553 /* Similarly remove VDEF if there is any. */
554 else if (gimple_vdef (stmt
))
560 /* Split basic blocks on calls in the middle of a basic block that are now
561 known not to return, and remove the unreachable code. */
564 split_bbs_on_noreturn_calls (void)
566 bool changed
= false;
570 /* Detect cases where a mid-block call is now known not to return. */
572 while (vec_safe_length (MODIFIED_NORETURN_CALLS (cfun
)))
574 stmt
= MODIFIED_NORETURN_CALLS (cfun
)->pop ();
575 bb
= gimple_bb (stmt
);
576 /* BB might be deleted at this point, so verify first
577 BB is present in the cfg. */
579 || bb
->index
< NUM_FIXED_BLOCKS
580 || bb
->index
>= last_basic_block
581 || BASIC_BLOCK (bb
->index
) != bb
582 || !gimple_call_noreturn_p (stmt
))
585 changed
|= fixup_noreturn_call (stmt
);
591 /* Tries to cleanup cfg in basic block BB. Returns true if anything
595 cleanup_tree_cfg_bb (basic_block bb
)
597 bool retval
= cleanup_control_flow_bb (bb
);
599 if (tree_forwarder_block_p (bb
, false)
600 && remove_forwarder_block (bb
))
603 /* Merging the blocks may create new opportunities for folding
604 conditional branches (due to the elimination of single-valued PHI
606 if (single_succ_p (bb
)
607 && can_merge_blocks_p (bb
, single_succ (bb
)))
609 merge_blocks (bb
, single_succ (bb
));
616 /* Iterate the cfg cleanups, while anything changes. */
619 cleanup_tree_cfg_1 (void)
625 retval
|= split_bbs_on_noreturn_calls ();
627 /* Prepare the worklists of altered blocks. */
628 cfgcleanup_altered_bbs
= BITMAP_ALLOC (NULL
);
630 /* During forwarder block cleanup, we may redirect edges out of
631 SWITCH_EXPRs, which can get expensive. So we want to enable
632 recording of edge to CASE_LABEL_EXPR. */
633 start_recording_case_labels ();
635 /* Start by iterating over all basic blocks. We cannot use FOR_EACH_BB,
636 since the basic blocks may get removed. */
637 n
= last_basic_block
;
638 for (i
= NUM_FIXED_BLOCKS
; i
< n
; i
++)
640 bb
= BASIC_BLOCK (i
);
642 retval
|= cleanup_tree_cfg_bb (bb
);
645 /* Now process the altered blocks, as long as any are available. */
646 while (!bitmap_empty_p (cfgcleanup_altered_bbs
))
648 i
= bitmap_first_set_bit (cfgcleanup_altered_bbs
);
649 bitmap_clear_bit (cfgcleanup_altered_bbs
, i
);
650 if (i
< NUM_FIXED_BLOCKS
)
653 bb
= BASIC_BLOCK (i
);
657 retval
|= cleanup_tree_cfg_bb (bb
);
659 /* Rerun split_bbs_on_noreturn_calls, in case we have altered any noreturn
661 retval
|= split_bbs_on_noreturn_calls ();
664 end_recording_case_labels ();
665 BITMAP_FREE (cfgcleanup_altered_bbs
);
670 /* Remove unreachable blocks and other miscellaneous clean up work.
671 Return true if the flowgraph was modified, false otherwise. */
674 cleanup_tree_cfg_noloop (void)
678 timevar_push (TV_TREE_CLEANUP_CFG
);
680 /* Iterate until there are no more cleanups left to do. If any
681 iteration changed the flowgraph, set CHANGED to true.
683 If dominance information is available, there cannot be any unreachable
685 if (!dom_info_available_p (CDI_DOMINATORS
))
687 changed
= delete_unreachable_blocks ();
688 calculate_dominance_info (CDI_DOMINATORS
);
692 #ifdef ENABLE_CHECKING
693 verify_dominators (CDI_DOMINATORS
);
698 changed
|= cleanup_tree_cfg_1 ();
700 gcc_assert (dom_info_available_p (CDI_DOMINATORS
));
703 #ifdef ENABLE_CHECKING
707 timevar_pop (TV_TREE_CLEANUP_CFG
);
709 if (changed
&& current_loops
)
710 loops_state_set (LOOPS_NEED_FIXUP
);
715 /* Repairs loop structures. */
718 repair_loop_structures (void)
721 unsigned n_new_loops
;
723 calculate_dominance_info (CDI_DOMINATORS
);
725 timevar_push (TV_REPAIR_LOOPS
);
726 changed_bbs
= BITMAP_ALLOC (NULL
);
727 n_new_loops
= fix_loop_structure (changed_bbs
);
729 /* This usually does nothing. But sometimes parts of cfg that originally
730 were inside a loop get out of it due to edge removal (since they
731 become unreachable by back edges from latch). Also a former
732 irreducible loop can become reducible - in this case force a full
733 rewrite into loop-closed SSA form. */
734 if (loops_state_satisfies_p (LOOP_CLOSED_SSA
))
735 rewrite_into_loop_closed_ssa (n_new_loops
? NULL
: changed_bbs
,
738 BITMAP_FREE (changed_bbs
);
740 #ifdef ENABLE_CHECKING
741 verify_loop_structure ();
745 timevar_pop (TV_REPAIR_LOOPS
);
748 /* Cleanup cfg and repair loop structures. */
751 cleanup_tree_cfg (void)
753 bool changed
= cleanup_tree_cfg_noloop ();
755 if (current_loops
!= NULL
756 && loops_state_satisfies_p (LOOPS_NEED_FIXUP
))
757 repair_loop_structures ();
762 /* Tries to merge the PHI nodes at BB into those at BB's sole successor.
763 Returns true if successful. */
766 remove_forwarder_block_with_phi (basic_block bb
)
768 edge succ
= single_succ_edge (bb
);
769 basic_block dest
= succ
->dest
;
771 basic_block dombb
, domdest
, dom
;
773 /* We check for infinite loops already in tree_forwarder_block_p.
774 However it may happen that the infinite loop is created
775 afterwards due to removal of forwarders. */
779 /* If the destination block consists of a nonlocal label, do not
781 label
= first_stmt (dest
);
783 && gimple_code (label
) == GIMPLE_LABEL
784 && DECL_NONLOCAL (gimple_label_label (label
)))
787 /* Redirect each incoming edge to BB to DEST. */
788 while (EDGE_COUNT (bb
->preds
) > 0)
790 edge e
= EDGE_PRED (bb
, 0), s
;
791 gimple_stmt_iterator gsi
;
793 s
= find_edge (e
->src
, dest
);
796 /* We already have an edge S from E->src to DEST. If S and
797 E->dest's sole successor edge have the same PHI arguments
798 at DEST, redirect S to DEST. */
799 if (phi_alternatives_equal (dest
, s
, succ
))
801 e
= redirect_edge_and_branch (e
, dest
);
802 redirect_edge_var_map_clear (e
);
806 /* PHI arguments are different. Create a forwarder block by
807 splitting E so that we can merge PHI arguments on E to
809 e
= single_succ_edge (split_edge (e
));
812 s
= redirect_edge_and_branch (e
, dest
);
814 /* redirect_edge_and_branch must not create a new edge. */
817 /* Add to the PHI nodes at DEST each PHI argument removed at the
819 for (gsi
= gsi_start_phis (dest
);
823 gimple phi
= gsi_stmt (gsi
);
824 tree def
= gimple_phi_arg_def (phi
, succ
->dest_idx
);
825 source_location locus
= gimple_phi_arg_location_from_edge (phi
, succ
);
827 if (TREE_CODE (def
) == SSA_NAME
)
829 edge_var_map_vector
*head
;
833 /* If DEF is one of the results of PHI nodes removed during
834 redirection, replace it with the PHI argument that used
836 head
= redirect_edge_var_map_vector (e
);
837 FOR_EACH_VEC_SAFE_ELT (head
, i
, vm
)
839 tree old_arg
= redirect_edge_var_map_result (vm
);
840 tree new_arg
= redirect_edge_var_map_def (vm
);
845 locus
= redirect_edge_var_map_location (vm
);
851 add_phi_arg (phi
, def
, s
, locus
);
854 redirect_edge_var_map_clear (e
);
857 /* Update the dominators. */
858 dombb
= get_immediate_dominator (CDI_DOMINATORS
, bb
);
859 domdest
= get_immediate_dominator (CDI_DOMINATORS
, dest
);
862 /* Shortcut to avoid calling (relatively expensive)
863 nearest_common_dominator unless necessary. */
867 dom
= nearest_common_dominator (CDI_DOMINATORS
, domdest
, dombb
);
869 set_immediate_dominator (CDI_DOMINATORS
, dest
, dom
);
871 /* Remove BB since all of BB's incoming edges have been redirected
873 delete_basic_block (bb
);
878 /* This pass merges PHI nodes if one feeds into another. For example,
879 suppose we have the following:
886 # tem_6 = PHI <tem_17(8), tem_23(7)>;
889 # tem_3 = PHI <tem_6(9), tem_2(5)>;
892 Then we merge the first PHI node into the second one like so:
899 # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
904 merge_phi_nodes (void)
906 basic_block
*worklist
= XNEWVEC (basic_block
, n_basic_blocks
);
907 basic_block
*current
= worklist
;
910 calculate_dominance_info (CDI_DOMINATORS
);
912 /* Find all PHI nodes that we may be able to merge. */
917 /* Look for a forwarder block with PHI nodes. */
918 if (!tree_forwarder_block_p (bb
, true))
921 dest
= single_succ (bb
);
923 /* We have to feed into another basic block with PHI
925 if (gimple_seq_empty_p (phi_nodes (dest
))
926 /* We don't want to deal with a basic block with
928 || bb_has_abnormal_pred (bb
))
931 if (!dominated_by_p (CDI_DOMINATORS
, dest
, bb
))
933 /* If BB does not dominate DEST, then the PHI nodes at
934 DEST must be the only users of the results of the PHI
940 gimple_stmt_iterator gsi
;
941 unsigned int dest_idx
= single_succ_edge (bb
)->dest_idx
;
943 /* BB dominates DEST. There may be many users of the PHI
944 nodes in BB. However, there is still a trivial case we
945 can handle. If the result of every PHI in BB is used
946 only by a PHI in DEST, then we can trivially merge the
947 PHI nodes from BB into DEST. */
948 for (gsi
= gsi_start_phis (bb
); !gsi_end_p (gsi
);
951 gimple phi
= gsi_stmt (gsi
);
952 tree result
= gimple_phi_result (phi
);
953 use_operand_p imm_use
;
956 /* If the PHI's result is never used, then we can just
958 if (has_zero_uses (result
))
961 /* Get the single use of the result of this PHI node. */
962 if (!single_imm_use (result
, &imm_use
, &use_stmt
)
963 || gimple_code (use_stmt
) != GIMPLE_PHI
964 || gimple_bb (use_stmt
) != dest
965 || gimple_phi_arg_def (use_stmt
, dest_idx
) != result
)
969 /* If the loop above iterated through all the PHI nodes
970 in BB, then we can merge the PHIs from BB into DEST. */
976 /* Now let's drain WORKLIST. */
977 bool changed
= false;
978 while (current
!= worklist
)
981 changed
|= remove_forwarder_block_with_phi (bb
);
985 /* Removing forwarder blocks can cause formerly irreducible loops
986 to become reducible if we merged two entry blocks. */
989 loops_state_set (LOOPS_NEED_FIXUP
);
995 gate_merge_phi (void)
1002 const pass_data pass_data_merge_phi
=
1004 GIMPLE_PASS
, /* type */
1005 "mergephi", /* name */
1006 OPTGROUP_NONE
, /* optinfo_flags */
1007 true, /* has_gate */
1008 true, /* has_execute */
1009 TV_TREE_MERGE_PHI
, /* tv_id */
1010 ( PROP_cfg
| PROP_ssa
), /* properties_required */
1011 0, /* properties_provided */
1012 0, /* properties_destroyed */
1013 0, /* todo_flags_start */
1014 TODO_verify_ssa
, /* todo_flags_finish */
1017 class pass_merge_phi
: public gimple_opt_pass
1020 pass_merge_phi (gcc::context
*ctxt
)
1021 : gimple_opt_pass (pass_data_merge_phi
, ctxt
)
1024 /* opt_pass methods: */
1025 opt_pass
* clone () { return new pass_merge_phi (m_ctxt
); }
1026 bool gate () { return gate_merge_phi (); }
1027 unsigned int execute () { return merge_phi_nodes (); }
1029 }; // class pass_merge_phi
1034 make_pass_merge_phi (gcc::context
*ctxt
)
1036 return new pass_merge_phi (ctxt
);
1039 /* Pass: cleanup the CFG just before expanding trees to RTL.
1040 This is just a round of label cleanups and case node grouping
1041 because after the tree optimizers have run such cleanups may
1045 execute_cleanup_cfg_post_optimizing (void)
1047 unsigned int todo
= 0;
1048 if (cleanup_tree_cfg ())
1049 todo
|= TODO_update_ssa
;
1050 maybe_remove_unreachable_handlers ();
1051 cleanup_dead_labels ();
1052 group_case_labels ();
1053 if ((flag_compare_debug_opt
|| flag_compare_debug
)
1054 && flag_dump_final_insns
)
1056 FILE *final_output
= fopen (flag_dump_final_insns
, "a");
1060 error ("could not open final insn dump file %qs: %m",
1061 flag_dump_final_insns
);
1062 flag_dump_final_insns
= NULL
;
1066 int save_unnumbered
= flag_dump_unnumbered
;
1067 int save_noaddr
= flag_dump_noaddr
;
1069 flag_dump_noaddr
= flag_dump_unnumbered
= 1;
1070 fprintf (final_output
, "\n");
1071 dump_enumerated_decls (final_output
, dump_flags
| TDF_NOUID
);
1072 flag_dump_noaddr
= save_noaddr
;
1073 flag_dump_unnumbered
= save_unnumbered
;
1074 if (fclose (final_output
))
1076 error ("could not close final insn dump file %qs: %m",
1077 flag_dump_final_insns
);
1078 flag_dump_final_insns
= NULL
;
1087 const pass_data pass_data_cleanup_cfg_post_optimizing
=
1089 GIMPLE_PASS
, /* type */
1090 "optimized", /* name */
1091 OPTGROUP_NONE
, /* optinfo_flags */
1092 false, /* has_gate */
1093 true, /* has_execute */
1094 TV_TREE_CLEANUP_CFG
, /* tv_id */
1095 PROP_cfg
, /* properties_required */
1096 0, /* properties_provided */
1097 0, /* properties_destroyed */
1098 0, /* todo_flags_start */
1099 TODO_remove_unused_locals
, /* todo_flags_finish */
1102 class pass_cleanup_cfg_post_optimizing
: public gimple_opt_pass
1105 pass_cleanup_cfg_post_optimizing (gcc::context
*ctxt
)
1106 : gimple_opt_pass (pass_data_cleanup_cfg_post_optimizing
, ctxt
)
1109 /* opt_pass methods: */
1110 unsigned int execute () {
1111 return execute_cleanup_cfg_post_optimizing ();
1114 }; // class pass_cleanup_cfg_post_optimizing
1119 make_pass_cleanup_cfg_post_optimizing (gcc::context
*ctxt
)
1121 return new pass_cleanup_cfg_post_optimizing (ctxt
);