* tree-ssa-loop-ivopts.c (strip_offset_1): Change parameter type.
[official-gcc.git] / gcc / tree-cfgcleanup.c
blobc627d2cac57bc5d5a4a8457d9e63ea9b77be25ca
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)
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 "ggc.h"
31 #include "langhooks.h"
32 #include "gimple.h"
33 #include "gimple-ssa.h"
34 #include "tree-cfg.h"
35 #include "tree-phinodes.h"
36 #include "ssa-iterators.h"
37 #include "tree-ssanames.h"
38 #include "tree-ssa-loop-manip.h"
39 #include "tree-dfa.h"
40 #include "tree-ssa.h"
41 #include "tree-pass.h"
42 #include "except.h"
43 #include "cfgloop.h"
44 #include "hashtab.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. */
59 static bool
60 remove_fallthru_edge (vec<edge, va_gc> *ev)
62 edge_iterator ei;
63 edge e;
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;
70 else
71 remove_edge_and_dominated_blocks (e);
72 return true;
74 return false;
78 /* Disconnect an unreachable block in the control expression starting
79 at block BB. */
81 static bool
82 cleanup_control_expr_graph (basic_block bb, gimple_stmt_iterator gsi)
84 edge taken_edge;
85 bool retval = false;
86 gimple stmt = gsi_stmt (gsi);
87 tree val;
89 if (!single_succ_p (bb))
91 edge e;
92 edge_iterator ei;
93 bool warned;
94 location_t loc;
96 fold_defer_overflow_warnings ();
97 loc = gimple_location (stmt);
98 switch (gimple_code (stmt))
100 case GIMPLE_COND:
101 val = fold_binary_loc (loc, gimple_cond_code (stmt),
102 boolean_type_node,
103 gimple_cond_lhs (stmt),
104 gimple_cond_rhs (stmt));
105 break;
107 case GIMPLE_SWITCH:
108 val = gimple_switch_index (stmt);
109 break;
111 default:
112 val = NULL_TREE;
114 taken_edge = find_taken_edge (bb, val);
115 if (!taken_edge)
117 fold_undefer_and_ignore_overflow_warnings ();
118 return false;
121 /* Remove all the edges except the one that is always executed. */
122 warned = false;
123 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
125 if (e != taken_edge)
127 if (!warned)
129 fold_undefer_overflow_warnings
130 (true, stmt, WARN_STRICT_OVERFLOW_CONDITIONAL);
131 warned = true;
134 taken_edge->probability += e->probability;
135 taken_edge->count += e->count;
136 remove_edge_and_dominated_blocks (e);
137 retval = true;
139 else
140 ei_next (&ei);
142 if (!warned)
143 fold_undefer_and_ignore_overflow_warnings ();
144 if (taken_edge->probability > REG_BR_PROB_BASE)
145 taken_edge->probability = REG_BR_PROB_BASE;
147 else
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;
154 return retval;
157 /* Try to remove superfluous control structures in basic block BB. Returns
158 true if anything changes. */
160 static bool
161 cleanup_control_flow_bb (basic_block bb)
163 gimple_stmt_iterator gsi;
164 bool retval = false;
165 gimple stmt;
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);
172 if (gsi_end_p (gsi))
173 return retval;
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))
183 == LABEL_DECL))
185 /* If we had a computed goto which has a compile-time determinable
186 destination, then we can eliminate the goto. */
187 edge e;
188 tree label;
189 edge_iterator ei;
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);
201 else
203 /* Turn off the EDGE_ABNORMAL flag. */
204 e->flags &= ~EDGE_ABNORMAL;
206 /* And set EDGE_FALLTHRU. */
207 e->flags |= EDGE_FALLTHRU;
208 ei_next (&ei);
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);
218 retval = true;
221 /* Check for indirect calls that have been turned into
222 noreturn calls. */
223 else if (is_gimple_call (stmt)
224 && gimple_call_noreturn_p (stmt)
225 && remove_fallthru_edge (bb->succs))
226 retval = true;
228 return retval;
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
236 ENTRY_BLOCK_PTR. */
238 static bool
239 tree_forwarder_block_p (basic_block bb, bool phi_wanted)
241 gimple_stmt_iterator gsi;
242 location_t locus;
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))
255 return false;
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. */
263 edge_iterator ei;
264 edge e;
266 FOR_EACH_EDGE (e, ei, bb->preds)
267 if (e->src == ENTRY_BLOCK_PTR || (e->flags & EDGE_EH))
268 return false;
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)
272 return false;
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))
283 case GIMPLE_LABEL:
284 if (DECL_NONLOCAL (gimple_label_label (stmt)))
285 return false;
286 if (optimize == 0 && gimple_location (stmt) != locus)
287 return false;
288 break;
290 /* ??? For now, hope there's a corresponding debug
291 assignment at the destination. */
292 case GIMPLE_DEBUG:
293 break;
295 default:
296 return false;
300 if (current_loops)
302 basic_block dest;
303 /* Protect loop latches, headers and preheaders. */
304 if (bb->loop_father->header == bb)
305 return false;
306 dest = EDGE_SUCC (bb, 0)->dest;
308 if (dest->loop_father->header == dest)
309 return false;
311 return true;
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. */
318 static bool
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))
335 return false;
338 return true;
341 /* Removes forwarder block BB. Returns false if this failed. */
343 static bool
344 remove_forwarder_block (basic_block bb)
346 edge succ = single_succ_edge (bb), e, s;
347 basic_block dest = succ->dest;
348 gimple label;
349 edge_iterator ei;
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. */
356 if (dest == bb)
357 return false;
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);
362 if (label
363 && gimple_code (label) == GIMPLE_LABEL
364 && (DECL_NONLOCAL (gimple_label_label (label))
365 || EH_LANDING_PAD_NR (gimple_label_label (label)) != 0))
366 return false;
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
375 does not like it.
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))))
382 return false;
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);
392 if (!s)
393 continue;
395 if (!phi_alternatives_equal (dest, succ, s))
396 return false;
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);
413 else
414 s = redirect_edge_and_branch (e, dest);
416 if (s == e)
418 /* Create arguments for the phi nodes, since the edge was not
419 here before. */
420 for (gsi = gsi_start_phis (dest);
421 !gsi_end_p (gsi);
422 gsi_next (&gsi))
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); )
440 tree decl;
441 label = gsi_stmt (gsi);
442 if (is_gimple_debug (label))
443 break;
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);
453 else
454 gsi_next (&gsi);
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))
465 break;
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);
480 if (domdest == bb)
482 /* Shortcut to avoid calling (relatively expensive)
483 nearest_common_dominator unless necessary. */
484 dom = dombb;
486 else
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);
495 return true;
498 /* STMT is a call that has been discovered noreturn. Fixup the CFG
499 and remove LHS. Return true if something changed. */
501 bool
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))
508 return false;
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)
529 use_operand_p use_p;
530 imm_use_iterator iter;
531 gimple use_stmt;
532 bitmap_iterator bi;
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);
541 else
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);
550 update_stmt (stmt);
551 changed = true;
553 /* Similarly remove VDEF if there is any. */
554 else if (gimple_vdef (stmt))
555 update_stmt (stmt);
556 return changed;
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. */
563 static bool
564 split_bbs_on_noreturn_calls (void)
566 bool changed = false;
567 gimple stmt;
568 basic_block bb;
570 /* Detect cases where a mid-block call is now known not to return. */
571 if (cfun->gimple_df)
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. */
578 if (bb == NULL
579 || bb->index < NUM_FIXED_BLOCKS
580 || bb->index >= last_basic_block
581 || BASIC_BLOCK (bb->index) != bb
582 || !gimple_call_noreturn_p (stmt))
583 continue;
585 changed |= fixup_noreturn_call (stmt);
588 return changed;
591 /* Tries to cleanup cfg in basic block BB. Returns true if anything
592 changes. */
594 static bool
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))
601 return true;
603 /* Merging the blocks may create new opportunities for folding
604 conditional branches (due to the elimination of single-valued PHI
605 nodes). */
606 if (single_succ_p (bb)
607 && can_merge_blocks_p (bb, single_succ (bb)))
609 merge_blocks (bb, single_succ (bb));
610 return true;
613 return retval;
616 /* Iterate the cfg cleanups, while anything changes. */
618 static bool
619 cleanup_tree_cfg_1 (void)
621 bool retval = false;
622 basic_block bb;
623 unsigned i, n;
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);
641 if (bb)
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)
651 continue;
653 bb = BASIC_BLOCK (i);
654 if (!bb)
655 continue;
657 retval |= cleanup_tree_cfg_bb (bb);
659 /* Rerun split_bbs_on_noreturn_calls, in case we have altered any noreturn
660 calls. */
661 retval |= split_bbs_on_noreturn_calls ();
664 end_recording_case_labels ();
665 BITMAP_FREE (cfgcleanup_altered_bbs);
666 return retval;
670 /* Remove unreachable blocks and other miscellaneous clean up work.
671 Return true if the flowgraph was modified, false otherwise. */
673 static bool
674 cleanup_tree_cfg_noloop (void)
676 bool changed;
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
684 blocks. */
685 if (!dom_info_available_p (CDI_DOMINATORS))
687 changed = delete_unreachable_blocks ();
688 calculate_dominance_info (CDI_DOMINATORS);
690 else
692 #ifdef ENABLE_CHECKING
693 verify_dominators (CDI_DOMINATORS);
694 #endif
695 changed = false;
698 changed |= cleanup_tree_cfg_1 ();
700 gcc_assert (dom_info_available_p (CDI_DOMINATORS));
701 compact_blocks ();
703 #ifdef ENABLE_CHECKING
704 verify_flow_info ();
705 #endif
707 timevar_pop (TV_TREE_CLEANUP_CFG);
709 if (changed && current_loops)
710 loops_state_set (LOOPS_NEED_FIXUP);
712 return changed;
715 /* Repairs loop structures. */
717 static void
718 repair_loop_structures (void)
720 bitmap changed_bbs;
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,
736 TODO_update_ssa);
738 BITMAP_FREE (changed_bbs);
740 #ifdef ENABLE_CHECKING
741 verify_loop_structure ();
742 #endif
743 scev_reset ();
745 timevar_pop (TV_REPAIR_LOOPS);
748 /* Cleanup cfg and repair loop structures. */
750 bool
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 ();
759 return changed;
762 /* Tries to merge the PHI nodes at BB into those at BB's sole successor.
763 Returns true if successful. */
765 static bool
766 remove_forwarder_block_with_phi (basic_block bb)
768 edge succ = single_succ_edge (bb);
769 basic_block dest = succ->dest;
770 gimple label;
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. */
776 if (dest == bb)
777 return false;
779 /* If the destination block consists of a nonlocal label, do not
780 merge it. */
781 label = first_stmt (dest);
782 if (label
783 && gimple_code (label) == GIMPLE_LABEL
784 && DECL_NONLOCAL (gimple_label_label (label)))
785 return false;
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);
794 if (s)
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);
803 continue;
806 /* PHI arguments are different. Create a forwarder block by
807 splitting E so that we can merge PHI arguments on E to
808 DEST. */
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. */
815 gcc_assert (s == e);
817 /* Add to the PHI nodes at DEST each PHI argument removed at the
818 destination of E. */
819 for (gsi = gsi_start_phis (dest);
820 !gsi_end_p (gsi);
821 gsi_next (&gsi))
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;
830 edge_var_map *vm;
831 size_t i;
833 /* If DEF is one of the results of PHI nodes removed during
834 redirection, replace it with the PHI argument that used
835 to be on E. */
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);
842 if (def == old_arg)
844 def = new_arg;
845 locus = redirect_edge_var_map_location (vm);
846 break;
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);
860 if (domdest == bb)
862 /* Shortcut to avoid calling (relatively expensive)
863 nearest_common_dominator unless necessary. */
864 dom = dombb;
866 else
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
872 to DEST. */
873 delete_basic_block (bb);
875 return true;
878 /* This pass merges PHI nodes if one feeds into another. For example,
879 suppose we have the following:
881 goto <bb 9> (<L9>);
883 <L8>:;
884 tem_17 = foo ();
886 # tem_6 = PHI <tem_17(8), tem_23(7)>;
887 <L9>:;
889 # tem_3 = PHI <tem_6(9), tem_2(5)>;
890 <L10>:;
892 Then we merge the first PHI node into the second one like so:
894 goto <bb 9> (<L10>);
896 <L8>:;
897 tem_17 = foo ();
899 # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
900 <L10>:;
903 static unsigned int
904 merge_phi_nodes (void)
906 basic_block *worklist = XNEWVEC (basic_block, n_basic_blocks);
907 basic_block *current = worklist;
908 basic_block bb;
910 calculate_dominance_info (CDI_DOMINATORS);
912 /* Find all PHI nodes that we may be able to merge. */
913 FOR_EACH_BB (bb)
915 basic_block dest;
917 /* Look for a forwarder block with PHI nodes. */
918 if (!tree_forwarder_block_p (bb, true))
919 continue;
921 dest = single_succ (bb);
923 /* We have to feed into another basic block with PHI
924 nodes. */
925 if (gimple_seq_empty_p (phi_nodes (dest))
926 /* We don't want to deal with a basic block with
927 abnormal edges. */
928 || bb_has_abnormal_pred (bb))
929 continue;
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
935 nodes at BB. */
936 *current++ = bb;
938 else
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);
949 gsi_next (&gsi))
951 gimple phi = gsi_stmt (gsi);
952 tree result = gimple_phi_result (phi);
953 use_operand_p imm_use;
954 gimple use_stmt;
956 /* If the PHI's result is never used, then we can just
957 ignore it. */
958 if (has_zero_uses (result))
959 continue;
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)
966 break;
969 /* If the loop above iterated through all the PHI nodes
970 in BB, then we can merge the PHIs from BB into DEST. */
971 if (gsi_end_p (gsi))
972 *current++ = bb;
976 /* Now let's drain WORKLIST. */
977 bool changed = false;
978 while (current != worklist)
980 bb = *--current;
981 changed |= remove_forwarder_block_with_phi (bb);
983 free (worklist);
985 /* Removing forwarder blocks can cause formerly irreducible loops
986 to become reducible if we merged two entry blocks. */
987 if (changed
988 && current_loops)
989 loops_state_set (LOOPS_NEED_FIXUP);
991 return 0;
994 static bool
995 gate_merge_phi (void)
997 return 1;
1000 namespace {
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
1019 public:
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
1031 } // anon namespace
1033 gimple_opt_pass *
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
1042 be necessary. */
1044 static unsigned int
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");
1058 if (!final_output)
1060 error ("could not open final insn dump file %qs: %m",
1061 flag_dump_final_insns);
1062 flag_dump_final_insns = NULL;
1064 else
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;
1082 return todo;
1085 namespace {
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
1104 public:
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
1116 } // anon namespace
1118 gimple_opt_pass *
1119 make_pass_cleanup_cfg_post_optimizing (gcc::context *ctxt)
1121 return new pass_cleanup_cfg_post_optimizing (ctxt);