OSDN Git Service

c35001c33e7c2978e5a3c0a95e01df74d146d3a3
[pf3gnuchains/gcc-fork.git] / gcc / tree-cfgcleanup.c
1 /* CFG cleanup for trees.
2    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
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 /* Disconnect an unreachable block in the control expression starting
77    at block BB.  */
78
79 static bool
80 cleanup_control_expr_graph (basic_block bb, block_stmt_iterator bsi)
81 {
82   edge taken_edge;
83   bool retval = false;
84   tree expr = bsi_stmt (bsi), val;
85
86   if (!single_succ_p (bb))
87     {
88       edge e;
89       edge_iterator ei;
90       bool warned;
91
92       fold_defer_overflow_warnings ();
93
94       switch (TREE_CODE (expr))
95         {
96         case COND_EXPR:
97           val = fold (COND_EXPR_COND (expr));
98           break;
99
100         case SWITCH_EXPR:
101           val = fold (SWITCH_COND (expr));
102           if (TREE_CODE (val) != INTEGER_CST)
103             {
104               fold_undefer_and_ignore_overflow_warnings ();
105               return false;
106             }
107           break;
108
109         default:
110           gcc_unreachable ();
111         }
112
113       taken_edge = find_taken_edge (bb, val);
114       if (!taken_edge)
115         {
116           fold_undefer_and_ignore_overflow_warnings ();
117           return false;
118         }
119
120       /* Remove all the edges except the one that is always executed.  */
121       warned = false;
122       for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
123         {
124           if (e != taken_edge)
125             {
126               if (!warned)
127                 {
128                   fold_undefer_overflow_warnings
129                     (true, expr, WARN_STRICT_OVERFLOW_CONDITIONAL);
130                   warned = true;
131                 }
132
133               taken_edge->probability += e->probability;
134               taken_edge->count += e->count;
135               remove_edge_and_dominated_blocks (e);
136               retval = true;
137             }
138           else
139             ei_next (&ei);
140         }
141       if (!warned)
142         fold_undefer_and_ignore_overflow_warnings ();
143       if (taken_edge->probability > REG_BR_PROB_BASE)
144         taken_edge->probability = REG_BR_PROB_BASE;
145     }
146   else
147     taken_edge = single_succ_edge (bb);
148
149   bitmap_set_bit (cfgcleanup_altered_bbs, bb->index);
150   bsi_remove (&bsi, true);
151   taken_edge->flags = EDGE_FALLTHRU;
152
153   return retval;
154 }
155
156 /* Try to remove superfluous control structures in basic block BB.  Returns
157    true if anything changes.  */
158
159 static bool
160 cleanup_control_flow_bb (basic_block bb)
161 {
162   block_stmt_iterator bsi;
163   bool retval = false;
164   tree stmt;
165
166   /* If the last statement of the block could throw and now cannot,
167      we need to prune cfg.  */
168   retval |= tree_purge_dead_eh_edges (bb);
169
170   bsi = bsi_last (bb);
171   if (bsi_end_p (bsi))
172     return retval;
173
174   stmt = bsi_stmt (bsi);
175
176   if (TREE_CODE (stmt) == COND_EXPR
177       || TREE_CODE (stmt) == SWITCH_EXPR)
178     retval |= cleanup_control_expr_graph (bb, bsi);
179   /* If we had a computed goto which has a compile-time determinable
180      destination, then we can eliminate the goto.  */
181   else if (TREE_CODE (stmt) == GOTO_EXPR
182            && TREE_CODE (GOTO_DESTINATION (stmt)) == ADDR_EXPR
183            && (TREE_CODE (TREE_OPERAND (GOTO_DESTINATION (stmt), 0))
184                == LABEL_DECL))
185     {
186       edge e;
187       tree label;
188       edge_iterator ei;
189       basic_block target_block;
190
191       /* First look at all the outgoing edges.  Delete any outgoing
192          edges which do not go to the right block.  For the one
193          edge which goes to the right block, fix up its flags.  */
194       label = TREE_OPERAND (GOTO_DESTINATION (stmt), 0);
195       target_block = label_to_block (label);
196       for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
197         {
198           if (e->dest != target_block)
199             remove_edge_and_dominated_blocks (e);
200           else
201             {
202               /* Turn off the EDGE_ABNORMAL flag.  */
203               e->flags &= ~EDGE_ABNORMAL;
204
205               /* And set EDGE_FALLTHRU.  */
206               e->flags |= EDGE_FALLTHRU;
207               ei_next (&ei);
208             }
209         }
210
211       bitmap_set_bit (cfgcleanup_altered_bbs, bb->index);
212       bitmap_set_bit (cfgcleanup_altered_bbs, target_block->index);
213
214       /* Remove the GOTO_EXPR as it is not needed.  The CFG has all the
215          relevant information we need.  */
216       bsi_remove (&bsi, true);
217       retval = true;
218     }
219
220   /* Check for indirect calls that have been turned into
221      noreturn calls.  */
222   else if (noreturn_call_p (stmt) && remove_fallthru_edge (bb->succs))
223     retval = true;
224
225   return retval;
226 }
227
228 /* Return true if basic block BB does nothing except pass control
229    flow to another block and that we can safely insert a label at
230    the start of the successor block.
231
232    As a precondition, we require that BB be not equal to
233    ENTRY_BLOCK_PTR.  */
234
235 static bool
236 tree_forwarder_block_p (basic_block bb, bool phi_wanted)
237 {
238   block_stmt_iterator bsi;
239   edge_iterator ei;
240   edge e, succ;
241   basic_block dest;
242
243   /* BB must have a single outgoing edge.  */
244   if (single_succ_p (bb) != 1
245       /* If PHI_WANTED is false, BB must not have any PHI nodes.
246          Otherwise, BB must have PHI nodes.  */
247       || (phi_nodes (bb) != NULL_TREE) != phi_wanted
248       /* BB may not be a predecessor of EXIT_BLOCK_PTR.  */
249       || single_succ (bb) == EXIT_BLOCK_PTR
250       /* Nor should this be an infinite loop.  */
251       || single_succ (bb) == bb
252       /* BB may not have an abnormal outgoing edge.  */
253       || (single_succ_edge (bb)->flags & EDGE_ABNORMAL))
254     return false;
255
256 #if ENABLE_CHECKING
257   gcc_assert (bb != ENTRY_BLOCK_PTR);
258 #endif
259
260   /* Now walk through the statements backward.  We can ignore labels,
261      anything else means this is not a forwarder block.  */
262   for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_prev (&bsi))
263     {
264       tree stmt = bsi_stmt (bsi);
265
266       switch (TREE_CODE (stmt))
267         {
268         case LABEL_EXPR:
269           if (DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
270             return false;
271           break;
272
273         default:
274           return false;
275         }
276     }
277
278   if (find_edge (ENTRY_BLOCK_PTR, bb))
279     return false;
280
281   if (current_loops)
282     {
283       basic_block dest;
284       /* Protect loop latches, headers and preheaders.  */
285       if (bb->loop_father->header == bb)
286         return false;
287       dest = EDGE_SUCC (bb, 0)->dest;
288
289       if (dest->loop_father->header == dest)
290         return false;
291     }
292
293   /* If we have an EH edge leaving this block, make sure that the
294      destination of this block has only one predecessor.  This ensures
295      that we don't get into the situation where we try to remove two
296      forwarders that go to the same basic block but are handlers for
297      different EH regions.  */
298   succ = single_succ_edge (bb);
299   dest = succ->dest;
300   FOR_EACH_EDGE (e, ei, bb->preds)
301     {
302       if (e->flags & EDGE_EH)
303         {
304           if (!single_pred_p (dest))
305             return false;
306         }
307     }
308
309   return true;
310 }
311
312 /* Return true if BB has at least one abnormal incoming edge.  */
313
314 static inline bool
315 has_abnormal_incoming_edge_p (basic_block bb)
316 {
317   edge e;
318   edge_iterator ei;
319
320   FOR_EACH_EDGE (e, ei, bb->preds)
321     if (e->flags & EDGE_ABNORMAL)
322       return true;
323
324   return false;
325 }
326
327 /* If all the PHI nodes in DEST have alternatives for E1 and E2 and
328    those alternatives are equal in each of the PHI nodes, then return
329    true, else return false.  */
330
331 static bool
332 phi_alternatives_equal (basic_block dest, edge e1, edge e2)
333 {
334   int n1 = e1->dest_idx;
335   int n2 = e2->dest_idx;
336   tree phi;
337
338   for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
339     {
340       tree val1 = PHI_ARG_DEF (phi, n1);
341       tree val2 = PHI_ARG_DEF (phi, n2);
342
343       gcc_assert (val1 != NULL_TREE);
344       gcc_assert (val2 != NULL_TREE);
345
346       if (!operand_equal_for_phi_arg_p (val1, val2))
347         return false;
348     }
349
350   return true;
351 }
352
353 /* Removes forwarder block BB.  Returns false if this failed.  */
354
355 static bool
356 remove_forwarder_block (basic_block bb)
357 {
358   edge succ = single_succ_edge (bb), e, s;
359   basic_block dest = succ->dest;
360   tree label;
361   tree phi;
362   edge_iterator ei;
363   block_stmt_iterator bsi, bsi_to;
364   bool seen_abnormal_edge = false;
365
366   /* We check for infinite loops already in tree_forwarder_block_p.
367      However it may happen that the infinite loop is created
368      afterwards due to removal of forwarders.  */
369   if (dest == bb)
370     return false;
371
372   /* If the destination block consists of a nonlocal label, do not merge
373      it.  */
374   label = first_stmt (dest);
375   if (label
376       && TREE_CODE (label) == LABEL_EXPR
377       && DECL_NONLOCAL (LABEL_EXPR_LABEL (label)))
378     return false;
379
380   /* If there is an abnormal edge to basic block BB, but not into
381      dest, problems might occur during removal of the phi node at out
382      of ssa due to overlapping live ranges of registers.
383
384      If there is an abnormal edge in DEST, the problems would occur
385      anyway since cleanup_dead_labels would then merge the labels for
386      two different eh regions, and rest of exception handling code
387      does not like it.
388
389      So if there is an abnormal edge to BB, proceed only if there is
390      no abnormal edge to DEST and there are no phi nodes in DEST.  */
391   if (has_abnormal_incoming_edge_p (bb))
392     {
393       seen_abnormal_edge = true;
394
395       if (has_abnormal_incoming_edge_p (dest)
396           || phi_nodes (dest) != NULL_TREE)
397         return false;
398     }
399
400   /* If there are phi nodes in DEST, and some of the blocks that are
401      predecessors of BB are also predecessors of DEST, check that the
402      phi node arguments match.  */
403   if (phi_nodes (dest))
404     {
405       FOR_EACH_EDGE (e, ei, bb->preds)
406         {
407           s = find_edge (e->src, dest);
408           if (!s)
409             continue;
410
411           if (!phi_alternatives_equal (dest, succ, s))
412             return false;
413         }
414     }
415
416   /* Redirect the edges.  */
417   for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
418     {
419       bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
420
421       if (e->flags & EDGE_ABNORMAL)
422         {
423           /* If there is an abnormal edge, redirect it anyway, and
424              move the labels to the new block to make it legal.  */
425           s = redirect_edge_succ_nodup (e, dest);
426         }
427       else
428         s = redirect_edge_and_branch (e, dest);
429
430       if (s == e)
431         {
432           /* Create arguments for the phi nodes, since the edge was not
433              here before.  */
434           for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
435             add_phi_arg (phi, PHI_ARG_DEF (phi, succ->dest_idx), s);
436         }
437     }
438
439   if (seen_abnormal_edge)
440     {
441       /* Move the labels to the new block, so that the redirection of
442          the abnormal edges works.  */
443
444       bsi_to = bsi_start (dest);
445       for (bsi = bsi_start (bb); !bsi_end_p (bsi); )
446         {
447           label = bsi_stmt (bsi);
448           gcc_assert (TREE_CODE (label) == LABEL_EXPR);
449           bsi_remove (&bsi, false);
450           bsi_insert_before (&bsi_to, label, BSI_CONTINUE_LINKING);
451         }
452     }
453
454   bitmap_set_bit (cfgcleanup_altered_bbs, dest->index);
455
456   /* Update the dominators.  */
457   if (dom_info_available_p (CDI_DOMINATORS))
458     {
459       basic_block dom, dombb, domdest;
460
461       dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
462       domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
463       if (domdest == bb)
464         {
465           /* Shortcut to avoid calling (relatively expensive)
466              nearest_common_dominator unless necessary.  */
467           dom = dombb;
468         }
469       else
470         dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
471
472       set_immediate_dominator (CDI_DOMINATORS, dest, dom);
473     }
474
475   /* And kill the forwarder block.  */
476   delete_basic_block (bb);
477
478   return true;
479 }
480
481 /* Split basic blocks on calls in the middle of a basic block that are now
482    known not to return, and remove the unreachable code.  */
483
484 static bool
485 split_bbs_on_noreturn_calls (void)
486 {
487   bool changed = false;
488   tree stmt;
489   basic_block bb;
490
491   /* Detect cases where a mid-block call is now known not to return.  */
492   if (cfun->gimple_df)
493     while (VEC_length (tree, MODIFIED_NORETURN_CALLS (cfun)))
494       {
495         stmt = VEC_pop (tree, MODIFIED_NORETURN_CALLS (cfun));
496         bb = bb_for_stmt (stmt);
497         if (bb == NULL
498             || last_stmt (bb) == stmt
499             || !noreturn_call_p (stmt))
500           continue;
501
502         changed = true;
503         split_block (bb, stmt);
504         remove_fallthru_edge (bb->succs);
505       }
506
507   return changed;
508 }
509
510 /* Tries to cleanup cfg in basic block BB.  Returns true if anything
511    changes.  */
512
513 static bool
514 cleanup_tree_cfg_bb (basic_block bb)
515 {
516   bool retval = false;
517
518   retval = cleanup_control_flow_bb (bb);
519
520   /* Forwarder blocks can carry line number information which is
521      useful when debugging, so we only clean them up when
522      optimizing.  */
523
524   if (optimize > 0
525       && tree_forwarder_block_p (bb, false)
526       && remove_forwarder_block (bb))
527     return true;
528
529   /* Merging the blocks may create new opportunities for folding
530      conditional branches (due to the elimination of single-valued PHI
531      nodes).  */
532   if (single_succ_p (bb)
533       && can_merge_blocks_p (bb, single_succ (bb)))
534     {
535       merge_blocks (bb, single_succ (bb));
536       return true;
537     }
538
539   return retval;
540 }
541
542 /* Iterate the cfg cleanups, while anything changes.  */
543
544 static bool
545 cleanup_tree_cfg_1 (void)
546 {
547   bool retval = false;
548   basic_block bb;
549   unsigned i, n;
550
551   retval |= split_bbs_on_noreturn_calls ();
552
553   /* Prepare the worklists of altered blocks.  */
554   cfgcleanup_altered_bbs = BITMAP_ALLOC (NULL);
555
556   /* During forwarder block cleanup, we may redirect edges out of
557      SWITCH_EXPRs, which can get expensive.  So we want to enable
558      recording of edge to CASE_LABEL_EXPR.  */
559   start_recording_case_labels ();
560
561   /* Start by iterating over all basic blocks.  We cannot use FOR_EACH_BB,
562      since the basic blocks may get removed.  */
563   n = last_basic_block;
564   for (i = NUM_FIXED_BLOCKS; i < n; i++)
565     {
566       bb = BASIC_BLOCK (i);
567       if (bb)
568         retval |= cleanup_tree_cfg_bb (bb);
569     }
570
571   /* Now process the altered blocks, as long as any are available.  */
572   while (!bitmap_empty_p (cfgcleanup_altered_bbs))
573     {
574       i = bitmap_first_set_bit (cfgcleanup_altered_bbs);
575       bitmap_clear_bit (cfgcleanup_altered_bbs, i);
576       if (i < NUM_FIXED_BLOCKS)
577         continue;
578
579       bb = BASIC_BLOCK (i);
580       if (!bb)
581         continue;
582
583       retval |= cleanup_tree_cfg_bb (bb);
584
585       /* Rerun split_bbs_on_noreturn_calls, in case we have altered any noreturn
586          calls.  */
587       retval |= split_bbs_on_noreturn_calls ();
588     }
589   
590   end_recording_case_labels ();
591   BITMAP_FREE (cfgcleanup_altered_bbs);
592   return retval;
593 }
594
595
596 /* Remove unreachable blocks and other miscellaneous clean up work.
597    Return true if the flowgraph was modified, false otherwise.  */
598
599 static bool
600 cleanup_tree_cfg_noloop (void)
601 {
602   bool changed;
603
604   timevar_push (TV_TREE_CLEANUP_CFG);
605
606   /* Iterate until there are no more cleanups left to do.  If any
607      iteration changed the flowgraph, set CHANGED to true.
608
609      If dominance information is available, there cannot be any unreachable
610      blocks.  */
611   if (!dom_info_available_p (CDI_DOMINATORS))
612     {
613       changed = delete_unreachable_blocks ();
614       calculate_dominance_info (CDI_DOMINATORS);
615     }
616   else
617     {
618 #ifdef ENABLE_CHECKING
619       verify_dominators (CDI_DOMINATORS);
620 #endif
621       changed = false;
622     }
623
624   changed |= cleanup_tree_cfg_1 ();
625
626   gcc_assert (dom_info_available_p (CDI_DOMINATORS));
627   compact_blocks ();
628
629 #ifdef ENABLE_CHECKING
630   verify_flow_info ();
631 #endif
632
633   timevar_pop (TV_TREE_CLEANUP_CFG);
634
635   if (changed && current_loops)
636     current_loops->state |= LOOPS_NEED_FIXUP;
637
638   return changed;
639 }
640
641 /* Repairs loop structures.  */
642
643 static void
644 repair_loop_structures (void)
645 {
646   bitmap changed_bbs = BITMAP_ALLOC (NULL);
647   fix_loop_structure (changed_bbs);
648
649   /* This usually does nothing.  But sometimes parts of cfg that originally
650      were inside a loop get out of it due to edge removal (since they
651      become unreachable by back edges from latch).  */
652   if ((current_loops->state & LOOP_CLOSED_SSA) != 0)
653     rewrite_into_loop_closed_ssa (changed_bbs, TODO_update_ssa);
654
655   BITMAP_FREE (changed_bbs);
656
657 #ifdef ENABLE_CHECKING
658   verify_loop_structure ();
659 #endif
660   scev_reset ();
661
662   current_loops->state &= ~LOOPS_NEED_FIXUP;
663 }
664
665 /* Cleanup cfg and repair loop structures.  */
666
667 bool
668 cleanup_tree_cfg (void)
669 {
670   bool changed = cleanup_tree_cfg_noloop ();
671
672   if (current_loops != NULL
673       && (current_loops->state & LOOPS_NEED_FIXUP))
674     repair_loop_structures ();
675
676   return changed;
677 }
678
679 /* Merge the PHI nodes at BB into those at BB's sole successor.  */
680
681 static void
682 remove_forwarder_block_with_phi (basic_block bb)
683 {
684   edge succ = single_succ_edge (bb);
685   basic_block dest = succ->dest;
686   tree label;
687   basic_block dombb, domdest, dom;
688
689   /* We check for infinite loops already in tree_forwarder_block_p.
690      However it may happen that the infinite loop is created
691      afterwards due to removal of forwarders.  */
692   if (dest == bb)
693     return;
694
695   /* If the destination block consists of a nonlocal label, do not
696      merge it.  */
697   label = first_stmt (dest);
698   if (label
699       && TREE_CODE (label) == LABEL_EXPR
700       && DECL_NONLOCAL (LABEL_EXPR_LABEL (label)))
701     return;
702
703   /* Redirect each incoming edge to BB to DEST.  */
704   while (EDGE_COUNT (bb->preds) > 0)
705     {
706       edge e = EDGE_PRED (bb, 0), s;
707       tree phi;
708
709       s = find_edge (e->src, dest);
710       if (s)
711         {
712           /* We already have an edge S from E->src to DEST.  If S and
713              E->dest's sole successor edge have the same PHI arguments
714              at DEST, redirect S to DEST.  */
715           if (phi_alternatives_equal (dest, s, succ))
716             {
717               e = redirect_edge_and_branch (e, dest);
718               PENDING_STMT (e) = NULL_TREE;
719               continue;
720             }
721
722           /* PHI arguments are different.  Create a forwarder block by
723              splitting E so that we can merge PHI arguments on E to
724              DEST.  */
725           e = single_succ_edge (split_edge (e));
726         }
727
728       s = redirect_edge_and_branch (e, dest);
729
730       /* redirect_edge_and_branch must not create a new edge.  */
731       gcc_assert (s == e);
732
733       /* Add to the PHI nodes at DEST each PHI argument removed at the
734          destination of E.  */
735       for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
736         {
737           tree def = PHI_ARG_DEF (phi, succ->dest_idx);
738
739           if (TREE_CODE (def) == SSA_NAME)
740             {
741               tree var;
742
743               /* If DEF is one of the results of PHI nodes removed during
744                  redirection, replace it with the PHI argument that used
745                  to be on E.  */
746               for (var = PENDING_STMT (e); var; var = TREE_CHAIN (var))
747                 {
748                   tree old_arg = TREE_PURPOSE (var);
749                   tree new_arg = TREE_VALUE (var);
750
751                   if (def == old_arg)
752                     {
753                       def = new_arg;
754                       break;
755                     }
756                 }
757             }
758
759           add_phi_arg (phi, def, s);
760         }
761
762       PENDING_STMT (e) = NULL;
763     }
764
765   /* Update the dominators.  */
766   dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
767   domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
768   if (domdest == bb)
769     {
770       /* Shortcut to avoid calling (relatively expensive)
771          nearest_common_dominator unless necessary.  */
772       dom = dombb;
773     }
774   else
775     dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
776
777   set_immediate_dominator (CDI_DOMINATORS, dest, dom);
778
779   /* Remove BB since all of BB's incoming edges have been redirected
780      to DEST.  */
781   delete_basic_block (bb);
782 }
783
784 /* This pass merges PHI nodes if one feeds into another.  For example,
785    suppose we have the following:
786
787   goto <bb 9> (<L9>);
788
789 <L8>:;
790   tem_17 = foo ();
791
792   # tem_6 = PHI <tem_17(8), tem_23(7)>;
793 <L9>:;
794
795   # tem_3 = PHI <tem_6(9), tem_2(5)>;
796 <L10>:;
797
798   Then we merge the first PHI node into the second one like so:
799
800   goto <bb 9> (<L10>);
801
802 <L8>:;
803   tem_17 = foo ();
804
805   # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
806 <L10>:;
807 */
808
809 static unsigned int
810 merge_phi_nodes (void)
811 {
812   basic_block *worklist = XNEWVEC (basic_block, n_basic_blocks);
813   basic_block *current = worklist;
814   basic_block bb;
815
816   calculate_dominance_info (CDI_DOMINATORS);
817
818   /* Find all PHI nodes that we may be able to merge.  */
819   FOR_EACH_BB (bb)
820     {
821       basic_block dest;
822
823       /* Look for a forwarder block with PHI nodes.  */
824       if (!tree_forwarder_block_p (bb, true))
825         continue;
826
827       dest = single_succ (bb);
828
829       /* We have to feed into another basic block with PHI
830          nodes.  */
831       if (!phi_nodes (dest)
832           /* We don't want to deal with a basic block with
833              abnormal edges.  */
834           || has_abnormal_incoming_edge_p (bb))
835         continue;
836
837       if (!dominated_by_p (CDI_DOMINATORS, dest, bb))
838         {
839           /* If BB does not dominate DEST, then the PHI nodes at
840              DEST must be the only users of the results of the PHI
841              nodes at BB.  */
842           *current++ = bb;
843         }
844       else
845         {
846           tree phi;
847           unsigned int dest_idx = single_succ_edge (bb)->dest_idx;
848
849           /* BB dominates DEST.  There may be many users of the PHI
850              nodes in BB.  However, there is still a trivial case we
851              can handle.  If the result of every PHI in BB is used
852              only by a PHI in DEST, then we can trivially merge the
853              PHI nodes from BB into DEST.  */
854           for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
855             {
856               tree result = PHI_RESULT (phi);
857               use_operand_p imm_use;
858               tree use_stmt;
859
860               /* If the PHI's result is never used, then we can just
861                  ignore it.  */
862               if (has_zero_uses (result))
863                 continue;
864
865               /* Get the single use of the result of this PHI node.  */
866               if (!single_imm_use (result, &imm_use, &use_stmt)
867                   || TREE_CODE (use_stmt) != PHI_NODE
868                   || bb_for_stmt (use_stmt) != dest
869                   || PHI_ARG_DEF (use_stmt, dest_idx) != result)
870                 break;
871             }
872
873           /* If the loop above iterated through all the PHI nodes
874              in BB, then we can merge the PHIs from BB into DEST.  */
875           if (!phi)
876             *current++ = bb;
877         }
878     }
879
880   /* Now let's drain WORKLIST.  */
881   while (current != worklist)
882     {
883       bb = *--current;
884       remove_forwarder_block_with_phi (bb);
885     }
886
887   free (worklist);
888   return 0;
889 }
890
891 static bool
892 gate_merge_phi (void)
893 {
894   return 1;
895 }
896
897 struct tree_opt_pass pass_merge_phi = {
898   "mergephi",                   /* name */
899   gate_merge_phi,               /* gate */
900   merge_phi_nodes,              /* execute */
901   NULL,                         /* sub */
902   NULL,                         /* next */
903   0,                            /* static_pass_number */
904   TV_TREE_MERGE_PHI,            /* tv_id */
905   PROP_cfg | PROP_ssa,          /* properties_required */
906   0,                            /* properties_provided */
907   0,                            /* properties_destroyed */
908   0,                            /* todo_flags_start */
909   TODO_dump_func | TODO_ggc_collect     /* todo_flags_finish */
910   | TODO_verify_ssa,
911   0                             /* letter */
912 };