re PR tree-optimization/43186 (A loop in tree_unroll_loops_completely never ends)
[gcc.git] / gcc / tree-cfgcleanup.c
1 /* CFG cleanup for trees.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "rtl.h"
27 #include "tm_p.h"
28 #include "hard-reg-set.h"
29 #include "basic-block.h"
30 #include "output.h"
31 #include "toplev.h"
32 #include "flags.h"
33 #include "function.h"
34 #include "expr.h"
35 #include "ggc.h"
36 #include "langhooks.h"
37 #include "diagnostic.h"
38 #include "tree-flow.h"
39 #include "timevar.h"
40 #include "tree-dump.h"
41 #include "tree-pass.h"
42 #include "toplev.h"
43 #include "except.h"
44 #include "cfgloop.h"
45 #include "cfglayout.h"
46 #include "hashtab.h"
47 #include "tree-ssa-propagate.h"
48 #include "tree-scalar-evolution.h"
49
50 /* The set of blocks in that at least one of the following changes happened:
51 -- the statement at the end of the block was changed
52 -- the block was newly created
53 -- the set of the predecessors of the block changed
54 -- the set of the successors of the block changed
55 ??? Maybe we could track these changes separately, since they determine
56 what cleanups it makes sense to try on the block. */
57 bitmap cfgcleanup_altered_bbs;
58
59 /* Remove any fallthru edge from EV. Return true if an edge was removed. */
60
61 static bool
62 remove_fallthru_edge (VEC(edge,gc) *ev)
63 {
64 edge_iterator ei;
65 edge e;
66
67 FOR_EACH_EDGE (e, ei, ev)
68 if ((e->flags & EDGE_FALLTHRU) != 0)
69 {
70 remove_edge_and_dominated_blocks (e);
71 return true;
72 }
73 return false;
74 }
75
76
77 /* Disconnect an unreachable block in the control expression starting
78 at block BB. */
79
80 static bool
81 cleanup_control_expr_graph (basic_block bb, gimple_stmt_iterator gsi)
82 {
83 edge taken_edge;
84 bool retval = false;
85 gimple stmt = gsi_stmt (gsi);
86 tree val;
87
88 if (!single_succ_p (bb))
89 {
90 edge e;
91 edge_iterator ei;
92 bool warned;
93 location_t loc;
94
95 fold_defer_overflow_warnings ();
96 loc = gimple_location (stmt);
97 switch (gimple_code (stmt))
98 {
99 case GIMPLE_COND:
100 {
101 tree lhs = gimple_cond_lhs (stmt);
102 tree rhs = gimple_cond_rhs (stmt);
103 /* For conditions try harder and lookup single-argument
104 PHI nodes. Only do so from the same basic-block though
105 as other basic-blocks may be dead already. */
106 if (TREE_CODE (lhs) == SSA_NAME)
107 {
108 gimple def_stmt = SSA_NAME_DEF_STMT (lhs);
109 if (gimple_code (def_stmt) == GIMPLE_PHI
110 && gimple_phi_num_args (def_stmt) == 1
111 && gimple_bb (def_stmt) == gimple_bb (stmt))
112 lhs = PHI_ARG_DEF (def_stmt, 0);
113 }
114 if (TREE_CODE (rhs) == SSA_NAME)
115 {
116 gimple def_stmt = SSA_NAME_DEF_STMT (rhs);
117 if (gimple_code (def_stmt) == GIMPLE_PHI
118 && gimple_phi_num_args (def_stmt) == 1
119 && gimple_bb (def_stmt) == gimple_bb (stmt))
120 rhs = PHI_ARG_DEF (def_stmt, 0);
121 }
122 val = fold_binary_loc (loc, gimple_cond_code (stmt),
123 boolean_type_node, lhs, rhs);
124 break;
125 }
126
127 case GIMPLE_SWITCH:
128 val = gimple_switch_index (stmt);
129 break;
130
131 default:
132 val = NULL_TREE;
133 }
134 taken_edge = find_taken_edge (bb, val);
135 if (!taken_edge)
136 {
137 fold_undefer_and_ignore_overflow_warnings ();
138 return false;
139 }
140
141 /* Remove all the edges except the one that is always executed. */
142 warned = false;
143 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
144 {
145 if (e != taken_edge)
146 {
147 if (!warned)
148 {
149 fold_undefer_overflow_warnings
150 (true, stmt, WARN_STRICT_OVERFLOW_CONDITIONAL);
151 warned = true;
152 }
153
154 taken_edge->probability += e->probability;
155 taken_edge->count += e->count;
156 remove_edge_and_dominated_blocks (e);
157 retval = true;
158 }
159 else
160 ei_next (&ei);
161 }
162 if (!warned)
163 fold_undefer_and_ignore_overflow_warnings ();
164 if (taken_edge->probability > REG_BR_PROB_BASE)
165 taken_edge->probability = REG_BR_PROB_BASE;
166 }
167 else
168 taken_edge = single_succ_edge (bb);
169
170 bitmap_set_bit (cfgcleanup_altered_bbs, bb->index);
171 gsi_remove (&gsi, true);
172 taken_edge->flags = EDGE_FALLTHRU;
173
174 return retval;
175 }
176
177 /* Try to remove superfluous control structures in basic block BB. Returns
178 true if anything changes. */
179
180 static bool
181 cleanup_control_flow_bb (basic_block bb)
182 {
183 gimple_stmt_iterator gsi;
184 bool retval = false;
185 gimple stmt;
186
187 /* If the last statement of the block could throw and now cannot,
188 we need to prune cfg. */
189 retval |= gimple_purge_dead_eh_edges (bb);
190
191 gsi = gsi_last_bb (bb);
192 if (gsi_end_p (gsi))
193 return retval;
194
195 stmt = gsi_stmt (gsi);
196
197 if (gimple_code (stmt) == GIMPLE_COND
198 || gimple_code (stmt) == GIMPLE_SWITCH)
199 retval |= cleanup_control_expr_graph (bb, gsi);
200 else if (gimple_code (stmt) == GIMPLE_GOTO
201 && TREE_CODE (gimple_goto_dest (stmt)) == ADDR_EXPR
202 && (TREE_CODE (TREE_OPERAND (gimple_goto_dest (stmt), 0))
203 == LABEL_DECL))
204 {
205 /* If we had a computed goto which has a compile-time determinable
206 destination, then we can eliminate the goto. */
207 edge e;
208 tree label;
209 edge_iterator ei;
210 basic_block target_block;
211
212 /* First look at all the outgoing edges. Delete any outgoing
213 edges which do not go to the right block. For the one
214 edge which goes to the right block, fix up its flags. */
215 label = TREE_OPERAND (gimple_goto_dest (stmt), 0);
216 target_block = label_to_block (label);
217 for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
218 {
219 if (e->dest != target_block)
220 remove_edge_and_dominated_blocks (e);
221 else
222 {
223 /* Turn off the EDGE_ABNORMAL flag. */
224 e->flags &= ~EDGE_ABNORMAL;
225
226 /* And set EDGE_FALLTHRU. */
227 e->flags |= EDGE_FALLTHRU;
228 ei_next (&ei);
229 }
230 }
231
232 bitmap_set_bit (cfgcleanup_altered_bbs, bb->index);
233 bitmap_set_bit (cfgcleanup_altered_bbs, target_block->index);
234
235 /* Remove the GOTO_EXPR as it is not needed. The CFG has all the
236 relevant information we need. */
237 gsi_remove (&gsi, true);
238 retval = true;
239 }
240
241 /* Check for indirect calls that have been turned into
242 noreturn calls. */
243 else if (is_gimple_call (stmt)
244 && gimple_call_noreturn_p (stmt)
245 && remove_fallthru_edge (bb->succs))
246 retval = true;
247
248 return retval;
249 }
250
251 /* Return true if basic block BB does nothing except pass control
252 flow to another block and that we can safely insert a label at
253 the start of the successor block.
254
255 As a precondition, we require that BB be not equal to
256 ENTRY_BLOCK_PTR. */
257
258 static bool
259 tree_forwarder_block_p (basic_block bb, bool phi_wanted)
260 {
261 gimple_stmt_iterator gsi;
262
263 /* BB must have a single outgoing edge. */
264 if (single_succ_p (bb) != 1
265 /* If PHI_WANTED is false, BB must not have any PHI nodes.
266 Otherwise, BB must have PHI nodes. */
267 || gimple_seq_empty_p (phi_nodes (bb)) == phi_wanted
268 /* BB may not be a predecessor of EXIT_BLOCK_PTR. */
269 || single_succ (bb) == EXIT_BLOCK_PTR
270 /* Nor should this be an infinite loop. */
271 || single_succ (bb) == bb
272 /* BB may not have an abnormal outgoing edge. */
273 || (single_succ_edge (bb)->flags & EDGE_ABNORMAL))
274 return false;
275
276 #if ENABLE_CHECKING
277 gcc_assert (bb != ENTRY_BLOCK_PTR);
278 #endif
279
280 /* There should not be an edge coming from entry, or an EH edge. */
281 {
282 edge_iterator ei;
283 edge e;
284
285 FOR_EACH_EDGE (e, ei, bb->preds)
286 if (e->src == ENTRY_BLOCK_PTR || (e->flags & EDGE_EH))
287 return false;
288 }
289
290 /* Now walk through the statements backward. We can ignore labels,
291 anything else means this is not a forwarder block. */
292 for (gsi = gsi_last_bb (bb); !gsi_end_p (gsi); gsi_prev (&gsi))
293 {
294 gimple stmt = gsi_stmt (gsi);
295
296 switch (gimple_code (stmt))
297 {
298 case GIMPLE_LABEL:
299 if (DECL_NONLOCAL (gimple_label_label (stmt)))
300 return false;
301 break;
302
303 /* ??? For now, hope there's a corresponding debug
304 assignment at the destination. */
305 case GIMPLE_DEBUG:
306 break;
307
308 default:
309 return false;
310 }
311 }
312
313 if (current_loops)
314 {
315 basic_block dest;
316 /* Protect loop latches, headers and preheaders. */
317 if (bb->loop_father->header == bb)
318 return false;
319 dest = EDGE_SUCC (bb, 0)->dest;
320
321 if (dest->loop_father->header == dest)
322 return false;
323 }
324 return true;
325 }
326
327 /* Return true if BB has at least one abnormal incoming edge. */
328
329 static inline bool
330 has_abnormal_incoming_edge_p (basic_block bb)
331 {
332 edge e;
333 edge_iterator ei;
334
335 FOR_EACH_EDGE (e, ei, bb->preds)
336 if (e->flags & EDGE_ABNORMAL)
337 return true;
338
339 return false;
340 }
341
342 /* If all the PHI nodes in DEST have alternatives for E1 and E2 and
343 those alternatives are equal in each of the PHI nodes, then return
344 true, else return false. */
345
346 static bool
347 phi_alternatives_equal (basic_block dest, edge e1, edge e2)
348 {
349 int n1 = e1->dest_idx;
350 int n2 = e2->dest_idx;
351 gimple_stmt_iterator gsi;
352
353 for (gsi = gsi_start_phis (dest); !gsi_end_p (gsi); gsi_next (&gsi))
354 {
355 gimple phi = gsi_stmt (gsi);
356 tree val1 = gimple_phi_arg_def (phi, n1);
357 tree val2 = gimple_phi_arg_def (phi, n2);
358
359 gcc_assert (val1 != NULL_TREE);
360 gcc_assert (val2 != NULL_TREE);
361
362 if (!operand_equal_for_phi_arg_p (val1, val2))
363 return false;
364 }
365
366 return true;
367 }
368
369 /* Removes forwarder block BB. Returns false if this failed. */
370
371 static bool
372 remove_forwarder_block (basic_block bb)
373 {
374 edge succ = single_succ_edge (bb), e, s;
375 basic_block dest = succ->dest;
376 gimple label;
377 edge_iterator ei;
378 gimple_stmt_iterator gsi, gsi_to;
379
380 /* We check for infinite loops already in tree_forwarder_block_p.
381 However it may happen that the infinite loop is created
382 afterwards due to removal of forwarders. */
383 if (dest == bb)
384 return false;
385
386 /* If the destination block consists of a nonlocal label or is a
387 EH landing pad, do not merge it. */
388 label = first_stmt (dest);
389 if (label
390 && gimple_code (label) == GIMPLE_LABEL
391 && (DECL_NONLOCAL (gimple_label_label (label))
392 || EH_LANDING_PAD_NR (gimple_label_label (label)) != 0))
393 return false;
394
395 /* If there is an abnormal edge to basic block BB, but not into
396 dest, problems might occur during removal of the phi node at out
397 of ssa due to overlapping live ranges of registers.
398
399 If there is an abnormal edge in DEST, the problems would occur
400 anyway since cleanup_dead_labels would then merge the labels for
401 two different eh regions, and rest of exception handling code
402 does not like it.
403
404 So if there is an abnormal edge to BB, proceed only if there is
405 no abnormal edge to DEST and there are no phi nodes in DEST. */
406 if (has_abnormal_incoming_edge_p (bb)
407 && (has_abnormal_incoming_edge_p (dest)
408 || !gimple_seq_empty_p (phi_nodes (dest))))
409 return false;
410
411 /* If there are phi nodes in DEST, and some of the blocks that are
412 predecessors of BB are also predecessors of DEST, check that the
413 phi node arguments match. */
414 if (!gimple_seq_empty_p (phi_nodes (dest)))
415 {
416 FOR_EACH_EDGE (e, ei, bb->preds)
417 {
418 s = find_edge (e->src, dest);
419 if (!s)
420 continue;
421
422 if (!phi_alternatives_equal (dest, succ, s))
423 return false;
424 }
425 }
426
427 /* Redirect the edges. */
428 for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
429 {
430 bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
431
432 if (e->flags & EDGE_ABNORMAL)
433 {
434 /* If there is an abnormal edge, redirect it anyway, and
435 move the labels to the new block to make it legal. */
436 s = redirect_edge_succ_nodup (e, dest);
437 }
438 else
439 s = redirect_edge_and_branch (e, dest);
440
441 if (s == e)
442 {
443 /* Create arguments for the phi nodes, since the edge was not
444 here before. */
445 for (gsi = gsi_start_phis (dest);
446 !gsi_end_p (gsi);
447 gsi_next (&gsi))
448 {
449 gimple phi = gsi_stmt (gsi);
450 source_location l = gimple_phi_arg_location_from_edge (phi, succ);
451 add_phi_arg (phi, gimple_phi_arg_def (phi, succ->dest_idx), s, l);
452 }
453 }
454 }
455
456 /* Move nonlocal labels and computed goto targets as well as user
457 defined labels and labels with an EH landing pad number to the
458 new block, so that the redirection of the abnormal edges works,
459 jump targets end up in a sane place and debug information for
460 labels is retained. */
461 gsi_to = gsi_start_bb (dest);
462 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); )
463 {
464 tree decl;
465 label = gsi_stmt (gsi);
466 if (is_gimple_debug (label))
467 break;
468 decl = gimple_label_label (label);
469 if (EH_LANDING_PAD_NR (decl) != 0
470 || DECL_NONLOCAL (decl)
471 || FORCED_LABEL (decl)
472 || !DECL_ARTIFICIAL (decl))
473 {
474 gsi_remove (&gsi, false);
475 gsi_insert_before (&gsi_to, label, GSI_SAME_STMT);
476 }
477 else
478 gsi_next (&gsi);
479 }
480
481 /* Move debug statements if the destination has just a single
482 predecessor. */
483 if (single_pred_p (dest))
484 {
485 gsi_to = gsi_after_labels (dest);
486 for (gsi = gsi_after_labels (bb); !gsi_end_p (gsi); )
487 {
488 if (!is_gimple_debug (gsi_stmt (gsi)))
489 break;
490 gsi_remove (&gsi, false);
491 gsi_insert_before (&gsi_to, label, GSI_SAME_STMT);
492 }
493 }
494
495 bitmap_set_bit (cfgcleanup_altered_bbs, dest->index);
496
497 /* Update the dominators. */
498 if (dom_info_available_p (CDI_DOMINATORS))
499 {
500 basic_block dom, dombb, domdest;
501
502 dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
503 domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
504 if (domdest == bb)
505 {
506 /* Shortcut to avoid calling (relatively expensive)
507 nearest_common_dominator unless necessary. */
508 dom = dombb;
509 }
510 else
511 dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
512
513 set_immediate_dominator (CDI_DOMINATORS, dest, dom);
514 }
515
516 /* And kill the forwarder block. */
517 delete_basic_block (bb);
518
519 return true;
520 }
521
522 /* Split basic blocks on calls in the middle of a basic block that are now
523 known not to return, and remove the unreachable code. */
524
525 static bool
526 split_bbs_on_noreturn_calls (void)
527 {
528 bool changed = false;
529 gimple stmt;
530 basic_block bb;
531
532 /* Detect cases where a mid-block call is now known not to return. */
533 if (cfun->gimple_df)
534 while (VEC_length (gimple, MODIFIED_NORETURN_CALLS (cfun)))
535 {
536 stmt = VEC_pop (gimple, MODIFIED_NORETURN_CALLS (cfun));
537 bb = gimple_bb (stmt);
538 /* BB might be deleted at this point, so verify first
539 BB is present in the cfg. */
540 if (bb == NULL
541 || bb->index < NUM_FIXED_BLOCKS
542 || bb->index >= n_basic_blocks
543 || BASIC_BLOCK (bb->index) != bb
544 || last_stmt (bb) == stmt
545 || !gimple_call_noreturn_p (stmt))
546 continue;
547
548 changed = true;
549 split_block (bb, stmt);
550 remove_fallthru_edge (bb->succs);
551 }
552
553 return changed;
554 }
555
556 /* If GIMPLE_OMP_RETURN in basic block BB is unreachable, remove it. */
557
558 static bool
559 cleanup_omp_return (basic_block bb)
560 {
561 gimple stmt = last_stmt (bb);
562 basic_block control_bb;
563
564 if (stmt == NULL
565 || gimple_code (stmt) != GIMPLE_OMP_RETURN
566 || !single_pred_p (bb))
567 return false;
568
569 control_bb = single_pred (bb);
570 stmt = last_stmt (control_bb);
571
572 if (stmt == NULL || gimple_code (stmt) != GIMPLE_OMP_SECTIONS_SWITCH)
573 return false;
574
575 /* The block with the control statement normally has two entry edges -- one
576 from entry, one from continue. If continue is removed, return is
577 unreachable, so we remove it here as well. */
578 if (EDGE_COUNT (control_bb->preds) == 2)
579 return false;
580
581 gcc_assert (EDGE_COUNT (control_bb->preds) == 1);
582 remove_edge_and_dominated_blocks (single_pred_edge (bb));
583 return true;
584 }
585
586 /* Tries to cleanup cfg in basic block BB. Returns true if anything
587 changes. */
588
589 static bool
590 cleanup_tree_cfg_bb (basic_block bb)
591 {
592 bool retval = false;
593
594 if (cleanup_omp_return (bb))
595 return true;
596
597 retval = cleanup_control_flow_bb (bb);
598
599 /* Forwarder blocks can carry line number information which is
600 useful when debugging, so we only clean them up when
601 optimizing. */
602 if (optimize > 0
603 && tree_forwarder_block_p (bb, false)
604 && remove_forwarder_block (bb))
605 return true;
606
607 /* Merging the blocks may create new opportunities for folding
608 conditional branches (due to the elimination of single-valued PHI
609 nodes). */
610 if (single_succ_p (bb)
611 && can_merge_blocks_p (bb, single_succ (bb)))
612 {
613 merge_blocks (bb, single_succ (bb));
614 return true;
615 }
616
617 return retval;
618 }
619
620 /* Iterate the cfg cleanups, while anything changes. */
621
622 static bool
623 cleanup_tree_cfg_1 (void)
624 {
625 bool retval = false;
626 basic_block bb;
627 unsigned i, n;
628
629 retval |= split_bbs_on_noreturn_calls ();
630
631 /* Prepare the worklists of altered blocks. */
632 cfgcleanup_altered_bbs = BITMAP_ALLOC (NULL);
633
634 /* During forwarder block cleanup, we may redirect edges out of
635 SWITCH_EXPRs, which can get expensive. So we want to enable
636 recording of edge to CASE_LABEL_EXPR. */
637 start_recording_case_labels ();
638
639 /* Start by iterating over all basic blocks. We cannot use FOR_EACH_BB,
640 since the basic blocks may get removed. */
641 n = last_basic_block;
642 for (i = NUM_FIXED_BLOCKS; i < n; i++)
643 {
644 bb = BASIC_BLOCK (i);
645 if (bb)
646 retval |= cleanup_tree_cfg_bb (bb);
647 }
648
649 /* Now process the altered blocks, as long as any are available. */
650 while (!bitmap_empty_p (cfgcleanup_altered_bbs))
651 {
652 i = bitmap_first_set_bit (cfgcleanup_altered_bbs);
653 bitmap_clear_bit (cfgcleanup_altered_bbs, i);
654 if (i < NUM_FIXED_BLOCKS)
655 continue;
656
657 bb = BASIC_BLOCK (i);
658 if (!bb)
659 continue;
660
661 retval |= cleanup_tree_cfg_bb (bb);
662
663 /* Rerun split_bbs_on_noreturn_calls, in case we have altered any noreturn
664 calls. */
665 retval |= split_bbs_on_noreturn_calls ();
666 }
667
668 end_recording_case_labels ();
669 BITMAP_FREE (cfgcleanup_altered_bbs);
670 return retval;
671 }
672
673
674 /* Remove unreachable blocks and other miscellaneous clean up work.
675 Return true if the flowgraph was modified, false otherwise. */
676
677 static bool
678 cleanup_tree_cfg_noloop (void)
679 {
680 bool changed;
681
682 timevar_push (TV_TREE_CLEANUP_CFG);
683
684 /* Iterate until there are no more cleanups left to do. If any
685 iteration changed the flowgraph, set CHANGED to true.
686
687 If dominance information is available, there cannot be any unreachable
688 blocks. */
689 if (!dom_info_available_p (CDI_DOMINATORS))
690 {
691 changed = delete_unreachable_blocks ();
692 calculate_dominance_info (CDI_DOMINATORS);
693 }
694 else
695 {
696 #ifdef ENABLE_CHECKING
697 verify_dominators (CDI_DOMINATORS);
698 #endif
699 changed = false;
700 }
701
702 changed |= cleanup_tree_cfg_1 ();
703
704 gcc_assert (dom_info_available_p (CDI_DOMINATORS));
705 compact_blocks ();
706
707 #ifdef ENABLE_CHECKING
708 verify_flow_info ();
709 #endif
710
711 timevar_pop (TV_TREE_CLEANUP_CFG);
712
713 if (changed && current_loops)
714 loops_state_set (LOOPS_NEED_FIXUP);
715
716 return changed;
717 }
718
719 /* Repairs loop structures. */
720
721 static void
722 repair_loop_structures (void)
723 {
724 bitmap changed_bbs = BITMAP_ALLOC (NULL);
725 fix_loop_structure (changed_bbs);
726
727 /* This usually does nothing. But sometimes parts of cfg that originally
728 were inside a loop get out of it due to edge removal (since they
729 become unreachable by back edges from latch). */
730 if (loops_state_satisfies_p (LOOP_CLOSED_SSA))
731 rewrite_into_loop_closed_ssa (changed_bbs, TODO_update_ssa);
732
733 BITMAP_FREE (changed_bbs);
734
735 #ifdef ENABLE_CHECKING
736 verify_loop_structure ();
737 #endif
738 scev_reset ();
739
740 loops_state_clear (LOOPS_NEED_FIXUP);
741 }
742
743 /* Cleanup cfg and repair loop structures. */
744
745 bool
746 cleanup_tree_cfg (void)
747 {
748 bool changed = cleanup_tree_cfg_noloop ();
749
750 if (current_loops != NULL
751 && loops_state_satisfies_p (LOOPS_NEED_FIXUP))
752 repair_loop_structures ();
753
754 return changed;
755 }
756
757 /* Merge the PHI nodes at BB into those at BB's sole successor. */
758
759 static void
760 remove_forwarder_block_with_phi (basic_block bb)
761 {
762 edge succ = single_succ_edge (bb);
763 basic_block dest = succ->dest;
764 gimple label;
765 basic_block dombb, domdest, dom;
766
767 /* We check for infinite loops already in tree_forwarder_block_p.
768 However it may happen that the infinite loop is created
769 afterwards due to removal of forwarders. */
770 if (dest == bb)
771 return;
772
773 /* If the destination block consists of a nonlocal label, do not
774 merge it. */
775 label = first_stmt (dest);
776 if (label
777 && gimple_code (label) == GIMPLE_LABEL
778 && DECL_NONLOCAL (gimple_label_label (label)))
779 return;
780
781 /* Redirect each incoming edge to BB to DEST. */
782 while (EDGE_COUNT (bb->preds) > 0)
783 {
784 edge e = EDGE_PRED (bb, 0), s;
785 gimple_stmt_iterator gsi;
786
787 s = find_edge (e->src, dest);
788 if (s)
789 {
790 /* We already have an edge S from E->src to DEST. If S and
791 E->dest's sole successor edge have the same PHI arguments
792 at DEST, redirect S to DEST. */
793 if (phi_alternatives_equal (dest, s, succ))
794 {
795 e = redirect_edge_and_branch (e, dest);
796 redirect_edge_var_map_clear (e);
797 continue;
798 }
799
800 /* PHI arguments are different. Create a forwarder block by
801 splitting E so that we can merge PHI arguments on E to
802 DEST. */
803 e = single_succ_edge (split_edge (e));
804 }
805
806 s = redirect_edge_and_branch (e, dest);
807
808 /* redirect_edge_and_branch must not create a new edge. */
809 gcc_assert (s == e);
810
811 /* Add to the PHI nodes at DEST each PHI argument removed at the
812 destination of E. */
813 for (gsi = gsi_start_phis (dest);
814 !gsi_end_p (gsi);
815 gsi_next (&gsi))
816 {
817 gimple phi = gsi_stmt (gsi);
818 tree def = gimple_phi_arg_def (phi, succ->dest_idx);
819 source_location locus = gimple_phi_arg_location_from_edge (phi, succ);
820
821 if (TREE_CODE (def) == SSA_NAME)
822 {
823 edge_var_map_vector head;
824 edge_var_map *vm;
825 size_t i;
826
827 /* If DEF is one of the results of PHI nodes removed during
828 redirection, replace it with the PHI argument that used
829 to be on E. */
830 head = redirect_edge_var_map_vector (e);
831 for (i = 0; VEC_iterate (edge_var_map, head, i, vm); ++i)
832 {
833 tree old_arg = redirect_edge_var_map_result (vm);
834 tree new_arg = redirect_edge_var_map_def (vm);
835
836 if (def == old_arg)
837 {
838 def = new_arg;
839 locus = redirect_edge_var_map_location (vm);
840 break;
841 }
842 }
843 }
844
845 add_phi_arg (phi, def, s, locus);
846 }
847
848 redirect_edge_var_map_clear (e);
849 }
850
851 /* Update the dominators. */
852 dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
853 domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
854 if (domdest == bb)
855 {
856 /* Shortcut to avoid calling (relatively expensive)
857 nearest_common_dominator unless necessary. */
858 dom = dombb;
859 }
860 else
861 dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
862
863 set_immediate_dominator (CDI_DOMINATORS, dest, dom);
864
865 /* Remove BB since all of BB's incoming edges have been redirected
866 to DEST. */
867 delete_basic_block (bb);
868 }
869
870 /* This pass merges PHI nodes if one feeds into another. For example,
871 suppose we have the following:
872
873 goto <bb 9> (<L9>);
874
875 <L8>:;
876 tem_17 = foo ();
877
878 # tem_6 = PHI <tem_17(8), tem_23(7)>;
879 <L9>:;
880
881 # tem_3 = PHI <tem_6(9), tem_2(5)>;
882 <L10>:;
883
884 Then we merge the first PHI node into the second one like so:
885
886 goto <bb 9> (<L10>);
887
888 <L8>:;
889 tem_17 = foo ();
890
891 # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
892 <L10>:;
893 */
894
895 static unsigned int
896 merge_phi_nodes (void)
897 {
898 basic_block *worklist = XNEWVEC (basic_block, n_basic_blocks);
899 basic_block *current = worklist;
900 basic_block bb;
901
902 calculate_dominance_info (CDI_DOMINATORS);
903
904 /* Find all PHI nodes that we may be able to merge. */
905 FOR_EACH_BB (bb)
906 {
907 basic_block dest;
908
909 /* Look for a forwarder block with PHI nodes. */
910 if (!tree_forwarder_block_p (bb, true))
911 continue;
912
913 dest = single_succ (bb);
914
915 /* We have to feed into another basic block with PHI
916 nodes. */
917 if (gimple_seq_empty_p (phi_nodes (dest))
918 /* We don't want to deal with a basic block with
919 abnormal edges. */
920 || has_abnormal_incoming_edge_p (bb))
921 continue;
922
923 if (!dominated_by_p (CDI_DOMINATORS, dest, bb))
924 {
925 /* If BB does not dominate DEST, then the PHI nodes at
926 DEST must be the only users of the results of the PHI
927 nodes at BB. */
928 *current++ = bb;
929 }
930 else
931 {
932 gimple_stmt_iterator gsi;
933 unsigned int dest_idx = single_succ_edge (bb)->dest_idx;
934
935 /* BB dominates DEST. There may be many users of the PHI
936 nodes in BB. However, there is still a trivial case we
937 can handle. If the result of every PHI in BB is used
938 only by a PHI in DEST, then we can trivially merge the
939 PHI nodes from BB into DEST. */
940 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
941 gsi_next (&gsi))
942 {
943 gimple phi = gsi_stmt (gsi);
944 tree result = gimple_phi_result (phi);
945 use_operand_p imm_use;
946 gimple use_stmt;
947
948 /* If the PHI's result is never used, then we can just
949 ignore it. */
950 if (has_zero_uses (result))
951 continue;
952
953 /* Get the single use of the result of this PHI node. */
954 if (!single_imm_use (result, &imm_use, &use_stmt)
955 || gimple_code (use_stmt) != GIMPLE_PHI
956 || gimple_bb (use_stmt) != dest
957 || gimple_phi_arg_def (use_stmt, dest_idx) != result)
958 break;
959 }
960
961 /* If the loop above iterated through all the PHI nodes
962 in BB, then we can merge the PHIs from BB into DEST. */
963 if (gsi_end_p (gsi))
964 *current++ = bb;
965 }
966 }
967
968 /* Now let's drain WORKLIST. */
969 while (current != worklist)
970 {
971 bb = *--current;
972 remove_forwarder_block_with_phi (bb);
973 }
974
975 free (worklist);
976 return 0;
977 }
978
979 static bool
980 gate_merge_phi (void)
981 {
982 return 1;
983 }
984
985 struct gimple_opt_pass pass_merge_phi =
986 {
987 {
988 GIMPLE_PASS,
989 "mergephi", /* name */
990 gate_merge_phi, /* gate */
991 merge_phi_nodes, /* execute */
992 NULL, /* sub */
993 NULL, /* next */
994 0, /* static_pass_number */
995 TV_TREE_MERGE_PHI, /* tv_id */
996 PROP_cfg | PROP_ssa, /* properties_required */
997 0, /* properties_provided */
998 0, /* properties_destroyed */
999 0, /* todo_flags_start */
1000 TODO_dump_func | TODO_ggc_collect /* todo_flags_finish */
1001 | TODO_verify_ssa
1002 }
1003 };