* lto-partition.c (add_symbol_to_partition_1,
[official-gcc.git] / gcc / tree-cfgcleanup.c
blob922ae0d82a6cf60c3ee4e0ace953a19cb67e3052
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)
9 any later version.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "tm_p.h"
26 #include "basic-block.h"
27 #include "diagnostic-core.h"
28 #include "flags.h"
29 #include "function.h"
30 #include "langhooks.h"
31 #include "tree-ssa-alias.h"
32 #include "internal-fn.h"
33 #include "tree-eh.h"
34 #include "gimple-expr.h"
35 #include "is-a.h"
36 #include "gimple.h"
37 #include "gimplify.h"
38 #include "gimple-iterator.h"
39 #include "gimple-ssa.h"
40 #include "tree-cfg.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"
46 #include "expr.h"
47 #include "tree-dfa.h"
48 #include "tree-ssa.h"
49 #include "tree-pass.h"
50 #include "except.h"
51 #include "cfgloop.h"
52 #include "hashtab.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. */
67 static bool
68 remove_fallthru_edge (vec<edge, va_gc> *ev)
70 edge_iterator ei;
71 edge e;
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;
78 else
79 remove_edge_and_dominated_blocks (e);
80 return true;
82 return false;
86 /* Disconnect an unreachable block in the control expression starting
87 at block BB. */
89 static bool
90 cleanup_control_expr_graph (basic_block bb, gimple_stmt_iterator gsi)
92 edge taken_edge;
93 bool retval = false;
94 gimple stmt = gsi_stmt (gsi);
95 tree val;
97 if (!single_succ_p (bb))
99 edge e;
100 edge_iterator ei;
101 bool warned;
102 location_t loc;
104 fold_defer_overflow_warnings ();
105 loc = gimple_location (stmt);
106 switch (gimple_code (stmt))
108 case GIMPLE_COND:
109 val = fold_binary_loc (loc, gimple_cond_code (stmt),
110 boolean_type_node,
111 gimple_cond_lhs (stmt),
112 gimple_cond_rhs (stmt));
113 break;
115 case GIMPLE_SWITCH:
116 val = gimple_switch_index (stmt);
117 break;
119 default:
120 val = NULL_TREE;
122 taken_edge = find_taken_edge (bb, val);
123 if (!taken_edge)
125 fold_undefer_and_ignore_overflow_warnings ();
126 return false;
129 /* Remove all the edges except the one that is always executed. */
130 warned = false;
131 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
133 if (e != taken_edge)
135 if (!warned)
137 fold_undefer_overflow_warnings
138 (true, stmt, WARN_STRICT_OVERFLOW_CONDITIONAL);
139 warned = true;
142 taken_edge->probability += e->probability;
143 taken_edge->count += e->count;
144 remove_edge_and_dominated_blocks (e);
145 retval = true;
147 else
148 ei_next (&ei);
150 if (!warned)
151 fold_undefer_and_ignore_overflow_warnings ();
152 if (taken_edge->probability > REG_BR_PROB_BASE)
153 taken_edge->probability = REG_BR_PROB_BASE;
155 else
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;
162 return retval;
165 /* Try to remove superfluous control structures in basic block BB. Returns
166 true if anything changes. */
168 static bool
169 cleanup_control_flow_bb (basic_block bb)
171 gimple_stmt_iterator gsi;
172 bool retval = false;
173 gimple stmt;
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);
180 if (gsi_end_p (gsi))
181 return retval;
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))
191 == LABEL_DECL))
193 /* If we had a computed goto which has a compile-time determinable
194 destination, then we can eliminate the goto. */
195 edge e;
196 tree label;
197 edge_iterator ei;
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);
209 else
211 /* Turn off the EDGE_ABNORMAL flag. */
212 e->flags &= ~EDGE_ABNORMAL;
214 /* And set EDGE_FALLTHRU. */
215 e->flags |= EDGE_FALLTHRU;
216 ei_next (&ei);
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);
226 retval = true;
229 /* Check for indirect calls that have been turned into
230 noreturn calls. */
231 else if (is_gimple_call (stmt)
232 && gimple_call_noreturn_p (stmt)
233 && remove_fallthru_edge (bb->succs))
234 retval = true;
236 return retval;
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
244 the entry block. */
246 static bool
247 tree_forwarder_block_p (basic_block bb, bool phi_wanted)
249 gimple_stmt_iterator gsi;
250 location_t locus;
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))
263 return false;
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. */
271 edge_iterator ei;
272 edge e;
274 FOR_EACH_EDGE (e, ei, bb->preds)
275 if (e->src == ENTRY_BLOCK_PTR_FOR_FN (cfun) || (e->flags & EDGE_EH))
276 return false;
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)
280 return false;
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))
291 case GIMPLE_LABEL:
292 if (DECL_NONLOCAL (gimple_label_label (stmt)))
293 return false;
294 if (optimize == 0 && gimple_location (stmt) != locus)
295 return false;
296 break;
298 /* ??? For now, hope there's a corresponding debug
299 assignment at the destination. */
300 case GIMPLE_DEBUG:
301 break;
303 default:
304 return false;
308 if (current_loops)
310 basic_block dest;
311 /* Protect loop latches, headers and preheaders. */
312 if (bb->loop_father->header == bb)
313 return false;
314 dest = EDGE_SUCC (bb, 0)->dest;
316 if (dest->loop_father->header == dest)
317 return false;
319 return true;
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. */
326 static bool
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))
343 return false;
346 return true;
349 /* Removes forwarder block BB. Returns false if this failed. */
351 static bool
352 remove_forwarder_block (basic_block bb)
354 edge succ = single_succ_edge (bb), e, s;
355 basic_block dest = succ->dest;
356 gimple label;
357 edge_iterator ei;
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. */
364 if (dest == bb)
365 return false;
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);
370 if (label
371 && gimple_code (label) == GIMPLE_LABEL
372 && (DECL_NONLOCAL (gimple_label_label (label))
373 || EH_LANDING_PAD_NR (gimple_label_label (label)) != 0))
374 return false;
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
383 does not like it.
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))))
390 return false;
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);
400 if (!s)
401 continue;
403 if (!phi_alternatives_equal (dest, succ, s))
404 return false;
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);
421 else
422 s = redirect_edge_and_branch (e, dest);
424 if (s == e)
426 /* Create arguments for the phi nodes, since the edge was not
427 here before. */
428 for (gsi = gsi_start_phis (dest);
429 !gsi_end_p (gsi);
430 gsi_next (&gsi))
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); )
448 tree decl;
449 label = gsi_stmt (gsi);
450 if (is_gimple_debug (label))
451 break;
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);
461 else
462 gsi_next (&gsi);
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))
473 break;
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);
488 if (domdest == bb)
490 /* Shortcut to avoid calling (relatively expensive)
491 nearest_common_dominator unless necessary. */
492 dom = dombb;
494 else
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);
503 return true;
506 /* STMT is a call that has been discovered noreturn. Fixup the CFG
507 and remove LHS. Return true if something changed. */
509 bool
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))
516 return false;
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)
537 use_operand_p use_p;
538 imm_use_iterator iter;
539 gimple use_stmt;
540 bitmap_iterator bi;
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);
549 else
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);
558 update_stmt (stmt);
559 changed = true;
561 /* Similarly remove VDEF if there is any. */
562 else if (gimple_vdef (stmt))
563 update_stmt (stmt);
564 return changed;
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. */
571 static bool
572 split_bbs_on_noreturn_calls (void)
574 bool changed = false;
575 gimple stmt;
576 basic_block bb;
578 /* Detect cases where a mid-block call is now known not to return. */
579 if (cfun->gimple_df)
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. */
586 if (bb == NULL
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))
591 continue;
593 changed |= fixup_noreturn_call (stmt);
596 return changed;
599 /* Tries to cleanup cfg in basic block BB. Returns true if anything
600 changes. */
602 static bool
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))
609 return true;
611 /* Merging the blocks may create new opportunities for folding
612 conditional branches (due to the elimination of single-valued PHI
613 nodes). */
614 if (single_succ_p (bb)
615 && can_merge_blocks_p (bb, single_succ (bb)))
617 merge_blocks (bb, single_succ (bb));
618 return true;
621 return retval;
624 /* Iterate the cfg cleanups, while anything changes. */
626 static bool
627 cleanup_tree_cfg_1 (void)
629 bool retval = false;
630 basic_block bb;
631 unsigned i, n;
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);
649 if (bb)
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)
659 continue;
661 bb = BASIC_BLOCK_FOR_FN (cfun, i);
662 if (!bb)
663 continue;
665 retval |= cleanup_tree_cfg_bb (bb);
667 /* Rerun split_bbs_on_noreturn_calls, in case we have altered any noreturn
668 calls. */
669 retval |= split_bbs_on_noreturn_calls ();
672 end_recording_case_labels ();
673 BITMAP_FREE (cfgcleanup_altered_bbs);
674 return retval;
678 /* Remove unreachable blocks and other miscellaneous clean up work.
679 Return true if the flowgraph was modified, false otherwise. */
681 static bool
682 cleanup_tree_cfg_noloop (void)
684 bool changed;
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
692 blocks. */
693 if (!dom_info_available_p (CDI_DOMINATORS))
695 changed = delete_unreachable_blocks ();
696 calculate_dominance_info (CDI_DOMINATORS);
698 else
700 #ifdef ENABLE_CHECKING
701 verify_dominators (CDI_DOMINATORS);
702 #endif
703 changed = false;
706 changed |= cleanup_tree_cfg_1 ();
708 gcc_assert (dom_info_available_p (CDI_DOMINATORS));
709 compact_blocks ();
711 #ifdef ENABLE_CHECKING
712 verify_flow_info ();
713 #endif
715 timevar_pop (TV_TREE_CLEANUP_CFG);
717 if (changed && current_loops)
718 loops_state_set (LOOPS_NEED_FIXUP);
720 return changed;
723 /* Repairs loop structures. */
725 static void
726 repair_loop_structures (void)
728 bitmap changed_bbs;
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,
744 TODO_update_ssa);
746 BITMAP_FREE (changed_bbs);
748 #ifdef ENABLE_CHECKING
749 verify_loop_structure ();
750 #endif
751 scev_reset ();
753 timevar_pop (TV_REPAIR_LOOPS);
756 /* Cleanup cfg and repair loop structures. */
758 bool
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 ();
767 return changed;
770 /* Tries to merge the PHI nodes at BB into those at BB's sole successor.
771 Returns true if successful. */
773 static bool
774 remove_forwarder_block_with_phi (basic_block bb)
776 edge succ = single_succ_edge (bb);
777 basic_block dest = succ->dest;
778 gimple label;
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. */
784 if (dest == bb)
785 return false;
787 /* If the destination block consists of a nonlocal label, do not
788 merge it. */
789 label = first_stmt (dest);
790 if (label
791 && gimple_code (label) == GIMPLE_LABEL
792 && DECL_NONLOCAL (gimple_label_label (label)))
793 return false;
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);
802 if (s)
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);
811 continue;
814 /* PHI arguments are different. Create a forwarder block by
815 splitting E so that we can merge PHI arguments on E to
816 DEST. */
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. */
823 gcc_assert (s == e);
825 /* Add to the PHI nodes at DEST each PHI argument removed at the
826 destination of E. */
827 for (gsi = gsi_start_phis (dest);
828 !gsi_end_p (gsi);
829 gsi_next (&gsi))
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;
838 edge_var_map *vm;
839 size_t i;
841 /* If DEF is one of the results of PHI nodes removed during
842 redirection, replace it with the PHI argument that used
843 to be on E. */
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);
850 if (def == old_arg)
852 def = new_arg;
853 locus = redirect_edge_var_map_location (vm);
854 break;
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);
868 if (domdest == bb)
870 /* Shortcut to avoid calling (relatively expensive)
871 nearest_common_dominator unless necessary. */
872 dom = dombb;
874 else
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
880 to DEST. */
881 delete_basic_block (bb);
883 return true;
886 /* This pass merges PHI nodes if one feeds into another. For example,
887 suppose we have the following:
889 goto <bb 9> (<L9>);
891 <L8>:;
892 tem_17 = foo ();
894 # tem_6 = PHI <tem_17(8), tem_23(7)>;
895 <L9>:;
897 # tem_3 = PHI <tem_6(9), tem_2(5)>;
898 <L10>:;
900 Then we merge the first PHI node into the second one like so:
902 goto <bb 9> (<L10>);
904 <L8>:;
905 tem_17 = foo ();
907 # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
908 <L10>:;
911 static unsigned int
912 merge_phi_nodes (void)
914 basic_block *worklist = XNEWVEC (basic_block, n_basic_blocks_for_fn (cfun));
915 basic_block *current = worklist;
916 basic_block bb;
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)
923 basic_block dest;
925 /* Look for a forwarder block with PHI nodes. */
926 if (!tree_forwarder_block_p (bb, true))
927 continue;
929 dest = single_succ (bb);
931 /* We have to feed into another basic block with PHI
932 nodes. */
933 if (gimple_seq_empty_p (phi_nodes (dest))
934 /* We don't want to deal with a basic block with
935 abnormal edges. */
936 || bb_has_abnormal_pred (bb))
937 continue;
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
943 nodes at BB. */
944 *current++ = bb;
946 else
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);
957 gsi_next (&gsi))
959 gimple phi = gsi_stmt (gsi);
960 tree result = gimple_phi_result (phi);
961 use_operand_p imm_use;
962 gimple use_stmt;
964 /* If the PHI's result is never used, then we can just
965 ignore it. */
966 if (has_zero_uses (result))
967 continue;
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)
974 break;
977 /* If the loop above iterated through all the PHI nodes
978 in BB, then we can merge the PHIs from BB into DEST. */
979 if (gsi_end_p (gsi))
980 *current++ = bb;
984 /* Now let's drain WORKLIST. */
985 bool changed = false;
986 while (current != worklist)
988 bb = *--current;
989 changed |= remove_forwarder_block_with_phi (bb);
991 free (worklist);
993 /* Removing forwarder blocks can cause formerly irreducible loops
994 to become reducible if we merged two entry blocks. */
995 if (changed
996 && current_loops)
997 loops_state_set (LOOPS_NEED_FIXUP);
999 return 0;
1002 static bool
1003 gate_merge_phi (void)
1005 return 1;
1008 namespace {
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
1027 public:
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
1039 } // anon namespace
1041 gimple_opt_pass *
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
1050 be necessary. */
1052 static unsigned int
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");
1066 if (!final_output)
1068 error ("could not open final insn dump file %qs: %m",
1069 flag_dump_final_insns);
1070 flag_dump_final_insns = NULL;
1072 else
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;
1090 return todo;
1093 namespace {
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
1112 public:
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
1124 } // anon namespace
1126 gimple_opt_pass *
1127 make_pass_cleanup_cfg_post_optimizing (gcc::context *ctxt)
1129 return new pass_cleanup_cfg_post_optimizing (ctxt);