tree-ssa-loop.h: Remove include files.
[gcc.git] / gcc / tree-cfgcleanup.c
1 /* CFG cleanup for trees.
2 Copyright (C) 2001-2013 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
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"
47
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;
56
57 /* Remove any fallthru edge from EV. Return true if an edge was removed. */
58
59 static bool
60 remove_fallthru_edge (vec<edge, va_gc> *ev)
61 {
62 edge_iterator ei;
63 edge e;
64
65 FOR_EACH_EDGE (e, ei, ev)
66 if ((e->flags & EDGE_FALLTHRU) != 0)
67 {
68 if (e->flags & EDGE_COMPLEX)
69 e->flags &= ~EDGE_FALLTHRU;
70 else
71 remove_edge_and_dominated_blocks (e);
72 return true;
73 }
74 return false;
75 }
76
77
78 /* Disconnect an unreachable block in the control expression starting
79 at block BB. */
80
81 static bool
82 cleanup_control_expr_graph (basic_block bb, gimple_stmt_iterator gsi)
83 {
84 edge taken_edge;
85 bool retval = false;
86 gimple stmt = gsi_stmt (gsi);
87 tree val;
88
89 if (!single_succ_p (bb))
90 {
91 edge e;
92 edge_iterator ei;
93 bool warned;
94 location_t loc;
95
96 fold_defer_overflow_warnings ();
97 loc = gimple_location (stmt);
98 switch (gimple_code (stmt))
99 {
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;
106
107 case GIMPLE_SWITCH:
108 val = gimple_switch_index (stmt);
109 break;
110
111 default:
112 val = NULL_TREE;
113 }
114 taken_edge = find_taken_edge (bb, val);
115 if (!taken_edge)
116 {
117 fold_undefer_and_ignore_overflow_warnings ();
118 return false;
119 }
120
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)); )
124 {
125 if (e != taken_edge)
126 {
127 if (!warned)
128 {
129 fold_undefer_overflow_warnings
130 (true, stmt, WARN_STRICT_OVERFLOW_CONDITIONAL);
131 warned = true;
132 }
133
134 taken_edge->probability += e->probability;
135 taken_edge->count += e->count;
136 remove_edge_and_dominated_blocks (e);
137 retval = true;
138 }
139 else
140 ei_next (&ei);
141 }
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;
146 }
147 else
148 taken_edge = single_succ_edge (bb);
149
150 bitmap_set_bit (cfgcleanup_altered_bbs, bb->index);
151 gsi_remove (&gsi, true);
152 taken_edge->flags = EDGE_FALLTHRU;
153
154 return retval;
155 }
156
157 /* Try to remove superfluous control structures in basic block BB. Returns
158 true if anything changes. */
159
160 static bool
161 cleanup_control_flow_bb (basic_block bb)
162 {
163 gimple_stmt_iterator gsi;
164 bool retval = false;
165 gimple stmt;
166
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);
170
171 gsi = gsi_last_bb (bb);
172 if (gsi_end_p (gsi))
173 return retval;
174
175 stmt = gsi_stmt (gsi);
176
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))
184 {
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;
191
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)); )
198 {
199 if (e->dest != target_block)
200 remove_edge_and_dominated_blocks (e);
201 else
202 {
203 /* Turn off the EDGE_ABNORMAL flag. */
204 e->flags &= ~EDGE_ABNORMAL;
205
206 /* And set EDGE_FALLTHRU. */
207 e->flags |= EDGE_FALLTHRU;
208 ei_next (&ei);
209 }
210 }
211
212 bitmap_set_bit (cfgcleanup_altered_bbs, bb->index);
213 bitmap_set_bit (cfgcleanup_altered_bbs, target_block->index);
214
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;
219 }
220
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;
227
228 return retval;
229 }
230
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.
234
235 As a precondition, we require that BB be not equal to
236 ENTRY_BLOCK_PTR. */
237
238 static bool
239 tree_forwarder_block_p (basic_block bb, bool phi_wanted)
240 {
241 gimple_stmt_iterator gsi;
242 location_t locus;
243
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;
256
257 gcc_checking_assert (bb != ENTRY_BLOCK_PTR);
258
259 locus = single_succ_edge (bb)->goto_locus;
260
261 /* There should not be an edge coming from entry, or an EH edge. */
262 {
263 edge_iterator ei;
264 edge e;
265
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;
273 }
274
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))
278 {
279 gimple stmt = gsi_stmt (gsi);
280
281 switch (gimple_code (stmt))
282 {
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;
289
290 /* ??? For now, hope there's a corresponding debug
291 assignment at the destination. */
292 case GIMPLE_DEBUG:
293 break;
294
295 default:
296 return false;
297 }
298 }
299
300 if (current_loops)
301 {
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;
307
308 if (dest->loop_father->header == dest)
309 return false;
310 }
311 return true;
312 }
313
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. */
317
318 static bool
319 phi_alternatives_equal (basic_block dest, edge e1, edge e2)
320 {
321 int n1 = e1->dest_idx;
322 int n2 = e2->dest_idx;
323 gimple_stmt_iterator gsi;
324
325 for (gsi = gsi_start_phis (dest); !gsi_end_p (gsi); gsi_next (&gsi))
326 {
327 gimple phi = gsi_stmt (gsi);
328 tree val1 = gimple_phi_arg_def (phi, n1);
329 tree val2 = gimple_phi_arg_def (phi, n2);
330
331 gcc_assert (val1 != NULL_TREE);
332 gcc_assert (val2 != NULL_TREE);
333
334 if (!operand_equal_for_phi_arg_p (val1, val2))
335 return false;
336 }
337
338 return true;
339 }
340
341 /* Removes forwarder block BB. Returns false if this failed. */
342
343 static bool
344 remove_forwarder_block (basic_block bb)
345 {
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;
352
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;
358
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;
367
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.
371
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.
376
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;
383
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)))
388 {
389 FOR_EACH_EDGE (e, ei, bb->preds)
390 {
391 s = find_edge (e->src, dest);
392 if (!s)
393 continue;
394
395 if (!phi_alternatives_equal (dest, succ, s))
396 return false;
397 }
398 }
399
400 can_move_debug_stmts = MAY_HAVE_DEBUG_STMTS && single_pred_p (dest);
401
402 /* Redirect the edges. */
403 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
404 {
405 bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
406
407 if (e->flags & EDGE_ABNORMAL)
408 {
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);
412 }
413 else
414 s = redirect_edge_and_branch (e, dest);
415
416 if (s == e)
417 {
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))
423 {
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);
428 }
429 }
430 }
431
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); )
439 {
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))
449 {
450 gsi_remove (&gsi, false);
451 gsi_insert_before (&gsi_to, label, GSI_SAME_STMT);
452 }
453 else
454 gsi_next (&gsi);
455 }
456
457 /* Move debug statements if the destination has a single predecessor. */
458 if (can_move_debug_stmts)
459 {
460 gsi_to = gsi_after_labels (dest);
461 for (gsi = gsi_after_labels (bb); !gsi_end_p (gsi); )
462 {
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);
468 }
469 }
470
471 bitmap_set_bit (cfgcleanup_altered_bbs, dest->index);
472
473 /* Update the dominators. */
474 if (dom_info_available_p (CDI_DOMINATORS))
475 {
476 basic_block dom, dombb, domdest;
477
478 dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
479 domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
480 if (domdest == bb)
481 {
482 /* Shortcut to avoid calling (relatively expensive)
483 nearest_common_dominator unless necessary. */
484 dom = dombb;
485 }
486 else
487 dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
488
489 set_immediate_dominator (CDI_DOMINATORS, dest, dom);
490 }
491
492 /* And kill the forwarder block. */
493 delete_basic_block (bb);
494
495 return true;
496 }
497
498 /* STMT is a call that has been discovered noreturn. Fixup the CFG
499 and remove LHS. Return true if something changed. */
500
501 bool
502 fixup_noreturn_call (gimple stmt)
503 {
504 basic_block bb = gimple_bb (stmt);
505 bool changed = false;
506
507 if (gimple_call_builtin_p (stmt, BUILT_IN_RETURN))
508 return false;
509
510 /* First split basic block if stmt is not last. */
511 if (stmt != gsi_stmt (gsi_last_bb (bb)))
512 split_block (bb, stmt);
513
514 changed |= remove_fallthru_edge (bb->succs);
515
516 /* If there is LHS, remove it. */
517 if (gimple_call_lhs (stmt))
518 {
519 tree op = gimple_call_lhs (stmt);
520 gimple_call_set_lhs (stmt, NULL_TREE);
521
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)
528 {
529 use_operand_p use_p;
530 imm_use_iterator iter;
531 gimple use_stmt;
532 bitmap_iterator bi;
533 unsigned int bb_index;
534
535 bitmap blocks = BITMAP_ALLOC (NULL);
536
537 FOR_EACH_IMM_USE_STMT (use_stmt, iter, op)
538 {
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);
544 }
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);
549 }
550 update_stmt (stmt);
551 changed = true;
552 }
553 /* Similarly remove VDEF if there is any. */
554 else if (gimple_vdef (stmt))
555 update_stmt (stmt);
556 return changed;
557 }
558
559
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. */
562
563 static bool
564 split_bbs_on_noreturn_calls (void)
565 {
566 bool changed = false;
567 gimple stmt;
568 basic_block bb;
569
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)))
573 {
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;
584
585 changed |= fixup_noreturn_call (stmt);
586 }
587
588 return changed;
589 }
590
591 /* Tries to cleanup cfg in basic block BB. Returns true if anything
592 changes. */
593
594 static bool
595 cleanup_tree_cfg_bb (basic_block bb)
596 {
597 bool retval = cleanup_control_flow_bb (bb);
598
599 if (tree_forwarder_block_p (bb, false)
600 && remove_forwarder_block (bb))
601 return true;
602
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)))
608 {
609 merge_blocks (bb, single_succ (bb));
610 return true;
611 }
612
613 return retval;
614 }
615
616 /* Iterate the cfg cleanups, while anything changes. */
617
618 static bool
619 cleanup_tree_cfg_1 (void)
620 {
621 bool retval = false;
622 basic_block bb;
623 unsigned i, n;
624
625 retval |= split_bbs_on_noreturn_calls ();
626
627 /* Prepare the worklists of altered blocks. */
628 cfgcleanup_altered_bbs = BITMAP_ALLOC (NULL);
629
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 ();
634
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++)
639 {
640 bb = BASIC_BLOCK (i);
641 if (bb)
642 retval |= cleanup_tree_cfg_bb (bb);
643 }
644
645 /* Now process the altered blocks, as long as any are available. */
646 while (!bitmap_empty_p (cfgcleanup_altered_bbs))
647 {
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;
652
653 bb = BASIC_BLOCK (i);
654 if (!bb)
655 continue;
656
657 retval |= cleanup_tree_cfg_bb (bb);
658
659 /* Rerun split_bbs_on_noreturn_calls, in case we have altered any noreturn
660 calls. */
661 retval |= split_bbs_on_noreturn_calls ();
662 }
663
664 end_recording_case_labels ();
665 BITMAP_FREE (cfgcleanup_altered_bbs);
666 return retval;
667 }
668
669
670 /* Remove unreachable blocks and other miscellaneous clean up work.
671 Return true if the flowgraph was modified, false otherwise. */
672
673 static bool
674 cleanup_tree_cfg_noloop (void)
675 {
676 bool changed;
677
678 timevar_push (TV_TREE_CLEANUP_CFG);
679
680 /* Iterate until there are no more cleanups left to do. If any
681 iteration changed the flowgraph, set CHANGED to true.
682
683 If dominance information is available, there cannot be any unreachable
684 blocks. */
685 if (!dom_info_available_p (CDI_DOMINATORS))
686 {
687 changed = delete_unreachable_blocks ();
688 calculate_dominance_info (CDI_DOMINATORS);
689 }
690 else
691 {
692 #ifdef ENABLE_CHECKING
693 verify_dominators (CDI_DOMINATORS);
694 #endif
695 changed = false;
696 }
697
698 changed |= cleanup_tree_cfg_1 ();
699
700 gcc_assert (dom_info_available_p (CDI_DOMINATORS));
701 compact_blocks ();
702
703 #ifdef ENABLE_CHECKING
704 verify_flow_info ();
705 #endif
706
707 timevar_pop (TV_TREE_CLEANUP_CFG);
708
709 if (changed && current_loops)
710 loops_state_set (LOOPS_NEED_FIXUP);
711
712 return changed;
713 }
714
715 /* Repairs loop structures. */
716
717 static void
718 repair_loop_structures (void)
719 {
720 bitmap changed_bbs;
721 unsigned n_new_loops;
722
723 calculate_dominance_info (CDI_DOMINATORS);
724
725 timevar_push (TV_REPAIR_LOOPS);
726 changed_bbs = BITMAP_ALLOC (NULL);
727 n_new_loops = fix_loop_structure (changed_bbs);
728
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);
737
738 BITMAP_FREE (changed_bbs);
739
740 #ifdef ENABLE_CHECKING
741 verify_loop_structure ();
742 #endif
743 scev_reset ();
744
745 timevar_pop (TV_REPAIR_LOOPS);
746 }
747
748 /* Cleanup cfg and repair loop structures. */
749
750 bool
751 cleanup_tree_cfg (void)
752 {
753 bool changed = cleanup_tree_cfg_noloop ();
754
755 if (current_loops != NULL
756 && loops_state_satisfies_p (LOOPS_NEED_FIXUP))
757 repair_loop_structures ();
758
759 return changed;
760 }
761
762 /* Tries to merge the PHI nodes at BB into those at BB's sole successor.
763 Returns true if successful. */
764
765 static bool
766 remove_forwarder_block_with_phi (basic_block bb)
767 {
768 edge succ = single_succ_edge (bb);
769 basic_block dest = succ->dest;
770 gimple label;
771 basic_block dombb, domdest, dom;
772
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;
778
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;
786
787 /* Redirect each incoming edge to BB to DEST. */
788 while (EDGE_COUNT (bb->preds) > 0)
789 {
790 edge e = EDGE_PRED (bb, 0), s;
791 gimple_stmt_iterator gsi;
792
793 s = find_edge (e->src, dest);
794 if (s)
795 {
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))
800 {
801 e = redirect_edge_and_branch (e, dest);
802 redirect_edge_var_map_clear (e);
803 continue;
804 }
805
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));
810 }
811
812 s = redirect_edge_and_branch (e, dest);
813
814 /* redirect_edge_and_branch must not create a new edge. */
815 gcc_assert (s == e);
816
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))
822 {
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);
826
827 if (TREE_CODE (def) == SSA_NAME)
828 {
829 edge_var_map_vector *head;
830 edge_var_map *vm;
831 size_t i;
832
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)
838 {
839 tree old_arg = redirect_edge_var_map_result (vm);
840 tree new_arg = redirect_edge_var_map_def (vm);
841
842 if (def == old_arg)
843 {
844 def = new_arg;
845 locus = redirect_edge_var_map_location (vm);
846 break;
847 }
848 }
849 }
850
851 add_phi_arg (phi, def, s, locus);
852 }
853
854 redirect_edge_var_map_clear (e);
855 }
856
857 /* Update the dominators. */
858 dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
859 domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
860 if (domdest == bb)
861 {
862 /* Shortcut to avoid calling (relatively expensive)
863 nearest_common_dominator unless necessary. */
864 dom = dombb;
865 }
866 else
867 dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
868
869 set_immediate_dominator (CDI_DOMINATORS, dest, dom);
870
871 /* Remove BB since all of BB's incoming edges have been redirected
872 to DEST. */
873 delete_basic_block (bb);
874
875 return true;
876 }
877
878 /* This pass merges PHI nodes if one feeds into another. For example,
879 suppose we have the following:
880
881 goto <bb 9> (<L9>);
882
883 <L8>:;
884 tem_17 = foo ();
885
886 # tem_6 = PHI <tem_17(8), tem_23(7)>;
887 <L9>:;
888
889 # tem_3 = PHI <tem_6(9), tem_2(5)>;
890 <L10>:;
891
892 Then we merge the first PHI node into the second one like so:
893
894 goto <bb 9> (<L10>);
895
896 <L8>:;
897 tem_17 = foo ();
898
899 # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
900 <L10>:;
901 */
902
903 static unsigned int
904 merge_phi_nodes (void)
905 {
906 basic_block *worklist = XNEWVEC (basic_block, n_basic_blocks);
907 basic_block *current = worklist;
908 basic_block bb;
909
910 calculate_dominance_info (CDI_DOMINATORS);
911
912 /* Find all PHI nodes that we may be able to merge. */
913 FOR_EACH_BB (bb)
914 {
915 basic_block dest;
916
917 /* Look for a forwarder block with PHI nodes. */
918 if (!tree_forwarder_block_p (bb, true))
919 continue;
920
921 dest = single_succ (bb);
922
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;
930
931 if (!dominated_by_p (CDI_DOMINATORS, dest, bb))
932 {
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;
937 }
938 else
939 {
940 gimple_stmt_iterator gsi;
941 unsigned int dest_idx = single_succ_edge (bb)->dest_idx;
942
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))
950 {
951 gimple phi = gsi_stmt (gsi);
952 tree result = gimple_phi_result (phi);
953 use_operand_p imm_use;
954 gimple use_stmt;
955
956 /* If the PHI's result is never used, then we can just
957 ignore it. */
958 if (has_zero_uses (result))
959 continue;
960
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;
967 }
968
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;
973 }
974 }
975
976 /* Now let's drain WORKLIST. */
977 bool changed = false;
978 while (current != worklist)
979 {
980 bb = *--current;
981 changed |= remove_forwarder_block_with_phi (bb);
982 }
983 free (worklist);
984
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);
990
991 return 0;
992 }
993
994 static bool
995 gate_merge_phi (void)
996 {
997 return 1;
998 }
999
1000 namespace {
1001
1002 const pass_data pass_data_merge_phi =
1003 {
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 */
1015 };
1016
1017 class pass_merge_phi : public gimple_opt_pass
1018 {
1019 public:
1020 pass_merge_phi (gcc::context *ctxt)
1021 : gimple_opt_pass (pass_data_merge_phi, ctxt)
1022 {}
1023
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 (); }
1028
1029 }; // class pass_merge_phi
1030
1031 } // anon namespace
1032
1033 gimple_opt_pass *
1034 make_pass_merge_phi (gcc::context *ctxt)
1035 {
1036 return new pass_merge_phi (ctxt);
1037 }
1038
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. */
1043
1044 static unsigned int
1045 execute_cleanup_cfg_post_optimizing (void)
1046 {
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)
1055 {
1056 FILE *final_output = fopen (flag_dump_final_insns, "a");
1057
1058 if (!final_output)
1059 {
1060 error ("could not open final insn dump file %qs: %m",
1061 flag_dump_final_insns);
1062 flag_dump_final_insns = NULL;
1063 }
1064 else
1065 {
1066 int save_unnumbered = flag_dump_unnumbered;
1067 int save_noaddr = flag_dump_noaddr;
1068
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))
1075 {
1076 error ("could not close final insn dump file %qs: %m",
1077 flag_dump_final_insns);
1078 flag_dump_final_insns = NULL;
1079 }
1080 }
1081 }
1082 return todo;
1083 }
1084
1085 namespace {
1086
1087 const pass_data pass_data_cleanup_cfg_post_optimizing =
1088 {
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 */
1100 };
1101
1102 class pass_cleanup_cfg_post_optimizing : public gimple_opt_pass
1103 {
1104 public:
1105 pass_cleanup_cfg_post_optimizing (gcc::context *ctxt)
1106 : gimple_opt_pass (pass_data_cleanup_cfg_post_optimizing, ctxt)
1107 {}
1108
1109 /* opt_pass methods: */
1110 unsigned int execute () {
1111 return execute_cleanup_cfg_post_optimizing ();
1112 }
1113
1114 }; // class pass_cleanup_cfg_post_optimizing
1115
1116 } // anon namespace
1117
1118 gimple_opt_pass *
1119 make_pass_cleanup_cfg_post_optimizing (gcc::context *ctxt)
1120 {
1121 return new pass_cleanup_cfg_post_optimizing (ctxt);
1122 }
1123
1124