Import of virgin gcc 4.0.0 distribution.
[dragonfly.git] / contrib / gcc-4.0 / gcc / tree-cfg.c
1 /* Control flow functions for trees.
2    Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3    Contributed by Diego Novillo <dnovillo@redhat.com>
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 2, 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 COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "rtl.h"
28 #include "tm_p.h"
29 #include "hard-reg-set.h"
30 #include "basic-block.h"
31 #include "output.h"
32 #include "errors.h"
33 #include "flags.h"
34 #include "function.h"
35 #include "expr.h"
36 #include "ggc.h"
37 #include "langhooks.h"
38 #include "diagnostic.h"
39 #include "tree-flow.h"
40 #include "timevar.h"
41 #include "tree-dump.h"
42 #include "tree-pass.h"
43 #include "toplev.h"
44 #include "except.h"
45 #include "cfgloop.h"
46 #include "cfglayout.h"
47 #include "hashtab.h"
48
49 /* This file contains functions for building the Control Flow Graph (CFG)
50    for a function tree.  */
51
52 /* Local declarations.  */
53
54 /* Initial capacity for the basic block array.  */
55 static const int initial_cfg_capacity = 20;
56
57 /* Mapping of labels to their associated blocks.  This can greatly speed up
58    building of the CFG in code with lots of gotos.  */
59 static GTY(()) varray_type label_to_block_map;
60
61 /* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs
62    which use a particular edge.  The CASE_LABEL_EXPRs are chained together
63    via their TREE_CHAIN field, which we clear after we're done with the
64    hash table to prevent problems with duplication of SWITCH_EXPRs.
65
66    Access to this list of CASE_LABEL_EXPRs allows us to efficiently
67    update the case vector in response to edge redirections.
68
69    Right now this table is set up and torn down at key points in the
70    compilation process.  It would be nice if we could make the table
71    more persistent.  The key is getting notification of changes to
72    the CFG (particularly edge removal, creation and redirection).  */
73
74 struct edge_to_cases_elt
75 {
76   /* The edge itself.  Necessary for hashing and equality tests.  */
77   edge e;
78
79   /* The case labels associated with this edge.  We link these up via
80      their TREE_CHAIN field, then we wipe out the TREE_CHAIN fields
81      when we destroy the hash table.  This prevents problems when copying
82      SWITCH_EXPRs.  */
83   tree case_labels;
84 };
85
86 static htab_t edge_to_cases;
87
88 /* CFG statistics.  */
89 struct cfg_stats_d
90 {
91   long num_merged_labels;
92 };
93
94 static struct cfg_stats_d cfg_stats;
95
96 /* Nonzero if we found a computed goto while building basic blocks.  */
97 static bool found_computed_goto;
98
99 /* Basic blocks and flowgraphs.  */
100 static basic_block create_bb (void *, void *, basic_block);
101 static void create_block_annotation (basic_block);
102 static void free_blocks_annotations (void);
103 static void clear_blocks_annotations (void);
104 static void make_blocks (tree);
105 static void factor_computed_gotos (void);
106
107 /* Edges.  */
108 static void make_edges (void);
109 static void make_ctrl_stmt_edges (basic_block);
110 static void make_exit_edges (basic_block);
111 static void make_cond_expr_edges (basic_block);
112 static void make_switch_expr_edges (basic_block);
113 static void make_goto_expr_edges (basic_block);
114 static edge tree_redirect_edge_and_branch (edge, basic_block);
115 static edge tree_try_redirect_by_replacing_jump (edge, basic_block);
116 static void split_critical_edges (void);
117 static bool remove_fallthru_edge (VEC(edge) *);
118
119 /* Various helpers.  */
120 static inline bool stmt_starts_bb_p (tree, tree);
121 static int tree_verify_flow_info (void);
122 static void tree_make_forwarder_block (edge);
123 static bool tree_forwarder_block_p (basic_block, bool);
124 static void tree_cfg2vcg (FILE *);
125
126 /* Flowgraph optimization and cleanup.  */
127 static void tree_merge_blocks (basic_block, basic_block);
128 static bool tree_can_merge_blocks_p (basic_block, basic_block);
129 static void remove_bb (basic_block);
130 static bool cleanup_control_flow (void);
131 static bool cleanup_control_expr_graph (basic_block, block_stmt_iterator);
132 static edge find_taken_edge_cond_expr (basic_block, tree);
133 static edge find_taken_edge_switch_expr (basic_block, tree);
134 static tree find_case_label_for_value (tree, tree);
135 static bool phi_alternatives_equal (basic_block, edge, edge);
136 static bool cleanup_forwarder_blocks (void);
137
138
139 /*---------------------------------------------------------------------------
140                               Create basic blocks
141 ---------------------------------------------------------------------------*/
142
143 /* Entry point to the CFG builder for trees.  TP points to the list of
144    statements to be added to the flowgraph.  */
145
146 static void
147 build_tree_cfg (tree *tp)
148 {
149   /* Register specific tree functions.  */
150   tree_register_cfg_hooks ();
151
152   /* Initialize rbi_pool.  */
153   alloc_rbi_pool ();
154
155   /* Initialize the basic block array.  */
156   init_flow ();
157   profile_status = PROFILE_ABSENT;
158   n_basic_blocks = 0;
159   last_basic_block = 0;
160   VARRAY_BB_INIT (basic_block_info, initial_cfg_capacity, "basic_block_info");
161   memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
162
163   /* Build a mapping of labels to their associated blocks.  */
164   VARRAY_BB_INIT (label_to_block_map, initial_cfg_capacity,
165                   "label to block map");
166
167   ENTRY_BLOCK_PTR->next_bb = EXIT_BLOCK_PTR;
168   EXIT_BLOCK_PTR->prev_bb = ENTRY_BLOCK_PTR;
169
170   found_computed_goto = 0;
171   make_blocks (*tp);
172
173   /* Computed gotos are hell to deal with, especially if there are
174      lots of them with a large number of destinations.  So we factor
175      them to a common computed goto location before we build the
176      edge list.  After we convert back to normal form, we will un-factor
177      the computed gotos since factoring introduces an unwanted jump.  */
178   if (found_computed_goto)
179     factor_computed_gotos ();
180
181   /* Make sure there is always at least one block, even if it's empty.  */
182   if (n_basic_blocks == 0)
183     create_empty_bb (ENTRY_BLOCK_PTR);
184
185   create_block_annotation (ENTRY_BLOCK_PTR);
186   create_block_annotation (EXIT_BLOCK_PTR);
187   
188   /* Adjust the size of the array.  */
189   VARRAY_GROW (basic_block_info, n_basic_blocks);
190
191   /* To speed up statement iterator walks, we first purge dead labels.  */
192   cleanup_dead_labels ();
193
194   /* Group case nodes to reduce the number of edges.
195      We do this after cleaning up dead labels because otherwise we miss
196      a lot of obvious case merging opportunities.  */
197   group_case_labels ();
198
199   /* Create the edges of the flowgraph.  */
200   make_edges ();
201
202   /* Debugging dumps.  */
203
204   /* Write the flowgraph to a VCG file.  */
205   {
206     int local_dump_flags;
207     FILE *dump_file = dump_begin (TDI_vcg, &local_dump_flags);
208     if (dump_file)
209       {
210         tree_cfg2vcg (dump_file);
211         dump_end (TDI_vcg, dump_file);
212       }
213   }
214
215   /* Dump a textual representation of the flowgraph.  */
216   if (dump_file)
217     dump_tree_cfg (dump_file, dump_flags);
218 }
219
220 static void
221 execute_build_cfg (void)
222 {
223   build_tree_cfg (&DECL_SAVED_TREE (current_function_decl));
224 }
225
226 struct tree_opt_pass pass_build_cfg =
227 {
228   "cfg",                                /* name */
229   NULL,                                 /* gate */
230   execute_build_cfg,                    /* execute */
231   NULL,                                 /* sub */
232   NULL,                                 /* next */
233   0,                                    /* static_pass_number */
234   TV_TREE_CFG,                          /* tv_id */
235   PROP_gimple_leh,                      /* properties_required */
236   PROP_cfg,                             /* properties_provided */
237   0,                                    /* properties_destroyed */
238   0,                                    /* todo_flags_start */
239   TODO_verify_stmts,                    /* todo_flags_finish */
240   0                                     /* letter */
241 };
242
243 /* Search the CFG for any computed gotos.  If found, factor them to a 
244    common computed goto site.  Also record the location of that site so
245    that we can un-factor the gotos after we have converted back to 
246    normal form.  */
247
248 static void
249 factor_computed_gotos (void)
250 {
251   basic_block bb;
252   tree factored_label_decl = NULL;
253   tree var = NULL;
254   tree factored_computed_goto_label = NULL;
255   tree factored_computed_goto = NULL;
256
257   /* We know there are one or more computed gotos in this function.
258      Examine the last statement in each basic block to see if the block
259      ends with a computed goto.  */
260         
261   FOR_EACH_BB (bb)
262     {
263       block_stmt_iterator bsi = bsi_last (bb);
264       tree last;
265
266       if (bsi_end_p (bsi))
267         continue;
268       last = bsi_stmt (bsi);
269
270       /* Ignore the computed goto we create when we factor the original
271          computed gotos.  */
272       if (last == factored_computed_goto)
273         continue;
274
275       /* If the last statement is a computed goto, factor it.  */
276       if (computed_goto_p (last))
277         {
278           tree assignment;
279
280           /* The first time we find a computed goto we need to create
281              the factored goto block and the variable each original
282              computed goto will use for their goto destination.  */
283           if (! factored_computed_goto)
284             {
285               basic_block new_bb = create_empty_bb (bb);
286               block_stmt_iterator new_bsi = bsi_start (new_bb);
287
288               /* Create the destination of the factored goto.  Each original
289                  computed goto will put its desired destination into this
290                  variable and jump to the label we create immediately
291                  below.  */
292               var = create_tmp_var (ptr_type_node, "gotovar");
293
294               /* Build a label for the new block which will contain the
295                  factored computed goto.  */
296               factored_label_decl = create_artificial_label ();
297               factored_computed_goto_label
298                 = build1 (LABEL_EXPR, void_type_node, factored_label_decl);
299               bsi_insert_after (&new_bsi, factored_computed_goto_label,
300                                 BSI_NEW_STMT);
301
302               /* Build our new computed goto.  */
303               factored_computed_goto = build1 (GOTO_EXPR, void_type_node, var);
304               bsi_insert_after (&new_bsi, factored_computed_goto,
305                                 BSI_NEW_STMT);
306             }
307
308           /* Copy the original computed goto's destination into VAR.  */
309           assignment = build (MODIFY_EXPR, ptr_type_node,
310                               var, GOTO_DESTINATION (last));
311           bsi_insert_before (&bsi, assignment, BSI_SAME_STMT);
312
313           /* And re-vector the computed goto to the new destination.  */
314           GOTO_DESTINATION (last) = factored_label_decl;
315         }
316     }
317 }
318
319
320 /* Create annotations for a single basic block.  */
321
322 static void
323 create_block_annotation (basic_block bb)
324 {
325   /* Verify that the tree_annotations field is clear.  */
326   gcc_assert (!bb->tree_annotations);
327   bb->tree_annotations = ggc_alloc_cleared (sizeof (struct bb_ann_d));
328 }
329
330
331 /* Free the annotations for all the basic blocks.  */
332
333 static void free_blocks_annotations (void)
334 {
335   clear_blocks_annotations ();  
336 }
337
338
339 /* Clear the annotations for all the basic blocks.  */
340
341 static void
342 clear_blocks_annotations (void)
343 {
344   basic_block bb;
345
346   FOR_BB_BETWEEN (bb, ENTRY_BLOCK_PTR, NULL, next_bb)
347     bb->tree_annotations = NULL;
348 }
349
350
351 /* Build a flowgraph for the statement_list STMT_LIST.  */
352
353 static void
354 make_blocks (tree stmt_list)
355 {
356   tree_stmt_iterator i = tsi_start (stmt_list);
357   tree stmt = NULL;
358   bool start_new_block = true;
359   bool first_stmt_of_list = true;
360   basic_block bb = ENTRY_BLOCK_PTR;
361
362   while (!tsi_end_p (i))
363     {
364       tree prev_stmt;
365
366       prev_stmt = stmt;
367       stmt = tsi_stmt (i);
368
369       /* If the statement starts a new basic block or if we have determined
370          in a previous pass that we need to create a new block for STMT, do
371          so now.  */
372       if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
373         {
374           if (!first_stmt_of_list)
375             stmt_list = tsi_split_statement_list_before (&i);
376           bb = create_basic_block (stmt_list, NULL, bb);
377           start_new_block = false;
378         }
379
380       /* Now add STMT to BB and create the subgraphs for special statement
381          codes.  */
382       set_bb_for_stmt (stmt, bb);
383
384       if (computed_goto_p (stmt))
385         found_computed_goto = true;
386
387       /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
388          next iteration.  */
389       if (stmt_ends_bb_p (stmt))
390         start_new_block = true;
391
392       tsi_next (&i);
393       first_stmt_of_list = false;
394     }
395 }
396
397
398 /* Create and return a new empty basic block after bb AFTER.  */
399
400 static basic_block
401 create_bb (void *h, void *e, basic_block after)
402 {
403   basic_block bb;
404
405   gcc_assert (!e);
406
407   /* Create and initialize a new basic block.  Since alloc_block uses
408      ggc_alloc_cleared to allocate a basic block, we do not have to
409      clear the newly allocated basic block here.  */
410   bb = alloc_block ();
411
412   bb->index = last_basic_block;
413   bb->flags = BB_NEW;
414   bb->stmt_list = h ? h : alloc_stmt_list ();
415
416   /* Add the new block to the linked list of blocks.  */
417   link_block (bb, after);
418
419   /* Grow the basic block array if needed.  */
420   if ((size_t) last_basic_block == VARRAY_SIZE (basic_block_info))
421     {
422       size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
423       VARRAY_GROW (basic_block_info, new_size);
424     }
425
426   /* Add the newly created block to the array.  */
427   BASIC_BLOCK (last_basic_block) = bb;
428
429   create_block_annotation (bb);
430
431   n_basic_blocks++;
432   last_basic_block++;
433
434   initialize_bb_rbi (bb);
435   return bb;
436 }
437
438
439 /*---------------------------------------------------------------------------
440                                  Edge creation
441 ---------------------------------------------------------------------------*/
442
443 /* Fold COND_EXPR_COND of each COND_EXPR.  */
444
445 static void
446 fold_cond_expr_cond (void)
447 {
448   basic_block bb;
449
450   FOR_EACH_BB (bb)
451     {
452       tree stmt = last_stmt (bb);
453
454       if (stmt
455           && TREE_CODE (stmt) == COND_EXPR)
456         {
457           tree cond = fold (COND_EXPR_COND (stmt));
458           if (integer_zerop (cond))
459             COND_EXPR_COND (stmt) = integer_zero_node;
460           else if (integer_onep (cond))
461             COND_EXPR_COND (stmt) = integer_one_node;
462         }
463     }
464 }
465
466 /* Join all the blocks in the flowgraph.  */
467
468 static void
469 make_edges (void)
470 {
471   basic_block bb;
472
473   /* Create an edge from entry to the first block with executable
474      statements in it.  */
475   make_edge (ENTRY_BLOCK_PTR, BASIC_BLOCK (0), EDGE_FALLTHRU);
476
477   /* Traverse the basic block array placing edges.  */
478   FOR_EACH_BB (bb)
479     {
480       tree first = first_stmt (bb);
481       tree last = last_stmt (bb);
482
483       if (first)
484         {
485           /* Edges for statements that always alter flow control.  */
486           if (is_ctrl_stmt (last))
487             make_ctrl_stmt_edges (bb);
488
489           /* Edges for statements that sometimes alter flow control.  */
490           if (is_ctrl_altering_stmt (last))
491             make_exit_edges (bb);
492         }
493
494       /* Finally, if no edges were created above, this is a regular
495          basic block that only needs a fallthru edge.  */
496       if (EDGE_COUNT (bb->succs) == 0)
497         make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
498     }
499
500   /* We do not care about fake edges, so remove any that the CFG
501      builder inserted for completeness.  */
502   remove_fake_exit_edges ();
503
504   /* Fold COND_EXPR_COND of each COND_EXPR.  */
505   fold_cond_expr_cond ();
506
507   /* Clean up the graph and warn for unreachable code.  */
508   cleanup_tree_cfg ();
509 }
510
511
512 /* Create edges for control statement at basic block BB.  */
513
514 static void
515 make_ctrl_stmt_edges (basic_block bb)
516 {
517   tree last = last_stmt (bb);
518
519   gcc_assert (last);
520   switch (TREE_CODE (last))
521     {
522     case GOTO_EXPR:
523       make_goto_expr_edges (bb);
524       break;
525
526     case RETURN_EXPR:
527       make_edge (bb, EXIT_BLOCK_PTR, 0);
528       break;
529
530     case COND_EXPR:
531       make_cond_expr_edges (bb);
532       break;
533
534     case SWITCH_EXPR:
535       make_switch_expr_edges (bb);
536       break;
537
538     case RESX_EXPR:
539       make_eh_edges (last);
540       /* Yet another NORETURN hack.  */
541       if (EDGE_COUNT (bb->succs) == 0)
542         make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
543       break;
544
545     default:
546       gcc_unreachable ();
547     }
548 }
549
550
551 /* Create exit edges for statements in block BB that alter the flow of
552    control.  Statements that alter the control flow are 'goto', 'return'
553    and calls to non-returning functions.  */
554
555 static void
556 make_exit_edges (basic_block bb)
557 {
558   tree last = last_stmt (bb), op;
559
560   gcc_assert (last);
561   switch (TREE_CODE (last))
562     {
563     case CALL_EXPR:
564       /* If this function receives a nonlocal goto, then we need to
565          make edges from this call site to all the nonlocal goto
566          handlers.  */
567       if (TREE_SIDE_EFFECTS (last)
568           && current_function_has_nonlocal_label)
569         make_goto_expr_edges (bb);
570
571       /* If this statement has reachable exception handlers, then
572          create abnormal edges to them.  */
573       make_eh_edges (last);
574
575       /* Some calls are known not to return.  For such calls we create
576          a fake edge.
577
578          We really need to revamp how we build edges so that it's not
579          such a bloody pain to avoid creating edges for this case since
580          all we do is remove these edges when we're done building the
581          CFG.  */
582       if (call_expr_flags (last) & ECF_NORETURN)
583         {
584           make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
585           return;
586         }
587
588       /* Don't forget the fall-thru edge.  */
589       make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
590       break;
591
592     case MODIFY_EXPR:
593       /* A MODIFY_EXPR may have a CALL_EXPR on its RHS and the CALL_EXPR
594          may have an abnormal edge.  Search the RHS for this case and
595          create any required edges.  */
596       op = get_call_expr_in (last);
597       if (op && TREE_SIDE_EFFECTS (op)
598           && current_function_has_nonlocal_label)
599         make_goto_expr_edges (bb);
600
601       make_eh_edges (last);
602       make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
603       break;
604
605     default:
606       gcc_unreachable ();
607     }
608 }
609
610
611 /* Create the edges for a COND_EXPR starting at block BB.
612    At this point, both clauses must contain only simple gotos.  */
613
614 static void
615 make_cond_expr_edges (basic_block bb)
616 {
617   tree entry = last_stmt (bb);
618   basic_block then_bb, else_bb;
619   tree then_label, else_label;
620
621   gcc_assert (entry);
622   gcc_assert (TREE_CODE (entry) == COND_EXPR);
623
624   /* Entry basic blocks for each component.  */
625   then_label = GOTO_DESTINATION (COND_EXPR_THEN (entry));
626   else_label = GOTO_DESTINATION (COND_EXPR_ELSE (entry));
627   then_bb = label_to_block (then_label);
628   else_bb = label_to_block (else_label);
629
630   make_edge (bb, then_bb, EDGE_TRUE_VALUE);
631   make_edge (bb, else_bb, EDGE_FALSE_VALUE);
632 }
633
634 /* Hashing routine for EDGE_TO_CASES.  */
635
636 static hashval_t
637 edge_to_cases_hash (const void *p)
638 {
639   edge e = ((struct edge_to_cases_elt *)p)->e;
640
641   /* Hash on the edge itself (which is a pointer).  */
642   return htab_hash_pointer (e);
643 }
644
645 /* Equality routine for EDGE_TO_CASES, edges are unique, so testing
646    for equality is just a pointer comparison.  */
647
648 static int
649 edge_to_cases_eq (const void *p1, const void *p2)
650 {
651   edge e1 = ((struct edge_to_cases_elt *)p1)->e;
652   edge e2 = ((struct edge_to_cases_elt *)p2)->e;
653
654   return e1 == e2;
655 }
656
657 /* Called for each element in the hash table (P) as we delete the
658    edge to cases hash table.
659
660    Clear all the TREE_CHAINs to prevent problems with copying of 
661    SWITCH_EXPRs and structure sharing rules, then free the hash table
662    element.  */
663
664 static void
665 edge_to_cases_cleanup (void *p)
666 {
667   struct edge_to_cases_elt *elt = p;
668   tree t, next;
669
670   for (t = elt->case_labels; t; t = next)
671     {
672       next = TREE_CHAIN (t);
673       TREE_CHAIN (t) = NULL;
674     }
675   free (p);
676 }
677
678 /* Start recording information mapping edges to case labels.  */
679
680 static void
681 start_recording_case_labels (void)
682 {
683   gcc_assert (edge_to_cases == NULL);
684
685   edge_to_cases = htab_create (37,
686                                edge_to_cases_hash,
687                                edge_to_cases_eq,
688                                edge_to_cases_cleanup);
689 }
690
691 /* Return nonzero if we are recording information for case labels.  */
692
693 static bool
694 recording_case_labels_p (void)
695 {
696   return (edge_to_cases != NULL);
697 }
698
699 /* Stop recording information mapping edges to case labels and
700    remove any information we have recorded.  */
701 static void
702 end_recording_case_labels (void)
703 {
704   htab_delete (edge_to_cases);
705   edge_to_cases = NULL;
706 }
707
708 /* Record that CASE_LABEL (a CASE_LABEL_EXPR) references edge E.  */
709
710 static void
711 record_switch_edge (edge e, tree case_label)
712 {
713   struct edge_to_cases_elt *elt;
714   void **slot;
715
716   /* Build a hash table element so we can see if E is already
717      in the table.  */
718   elt = xmalloc (sizeof (struct edge_to_cases_elt));
719   elt->e = e;
720   elt->case_labels = case_label;
721
722   slot = htab_find_slot (edge_to_cases, elt, INSERT);
723
724   if (*slot == NULL)
725     {
726       /* E was not in the hash table.  Install E into the hash table.  */
727       *slot = (void *)elt;
728     }
729   else
730     {
731       /* E was already in the hash table.  Free ELT as we do not need it
732          anymore.  */
733       free (elt);
734
735       /* Get the entry stored in the hash table.  */
736       elt = (struct edge_to_cases_elt *) *slot;
737
738       /* Add it to the chain of CASE_LABEL_EXPRs referencing E.  */
739       TREE_CHAIN (case_label) = elt->case_labels;
740       elt->case_labels = case_label;
741     }
742 }
743
744 /* If we are inside a {start,end}_recording_cases block, then return
745    a chain of CASE_LABEL_EXPRs from T which reference E.
746
747    Otherwise return NULL.  */
748
749 static tree
750 get_cases_for_edge (edge e, tree t)
751 {
752   struct edge_to_cases_elt elt, *elt_p;
753   void **slot;
754   size_t i, n;
755   tree vec;
756
757   /* If we are not recording cases, then we do not have CASE_LABEL_EXPR
758      chains available.  Return NULL so the caller can detect this case.  */
759   if (!recording_case_labels_p ())
760     return NULL;
761   
762 restart:
763   elt.e = e;
764   elt.case_labels = NULL;
765   slot = htab_find_slot (edge_to_cases, &elt, NO_INSERT);
766
767   if (slot)
768     {
769       elt_p = (struct edge_to_cases_elt *)*slot;
770       return elt_p->case_labels;
771     }
772
773   /* If we did not find E in the hash table, then this must be the first
774      time we have been queried for information about E & T.  Add all the
775      elements from T to the hash table then perform the query again.  */
776
777   vec = SWITCH_LABELS (t);
778   n = TREE_VEC_LENGTH (vec);
779   for (i = 0; i < n; i++)
780     {
781       tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
782       basic_block label_bb = label_to_block (lab);
783       record_switch_edge (find_edge (e->src, label_bb), TREE_VEC_ELT (vec, i));
784     }
785   goto restart;
786 }
787
788 /* Create the edges for a SWITCH_EXPR starting at block BB.
789    At this point, the switch body has been lowered and the
790    SWITCH_LABELS filled in, so this is in effect a multi-way branch.  */
791
792 static void
793 make_switch_expr_edges (basic_block bb)
794 {
795   tree entry = last_stmt (bb);
796   size_t i, n;
797   tree vec;
798
799   vec = SWITCH_LABELS (entry);
800   n = TREE_VEC_LENGTH (vec);
801
802   for (i = 0; i < n; ++i)
803     {
804       tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
805       basic_block label_bb = label_to_block (lab);
806       make_edge (bb, label_bb, 0);
807     }
808 }
809
810
811 /* Return the basic block holding label DEST.  */
812
813 basic_block
814 label_to_block (tree dest)
815 {
816   int uid = LABEL_DECL_UID (dest);
817
818   /* We would die hard when faced by an undefined label.  Emit a label to
819      the very first basic block.  This will hopefully make even the dataflow
820      and undefined variable warnings quite right.  */
821   if ((errorcount || sorrycount) && uid < 0)
822     {
823       block_stmt_iterator bsi = bsi_start (BASIC_BLOCK (0));
824       tree stmt;
825
826       stmt = build1 (LABEL_EXPR, void_type_node, dest);
827       bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
828       uid = LABEL_DECL_UID (dest);
829     }
830   return VARRAY_BB (label_to_block_map, uid);
831 }
832
833
834 /* Create edges for a goto statement at block BB.  */
835
836 static void
837 make_goto_expr_edges (basic_block bb)
838 {
839   tree goto_t, dest;
840   basic_block target_bb;
841   int for_call;
842   block_stmt_iterator last = bsi_last (bb);
843
844   goto_t = bsi_stmt (last);
845
846   /* If the last statement is not a GOTO (i.e., it is a RETURN_EXPR,
847      CALL_EXPR or MODIFY_EXPR), then the edge is an abnormal edge resulting
848      from a nonlocal goto.  */
849   if (TREE_CODE (goto_t) != GOTO_EXPR)
850     {
851       dest = error_mark_node;
852       for_call = 1;
853     }
854   else
855     {
856       dest = GOTO_DESTINATION (goto_t);
857       for_call = 0;
858
859       /* A GOTO to a local label creates normal edges.  */
860       if (simple_goto_p (goto_t))
861         {
862           edge e = make_edge (bb, label_to_block (dest), EDGE_FALLTHRU);
863 #ifdef USE_MAPPED_LOCATION
864           e->goto_locus = EXPR_LOCATION (goto_t);
865 #else
866           e->goto_locus = EXPR_LOCUS (goto_t);
867 #endif
868           bsi_remove (&last);
869           return;
870         }
871
872       /* Nothing more to do for nonlocal gotos.  */
873       if (TREE_CODE (dest) == LABEL_DECL)
874         return;
875
876       /* Computed gotos remain.  */
877     }
878
879   /* Look for the block starting with the destination label.  In the
880      case of a computed goto, make an edge to any label block we find
881      in the CFG.  */
882   FOR_EACH_BB (target_bb)
883     {
884       block_stmt_iterator bsi;
885
886       for (bsi = bsi_start (target_bb); !bsi_end_p (bsi); bsi_next (&bsi))
887         {
888           tree target = bsi_stmt (bsi);
889
890           if (TREE_CODE (target) != LABEL_EXPR)
891             break;
892
893           if (
894               /* Computed GOTOs.  Make an edge to every label block that has
895                  been marked as a potential target for a computed goto.  */
896               (FORCED_LABEL (LABEL_EXPR_LABEL (target)) && for_call == 0)
897               /* Nonlocal GOTO target.  Make an edge to every label block
898                  that has been marked as a potential target for a nonlocal
899                  goto.  */
900               || (DECL_NONLOCAL (LABEL_EXPR_LABEL (target)) && for_call == 1))
901             {
902               make_edge (bb, target_bb, EDGE_ABNORMAL);
903               break;
904             }
905         }
906     }
907
908   /* Degenerate case of computed goto with no labels.  */
909   if (!for_call && EDGE_COUNT (bb->succs) == 0)
910     make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
911 }
912
913
914 /*---------------------------------------------------------------------------
915                                Flowgraph analysis
916 ---------------------------------------------------------------------------*/
917
918 /* Remove unreachable blocks and other miscellaneous clean up work.  */
919
920 bool
921 cleanup_tree_cfg (void)
922 {
923   bool retval = false;
924
925   timevar_push (TV_TREE_CLEANUP_CFG);
926
927   retval = cleanup_control_flow ();
928   retval |= delete_unreachable_blocks ();
929
930   /* cleanup_forwarder_blocks can redirect edges out of SWITCH_EXPRs,
931      which can get expensive.  So we want to enable recording of edge
932      to CASE_LABEL_EXPR mappings around the call to
933      cleanup_forwarder_blocks.  */
934   start_recording_case_labels ();
935   retval |= cleanup_forwarder_blocks ();
936   end_recording_case_labels ();
937
938 #ifdef ENABLE_CHECKING
939   if (retval)
940     {
941       gcc_assert (!cleanup_control_flow ());
942       gcc_assert (!delete_unreachable_blocks ());
943       gcc_assert (!cleanup_forwarder_blocks ());
944     }
945 #endif
946
947   /* Merging the blocks creates no new opportunities for the other
948      optimizations, so do it here.  */
949   retval |= merge_seq_blocks ();
950
951   compact_blocks ();
952
953 #ifdef ENABLE_CHECKING
954   verify_flow_info ();
955 #endif
956   timevar_pop (TV_TREE_CLEANUP_CFG);
957   return retval;
958 }
959
960
961 /* Cleanup useless labels in basic blocks.  This is something we wish
962    to do early because it allows us to group case labels before creating
963    the edges for the CFG, and it speeds up block statement iterators in
964    all passes later on.
965    We only run this pass once, running it more than once is probably not
966    profitable.  */
967
968 /* A map from basic block index to the leading label of that block.  */
969 static tree *label_for_bb;
970
971 /* Callback for for_each_eh_region.  Helper for cleanup_dead_labels.  */
972 static void
973 update_eh_label (struct eh_region *region)
974 {
975   tree old_label = get_eh_region_tree_label (region);
976   if (old_label)
977     {
978       tree new_label;
979       basic_block bb = label_to_block (old_label);
980
981       /* ??? After optimizing, there may be EH regions with labels
982          that have already been removed from the function body, so
983          there is no basic block for them.  */
984       if (! bb)
985         return;
986
987       new_label = label_for_bb[bb->index];
988       set_eh_region_tree_label (region, new_label);
989     }
990 }
991
992 /* Given LABEL return the first label in the same basic block.  */
993 static tree
994 main_block_label (tree label)
995 {
996   basic_block bb = label_to_block (label);
997
998   /* label_to_block possibly inserted undefined label into the chain.  */
999   if (!label_for_bb[bb->index])
1000     label_for_bb[bb->index] = label;
1001   return label_for_bb[bb->index];
1002 }
1003
1004 /* Cleanup redundant labels.  This is a three-step process:
1005      1) Find the leading label for each block.
1006      2) Redirect all references to labels to the leading labels.
1007      3) Cleanup all useless labels.  */
1008
1009 void
1010 cleanup_dead_labels (void)
1011 {
1012   basic_block bb;
1013   label_for_bb = xcalloc (last_basic_block, sizeof (tree));
1014
1015   /* Find a suitable label for each block.  We use the first user-defined
1016      label if there is one, or otherwise just the first label we see.  */
1017   FOR_EACH_BB (bb)
1018     {
1019       block_stmt_iterator i;
1020
1021       for (i = bsi_start (bb); !bsi_end_p (i); bsi_next (&i))
1022         {
1023           tree label, stmt = bsi_stmt (i);
1024
1025           if (TREE_CODE (stmt) != LABEL_EXPR)
1026             break;
1027
1028           label = LABEL_EXPR_LABEL (stmt);
1029
1030           /* If we have not yet seen a label for the current block,
1031              remember this one and see if there are more labels.  */
1032           if (! label_for_bb[bb->index])
1033             {
1034               label_for_bb[bb->index] = label;
1035               continue;
1036             }
1037
1038           /* If we did see a label for the current block already, but it
1039              is an artificially created label, replace it if the current
1040              label is a user defined label.  */
1041           if (! DECL_ARTIFICIAL (label)
1042               && DECL_ARTIFICIAL (label_for_bb[bb->index]))
1043             {
1044               label_for_bb[bb->index] = label;
1045               break;
1046             }
1047         }
1048     }
1049
1050   /* Now redirect all jumps/branches to the selected label.
1051      First do so for each block ending in a control statement.  */
1052   FOR_EACH_BB (bb)
1053     {
1054       tree stmt = last_stmt (bb);
1055       if (!stmt)
1056         continue;
1057
1058       switch (TREE_CODE (stmt))
1059         {
1060         case COND_EXPR:
1061           {
1062             tree true_branch, false_branch;
1063
1064             true_branch = COND_EXPR_THEN (stmt);
1065             false_branch = COND_EXPR_ELSE (stmt);
1066
1067             GOTO_DESTINATION (true_branch)
1068               = main_block_label (GOTO_DESTINATION (true_branch));
1069             GOTO_DESTINATION (false_branch)
1070               = main_block_label (GOTO_DESTINATION (false_branch));
1071
1072             break;
1073           }
1074   
1075         case SWITCH_EXPR:
1076           {
1077             size_t i;
1078             tree vec = SWITCH_LABELS (stmt);
1079             size_t n = TREE_VEC_LENGTH (vec);
1080   
1081             /* Replace all destination labels.  */
1082             for (i = 0; i < n; ++i)
1083               {
1084                 tree elt = TREE_VEC_ELT (vec, i);
1085                 tree label = main_block_label (CASE_LABEL (elt));
1086                 CASE_LABEL (elt) = label;
1087               }
1088             break;
1089           }
1090
1091         /* We have to handle GOTO_EXPRs until they're removed, and we don't
1092            remove them until after we've created the CFG edges.  */
1093         case GOTO_EXPR:
1094           if (! computed_goto_p (stmt))
1095             {
1096               GOTO_DESTINATION (stmt)
1097                 = main_block_label (GOTO_DESTINATION (stmt));
1098               break;
1099             }
1100
1101         default:
1102           break;
1103       }
1104     }
1105
1106   for_each_eh_region (update_eh_label);
1107
1108   /* Finally, purge dead labels.  All user-defined labels and labels that
1109      can be the target of non-local gotos are preserved.  */
1110   FOR_EACH_BB (bb)
1111     {
1112       block_stmt_iterator i;
1113       tree label_for_this_bb = label_for_bb[bb->index];
1114
1115       if (! label_for_this_bb)
1116         continue;
1117
1118       for (i = bsi_start (bb); !bsi_end_p (i); )
1119         {
1120           tree label, stmt = bsi_stmt (i);
1121
1122           if (TREE_CODE (stmt) != LABEL_EXPR)
1123             break;
1124
1125           label = LABEL_EXPR_LABEL (stmt);
1126
1127           if (label == label_for_this_bb
1128               || ! DECL_ARTIFICIAL (label)
1129               || DECL_NONLOCAL (label))
1130             bsi_next (&i);
1131           else
1132             bsi_remove (&i);
1133         }
1134     }
1135
1136   free (label_for_bb);
1137 }
1138
1139 /* Look for blocks ending in a multiway branch (a SWITCH_EXPR in GIMPLE),
1140    and scan the sorted vector of cases.  Combine the ones jumping to the
1141    same label.
1142    Eg. three separate entries 1: 2: 3: become one entry 1..3:  */
1143
1144 void
1145 group_case_labels (void)
1146 {
1147   basic_block bb;
1148
1149   FOR_EACH_BB (bb)
1150     {
1151       tree stmt = last_stmt (bb);
1152       if (stmt && TREE_CODE (stmt) == SWITCH_EXPR)
1153         {
1154           tree labels = SWITCH_LABELS (stmt);
1155           int old_size = TREE_VEC_LENGTH (labels);
1156           int i, j, new_size = old_size;
1157           tree default_case = TREE_VEC_ELT (labels, old_size - 1);
1158           tree default_label;
1159
1160           /* The default label is always the last case in a switch
1161              statement after gimplification.  */
1162           default_label = CASE_LABEL (default_case);
1163
1164           /* Look for possible opportunities to merge cases.
1165              Ignore the last element of the label vector because it
1166              must be the default case.  */
1167           i = 0;
1168           while (i < old_size - 1)
1169             {
1170               tree base_case, base_label, base_high, type;
1171               base_case = TREE_VEC_ELT (labels, i);
1172
1173               gcc_assert (base_case);
1174               base_label = CASE_LABEL (base_case);
1175
1176               /* Discard cases that have the same destination as the
1177                  default case.  */
1178               if (base_label == default_label)
1179                 {
1180                   TREE_VEC_ELT (labels, i) = NULL_TREE;
1181                   i++;
1182                   new_size--;
1183                   continue;
1184                 }
1185
1186               type = TREE_TYPE (CASE_LOW (base_case));
1187               base_high = CASE_HIGH (base_case) ?
1188                 CASE_HIGH (base_case) : CASE_LOW (base_case);
1189               i++;
1190               /* Try to merge case labels.  Break out when we reach the end
1191                  of the label vector or when we cannot merge the next case
1192                  label with the current one.  */
1193               while (i < old_size - 1)
1194                 {
1195                   tree merge_case = TREE_VEC_ELT (labels, i);
1196                   tree merge_label = CASE_LABEL (merge_case);
1197                   tree t = int_const_binop (PLUS_EXPR, base_high,
1198                                             integer_one_node, 1);
1199
1200                   /* Merge the cases if they jump to the same place,
1201                      and their ranges are consecutive.  */
1202                   if (merge_label == base_label
1203                       && tree_int_cst_equal (CASE_LOW (merge_case), t))
1204                     {
1205                       base_high = CASE_HIGH (merge_case) ?
1206                         CASE_HIGH (merge_case) : CASE_LOW (merge_case);
1207                       CASE_HIGH (base_case) = base_high;
1208                       TREE_VEC_ELT (labels, i) = NULL_TREE;
1209                       new_size--;
1210                       i++;
1211                     }
1212                   else
1213                     break;
1214                 }
1215             }
1216
1217           /* Compress the case labels in the label vector, and adjust the
1218              length of the vector.  */
1219           for (i = 0, j = 0; i < new_size; i++)
1220             {
1221               while (! TREE_VEC_ELT (labels, j))
1222                 j++;
1223               TREE_VEC_ELT (labels, i) = TREE_VEC_ELT (labels, j++);
1224             }
1225           TREE_VEC_LENGTH (labels) = new_size;
1226         }
1227     }
1228 }
1229
1230 /* Checks whether we can merge block B into block A.  */
1231
1232 static bool
1233 tree_can_merge_blocks_p (basic_block a, basic_block b)
1234 {
1235   tree stmt;
1236   block_stmt_iterator bsi;
1237
1238   if (EDGE_COUNT (a->succs) != 1)
1239     return false;
1240
1241   if (EDGE_SUCC (a, 0)->flags & EDGE_ABNORMAL)
1242     return false;
1243
1244   if (EDGE_SUCC (a, 0)->dest != b)
1245     return false;
1246
1247   if (EDGE_COUNT (b->preds) > 1)
1248     return false;
1249
1250   if (b == EXIT_BLOCK_PTR)
1251     return false;
1252   
1253   /* If A ends by a statement causing exceptions or something similar, we
1254      cannot merge the blocks.  */
1255   stmt = last_stmt (a);
1256   if (stmt && stmt_ends_bb_p (stmt))
1257     return false;
1258
1259   /* Do not allow a block with only a non-local label to be merged.  */
1260   if (stmt && TREE_CODE (stmt) == LABEL_EXPR
1261       && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
1262     return false;
1263
1264   /* There may be no phi nodes at the start of b.  Most of these degenerate
1265      phi nodes should be cleaned up by kill_redundant_phi_nodes.  */
1266   if (phi_nodes (b))
1267     return false;
1268
1269   /* Do not remove user labels.  */
1270   for (bsi = bsi_start (b); !bsi_end_p (bsi); bsi_next (&bsi))
1271     {
1272       stmt = bsi_stmt (bsi);
1273       if (TREE_CODE (stmt) != LABEL_EXPR)
1274         break;
1275       if (!DECL_ARTIFICIAL (LABEL_EXPR_LABEL (stmt)))
1276         return false;
1277     }
1278
1279   return true;
1280 }
1281
1282
1283 /* Merge block B into block A.  */
1284
1285 static void
1286 tree_merge_blocks (basic_block a, basic_block b)
1287 {
1288   block_stmt_iterator bsi;
1289   tree_stmt_iterator last;
1290
1291   if (dump_file)
1292     fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
1293
1294   /* Ensure that B follows A.  */
1295   move_block_after (b, a);
1296
1297   gcc_assert (EDGE_SUCC (a, 0)->flags & EDGE_FALLTHRU);
1298   gcc_assert (!last_stmt (a) || !stmt_ends_bb_p (last_stmt (a)));
1299
1300   /* Remove labels from B and set bb_for_stmt to A for other statements.  */
1301   for (bsi = bsi_start (b); !bsi_end_p (bsi);)
1302     {
1303       if (TREE_CODE (bsi_stmt (bsi)) == LABEL_EXPR)
1304         bsi_remove (&bsi);
1305       else
1306         {
1307           set_bb_for_stmt (bsi_stmt (bsi), a);
1308           bsi_next (&bsi);
1309         }
1310     }
1311
1312   /* Merge the chains.  */
1313   last = tsi_last (a->stmt_list);
1314   tsi_link_after (&last, b->stmt_list, TSI_NEW_STMT);
1315   b->stmt_list = NULL;
1316 }
1317
1318
1319 /* Walk the function tree removing unnecessary statements.
1320
1321      * Empty statement nodes are removed
1322
1323      * Unnecessary TRY_FINALLY and TRY_CATCH blocks are removed
1324
1325      * Unnecessary COND_EXPRs are removed
1326
1327      * Some unnecessary BIND_EXPRs are removed
1328
1329    Clearly more work could be done.  The trick is doing the analysis
1330    and removal fast enough to be a net improvement in compile times.
1331
1332    Note that when we remove a control structure such as a COND_EXPR
1333    BIND_EXPR, or TRY block, we will need to repeat this optimization pass
1334    to ensure we eliminate all the useless code.  */
1335
1336 struct rus_data
1337 {
1338   tree *last_goto;
1339   bool repeat;
1340   bool may_throw;
1341   bool may_branch;
1342   bool has_label;
1343 };
1344
1345 static void remove_useless_stmts_1 (tree *, struct rus_data *);
1346
1347 static bool
1348 remove_useless_stmts_warn_notreached (tree stmt)
1349 {
1350   if (EXPR_HAS_LOCATION (stmt))
1351     {
1352       location_t loc = EXPR_LOCATION (stmt);
1353       if (LOCATION_LINE (loc) > 0)
1354         {
1355           warning ("%Hwill never be executed", &loc);
1356           return true;
1357         }
1358     }
1359
1360   switch (TREE_CODE (stmt))
1361     {
1362     case STATEMENT_LIST:
1363       {
1364         tree_stmt_iterator i;
1365         for (i = tsi_start (stmt); !tsi_end_p (i); tsi_next (&i))
1366           if (remove_useless_stmts_warn_notreached (tsi_stmt (i)))
1367             return true;
1368       }
1369       break;
1370
1371     case COND_EXPR:
1372       if (remove_useless_stmts_warn_notreached (COND_EXPR_COND (stmt)))
1373         return true;
1374       if (remove_useless_stmts_warn_notreached (COND_EXPR_THEN (stmt)))
1375         return true;
1376       if (remove_useless_stmts_warn_notreached (COND_EXPR_ELSE (stmt)))
1377         return true;
1378       break;
1379
1380     case TRY_FINALLY_EXPR:
1381     case TRY_CATCH_EXPR:
1382       if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 0)))
1383         return true;
1384       if (remove_useless_stmts_warn_notreached (TREE_OPERAND (stmt, 1)))
1385         return true;
1386       break;
1387
1388     case CATCH_EXPR:
1389       return remove_useless_stmts_warn_notreached (CATCH_BODY (stmt));
1390     case EH_FILTER_EXPR:
1391       return remove_useless_stmts_warn_notreached (EH_FILTER_FAILURE (stmt));
1392     case BIND_EXPR:
1393       return remove_useless_stmts_warn_notreached (BIND_EXPR_BLOCK (stmt));
1394
1395     default:
1396       /* Not a live container.  */
1397       break;
1398     }
1399
1400   return false;
1401 }
1402
1403 static void
1404 remove_useless_stmts_cond (tree *stmt_p, struct rus_data *data)
1405 {
1406   tree then_clause, else_clause, cond;
1407   bool save_has_label, then_has_label, else_has_label;
1408
1409   save_has_label = data->has_label;
1410   data->has_label = false;
1411   data->last_goto = NULL;
1412
1413   remove_useless_stmts_1 (&COND_EXPR_THEN (*stmt_p), data);
1414
1415   then_has_label = data->has_label;
1416   data->has_label = false;
1417   data->last_goto = NULL;
1418
1419   remove_useless_stmts_1 (&COND_EXPR_ELSE (*stmt_p), data);
1420
1421   else_has_label = data->has_label;
1422   data->has_label = save_has_label | then_has_label | else_has_label;
1423
1424   then_clause = COND_EXPR_THEN (*stmt_p);
1425   else_clause = COND_EXPR_ELSE (*stmt_p);
1426   cond = fold (COND_EXPR_COND (*stmt_p));
1427
1428   /* If neither arm does anything at all, we can remove the whole IF.  */
1429   if (!TREE_SIDE_EFFECTS (then_clause) && !TREE_SIDE_EFFECTS (else_clause))
1430     {
1431       *stmt_p = build_empty_stmt ();
1432       data->repeat = true;
1433     }
1434
1435   /* If there are no reachable statements in an arm, then we can
1436      zap the entire conditional.  */
1437   else if (integer_nonzerop (cond) && !else_has_label)
1438     {
1439       if (warn_notreached)
1440         remove_useless_stmts_warn_notreached (else_clause);
1441       *stmt_p = then_clause;
1442       data->repeat = true;
1443     }
1444   else if (integer_zerop (cond) && !then_has_label)
1445     {
1446       if (warn_notreached)
1447         remove_useless_stmts_warn_notreached (then_clause);
1448       *stmt_p = else_clause;
1449       data->repeat = true;
1450     }
1451
1452   /* Check a couple of simple things on then/else with single stmts.  */
1453   else
1454     {
1455       tree then_stmt = expr_only (then_clause);
1456       tree else_stmt = expr_only (else_clause);
1457
1458       /* Notice branches to a common destination.  */
1459       if (then_stmt && else_stmt
1460           && TREE_CODE (then_stmt) == GOTO_EXPR
1461           && TREE_CODE (else_stmt) == GOTO_EXPR
1462           && (GOTO_DESTINATION (then_stmt) == GOTO_DESTINATION (else_stmt)))
1463         {
1464           *stmt_p = then_stmt;
1465           data->repeat = true;
1466         }
1467
1468       /* If the THEN/ELSE clause merely assigns a value to a variable or
1469          parameter which is already known to contain that value, then
1470          remove the useless THEN/ELSE clause.  */
1471       else if (TREE_CODE (cond) == VAR_DECL || TREE_CODE (cond) == PARM_DECL)
1472         {
1473           if (else_stmt
1474               && TREE_CODE (else_stmt) == MODIFY_EXPR
1475               && TREE_OPERAND (else_stmt, 0) == cond
1476               && integer_zerop (TREE_OPERAND (else_stmt, 1)))
1477             COND_EXPR_ELSE (*stmt_p) = alloc_stmt_list ();
1478         }
1479       else if ((TREE_CODE (cond) == EQ_EXPR || TREE_CODE (cond) == NE_EXPR)
1480                && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1481                    || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL)
1482                && TREE_CONSTANT (TREE_OPERAND (cond, 1)))
1483         {
1484           tree stmt = (TREE_CODE (cond) == EQ_EXPR
1485                        ? then_stmt : else_stmt);
1486           tree *location = (TREE_CODE (cond) == EQ_EXPR
1487                             ? &COND_EXPR_THEN (*stmt_p)
1488                             : &COND_EXPR_ELSE (*stmt_p));
1489
1490           if (stmt
1491               && TREE_CODE (stmt) == MODIFY_EXPR
1492               && TREE_OPERAND (stmt, 0) == TREE_OPERAND (cond, 0)
1493               && TREE_OPERAND (stmt, 1) == TREE_OPERAND (cond, 1))
1494             *location = alloc_stmt_list ();
1495         }
1496     }
1497
1498   /* Protect GOTOs in the arm of COND_EXPRs from being removed.  They
1499      would be re-introduced during lowering.  */
1500   data->last_goto = NULL;
1501 }
1502
1503
1504 static void
1505 remove_useless_stmts_tf (tree *stmt_p, struct rus_data *data)
1506 {
1507   bool save_may_branch, save_may_throw;
1508   bool this_may_branch, this_may_throw;
1509
1510   /* Collect may_branch and may_throw information for the body only.  */
1511   save_may_branch = data->may_branch;
1512   save_may_throw = data->may_throw;
1513   data->may_branch = false;
1514   data->may_throw = false;
1515   data->last_goto = NULL;
1516
1517   remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1518
1519   this_may_branch = data->may_branch;
1520   this_may_throw = data->may_throw;
1521   data->may_branch |= save_may_branch;
1522   data->may_throw |= save_may_throw;
1523   data->last_goto = NULL;
1524
1525   remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1526
1527   /* If the body is empty, then we can emit the FINALLY block without
1528      the enclosing TRY_FINALLY_EXPR.  */
1529   if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 0)))
1530     {
1531       *stmt_p = TREE_OPERAND (*stmt_p, 1);
1532       data->repeat = true;
1533     }
1534
1535   /* If the handler is empty, then we can emit the TRY block without
1536      the enclosing TRY_FINALLY_EXPR.  */
1537   else if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1538     {
1539       *stmt_p = TREE_OPERAND (*stmt_p, 0);
1540       data->repeat = true;
1541     }
1542
1543   /* If the body neither throws, nor branches, then we can safely
1544      string the TRY and FINALLY blocks together.  */
1545   else if (!this_may_branch && !this_may_throw)
1546     {
1547       tree stmt = *stmt_p;
1548       *stmt_p = TREE_OPERAND (stmt, 0);
1549       append_to_statement_list (TREE_OPERAND (stmt, 1), stmt_p);
1550       data->repeat = true;
1551     }
1552 }
1553
1554
1555 static void
1556 remove_useless_stmts_tc (tree *stmt_p, struct rus_data *data)
1557 {
1558   bool save_may_throw, this_may_throw;
1559   tree_stmt_iterator i;
1560   tree stmt;
1561
1562   /* Collect may_throw information for the body only.  */
1563   save_may_throw = data->may_throw;
1564   data->may_throw = false;
1565   data->last_goto = NULL;
1566
1567   remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 0), data);
1568
1569   this_may_throw = data->may_throw;
1570   data->may_throw = save_may_throw;
1571
1572   /* If the body cannot throw, then we can drop the entire TRY_CATCH_EXPR.  */
1573   if (!this_may_throw)
1574     {
1575       if (warn_notreached)
1576         remove_useless_stmts_warn_notreached (TREE_OPERAND (*stmt_p, 1));
1577       *stmt_p = TREE_OPERAND (*stmt_p, 0);
1578       data->repeat = true;
1579       return;
1580     }
1581
1582   /* Process the catch clause specially.  We may be able to tell that
1583      no exceptions propagate past this point.  */
1584
1585   this_may_throw = true;
1586   i = tsi_start (TREE_OPERAND (*stmt_p, 1));
1587   stmt = tsi_stmt (i);
1588   data->last_goto = NULL;
1589
1590   switch (TREE_CODE (stmt))
1591     {
1592     case CATCH_EXPR:
1593       for (; !tsi_end_p (i); tsi_next (&i))
1594         {
1595           stmt = tsi_stmt (i);
1596           /* If we catch all exceptions, then the body does not
1597              propagate exceptions past this point.  */
1598           if (CATCH_TYPES (stmt) == NULL)
1599             this_may_throw = false;
1600           data->last_goto = NULL;
1601           remove_useless_stmts_1 (&CATCH_BODY (stmt), data);
1602         }
1603       break;
1604
1605     case EH_FILTER_EXPR:
1606       if (EH_FILTER_MUST_NOT_THROW (stmt))
1607         this_may_throw = false;
1608       else if (EH_FILTER_TYPES (stmt) == NULL)
1609         this_may_throw = false;
1610       remove_useless_stmts_1 (&EH_FILTER_FAILURE (stmt), data);
1611       break;
1612
1613     default:
1614       /* Otherwise this is a cleanup.  */
1615       remove_useless_stmts_1 (&TREE_OPERAND (*stmt_p, 1), data);
1616
1617       /* If the cleanup is empty, then we can emit the TRY block without
1618          the enclosing TRY_CATCH_EXPR.  */
1619       if (!TREE_SIDE_EFFECTS (TREE_OPERAND (*stmt_p, 1)))
1620         {
1621           *stmt_p = TREE_OPERAND (*stmt_p, 0);
1622           data->repeat = true;
1623         }
1624       break;
1625     }
1626   data->may_throw |= this_may_throw;
1627 }
1628
1629
1630 static void
1631 remove_useless_stmts_bind (tree *stmt_p, struct rus_data *data)
1632 {
1633   tree block;
1634
1635   /* First remove anything underneath the BIND_EXPR.  */
1636   remove_useless_stmts_1 (&BIND_EXPR_BODY (*stmt_p), data);
1637
1638   /* If the BIND_EXPR has no variables, then we can pull everything
1639      up one level and remove the BIND_EXPR, unless this is the toplevel
1640      BIND_EXPR for the current function or an inlined function.
1641
1642      When this situation occurs we will want to apply this
1643      optimization again.  */
1644   block = BIND_EXPR_BLOCK (*stmt_p);
1645   if (BIND_EXPR_VARS (*stmt_p) == NULL_TREE
1646       && *stmt_p != DECL_SAVED_TREE (current_function_decl)
1647       && (! block
1648           || ! BLOCK_ABSTRACT_ORIGIN (block)
1649           || (TREE_CODE (BLOCK_ABSTRACT_ORIGIN (block))
1650               != FUNCTION_DECL)))
1651     {
1652       *stmt_p = BIND_EXPR_BODY (*stmt_p);
1653       data->repeat = true;
1654     }
1655 }
1656
1657
1658 static void
1659 remove_useless_stmts_goto (tree *stmt_p, struct rus_data *data)
1660 {
1661   tree dest = GOTO_DESTINATION (*stmt_p);
1662
1663   data->may_branch = true;
1664   data->last_goto = NULL;
1665
1666   /* Record the last goto expr, so that we can delete it if unnecessary.  */
1667   if (TREE_CODE (dest) == LABEL_DECL)
1668     data->last_goto = stmt_p;
1669 }
1670
1671
1672 static void
1673 remove_useless_stmts_label (tree *stmt_p, struct rus_data *data)
1674 {
1675   tree label = LABEL_EXPR_LABEL (*stmt_p);
1676
1677   data->has_label = true;
1678
1679   /* We do want to jump across non-local label receiver code.  */
1680   if (DECL_NONLOCAL (label))
1681     data->last_goto = NULL;
1682
1683   else if (data->last_goto && GOTO_DESTINATION (*data->last_goto) == label)
1684     {
1685       *data->last_goto = build_empty_stmt ();
1686       data->repeat = true;
1687     }
1688
1689   /* ??? Add something here to delete unused labels.  */
1690 }
1691
1692
1693 /* If the function is "const" or "pure", then clear TREE_SIDE_EFFECTS on its
1694    decl.  This allows us to eliminate redundant or useless
1695    calls to "const" functions. 
1696
1697    Gimplifier already does the same operation, but we may notice functions
1698    being const and pure once their calls has been gimplified, so we need
1699    to update the flag.  */
1700
1701 static void
1702 update_call_expr_flags (tree call)
1703 {
1704   tree decl = get_callee_fndecl (call);
1705   if (!decl)
1706     return;
1707   if (call_expr_flags (call) & (ECF_CONST | ECF_PURE))
1708     TREE_SIDE_EFFECTS (call) = 0;
1709   if (TREE_NOTHROW (decl))
1710     TREE_NOTHROW (call) = 1;
1711 }
1712
1713
1714 /* T is CALL_EXPR.  Set current_function_calls_* flags.  */
1715
1716 void
1717 notice_special_calls (tree t)
1718 {
1719   int flags = call_expr_flags (t);
1720
1721   if (flags & ECF_MAY_BE_ALLOCA)
1722     current_function_calls_alloca = true;
1723   if (flags & ECF_RETURNS_TWICE)
1724     current_function_calls_setjmp = true;
1725 }
1726
1727
1728 /* Clear flags set by notice_special_calls.  Used by dead code removal
1729    to update the flags.  */
1730
1731 void
1732 clear_special_calls (void)
1733 {
1734   current_function_calls_alloca = false;
1735   current_function_calls_setjmp = false;
1736 }
1737
1738
1739 static void
1740 remove_useless_stmts_1 (tree *tp, struct rus_data *data)
1741 {
1742   tree t = *tp, op;
1743
1744   switch (TREE_CODE (t))
1745     {
1746     case COND_EXPR:
1747       remove_useless_stmts_cond (tp, data);
1748       break;
1749
1750     case TRY_FINALLY_EXPR:
1751       remove_useless_stmts_tf (tp, data);
1752       break;
1753
1754     case TRY_CATCH_EXPR:
1755       remove_useless_stmts_tc (tp, data);
1756       break;
1757
1758     case BIND_EXPR:
1759       remove_useless_stmts_bind (tp, data);
1760       break;
1761
1762     case GOTO_EXPR:
1763       remove_useless_stmts_goto (tp, data);
1764       break;
1765
1766     case LABEL_EXPR:
1767       remove_useless_stmts_label (tp, data);
1768       break;
1769
1770     case RETURN_EXPR:
1771       fold_stmt (tp);
1772       data->last_goto = NULL;
1773       data->may_branch = true;
1774       break;
1775
1776     case CALL_EXPR:
1777       fold_stmt (tp);
1778       data->last_goto = NULL;
1779       notice_special_calls (t);
1780       update_call_expr_flags (t);
1781       if (tree_could_throw_p (t))
1782         data->may_throw = true;
1783       break;
1784
1785     case MODIFY_EXPR:
1786       data->last_goto = NULL;
1787       fold_stmt (tp);
1788       op = get_call_expr_in (t);
1789       if (op)
1790         {
1791           update_call_expr_flags (op);
1792           notice_special_calls (op);
1793         }
1794       if (tree_could_throw_p (t))
1795         data->may_throw = true;
1796       break;
1797
1798     case STATEMENT_LIST:
1799       {
1800         tree_stmt_iterator i = tsi_start (t);
1801         while (!tsi_end_p (i))
1802           {
1803             t = tsi_stmt (i);
1804             if (IS_EMPTY_STMT (t))
1805               {
1806                 tsi_delink (&i);
1807                 continue;
1808               }
1809             
1810             remove_useless_stmts_1 (tsi_stmt_ptr (i), data);
1811
1812             t = tsi_stmt (i);
1813             if (TREE_CODE (t) == STATEMENT_LIST)
1814               {
1815                 tsi_link_before (&i, t, TSI_SAME_STMT);
1816                 tsi_delink (&i);
1817               }
1818             else
1819               tsi_next (&i);
1820           }
1821       }
1822       break;
1823     case ASM_EXPR:
1824       fold_stmt (tp);
1825       data->last_goto = NULL;
1826       break;
1827
1828     default:
1829       data->last_goto = NULL;
1830       break;
1831     }
1832 }
1833
1834 static void
1835 remove_useless_stmts (void)
1836 {
1837   struct rus_data data;
1838
1839   clear_special_calls ();
1840
1841   do
1842     {
1843       memset (&data, 0, sizeof (data));
1844       remove_useless_stmts_1 (&DECL_SAVED_TREE (current_function_decl), &data);
1845     }
1846   while (data.repeat);
1847 }
1848
1849
1850 struct tree_opt_pass pass_remove_useless_stmts = 
1851 {
1852   "useless",                            /* name */
1853   NULL,                                 /* gate */
1854   remove_useless_stmts,                 /* execute */
1855   NULL,                                 /* sub */
1856   NULL,                                 /* next */
1857   0,                                    /* static_pass_number */
1858   0,                                    /* tv_id */
1859   PROP_gimple_any,                      /* properties_required */
1860   0,                                    /* properties_provided */
1861   0,                                    /* properties_destroyed */
1862   0,                                    /* todo_flags_start */
1863   TODO_dump_func,                       /* todo_flags_finish */
1864   0                                     /* letter */
1865 };
1866
1867
1868 /* Remove obviously useless statements in basic block BB.  */
1869
1870 static void
1871 cfg_remove_useless_stmts_bb (basic_block bb)
1872 {
1873   block_stmt_iterator bsi;
1874   tree stmt = NULL_TREE;
1875   tree cond, var = NULL_TREE, val = NULL_TREE;
1876   struct var_ann_d *ann;
1877
1878   /* Check whether we come here from a condition, and if so, get the
1879      condition.  */
1880   if (EDGE_COUNT (bb->preds) != 1
1881       || !(EDGE_PRED (bb, 0)->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
1882     return;
1883
1884   cond = COND_EXPR_COND (last_stmt (EDGE_PRED (bb, 0)->src));
1885
1886   if (TREE_CODE (cond) == VAR_DECL || TREE_CODE (cond) == PARM_DECL)
1887     {
1888       var = cond;
1889       val = (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE
1890              ? boolean_false_node : boolean_true_node);
1891     }
1892   else if (TREE_CODE (cond) == TRUTH_NOT_EXPR
1893            && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1894                || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL))
1895     {
1896       var = TREE_OPERAND (cond, 0);
1897       val = (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE
1898              ? boolean_true_node : boolean_false_node);
1899     }
1900   else
1901     {
1902       if (EDGE_PRED (bb, 0)->flags & EDGE_FALSE_VALUE)
1903         cond = invert_truthvalue (cond);
1904       if (TREE_CODE (cond) == EQ_EXPR
1905           && (TREE_CODE (TREE_OPERAND (cond, 0)) == VAR_DECL
1906               || TREE_CODE (TREE_OPERAND (cond, 0)) == PARM_DECL)
1907           && (TREE_CODE (TREE_OPERAND (cond, 1)) == VAR_DECL
1908               || TREE_CODE (TREE_OPERAND (cond, 1)) == PARM_DECL
1909               || TREE_CONSTANT (TREE_OPERAND (cond, 1))))
1910         {
1911           var = TREE_OPERAND (cond, 0);
1912           val = TREE_OPERAND (cond, 1);
1913         }
1914       else
1915         return;
1916     }
1917
1918   /* Only work for normal local variables.  */
1919   ann = var_ann (var);
1920   if (!ann
1921       || ann->may_aliases
1922       || TREE_ADDRESSABLE (var))
1923     return;
1924
1925   if (! TREE_CONSTANT (val))
1926     {
1927       ann = var_ann (val);
1928       if (!ann
1929           || ann->may_aliases
1930           || TREE_ADDRESSABLE (val))
1931         return;
1932     }
1933
1934   /* Ignore floating point variables, since comparison behaves weird for
1935      them.  */
1936   if (FLOAT_TYPE_P (TREE_TYPE (var)))
1937     return;
1938
1939   for (bsi = bsi_start (bb); !bsi_end_p (bsi);)
1940     {
1941       stmt = bsi_stmt (bsi);
1942
1943       /* If the THEN/ELSE clause merely assigns a value to a variable/parameter
1944          which is already known to contain that value, then remove the useless
1945          THEN/ELSE clause.  */
1946       if (TREE_CODE (stmt) == MODIFY_EXPR
1947           && TREE_OPERAND (stmt, 0) == var
1948           && operand_equal_p (val, TREE_OPERAND (stmt, 1), 0))
1949         {
1950           bsi_remove (&bsi);
1951           continue;
1952         }
1953
1954       /* Invalidate the var if we encounter something that could modify it.
1955          Likewise for the value it was previously set to.  Note that we only
1956          consider values that are either a VAR_DECL or PARM_DECL so we
1957          can test for conflict very simply.  */
1958       if (TREE_CODE (stmt) == ASM_EXPR
1959           || (TREE_CODE (stmt) == MODIFY_EXPR
1960               && (TREE_OPERAND (stmt, 0) == var
1961                   || TREE_OPERAND (stmt, 0) == val)))
1962         return;
1963   
1964       bsi_next (&bsi);
1965     }
1966 }
1967
1968
1969 /* A CFG-aware version of remove_useless_stmts.  */
1970
1971 void
1972 cfg_remove_useless_stmts (void)
1973 {
1974   basic_block bb;
1975
1976 #ifdef ENABLE_CHECKING
1977   verify_flow_info ();
1978 #endif
1979
1980   FOR_EACH_BB (bb)
1981     {
1982       cfg_remove_useless_stmts_bb (bb);
1983     }
1984 }
1985
1986
1987 /* Remove PHI nodes associated with basic block BB and all edges out of BB.  */
1988
1989 static void
1990 remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
1991 {
1992   tree phi;
1993
1994   /* Since this block is no longer reachable, we can just delete all
1995      of its PHI nodes.  */
1996   phi = phi_nodes (bb);
1997   while (phi)
1998     {
1999       tree next = PHI_CHAIN (phi);
2000       remove_phi_node (phi, NULL_TREE, bb);
2001       phi = next;
2002     }
2003
2004   /* Remove edges to BB's successors.  */
2005   while (EDGE_COUNT (bb->succs) > 0)
2006     remove_edge (EDGE_SUCC (bb, 0));
2007 }
2008
2009
2010 /* Remove statements of basic block BB.  */
2011
2012 static void
2013 remove_bb (basic_block bb)
2014 {
2015   block_stmt_iterator i;
2016   source_locus loc = 0;
2017
2018   if (dump_file)
2019     {
2020       fprintf (dump_file, "Removing basic block %d\n", bb->index);
2021       if (dump_flags & TDF_DETAILS)
2022         {
2023           dump_bb (bb, dump_file, 0);
2024           fprintf (dump_file, "\n");
2025         }
2026     }
2027
2028   /* Remove all the instructions in the block.  */
2029   for (i = bsi_start (bb); !bsi_end_p (i);)
2030     {
2031       tree stmt = bsi_stmt (i);
2032       if (TREE_CODE (stmt) == LABEL_EXPR
2033           && FORCED_LABEL (LABEL_EXPR_LABEL (stmt)))
2034         {
2035           basic_block new_bb = bb->prev_bb;
2036           block_stmt_iterator new_bsi = bsi_start (new_bb);
2037                   
2038           bsi_remove (&i);
2039           bsi_insert_before (&new_bsi, stmt, BSI_NEW_STMT);
2040         }
2041       else
2042         {
2043           release_defs (stmt);
2044
2045           set_bb_for_stmt (stmt, NULL);
2046           bsi_remove (&i);
2047         }
2048
2049       /* Don't warn for removed gotos.  Gotos are often removed due to
2050          jump threading, thus resulting in bogus warnings.  Not great,
2051          since this way we lose warnings for gotos in the original
2052          program that are indeed unreachable.  */
2053       if (TREE_CODE (stmt) != GOTO_EXPR && EXPR_HAS_LOCATION (stmt) && !loc)
2054         {
2055           source_locus t;
2056
2057 #ifdef USE_MAPPED_LOCATION
2058           t = EXPR_LOCATION (stmt);
2059 #else
2060           t = EXPR_LOCUS (stmt);
2061 #endif
2062           if (t && LOCATION_LINE (*t) > 0)
2063             loc = t;
2064         }
2065     }
2066
2067   /* If requested, give a warning that the first statement in the
2068      block is unreachable.  We walk statements backwards in the
2069      loop above, so the last statement we process is the first statement
2070      in the block.  */
2071   if (warn_notreached && loc)
2072 #ifdef USE_MAPPED_LOCATION
2073     warning ("%Hwill never be executed", &loc);
2074 #else
2075     warning ("%Hwill never be executed", loc);
2076 #endif
2077
2078   remove_phi_nodes_and_edges_for_unreachable_block (bb);
2079 }
2080
2081 /* A list of all the noreturn calls passed to modify_stmt.
2082    cleanup_control_flow uses it to detect cases where a mid-block
2083    indirect call has been turned into a noreturn call.  When this
2084    happens, all the instructions after the call are no longer
2085    reachable and must be deleted as dead.  */
2086
2087 VEC(tree) *modified_noreturn_calls;
2088
2089 /* Try to remove superfluous control structures.  */
2090
2091 static bool
2092 cleanup_control_flow (void)
2093 {
2094   basic_block bb;
2095   block_stmt_iterator bsi;
2096   bool retval = false;
2097   tree stmt;
2098
2099   /* Detect cases where a mid-block call is now known not to return.  */
2100   while (VEC_length (tree, modified_noreturn_calls))
2101     {
2102       stmt = VEC_pop (tree, modified_noreturn_calls);
2103       bb = bb_for_stmt (stmt);
2104       if (bb != NULL && last_stmt (bb) != stmt && noreturn_call_p (stmt))
2105         split_block (bb, stmt);
2106     }
2107
2108   FOR_EACH_BB (bb)
2109     {
2110       bsi = bsi_last (bb);
2111
2112       if (bsi_end_p (bsi))
2113         continue;
2114       
2115       stmt = bsi_stmt (bsi);
2116       if (TREE_CODE (stmt) == COND_EXPR
2117           || TREE_CODE (stmt) == SWITCH_EXPR)
2118         retval |= cleanup_control_expr_graph (bb, bsi);
2119
2120       /* Check for indirect calls that have been turned into
2121          noreturn calls.  */
2122       if (noreturn_call_p (stmt) && remove_fallthru_edge (bb->succs))
2123         {
2124           free_dominance_info (CDI_DOMINATORS);
2125           retval = true;
2126         }
2127     }
2128   return retval;
2129 }
2130
2131
2132 /* Disconnect an unreachable block in the control expression starting
2133    at block BB.  */
2134
2135 static bool
2136 cleanup_control_expr_graph (basic_block bb, block_stmt_iterator bsi)
2137 {
2138   edge taken_edge;
2139   bool retval = false;
2140   tree expr = bsi_stmt (bsi), val;
2141
2142   if (EDGE_COUNT (bb->succs) > 1)
2143     {
2144       edge e;
2145       edge_iterator ei;
2146
2147       switch (TREE_CODE (expr))
2148         {
2149         case COND_EXPR:
2150           val = COND_EXPR_COND (expr);
2151           break;
2152
2153         case SWITCH_EXPR:
2154           val = SWITCH_COND (expr);
2155           if (TREE_CODE (val) != INTEGER_CST)
2156             return false;
2157           break;
2158
2159         default:
2160           gcc_unreachable ();
2161         }
2162
2163       taken_edge = find_taken_edge (bb, val);
2164       if (!taken_edge)
2165         return false;
2166
2167       /* Remove all the edges except the one that is always executed.  */
2168       for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
2169         {
2170           if (e != taken_edge)
2171             {
2172               taken_edge->probability += e->probability;
2173               taken_edge->count += e->count;
2174               remove_edge (e);
2175               retval = true;
2176             }
2177           else
2178             ei_next (&ei);
2179         }
2180       if (taken_edge->probability > REG_BR_PROB_BASE)
2181         taken_edge->probability = REG_BR_PROB_BASE;
2182     }
2183   else
2184     taken_edge = EDGE_SUCC (bb, 0);
2185
2186   bsi_remove (&bsi);
2187   taken_edge->flags = EDGE_FALLTHRU;
2188
2189   /* We removed some paths from the cfg.  */
2190   free_dominance_info (CDI_DOMINATORS);
2191
2192   return retval;
2193 }
2194
2195 /* Remove any fallthru edge from EV.  Return true if an edge was removed.  */
2196
2197 static bool
2198 remove_fallthru_edge (VEC(edge) *ev)
2199 {
2200   edge_iterator ei;
2201   edge e;
2202
2203   FOR_EACH_EDGE (e, ei, ev)
2204     if ((e->flags & EDGE_FALLTHRU) != 0)
2205       {
2206         remove_edge (e);
2207         return true;
2208       }
2209   return false;
2210 }
2211
2212 /* Given a basic block BB ending with COND_EXPR or SWITCH_EXPR, and a
2213    predicate VAL, return the edge that will be taken out of the block.
2214    If VAL does not match a unique edge, NULL is returned.  */
2215
2216 edge
2217 find_taken_edge (basic_block bb, tree val)
2218 {
2219   tree stmt;
2220
2221   stmt = last_stmt (bb);
2222
2223   gcc_assert (stmt);
2224   gcc_assert (is_ctrl_stmt (stmt));
2225   gcc_assert (val);
2226
2227   if (TREE_CODE (val) != INTEGER_CST)
2228     return NULL;
2229
2230   if (TREE_CODE (stmt) == COND_EXPR)
2231     return find_taken_edge_cond_expr (bb, val);
2232
2233   if (TREE_CODE (stmt) == SWITCH_EXPR)
2234     return find_taken_edge_switch_expr (bb, val);
2235
2236   gcc_unreachable ();
2237 }
2238
2239
2240 /* Given a constant value VAL and the entry block BB to a COND_EXPR
2241    statement, determine which of the two edges will be taken out of the
2242    block.  Return NULL if either edge may be taken.  */
2243
2244 static edge
2245 find_taken_edge_cond_expr (basic_block bb, tree val)
2246 {
2247   edge true_edge, false_edge;
2248
2249   extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2250
2251   /* Otherwise, try to determine which branch of the if() will be taken.
2252      If VAL is a constant but it can't be reduced to a 0 or a 1, then
2253      we don't really know which edge will be taken at runtime.  This
2254      may happen when comparing addresses (e.g., if (&var1 == 4)).  */
2255   if (integer_nonzerop (val))
2256     return true_edge;
2257   else if (integer_zerop (val))
2258     return false_edge;
2259
2260   gcc_unreachable ();
2261 }
2262
2263
2264 /* Given an INTEGER_CST VAL and the entry block BB to a SWITCH_EXPR
2265    statement, determine which edge will be taken out of the block.  Return
2266    NULL if any edge may be taken.  */
2267
2268 static edge
2269 find_taken_edge_switch_expr (basic_block bb, tree val)
2270 {
2271   tree switch_expr, taken_case;
2272   basic_block dest_bb;
2273   edge e;
2274
2275   switch_expr = last_stmt (bb);
2276   taken_case = find_case_label_for_value (switch_expr, val);
2277   dest_bb = label_to_block (CASE_LABEL (taken_case));
2278
2279   e = find_edge (bb, dest_bb);
2280   gcc_assert (e);
2281   return e;
2282 }
2283
2284
2285 /* Return the CASE_LABEL_EXPR that SWITCH_EXPR will take for VAL.
2286    We can make optimal use here of the fact that the case labels are
2287    sorted: We can do a binary search for a case matching VAL.  */
2288
2289 static tree
2290 find_case_label_for_value (tree switch_expr, tree val)
2291 {
2292   tree vec = SWITCH_LABELS (switch_expr);
2293   size_t low, high, n = TREE_VEC_LENGTH (vec);
2294   tree default_case = TREE_VEC_ELT (vec, n - 1);
2295
2296   for (low = -1, high = n - 1; high - low > 1; )
2297     {
2298       size_t i = (high + low) / 2;
2299       tree t = TREE_VEC_ELT (vec, i);
2300       int cmp;
2301
2302       /* Cache the result of comparing CASE_LOW and val.  */
2303       cmp = tree_int_cst_compare (CASE_LOW (t), val);
2304
2305       if (cmp > 0)
2306         high = i;
2307       else
2308         low = i;
2309
2310       if (CASE_HIGH (t) == NULL)
2311         {
2312           /* A singe-valued case label.  */
2313           if (cmp == 0)
2314             return t;
2315         }
2316       else
2317         {
2318           /* A case range.  We can only handle integer ranges.  */
2319           if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2320             return t;
2321         }
2322     }
2323
2324   return default_case;
2325 }
2326
2327
2328 /* If all the PHI nodes in DEST have alternatives for E1 and E2 and
2329    those alternatives are equal in each of the PHI nodes, then return
2330    true, else return false.  */
2331
2332 static bool
2333 phi_alternatives_equal (basic_block dest, edge e1, edge e2)
2334 {
2335   int n1 = e1->dest_idx;
2336   int n2 = e2->dest_idx;
2337   tree phi;
2338
2339   for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
2340     {
2341       tree val1 = PHI_ARG_DEF (phi, n1);
2342       tree val2 = PHI_ARG_DEF (phi, n2);
2343
2344       gcc_assert (val1 != NULL_TREE);
2345       gcc_assert (val2 != NULL_TREE);
2346
2347       if (!operand_equal_for_phi_arg_p (val1, val2))
2348         return false;
2349     }
2350
2351   return true;
2352 }
2353
2354
2355 /*---------------------------------------------------------------------------
2356                               Debugging functions
2357 ---------------------------------------------------------------------------*/
2358
2359 /* Dump tree-specific information of block BB to file OUTF.  */
2360
2361 void
2362 tree_dump_bb (basic_block bb, FILE *outf, int indent)
2363 {
2364   dump_generic_bb (outf, bb, indent, TDF_VOPS);
2365 }
2366
2367
2368 /* Dump a basic block on stderr.  */
2369
2370 void
2371 debug_tree_bb (basic_block bb)
2372 {
2373   dump_bb (bb, stderr, 0);
2374 }
2375
2376
2377 /* Dump basic block with index N on stderr.  */
2378
2379 basic_block
2380 debug_tree_bb_n (int n)
2381 {
2382   debug_tree_bb (BASIC_BLOCK (n));
2383   return BASIC_BLOCK (n);
2384 }        
2385
2386
2387 /* Dump the CFG on stderr.
2388
2389    FLAGS are the same used by the tree dumping functions
2390    (see TDF_* in tree.h).  */
2391
2392 void
2393 debug_tree_cfg (int flags)
2394 {
2395   dump_tree_cfg (stderr, flags);
2396 }
2397
2398
2399 /* Dump the program showing basic block boundaries on the given FILE.
2400
2401    FLAGS are the same used by the tree dumping functions (see TDF_* in
2402    tree.h).  */
2403
2404 void
2405 dump_tree_cfg (FILE *file, int flags)
2406 {
2407   if (flags & TDF_DETAILS)
2408     {
2409       const char *funcname
2410         = lang_hooks.decl_printable_name (current_function_decl, 2);
2411
2412       fputc ('\n', file);
2413       fprintf (file, ";; Function %s\n\n", funcname);
2414       fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2415                n_basic_blocks, n_edges, last_basic_block);
2416
2417       brief_dump_cfg (file);
2418       fprintf (file, "\n");
2419     }
2420
2421   if (flags & TDF_STATS)
2422     dump_cfg_stats (file);
2423
2424   dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2425 }
2426
2427
2428 /* Dump CFG statistics on FILE.  */
2429
2430 void
2431 dump_cfg_stats (FILE *file)
2432 {
2433   static long max_num_merged_labels = 0;
2434   unsigned long size, total = 0;
2435   int n_edges;
2436   basic_block bb;
2437   const char * const fmt_str   = "%-30s%-13s%12s\n";
2438   const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
2439   const char * const fmt_str_3 = "%-43s%11lu%c\n";
2440   const char *funcname
2441     = lang_hooks.decl_printable_name (current_function_decl, 2);
2442
2443
2444   fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2445
2446   fprintf (file, "---------------------------------------------------------\n");
2447   fprintf (file, fmt_str, "", "  Number of  ", "Memory");
2448   fprintf (file, fmt_str, "", "  instances  ", "used ");
2449   fprintf (file, "---------------------------------------------------------\n");
2450
2451   size = n_basic_blocks * sizeof (struct basic_block_def);
2452   total += size;
2453   fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks,
2454            SCALE (size), LABEL (size));
2455
2456   n_edges = 0;
2457   FOR_EACH_BB (bb)
2458     n_edges += EDGE_COUNT (bb->succs);
2459   size = n_edges * sizeof (struct edge_def);
2460   total += size;
2461   fprintf (file, fmt_str_1, "Edges", n_edges, SCALE (size), LABEL (size));
2462
2463   size = n_basic_blocks * sizeof (struct bb_ann_d);
2464   total += size;
2465   fprintf (file, fmt_str_1, "Basic block annotations", n_basic_blocks,
2466            SCALE (size), LABEL (size));
2467
2468   fprintf (file, "---------------------------------------------------------\n");
2469   fprintf (file, fmt_str_3, "Total memory used by CFG data", SCALE (total),
2470            LABEL (total));
2471   fprintf (file, "---------------------------------------------------------\n");
2472   fprintf (file, "\n");
2473
2474   if (cfg_stats.num_merged_labels > max_num_merged_labels)
2475     max_num_merged_labels = cfg_stats.num_merged_labels;
2476
2477   fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2478            cfg_stats.num_merged_labels, max_num_merged_labels);
2479
2480   fprintf (file, "\n");
2481 }
2482
2483
2484 /* Dump CFG statistics on stderr.  Keep extern so that it's always
2485    linked in the final executable.  */
2486
2487 void
2488 debug_cfg_stats (void)
2489 {
2490   dump_cfg_stats (stderr);
2491 }
2492
2493
2494 /* Dump the flowgraph to a .vcg FILE.  */
2495
2496 static void
2497 tree_cfg2vcg (FILE *file)
2498 {
2499   edge e;
2500   edge_iterator ei;
2501   basic_block bb;
2502   const char *funcname
2503     = lang_hooks.decl_printable_name (current_function_decl, 2);
2504
2505   /* Write the file header.  */
2506   fprintf (file, "graph: { title: \"%s\"\n", funcname);
2507   fprintf (file, "node: { title: \"ENTRY\" label: \"ENTRY\" }\n");
2508   fprintf (file, "node: { title: \"EXIT\" label: \"EXIT\" }\n");
2509
2510   /* Write blocks and edges.  */
2511   FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
2512     {
2513       fprintf (file, "edge: { sourcename: \"ENTRY\" targetname: \"%d\"",
2514                e->dest->index);
2515
2516       if (e->flags & EDGE_FAKE)
2517         fprintf (file, " linestyle: dotted priority: 10");
2518       else
2519         fprintf (file, " linestyle: solid priority: 100");
2520
2521       fprintf (file, " }\n");
2522     }
2523   fputc ('\n', file);
2524
2525   FOR_EACH_BB (bb)
2526     {
2527       enum tree_code head_code, end_code;
2528       const char *head_name, *end_name;
2529       int head_line = 0;
2530       int end_line = 0;
2531       tree first = first_stmt (bb);
2532       tree last = last_stmt (bb);
2533
2534       if (first)
2535         {
2536           head_code = TREE_CODE (first);
2537           head_name = tree_code_name[head_code];
2538           head_line = get_lineno (first);
2539         }
2540       else
2541         head_name = "no-statement";
2542
2543       if (last)
2544         {
2545           end_code = TREE_CODE (last);
2546           end_name = tree_code_name[end_code];
2547           end_line = get_lineno (last);
2548         }
2549       else
2550         end_name = "no-statement";
2551
2552       fprintf (file, "node: { title: \"%d\" label: \"#%d\\n%s (%d)\\n%s (%d)\"}\n",
2553                bb->index, bb->index, head_name, head_line, end_name,
2554                end_line);
2555
2556       FOR_EACH_EDGE (e, ei, bb->succs)
2557         {
2558           if (e->dest == EXIT_BLOCK_PTR)
2559             fprintf (file, "edge: { sourcename: \"%d\" targetname: \"EXIT\"", bb->index);
2560           else
2561             fprintf (file, "edge: { sourcename: \"%d\" targetname: \"%d\"", bb->index, e->dest->index);
2562
2563           if (e->flags & EDGE_FAKE)
2564             fprintf (file, " priority: 10 linestyle: dotted");
2565           else
2566             fprintf (file, " priority: 100 linestyle: solid");
2567
2568           fprintf (file, " }\n");
2569         }
2570
2571       if (bb->next_bb != EXIT_BLOCK_PTR)
2572         fputc ('\n', file);
2573     }
2574
2575   fputs ("}\n\n", file);
2576 }
2577
2578
2579
2580 /*---------------------------------------------------------------------------
2581                              Miscellaneous helpers
2582 ---------------------------------------------------------------------------*/
2583
2584 /* Return true if T represents a stmt that always transfers control.  */
2585
2586 bool
2587 is_ctrl_stmt (tree t)
2588 {
2589   return (TREE_CODE (t) == COND_EXPR
2590           || TREE_CODE (t) == SWITCH_EXPR
2591           || TREE_CODE (t) == GOTO_EXPR
2592           || TREE_CODE (t) == RETURN_EXPR
2593           || TREE_CODE (t) == RESX_EXPR);
2594 }
2595
2596
2597 /* Return true if T is a statement that may alter the flow of control
2598    (e.g., a call to a non-returning function).  */
2599
2600 bool
2601 is_ctrl_altering_stmt (tree t)
2602 {
2603   tree call;
2604
2605   gcc_assert (t);
2606   call = get_call_expr_in (t);
2607   if (call)
2608     {
2609       /* A non-pure/const CALL_EXPR alters flow control if the current
2610          function has nonlocal labels.  */
2611       if (TREE_SIDE_EFFECTS (call) && current_function_has_nonlocal_label)
2612         return true;
2613
2614       /* A CALL_EXPR also alters control flow if it does not return.  */
2615       if (call_expr_flags (call) & ECF_NORETURN)
2616         return true;
2617     }
2618
2619   /* If a statement can throw, it alters control flow.  */
2620   return tree_can_throw_internal (t);
2621 }
2622
2623
2624 /* Return true if T is a computed goto.  */
2625
2626 bool
2627 computed_goto_p (tree t)
2628 {
2629   return (TREE_CODE (t) == GOTO_EXPR
2630           && TREE_CODE (GOTO_DESTINATION (t)) != LABEL_DECL);
2631 }
2632
2633
2634 /* Checks whether EXPR is a simple local goto.  */
2635
2636 bool
2637 simple_goto_p (tree expr)
2638 {
2639   return (TREE_CODE (expr) == GOTO_EXPR
2640           && TREE_CODE (GOTO_DESTINATION (expr)) == LABEL_DECL);
2641 }
2642
2643
2644 /* Return true if T should start a new basic block.  PREV_T is the
2645    statement preceding T.  It is used when T is a label or a case label.
2646    Labels should only start a new basic block if their previous statement
2647    wasn't a label.  Otherwise, sequence of labels would generate
2648    unnecessary basic blocks that only contain a single label.  */
2649
2650 static inline bool
2651 stmt_starts_bb_p (tree t, tree prev_t)
2652 {
2653   enum tree_code code;
2654
2655   if (t == NULL_TREE)
2656     return false;
2657
2658   /* LABEL_EXPRs start a new basic block only if the preceding
2659      statement wasn't a label of the same type.  This prevents the
2660      creation of consecutive blocks that have nothing but a single
2661      label.  */
2662   code = TREE_CODE (t);
2663   if (code == LABEL_EXPR)
2664     {
2665       /* Nonlocal and computed GOTO targets always start a new block.  */
2666       if (code == LABEL_EXPR
2667           && (DECL_NONLOCAL (LABEL_EXPR_LABEL (t))
2668               || FORCED_LABEL (LABEL_EXPR_LABEL (t))))
2669         return true;
2670
2671       if (prev_t && TREE_CODE (prev_t) == code)
2672         {
2673           if (DECL_NONLOCAL (LABEL_EXPR_LABEL (prev_t)))
2674             return true;
2675
2676           cfg_stats.num_merged_labels++;
2677           return false;
2678         }
2679       else
2680         return true;
2681     }
2682
2683   return false;
2684 }
2685
2686
2687 /* Return true if T should end a basic block.  */
2688
2689 bool
2690 stmt_ends_bb_p (tree t)
2691 {
2692   return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2693 }
2694
2695
2696 /* Add gotos that used to be represented implicitly in the CFG.  */
2697
2698 void
2699 disband_implicit_edges (void)
2700 {
2701   basic_block bb;
2702   block_stmt_iterator last;
2703   edge e;
2704   edge_iterator ei;
2705   tree stmt, label;
2706
2707   FOR_EACH_BB (bb)
2708     {
2709       last = bsi_last (bb);
2710       stmt = last_stmt (bb);
2711
2712       if (stmt && TREE_CODE (stmt) == COND_EXPR)
2713         {
2714           /* Remove superfluous gotos from COND_EXPR branches.  Moved
2715              from cfg_remove_useless_stmts here since it violates the
2716              invariants for tree--cfg correspondence and thus fits better
2717              here where we do it anyway.  */
2718           e = find_edge (bb, bb->next_bb);
2719           if (e)
2720             {
2721               if (e->flags & EDGE_TRUE_VALUE)
2722                 COND_EXPR_THEN (stmt) = build_empty_stmt ();
2723               else if (e->flags & EDGE_FALSE_VALUE)
2724                 COND_EXPR_ELSE (stmt) = build_empty_stmt ();
2725               else
2726                 gcc_unreachable ();
2727               e->flags |= EDGE_FALLTHRU;
2728             }
2729
2730           continue;
2731         }
2732
2733       if (stmt && TREE_CODE (stmt) == RETURN_EXPR)
2734         {
2735           /* Remove the RETURN_EXPR if we may fall though to the exit
2736              instead.  */
2737           gcc_assert (EDGE_COUNT (bb->succs) == 1);
2738           gcc_assert (EDGE_SUCC (bb, 0)->dest == EXIT_BLOCK_PTR);
2739
2740           if (bb->next_bb == EXIT_BLOCK_PTR
2741               && !TREE_OPERAND (stmt, 0))
2742             {
2743               bsi_remove (&last);
2744               EDGE_SUCC (bb, 0)->flags |= EDGE_FALLTHRU;
2745             }
2746           continue;
2747         }
2748
2749       /* There can be no fallthru edge if the last statement is a control
2750          one.  */
2751       if (stmt && is_ctrl_stmt (stmt))
2752         continue;
2753
2754       /* Find a fallthru edge and emit the goto if necessary.  */
2755       FOR_EACH_EDGE (e, ei, bb->succs)
2756         if (e->flags & EDGE_FALLTHRU)
2757           break;
2758
2759       if (!e || e->dest == bb->next_bb)
2760         continue;
2761
2762       gcc_assert (e->dest != EXIT_BLOCK_PTR);
2763       label = tree_block_label (e->dest);
2764
2765       stmt = build1 (GOTO_EXPR, void_type_node, label);
2766 #ifdef USE_MAPPED_LOCATION
2767       SET_EXPR_LOCATION (stmt, e->goto_locus);
2768 #else
2769       SET_EXPR_LOCUS (stmt, e->goto_locus);
2770 #endif
2771       bsi_insert_after (&last, stmt, BSI_NEW_STMT);
2772       e->flags &= ~EDGE_FALLTHRU;
2773     }
2774 }
2775
2776 /* Remove block annotations and other datastructures.  */
2777
2778 void
2779 delete_tree_cfg_annotations (void)
2780 {
2781   basic_block bb;
2782   if (n_basic_blocks > 0)
2783     free_blocks_annotations ();
2784
2785   label_to_block_map = NULL;
2786   free_rbi_pool ();
2787   FOR_EACH_BB (bb)
2788     bb->rbi = NULL;
2789 }
2790
2791
2792 /* Return the first statement in basic block BB.  */
2793
2794 tree
2795 first_stmt (basic_block bb)
2796 {
2797   block_stmt_iterator i = bsi_start (bb);
2798   return !bsi_end_p (i) ? bsi_stmt (i) : NULL_TREE;
2799 }
2800
2801
2802 /* Return the last statement in basic block BB.  */
2803
2804 tree
2805 last_stmt (basic_block bb)
2806 {
2807   block_stmt_iterator b = bsi_last (bb);
2808   return !bsi_end_p (b) ? bsi_stmt (b) : NULL_TREE;
2809 }
2810
2811
2812 /* Return a pointer to the last statement in block BB.  */
2813
2814 tree *
2815 last_stmt_ptr (basic_block bb)
2816 {
2817   block_stmt_iterator last = bsi_last (bb);
2818   return !bsi_end_p (last) ? bsi_stmt_ptr (last) : NULL;
2819 }
2820
2821
2822 /* Return the last statement of an otherwise empty block.  Return NULL
2823    if the block is totally empty, or if it contains more than one
2824    statement.  */
2825
2826 tree
2827 last_and_only_stmt (basic_block bb)
2828 {
2829   block_stmt_iterator i = bsi_last (bb);
2830   tree last, prev;
2831
2832   if (bsi_end_p (i))
2833     return NULL_TREE;
2834
2835   last = bsi_stmt (i);
2836   bsi_prev (&i);
2837   if (bsi_end_p (i))
2838     return last;
2839
2840   /* Empty statements should no longer appear in the instruction stream.
2841      Everything that might have appeared before should be deleted by
2842      remove_useless_stmts, and the optimizers should just bsi_remove
2843      instead of smashing with build_empty_stmt.
2844
2845      Thus the only thing that should appear here in a block containing
2846      one executable statement is a label.  */
2847   prev = bsi_stmt (i);
2848   if (TREE_CODE (prev) == LABEL_EXPR)
2849     return last;
2850   else
2851     return NULL_TREE;
2852 }
2853
2854
2855 /* Mark BB as the basic block holding statement T.  */
2856
2857 void
2858 set_bb_for_stmt (tree t, basic_block bb)
2859 {
2860   if (TREE_CODE (t) == PHI_NODE)
2861     PHI_BB (t) = bb;
2862   else if (TREE_CODE (t) == STATEMENT_LIST)
2863     {
2864       tree_stmt_iterator i;
2865       for (i = tsi_start (t); !tsi_end_p (i); tsi_next (&i))
2866         set_bb_for_stmt (tsi_stmt (i), bb);
2867     }
2868   else
2869     {
2870       stmt_ann_t ann = get_stmt_ann (t);
2871       ann->bb = bb;
2872
2873       /* If the statement is a label, add the label to block-to-labels map
2874          so that we can speed up edge creation for GOTO_EXPRs.  */
2875       if (TREE_CODE (t) == LABEL_EXPR)
2876         {
2877           int uid;
2878
2879           t = LABEL_EXPR_LABEL (t);
2880           uid = LABEL_DECL_UID (t);
2881           if (uid == -1)
2882             {
2883               LABEL_DECL_UID (t) = uid = cfun->last_label_uid++;
2884               if (VARRAY_SIZE (label_to_block_map) <= (unsigned) uid)
2885                 VARRAY_GROW (label_to_block_map, 3 * uid / 2);
2886             }
2887           else
2888             /* We're moving an existing label.  Make sure that we've
2889                 removed it from the old block.  */
2890             gcc_assert (!bb || !VARRAY_BB (label_to_block_map, uid));
2891           VARRAY_BB (label_to_block_map, uid) = bb;
2892         }
2893     }
2894 }
2895
2896 /* Finds iterator for STMT.  */
2897
2898 extern block_stmt_iterator
2899 bsi_for_stmt (tree stmt)
2900 {
2901   block_stmt_iterator bsi;
2902
2903   for (bsi = bsi_start (bb_for_stmt (stmt)); !bsi_end_p (bsi); bsi_next (&bsi))
2904     if (bsi_stmt (bsi) == stmt)
2905       return bsi;
2906
2907   gcc_unreachable ();
2908 }
2909
2910 /* Insert statement (or statement list) T before the statement
2911    pointed-to by iterator I.  M specifies how to update iterator I
2912    after insertion (see enum bsi_iterator_update).  */
2913
2914 void
2915 bsi_insert_before (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
2916 {
2917   set_bb_for_stmt (t, i->bb);
2918   tsi_link_before (&i->tsi, t, m);
2919   modify_stmt (t);
2920 }
2921
2922
2923 /* Insert statement (or statement list) T after the statement
2924    pointed-to by iterator I.  M specifies how to update iterator I
2925    after insertion (see enum bsi_iterator_update).  */
2926
2927 void
2928 bsi_insert_after (block_stmt_iterator *i, tree t, enum bsi_iterator_update m)
2929 {
2930   set_bb_for_stmt (t, i->bb);
2931   tsi_link_after (&i->tsi, t, m);
2932   modify_stmt (t);
2933 }
2934
2935
2936 /* Remove the statement pointed to by iterator I.  The iterator is updated
2937    to the next statement.  */
2938
2939 void
2940 bsi_remove (block_stmt_iterator *i)
2941 {
2942   tree t = bsi_stmt (*i);
2943   set_bb_for_stmt (t, NULL);
2944   tsi_delink (&i->tsi);
2945 }
2946
2947
2948 /* Move the statement at FROM so it comes right after the statement at TO.  */
2949
2950 void 
2951 bsi_move_after (block_stmt_iterator *from, block_stmt_iterator *to)
2952 {
2953   tree stmt = bsi_stmt (*from);
2954   bsi_remove (from);
2955   bsi_insert_after (to, stmt, BSI_SAME_STMT);
2956
2957
2958
2959 /* Move the statement at FROM so it comes right before the statement at TO.  */
2960
2961 void 
2962 bsi_move_before (block_stmt_iterator *from, block_stmt_iterator *to)
2963 {
2964   tree stmt = bsi_stmt (*from);
2965   bsi_remove (from);
2966   bsi_insert_before (to, stmt, BSI_SAME_STMT);
2967 }
2968
2969
2970 /* Move the statement at FROM to the end of basic block BB.  */
2971
2972 void
2973 bsi_move_to_bb_end (block_stmt_iterator *from, basic_block bb)
2974 {
2975   block_stmt_iterator last = bsi_last (bb);
2976   
2977   /* Have to check bsi_end_p because it could be an empty block.  */
2978   if (!bsi_end_p (last) && is_ctrl_stmt (bsi_stmt (last)))
2979     bsi_move_before (from, &last);
2980   else
2981     bsi_move_after (from, &last);
2982 }
2983
2984
2985 /* Replace the contents of the statement pointed to by iterator BSI
2986    with STMT.  If PRESERVE_EH_INFO is true, the exception handling
2987    information of the original statement is preserved.  */
2988
2989 void
2990 bsi_replace (const block_stmt_iterator *bsi, tree stmt, bool preserve_eh_info)
2991 {
2992   int eh_region;
2993   tree orig_stmt = bsi_stmt (*bsi);
2994
2995   SET_EXPR_LOCUS (stmt, EXPR_LOCUS (orig_stmt));
2996   set_bb_for_stmt (stmt, bsi->bb);
2997
2998   /* Preserve EH region information from the original statement, if
2999      requested by the caller.  */
3000   if (preserve_eh_info)
3001     {
3002       eh_region = lookup_stmt_eh_region (orig_stmt);
3003       if (eh_region >= 0)
3004         add_stmt_to_eh_region (stmt, eh_region);
3005     }
3006
3007   *bsi_stmt_ptr (*bsi) = stmt;
3008   modify_stmt (stmt);
3009 }
3010
3011
3012 /* Insert the statement pointed-to by BSI into edge E.  Every attempt
3013    is made to place the statement in an existing basic block, but
3014    sometimes that isn't possible.  When it isn't possible, the edge is
3015    split and the statement is added to the new block.
3016
3017    In all cases, the returned *BSI points to the correct location.  The
3018    return value is true if insertion should be done after the location,
3019    or false if it should be done before the location.  If new basic block
3020    has to be created, it is stored in *NEW_BB.  */
3021
3022 static bool
3023 tree_find_edge_insert_loc (edge e, block_stmt_iterator *bsi,
3024                            basic_block *new_bb)
3025 {
3026   basic_block dest, src;
3027   tree tmp;
3028
3029   dest = e->dest;
3030  restart:
3031
3032   /* If the destination has one predecessor which has no PHI nodes,
3033      insert there.  Except for the exit block. 
3034
3035      The requirement for no PHI nodes could be relaxed.  Basically we
3036      would have to examine the PHIs to prove that none of them used
3037      the value set by the statement we want to insert on E.  That
3038      hardly seems worth the effort.  */
3039   if (EDGE_COUNT (dest->preds) == 1
3040       && ! phi_nodes (dest)
3041       && dest != EXIT_BLOCK_PTR)
3042     {
3043       *bsi = bsi_start (dest);
3044       if (bsi_end_p (*bsi))
3045         return true;
3046
3047       /* Make sure we insert after any leading labels.  */
3048       tmp = bsi_stmt (*bsi);
3049       while (TREE_CODE (tmp) == LABEL_EXPR)
3050         {
3051           bsi_next (bsi);
3052           if (bsi_end_p (*bsi))
3053             break;
3054           tmp = bsi_stmt (*bsi);
3055         }
3056
3057       if (bsi_end_p (*bsi))
3058         {
3059           *bsi = bsi_last (dest);
3060           return true;
3061         }
3062       else
3063         return false;
3064     }
3065
3066   /* If the source has one successor, the edge is not abnormal and
3067      the last statement does not end a basic block, insert there.
3068      Except for the entry block.  */
3069   src = e->src;
3070   if ((e->flags & EDGE_ABNORMAL) == 0
3071       && EDGE_COUNT (src->succs) == 1
3072       && src != ENTRY_BLOCK_PTR)
3073     {
3074       *bsi = bsi_last (src);
3075       if (bsi_end_p (*bsi))
3076         return true;
3077
3078       tmp = bsi_stmt (*bsi);
3079       if (!stmt_ends_bb_p (tmp))
3080         return true;
3081
3082       /* Insert code just before returning the value.  We may need to decompose
3083          the return in the case it contains non-trivial operand.  */
3084       if (TREE_CODE (tmp) == RETURN_EXPR)
3085         {
3086           tree op = TREE_OPERAND (tmp, 0);
3087           if (!is_gimple_val (op))
3088             {
3089               gcc_assert (TREE_CODE (op) == MODIFY_EXPR);
3090               bsi_insert_before (bsi, op, BSI_NEW_STMT);
3091               TREE_OPERAND (tmp, 0) = TREE_OPERAND (op, 0);
3092             }
3093           bsi_prev (bsi);
3094           return true;
3095         }
3096     }
3097
3098   /* Otherwise, create a new basic block, and split this edge.  */
3099   dest = split_edge (e);
3100   if (new_bb)
3101     *new_bb = dest;
3102   e = EDGE_PRED (dest, 0);
3103   goto restart;
3104 }
3105
3106
3107 /* This routine will commit all pending edge insertions, creating any new
3108    basic blocks which are necessary.  */
3109
3110 void
3111 bsi_commit_edge_inserts (void)
3112 {
3113   basic_block bb;
3114   edge e;
3115   edge_iterator ei;
3116
3117   bsi_commit_one_edge_insert (EDGE_SUCC (ENTRY_BLOCK_PTR, 0), NULL);
3118
3119   FOR_EACH_BB (bb)
3120     FOR_EACH_EDGE (e, ei, bb->succs)
3121       bsi_commit_one_edge_insert (e, NULL);
3122 }
3123
3124
3125 /* Commit insertions pending at edge E. If a new block is created, set NEW_BB
3126    to this block, otherwise set it to NULL.  */
3127
3128 void
3129 bsi_commit_one_edge_insert (edge e, basic_block *new_bb)
3130 {
3131   if (new_bb)
3132     *new_bb = NULL;
3133   if (PENDING_STMT (e))
3134     {
3135       block_stmt_iterator bsi;
3136       tree stmt = PENDING_STMT (e);
3137
3138       PENDING_STMT (e) = NULL_TREE;
3139
3140       if (tree_find_edge_insert_loc (e, &bsi, new_bb))
3141         bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
3142       else
3143         bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
3144     }
3145 }
3146
3147
3148 /* Add STMT to the pending list of edge E.  No actual insertion is
3149    made until a call to bsi_commit_edge_inserts () is made.  */
3150
3151 void
3152 bsi_insert_on_edge (edge e, tree stmt)
3153 {
3154   append_to_statement_list (stmt, &PENDING_STMT (e));
3155 }
3156
3157 /* Similar to bsi_insert_on_edge+bsi_commit_edge_inserts.  If a new
3158    block has to be created, it is returned.  */
3159
3160 basic_block
3161 bsi_insert_on_edge_immediate (edge e, tree stmt)
3162 {
3163   block_stmt_iterator bsi;
3164   basic_block new_bb = NULL;
3165
3166   gcc_assert (!PENDING_STMT (e));
3167
3168   if (tree_find_edge_insert_loc (e, &bsi, &new_bb))
3169     bsi_insert_after (&bsi, stmt, BSI_NEW_STMT);
3170   else
3171     bsi_insert_before (&bsi, stmt, BSI_NEW_STMT);
3172
3173   return new_bb;
3174 }
3175
3176 /*---------------------------------------------------------------------------
3177              Tree specific functions for CFG manipulation
3178 ---------------------------------------------------------------------------*/
3179
3180 /* Reinstall those PHI arguments queued in OLD_EDGE to NEW_EDGE.  */
3181
3182 static void
3183 reinstall_phi_args (edge new_edge, edge old_edge)
3184 {
3185   tree var, phi;
3186
3187   if (!PENDING_STMT (old_edge))
3188     return;
3189   
3190   for (var = PENDING_STMT (old_edge), phi = phi_nodes (new_edge->dest);
3191        var && phi;
3192        var = TREE_CHAIN (var), phi = PHI_CHAIN (phi))
3193     {
3194       tree result = TREE_PURPOSE (var);
3195       tree arg = TREE_VALUE (var);
3196
3197       gcc_assert (result == PHI_RESULT (phi));
3198
3199       add_phi_arg (phi, arg, new_edge);
3200     }
3201
3202   PENDING_STMT (old_edge) = NULL;
3203 }
3204
3205 /* Split a (typically critical) edge EDGE_IN.  Return the new block.
3206    Abort on abnormal edges.  */
3207
3208 static basic_block
3209 tree_split_edge (edge edge_in)
3210 {
3211   basic_block new_bb, after_bb, dest, src;
3212   edge new_edge, e;
3213
3214   /* Abnormal edges cannot be split.  */
3215   gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
3216
3217   src = edge_in->src;
3218   dest = edge_in->dest;
3219
3220   /* Place the new block in the block list.  Try to keep the new block
3221      near its "logical" location.  This is of most help to humans looking
3222      at debugging dumps.  */
3223   if (dest->prev_bb && find_edge (dest->prev_bb, dest))
3224     after_bb = edge_in->src;
3225   else
3226     after_bb = dest->prev_bb;
3227
3228   new_bb = create_empty_bb (after_bb);
3229   new_bb->frequency = EDGE_FREQUENCY (edge_in);
3230   new_bb->count = edge_in->count;
3231   new_edge = make_edge (new_bb, dest, EDGE_FALLTHRU);
3232   new_edge->probability = REG_BR_PROB_BASE;
3233   new_edge->count = edge_in->count;
3234
3235   e = redirect_edge_and_branch (edge_in, new_bb);
3236   gcc_assert (e);
3237   reinstall_phi_args (new_edge, e);
3238
3239   return new_bb;
3240 }
3241
3242
3243 /* Return true when BB has label LABEL in it.  */
3244
3245 static bool
3246 has_label_p (basic_block bb, tree label)
3247 {
3248   block_stmt_iterator bsi;
3249
3250   for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3251     {
3252       tree stmt = bsi_stmt (bsi);
3253
3254       if (TREE_CODE (stmt) != LABEL_EXPR)
3255         return false;
3256       if (LABEL_EXPR_LABEL (stmt) == label)
3257         return true;
3258     }
3259   return false;
3260 }
3261
3262
3263 /* Callback for walk_tree, check that all elements with address taken are
3264    properly noticed as such.  The DATA is an int* that is 1 if TP was seen
3265    inside a PHI node.  */
3266
3267 static tree
3268 verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
3269 {
3270   tree t = *tp, x;
3271   bool in_phi = (data != NULL);
3272
3273   if (TYPE_P (t))
3274     *walk_subtrees = 0;
3275   
3276   /* Check operand N for being valid GIMPLE and give error MSG if not. 
3277      We check for constants explicitly since they are not considered
3278      gimple invariants if they overflowed.  */
3279 #define CHECK_OP(N, MSG) \
3280   do { if (!CONSTANT_CLASS_P (TREE_OPERAND (t, N))              \
3281          && !is_gimple_val (TREE_OPERAND (t, N)))               \
3282        { error (MSG); return TREE_OPERAND (t, N); }} while (0)
3283
3284   switch (TREE_CODE (t))
3285     {
3286     case SSA_NAME:
3287       if (SSA_NAME_IN_FREE_LIST (t))
3288         {
3289           error ("SSA name in freelist but still referenced");
3290           return *tp;
3291         }
3292       break;
3293
3294     case MODIFY_EXPR:
3295       x = TREE_OPERAND (t, 0);
3296       if (TREE_CODE (x) == BIT_FIELD_REF
3297           && is_gimple_reg (TREE_OPERAND (x, 0)))
3298         {
3299           error ("GIMPLE register modified with BIT_FIELD_REF");
3300           return t;
3301         }
3302       break;
3303
3304     case ADDR_EXPR:
3305       /* ??? tree-ssa-alias.c may have overlooked dead PHI nodes, missing
3306          dead PHIs that take the address of something.  But if the PHI
3307          result is dead, the fact that it takes the address of anything
3308          is irrelevant.  Because we can not tell from here if a PHI result
3309          is dead, we just skip this check for PHIs altogether.  This means
3310          we may be missing "valid" checks, but what can you do?
3311          This was PR19217.  */
3312       if (in_phi)
3313         break;
3314
3315       /* Skip any references (they will be checked when we recurse down the
3316          tree) and ensure that any variable used as a prefix is marked
3317          addressable.  */
3318       for (x = TREE_OPERAND (t, 0);
3319            handled_component_p (x);
3320            x = TREE_OPERAND (x, 0))
3321         ;
3322
3323       if (TREE_CODE (x) != VAR_DECL && TREE_CODE (x) != PARM_DECL)
3324         return NULL;
3325       if (!TREE_ADDRESSABLE (x))
3326         {
3327           error ("address taken, but ADDRESSABLE bit not set");
3328           return x;
3329         }
3330       break;
3331
3332     case COND_EXPR:
3333       x = COND_EXPR_COND (t);
3334       if (TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE)
3335         {
3336           error ("non-boolean used in condition");
3337           return x;
3338         }
3339       break;
3340
3341     case NOP_EXPR:
3342     case CONVERT_EXPR:
3343     case FIX_TRUNC_EXPR:
3344     case FIX_CEIL_EXPR:
3345     case FIX_FLOOR_EXPR:
3346     case FIX_ROUND_EXPR:
3347     case FLOAT_EXPR:
3348     case NEGATE_EXPR:
3349     case ABS_EXPR:
3350     case BIT_NOT_EXPR:
3351     case NON_LVALUE_EXPR:
3352     case TRUTH_NOT_EXPR:
3353       CHECK_OP (0, "Invalid operand to unary operator");
3354       break;
3355
3356     case REALPART_EXPR:
3357     case IMAGPART_EXPR:
3358     case COMPONENT_REF:
3359     case ARRAY_REF:
3360     case ARRAY_RANGE_REF:
3361     case BIT_FIELD_REF:
3362     case VIEW_CONVERT_EXPR:
3363       /* We have a nest of references.  Verify that each of the operands
3364          that determine where to reference is either a constant or a variable,
3365          verify that the base is valid, and then show we've already checked
3366          the subtrees.  */
3367       while (handled_component_p (t))
3368         {
3369           if (TREE_CODE (t) == COMPONENT_REF && TREE_OPERAND (t, 2))
3370             CHECK_OP (2, "Invalid COMPONENT_REF offset operator");
3371           else if (TREE_CODE (t) == ARRAY_REF
3372                    || TREE_CODE (t) == ARRAY_RANGE_REF)
3373             {
3374               CHECK_OP (1, "Invalid array index.");
3375               if (TREE_OPERAND (t, 2))
3376                 CHECK_OP (2, "Invalid array lower bound.");
3377               if (TREE_OPERAND (t, 3))
3378                 CHECK_OP (3, "Invalid array stride.");
3379             }
3380           else if (TREE_CODE (t) == BIT_FIELD_REF)
3381             {
3382               CHECK_OP (1, "Invalid operand to BIT_FIELD_REF");
3383               CHECK_OP (2, "Invalid operand to BIT_FIELD_REF");
3384             }
3385
3386           t = TREE_OPERAND (t, 0);
3387         }
3388
3389       if (!CONSTANT_CLASS_P (t) && !is_gimple_lvalue (t))
3390         {
3391           error ("Invalid reference prefix.");
3392           return t;
3393         }
3394       *walk_subtrees = 0;
3395       break;
3396
3397     case LT_EXPR:
3398     case LE_EXPR:
3399     case GT_EXPR:
3400     case GE_EXPR:
3401     case EQ_EXPR:
3402     case NE_EXPR:
3403     case UNORDERED_EXPR:
3404     case ORDERED_EXPR:
3405     case UNLT_EXPR:
3406     case UNLE_EXPR:
3407     case UNGT_EXPR:
3408     case UNGE_EXPR:
3409     case UNEQ_EXPR:
3410     case LTGT_EXPR:
3411     case PLUS_EXPR:
3412     case MINUS_EXPR:
3413     case MULT_EXPR:
3414     case TRUNC_DIV_EXPR:
3415     case CEIL_DIV_EXPR:
3416     case FLOOR_DIV_EXPR:
3417     case ROUND_DIV_EXPR:
3418     case TRUNC_MOD_EXPR:
3419     case CEIL_MOD_EXPR:
3420     case FLOOR_MOD_EXPR:
3421     case ROUND_MOD_EXPR:
3422     case RDIV_EXPR:
3423     case EXACT_DIV_EXPR:
3424     case MIN_EXPR:
3425     case MAX_EXPR:
3426     case LSHIFT_EXPR:
3427     case RSHIFT_EXPR:
3428     case LROTATE_EXPR:
3429     case RROTATE_EXPR:
3430     case BIT_IOR_EXPR:
3431     case BIT_XOR_EXPR:
3432     case BIT_AND_EXPR:
3433       CHECK_OP (0, "Invalid operand to binary operator");
3434       CHECK_OP (1, "Invalid operand to binary operator");
3435       break;
3436
3437     default:
3438       break;
3439     }
3440   return NULL;
3441
3442 #undef CHECK_OP
3443 }
3444
3445
3446 /* Verify STMT, return true if STMT is not in GIMPLE form.
3447    TODO: Implement type checking.  */
3448
3449 static bool
3450 verify_stmt (tree stmt, bool last_in_block)
3451 {
3452   tree addr;
3453
3454   if (!is_gimple_stmt (stmt))
3455     {
3456       error ("Is not a valid GIMPLE statement.");
3457       goto fail;
3458     }
3459
3460   addr = walk_tree (&stmt, verify_expr, NULL, NULL);
3461   if (addr)
3462     {
3463       debug_generic_stmt (addr);
3464       return true;
3465     }
3466
3467   /* If the statement is marked as part of an EH region, then it is
3468      expected that the statement could throw.  Verify that when we
3469      have optimizations that simplify statements such that we prove
3470      that they cannot throw, that we update other data structures
3471      to match.  */
3472   if (lookup_stmt_eh_region (stmt) >= 0)
3473     {
3474       if (!tree_could_throw_p (stmt))
3475         {
3476           error ("Statement marked for throw, but doesn%'t.");
3477           goto fail;
3478         }
3479       if (!last_in_block && tree_can_throw_internal (stmt))
3480         {
3481           error ("Statement marked for throw in middle of block.");
3482           goto fail;
3483         }
3484     }
3485
3486   return false;
3487
3488  fail:
3489   debug_generic_stmt (stmt);
3490   return true;
3491 }
3492
3493
3494 /* Return true when the T can be shared.  */
3495
3496 static bool
3497 tree_node_can_be_shared (tree t)
3498 {
3499   if (IS_TYPE_OR_DECL_P (t)
3500       /* We check for constants explicitly since they are not considered
3501          gimple invariants if they overflowed.  */
3502       || CONSTANT_CLASS_P (t)
3503       || is_gimple_min_invariant (t)
3504       || TREE_CODE (t) == SSA_NAME
3505       || t == error_mark_node)
3506     return true;
3507
3508   if (TREE_CODE (t) == CASE_LABEL_EXPR)
3509     return true;
3510
3511   while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
3512           /* We check for constants explicitly since they are not considered
3513              gimple invariants if they overflowed.  */
3514           && (CONSTANT_CLASS_P (TREE_OPERAND (t, 1))
3515               || is_gimple_min_invariant (TREE_OPERAND (t, 1))))
3516          || (TREE_CODE (t) == COMPONENT_REF
3517              || TREE_CODE (t) == REALPART_EXPR
3518              || TREE_CODE (t) == IMAGPART_EXPR))
3519     t = TREE_OPERAND (t, 0);
3520
3521   if (DECL_P (t))
3522     return true;
3523
3524   return false;
3525 }
3526
3527
3528 /* Called via walk_trees.  Verify tree sharing.  */
3529
3530 static tree
3531 verify_node_sharing (tree * tp, int *walk_subtrees, void *data)
3532 {
3533   htab_t htab = (htab_t) data;
3534   void **slot;
3535
3536   if (tree_node_can_be_shared (*tp))
3537     {
3538       *walk_subtrees = false;
3539       return NULL;
3540     }
3541
3542   slot = htab_find_slot (htab, *tp, INSERT);
3543   if (*slot)
3544     return *slot;
3545   *slot = *tp;
3546
3547   return NULL;
3548 }
3549
3550
3551 /* Verify the GIMPLE statement chain.  */
3552
3553 void
3554 verify_stmts (void)
3555 {
3556   basic_block bb;
3557   block_stmt_iterator bsi;
3558   bool err = false;
3559   htab_t htab;
3560   tree addr;
3561
3562   timevar_push (TV_TREE_STMT_VERIFY);
3563   htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
3564
3565   FOR_EACH_BB (bb)
3566     {
3567       tree phi;
3568       int i;
3569
3570       for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
3571         {
3572           int phi_num_args = PHI_NUM_ARGS (phi);
3573
3574           for (i = 0; i < phi_num_args; i++)
3575             {
3576               tree t = PHI_ARG_DEF (phi, i);
3577               tree addr;
3578
3579               /* Addressable variables do have SSA_NAMEs but they
3580                  are not considered gimple values.  */
3581               if (TREE_CODE (t) != SSA_NAME
3582                   && TREE_CODE (t) != FUNCTION_DECL
3583                   && !is_gimple_val (t))
3584                 {
3585                   error ("PHI def is not a GIMPLE value");
3586                   debug_generic_stmt (phi);
3587                   debug_generic_stmt (t);
3588                   err |= true;
3589                 }
3590
3591               addr = walk_tree (&t, verify_expr, (void *) 1, NULL);
3592               if (addr)
3593                 {
3594                   debug_generic_stmt (addr);
3595                   err |= true;
3596                 }
3597
3598               addr = walk_tree (&t, verify_node_sharing, htab, NULL);
3599               if (addr)
3600                 {
3601                   error ("Incorrect sharing of tree nodes");
3602                   debug_generic_stmt (phi);
3603                   debug_generic_stmt (addr);
3604                   err |= true;
3605                 }
3606             }
3607         }
3608
3609       for (bsi = bsi_start (bb); !bsi_end_p (bsi); )
3610         {
3611           tree stmt = bsi_stmt (bsi);
3612           bsi_next (&bsi);
3613           err |= verify_stmt (stmt, bsi_end_p (bsi));
3614           addr = walk_tree (&stmt, verify_node_sharing, htab, NULL);
3615           if (addr)
3616             {
3617               error ("Incorrect sharing of tree nodes");
3618               debug_generic_stmt (stmt);
3619               debug_generic_stmt (addr);
3620               err |= true;
3621             }
3622         }
3623     }
3624
3625   if (err)
3626     internal_error ("verify_stmts failed.");
3627
3628   htab_delete (htab);
3629   timevar_pop (TV_TREE_STMT_VERIFY);
3630 }
3631
3632
3633 /* Verifies that the flow information is OK.  */
3634
3635 static int
3636 tree_verify_flow_info (void)
3637 {
3638   int err = 0;
3639   basic_block bb;
3640   block_stmt_iterator bsi;
3641   tree stmt;
3642   edge e;
3643   edge_iterator ei;
3644
3645   if (ENTRY_BLOCK_PTR->stmt_list)
3646     {
3647       error ("ENTRY_BLOCK has a statement list associated with it\n");
3648       err = 1;
3649     }
3650
3651   if (EXIT_BLOCK_PTR->stmt_list)
3652     {
3653       error ("EXIT_BLOCK has a statement list associated with it\n");
3654       err = 1;
3655     }
3656
3657   FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
3658     if (e->flags & EDGE_FALLTHRU)
3659       {
3660         error ("Fallthru to exit from bb %d\n", e->src->index);
3661         err = 1;
3662       }
3663
3664   FOR_EACH_BB (bb)
3665     {
3666       bool found_ctrl_stmt = false;
3667
3668       stmt = NULL_TREE;
3669
3670       /* Skip labels on the start of basic block.  */
3671       for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3672         {
3673           tree prev_stmt = stmt;
3674
3675           stmt = bsi_stmt (bsi);
3676
3677           if (TREE_CODE (stmt) != LABEL_EXPR)
3678             break;
3679
3680           if (prev_stmt && DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
3681             {
3682               error ("Nonlocal label %s is not first "
3683                      "in a sequence of labels in bb %d",
3684                      IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
3685                      bb->index);
3686               err = 1;
3687             }
3688
3689           if (label_to_block (LABEL_EXPR_LABEL (stmt)) != bb)
3690             {
3691               error ("Label %s to block does not match in bb %d\n",
3692                      IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
3693                      bb->index);
3694               err = 1;
3695             }
3696
3697           if (decl_function_context (LABEL_EXPR_LABEL (stmt))
3698               != current_function_decl)
3699             {
3700               error ("Label %s has incorrect context in bb %d\n",
3701                      IDENTIFIER_POINTER (DECL_NAME (LABEL_EXPR_LABEL (stmt))),
3702                      bb->index);
3703               err = 1;
3704             }
3705         }
3706
3707       /* Verify that body of basic block BB is free of control flow.  */
3708       for (; !bsi_end_p (bsi); bsi_next (&bsi))
3709         {
3710           tree stmt = bsi_stmt (bsi);
3711
3712           if (found_ctrl_stmt)
3713             {
3714               error ("Control flow in the middle of basic block %d\n",
3715                      bb->index);
3716               err = 1;
3717             }
3718
3719           if (stmt_ends_bb_p (stmt))
3720             found_ctrl_stmt = true;
3721
3722           if (TREE_CODE (stmt) == LABEL_EXPR)
3723             {
3724               error ("Label %s in the middle of basic block %d\n",
3725                      IDENTIFIER_POINTER (DECL_NAME (stmt)),
3726                      bb->index);
3727               err = 1;
3728             }
3729         }
3730       bsi = bsi_last (bb);
3731       if (bsi_end_p (bsi))
3732         continue;
3733
3734       stmt = bsi_stmt (bsi);
3735
3736       if (is_ctrl_stmt (stmt))
3737         {
3738           FOR_EACH_EDGE (e, ei, bb->succs)
3739             if (e->flags & EDGE_FALLTHRU)
3740               {
3741                 error ("Fallthru edge after a control statement in bb %d \n",
3742                        bb->index);
3743                 err = 1;
3744               }
3745         }
3746
3747       switch (TREE_CODE (stmt))
3748         {
3749         case COND_EXPR:
3750           {
3751             edge true_edge;
3752             edge false_edge;
3753             if (TREE_CODE (COND_EXPR_THEN (stmt)) != GOTO_EXPR
3754                 || TREE_CODE (COND_EXPR_ELSE (stmt)) != GOTO_EXPR)
3755               {
3756                 error ("Structured COND_EXPR at the end of bb %d\n", bb->index);
3757                 err = 1;
3758               }
3759
3760             extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
3761
3762             if (!true_edge || !false_edge
3763                 || !(true_edge->flags & EDGE_TRUE_VALUE)
3764                 || !(false_edge->flags & EDGE_FALSE_VALUE)
3765                 || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3766                 || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
3767                 || EDGE_COUNT (bb->succs) >= 3)
3768               {
3769                 error ("Wrong outgoing edge flags at end of bb %d\n",
3770                        bb->index);
3771                 err = 1;
3772               }
3773
3774             if (!has_label_p (true_edge->dest,
3775                               GOTO_DESTINATION (COND_EXPR_THEN (stmt))))
3776               {
3777                 error ("%<then%> label does not match edge at end of bb %d\n",
3778                        bb->index);
3779                 err = 1;
3780               }
3781
3782             if (!has_label_p (false_edge->dest,
3783                               GOTO_DESTINATION (COND_EXPR_ELSE (stmt))))
3784               {
3785                 error ("%<else%> label does not match edge at end of bb %d\n",
3786                        bb->index);
3787                 err = 1;
3788               }
3789           }
3790           break;
3791
3792         case GOTO_EXPR:
3793           if (simple_goto_p (stmt))
3794             {
3795               error ("Explicit goto at end of bb %d\n", bb->index);
3796               err = 1;
3797             }
3798           else
3799             {
3800               /* FIXME.  We should double check that the labels in the 
3801                  destination blocks have their address taken.  */
3802               FOR_EACH_EDGE (e, ei, bb->succs)
3803                 if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
3804                                  | EDGE_FALSE_VALUE))
3805                     || !(e->flags & EDGE_ABNORMAL))
3806                   {
3807                     error ("Wrong outgoing edge flags at end of bb %d\n",
3808                            bb->index);
3809                     err = 1;
3810                   }
3811             }
3812           break;
3813
3814         case RETURN_EXPR:
3815           if (EDGE_COUNT (bb->succs) != 1
3816               || (EDGE_SUCC (bb, 0)->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
3817                                      | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
3818             {
3819               error ("Wrong outgoing edge flags at end of bb %d\n", bb->index);
3820               err = 1;
3821             }
3822           if (EDGE_SUCC (bb, 0)->dest != EXIT_BLOCK_PTR)
3823             {
3824               error ("Return edge does not point to exit in bb %d\n",
3825                      bb->index);
3826               err = 1;
3827             }
3828           break;
3829
3830         case SWITCH_EXPR:
3831           {
3832             tree prev;
3833             edge e;
3834             size_t i, n;
3835             tree vec;
3836
3837             vec = SWITCH_LABELS (stmt);
3838             n = TREE_VEC_LENGTH (vec);
3839
3840             /* Mark all the destination basic blocks.  */
3841             for (i = 0; i < n; ++i)
3842               {
3843                 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3844                 basic_block label_bb = label_to_block (lab);
3845
3846                 gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
3847                 label_bb->aux = (void *)1;
3848               }
3849
3850             /* Verify that the case labels are sorted.  */
3851             prev = TREE_VEC_ELT (vec, 0);
3852             for (i = 1; i < n - 1; ++i)
3853               {
3854                 tree c = TREE_VEC_ELT (vec, i);
3855                 if (! CASE_LOW (c))
3856                   {
3857                     error ("Found default case not at end of case vector");
3858                     err = 1;
3859                     continue;
3860                   }
3861                 if (! tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
3862                   {
3863                     error ("Case labels not sorted:\n ");
3864                     print_generic_expr (stderr, prev, 0);
3865                     fprintf (stderr," is greater than ");
3866                     print_generic_expr (stderr, c, 0);
3867                     fprintf (stderr," but comes before it.\n");
3868                     err = 1;
3869                   }
3870                 prev = c;
3871               }
3872             if (CASE_LOW (TREE_VEC_ELT (vec, n - 1)))
3873               {
3874                 error ("No default case found at end of case vector");
3875                 err = 1;
3876               }
3877
3878             FOR_EACH_EDGE (e, ei, bb->succs)
3879               {
3880                 if (!e->dest->aux)
3881                   {
3882                     error ("Extra outgoing edge %d->%d\n",
3883                            bb->index, e->dest->index);
3884                     err = 1;
3885                   }
3886                 e->dest->aux = (void *)2;
3887                 if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
3888                                  | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
3889                   {
3890                     error ("Wrong outgoing edge flags at end of bb %d\n",
3891                            bb->index);
3892                     err = 1;
3893                   }
3894               }
3895
3896             /* Check that we have all of them.  */
3897             for (i = 0; i < n; ++i)
3898               {
3899                 tree lab = CASE_LABEL (TREE_VEC_ELT (vec, i));
3900                 basic_block label_bb = label_to_block (lab);
3901
3902                 if (label_bb->aux != (void *)2)
3903                   {
3904                     error ("Missing edge %i->%i",
3905                            bb->index, label_bb->index);
3906                     err = 1;
3907                   }
3908               }
3909
3910             FOR_EACH_EDGE (e, ei, bb->succs)
3911               e->dest->aux = (void *)0;
3912           }
3913
3914         default: ;
3915         }
3916     }
3917
3918   if (dom_computed[CDI_DOMINATORS] >= DOM_NO_FAST_QUERY)
3919     verify_dominators (CDI_DOMINATORS);
3920
3921   return err;
3922 }
3923
3924
3925 /* Updates phi nodes after creating a forwarder block joined
3926    by edge FALLTHRU.  */
3927
3928 static void
3929 tree_make_forwarder_block (edge fallthru)
3930 {
3931   edge e;
3932   edge_iterator ei;
3933   basic_block dummy, bb;
3934   tree phi, new_phi, var;
3935
3936   dummy = fallthru->src;
3937   bb = fallthru->dest;
3938
3939   if (EDGE_COUNT (bb->preds) == 1)
3940     return;
3941
3942   /* If we redirected a branch we must create new phi nodes at the
3943      start of BB.  */
3944   for (phi = phi_nodes (dummy); phi; phi = PHI_CHAIN (phi))
3945     {
3946       var = PHI_RESULT (phi);
3947       new_phi = create_phi_node (var, bb);
3948       SSA_NAME_DEF_STMT (var) = new_phi;
3949       SET_PHI_RESULT (phi, make_ssa_name (SSA_NAME_VAR (var), phi));
3950       add_phi_arg (new_phi, PHI_RESULT (phi), fallthru);
3951     }
3952
3953   /* Ensure that the PHI node chain is in the same order.  */
3954   set_phi_nodes (bb, phi_reverse (phi_nodes (bb)));
3955
3956   /* Add the arguments we have stored on edges.  */
3957   FOR_EACH_EDGE (e, ei, bb->preds)
3958     {
3959       if (e == fallthru)
3960         continue;
3961
3962       flush_pending_stmts (e);
3963     }
3964 }
3965
3966
3967 /* Return true if basic block BB does nothing except pass control
3968    flow to another block and that we can safely insert a label at
3969    the start of the successor block.
3970
3971    As a precondition, we require that BB be not equal to
3972    ENTRY_BLOCK_PTR.  */
3973
3974 static bool
3975 tree_forwarder_block_p (basic_block bb, bool phi_wanted)
3976 {
3977   block_stmt_iterator bsi;
3978
3979   /* BB must have a single outgoing edge.  */
3980   if (EDGE_COUNT (bb->succs) != 1
3981       /* If PHI_WANTED is false, BB must not have any PHI nodes.
3982          Otherwise, BB must have PHI nodes.  */
3983       || (phi_nodes (bb) != NULL_TREE) != phi_wanted
3984       /* BB may not be a predecessor of EXIT_BLOCK_PTR.  */
3985       || EDGE_SUCC (bb, 0)->dest == EXIT_BLOCK_PTR
3986       /* Nor should this be an infinite loop.  */
3987       || EDGE_SUCC (bb, 0)->dest == bb
3988       /* BB may not have an abnormal outgoing edge.  */
3989       || (EDGE_SUCC (bb, 0)->flags & EDGE_ABNORMAL))
3990     return false; 
3991
3992 #if ENABLE_CHECKING
3993   gcc_assert (bb != ENTRY_BLOCK_PTR);
3994 #endif
3995
3996   /* Now walk through the statements backward.  We can ignore labels,
3997      anything else means this is not a forwarder block.  */
3998   for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_next (&bsi))
3999     {
4000       tree stmt = bsi_stmt (bsi);
4001  
4002       switch (TREE_CODE (stmt))
4003         {
4004         case LABEL_EXPR:
4005           if (DECL_NONLOCAL (LABEL_EXPR_LABEL (stmt)))
4006             return false;
4007           break;
4008
4009         default:
4010           return false;
4011         }
4012     }
4013
4014   if (find_edge (ENTRY_BLOCK_PTR, bb))
4015     return false;
4016
4017   return true;
4018 }
4019
4020 /* Return true if BB has at least one abnormal incoming edge.  */
4021
4022 static inline bool
4023 has_abnormal_incoming_edge_p (basic_block bb)
4024 {
4025   edge e;
4026   edge_iterator ei;
4027
4028   FOR_EACH_EDGE (e, ei, bb->preds)
4029     if (e->flags & EDGE_ABNORMAL)
4030       return true;
4031
4032   return false;
4033 }
4034
4035 /* Removes forwarder block BB.  Returns false if this failed.  If a new
4036    forwarder block is created due to redirection of edges, it is
4037    stored to worklist.  */
4038
4039 static bool
4040 remove_forwarder_block (basic_block bb, basic_block **worklist)
4041 {
4042   edge succ = EDGE_SUCC (bb, 0), e, s;
4043   basic_block dest = succ->dest;
4044   tree label;
4045   tree phi;
4046   edge_iterator ei;
4047   block_stmt_iterator bsi, bsi_to;
4048   bool seen_abnormal_edge = false;
4049
4050   /* We check for infinite loops already in tree_forwarder_block_p.
4051      However it may happen that the infinite loop is created
4052      afterwards due to removal of forwarders.  */
4053   if (dest == bb)
4054     return false;
4055
4056   /* If the destination block consists of a nonlocal label, do not merge
4057      it.  */
4058   label = first_stmt (dest);
4059   if (label
4060       && TREE_CODE (label) == LABEL_EXPR
4061       && DECL_NONLOCAL (LABEL_EXPR_LABEL (label)))
4062     return false;
4063
4064   /* If there is an abnormal edge to basic block BB, but not into
4065      dest, problems might occur during removal of the phi node at out
4066      of ssa due to overlapping live ranges of registers.
4067
4068      If there is an abnormal edge in DEST, the problems would occur
4069      anyway since cleanup_dead_labels would then merge the labels for
4070      two different eh regions, and rest of exception handling code
4071      does not like it.
4072      
4073      So if there is an abnormal edge to BB, proceed only if there is
4074      no abnormal edge to DEST and there are no phi nodes in DEST.  */
4075   if (has_abnormal_incoming_edge_p (bb))
4076     {
4077       seen_abnormal_edge = true;
4078
4079       if (has_abnormal_incoming_edge_p (dest)
4080           || phi_nodes (dest) != NULL_TREE)
4081         return false;
4082     }
4083
4084   /* If there are phi nodes in DEST, and some of the blocks that are
4085      predecessors of BB are also predecessors of DEST, check that the
4086      phi node arguments match.  */
4087   if (phi_nodes (dest))
4088     {
4089       FOR_EACH_EDGE (e, ei, bb->preds)
4090         {
4091           s = find_edge (e->src, dest);
4092           if (!s)
4093             continue;
4094
4095           if (!phi_alternatives_equal (dest, succ, s))
4096             return false;
4097         }
4098     }
4099
4100   /* Redirect the edges.  */
4101   for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
4102     {
4103       if (e->flags & EDGE_ABNORMAL)
4104         {
4105           /* If there is an abnormal edge, redirect it anyway, and
4106              move the labels to the new block to make it legal.  */
4107           s = redirect_edge_succ_nodup (e, dest);
4108         }
4109       else
4110         s = redirect_edge_and_branch (e, dest);
4111
4112       if (s == e)
4113         {
4114           /* Create arguments for the phi nodes, since the edge was not
4115              here before.  */
4116           for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
4117             add_phi_arg (phi, PHI_ARG_DEF (phi, succ->dest_idx), s);
4118         }
4119       else
4120         {
4121           /* The source basic block might become a forwarder.  We know
4122              that it was not a forwarder before, since it used to have
4123              at least two outgoing edges, so we may just add it to
4124              worklist.  */
4125           if (tree_forwarder_block_p (s->src, false))
4126             *(*worklist)++ = s->src;
4127         }
4128     }
4129
4130   if (seen_abnormal_edge)
4131     {
4132       /* Move the labels to the new block, so that the redirection of
4133          the abnormal edges works.  */
4134
4135       bsi_to = bsi_start (dest);
4136       for (bsi = bsi_start (bb); !bsi_end_p (bsi); )
4137         {
4138           label = bsi_stmt (bsi);
4139           gcc_assert (TREE_CODE (label) == LABEL_EXPR);
4140           bsi_remove (&bsi);
4141           bsi_insert_before (&bsi_to, label, BSI_CONTINUE_LINKING);
4142         }
4143     }
4144
4145   /* Update the dominators.  */
4146   if (dom_info_available_p (CDI_DOMINATORS))
4147     {
4148       basic_block dom, dombb, domdest;
4149
4150       dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
4151       domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
4152       if (domdest == bb)
4153         {
4154           /* Shortcut to avoid calling (relatively expensive)
4155              nearest_common_dominator unless necessary.  */
4156           dom = dombb;
4157         }
4158       else
4159         dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
4160
4161       set_immediate_dominator (CDI_DOMINATORS, dest, dom);
4162     }
4163
4164   /* And kill the forwarder block.  */
4165   delete_basic_block (bb);
4166
4167   return true;
4168 }
4169
4170 /* Removes forwarder blocks.  */
4171
4172 static bool
4173 cleanup_forwarder_blocks (void)
4174 {
4175   basic_block bb;
4176   bool changed = false;
4177   basic_block *worklist = xmalloc (sizeof (basic_block) * n_basic_blocks);
4178   basic_block *current = worklist;
4179
4180   FOR_EACH_BB (bb)
4181     {
4182       if (tree_forwarder_block_p (bb, false))
4183         *current++ = bb;
4184     }
4185
4186   while (current != worklist)
4187     {
4188       bb = *--current;
4189       changed |= remove_forwarder_block (bb, &current);
4190     }
4191
4192   free (worklist);
4193   return changed;
4194 }
4195
4196 /* Merge the PHI nodes at BB into those at BB's sole successor.  */
4197
4198 static void
4199 remove_forwarder_block_with_phi (basic_block bb)
4200 {
4201   edge succ = EDGE_SUCC (bb, 0);
4202   basic_block dest = succ->dest;
4203   tree label;
4204   basic_block dombb, domdest, dom;
4205
4206   /* We check for infinite loops already in tree_forwarder_block_p.
4207      However it may happen that the infinite loop is created
4208      afterwards due to removal of forwarders.  */
4209   if (dest == bb)
4210     return;
4211
4212   /* If the destination block consists of a nonlocal label, do not
4213      merge it.  */
4214   label = first_stmt (dest);
4215   if (label
4216       && TREE_CODE (label) == LABEL_EXPR
4217       && DECL_NONLOCAL (LABEL_EXPR_LABEL (label)))
4218     return;
4219
4220   /* Redirect each incoming edge to BB to DEST.  */
4221   while (EDGE_COUNT (bb->preds) > 0)
4222     {
4223       edge e = EDGE_PRED (bb, 0), s;
4224       tree phi;
4225
4226       s = find_edge (e->src, dest);
4227       if (s)
4228         {
4229           /* We already have an edge S from E->src to DEST.  If S and
4230              E->dest's sole successor edge have the same PHI arguments
4231              at DEST, redirect S to DEST.  */
4232           if (phi_alternatives_equal (dest, s, succ))
4233             {
4234               e = redirect_edge_and_branch (e, dest);
4235               PENDING_STMT (e) = NULL_TREE;
4236               continue;
4237             }
4238
4239           /* PHI arguments are different.  Create a forwarder block by
4240              splitting E so that we can merge PHI arguments on E to
4241              DEST.  */
4242           e = EDGE_SUCC (split_edge (e), 0);
4243         }
4244
4245       s = redirect_edge_and_branch (e, dest);
4246
4247       /* redirect_edge_and_branch must not create a new edge.  */
4248       gcc_assert (s == e);
4249
4250       /* Add to the PHI nodes at DEST each PHI argument removed at the
4251          destination of E.  */
4252       for (phi = phi_nodes (dest); phi; phi = PHI_CHAIN (phi))
4253         {
4254           tree def = PHI_ARG_DEF (phi, succ->dest_idx);
4255
4256           if (TREE_CODE (def) == SSA_NAME)
4257             {
4258               tree var;
4259
4260               /* If DEF is one of the results of PHI nodes removed during
4261                  redirection, replace it with the PHI argument that used
4262                  to be on E.  */
4263               for (var = PENDING_STMT (e); var; var = TREE_CHAIN (var))
4264                 {
4265                   tree old_arg = TREE_PURPOSE (var);
4266                   tree new_arg = TREE_VALUE (var);
4267
4268                   if (def == old_arg)
4269                     {
4270                       def = new_arg;
4271                       break;
4272                     }
4273                 }
4274             }
4275
4276           add_phi_arg (phi, def, s);
4277         }
4278
4279       PENDING_STMT (e) = NULL;
4280     }
4281
4282   /* Update the dominators.  */
4283   dombb = get_immediate_dominator (CDI_DOMINATORS, bb);
4284   domdest = get_immediate_dominator (CDI_DOMINATORS, dest);
4285   if (domdest == bb)
4286     {
4287       /* Shortcut to avoid calling (relatively expensive)
4288          nearest_common_dominator unless necessary.  */
4289       dom = dombb;
4290     }
4291   else
4292     dom = nearest_common_dominator (CDI_DOMINATORS, domdest, dombb);
4293
4294   set_immediate_dominator (CDI_DOMINATORS, dest, dom);
4295   
4296   /* Remove BB since all of BB's incoming edges have been redirected
4297      to DEST.  */
4298   delete_basic_block (bb);
4299 }
4300
4301 /* This pass merges PHI nodes if one feeds into another.  For example,
4302    suppose we have the following:
4303
4304   goto <bb 9> (<L9>);
4305
4306 <L8>:;
4307   tem_17 = foo ();
4308
4309   # tem_6 = PHI <tem_17(8), tem_23(7)>;
4310 <L9>:;
4311
4312   # tem_3 = PHI <tem_6(9), tem_2(5)>;
4313 <L10>:;
4314
4315   Then we merge the first PHI node into the second one like so:
4316
4317   goto <bb 9> (<L10>);
4318
4319 <L8>:;
4320   tem_17 = foo ();
4321
4322   # tem_3 = PHI <tem_23(7), tem_2(5), tem_17(8)>;
4323 <L10>:;
4324 */
4325
4326 static void
4327 merge_phi_nodes (void)
4328 {
4329   basic_block *worklist = xmalloc (sizeof (basic_block) * n_basic_blocks);
4330   basic_block *current = worklist;
4331   basic_block bb;
4332
4333   calculate_dominance_info (CDI_DOMINATORS);
4334
4335   /* Find all PHI nodes that we may be able to merge.  */
4336   FOR_EACH_BB (bb)
4337     {
4338       basic_block dest;
4339
4340       /* Look for a forwarder block with PHI nodes.  */
4341       if (!tree_forwarder_block_p (bb, true))
4342         continue;
4343
4344       dest = EDGE_SUCC (bb, 0)->dest;
4345
4346       /* We have to feed into another basic block with PHI
4347          nodes.  */
4348       if (!phi_nodes (dest)
4349           /* We don't want to deal with a basic block with
4350              abnormal edges.  */
4351           || has_abnormal_incoming_edge_p (bb))
4352         continue;
4353
4354       if (!dominated_by_p (CDI_DOMINATORS, dest, bb))
4355         {
4356           /* If BB does not dominate DEST, then the PHI nodes at
4357              DEST must be the only users of the results of the PHI
4358              nodes at BB.  */
4359           *current++ = bb;
4360         }
4361     }
4362
4363   /* Now let's drain WORKLIST.  */
4364   while (current != worklist)
4365     {
4366       bb = *--current;
4367       remove_forwarder_block_with_phi (bb);
4368     }
4369
4370   free (worklist);
4371 }
4372
4373 static bool
4374 gate_merge_phi (void)
4375 {
4376   return 1;
4377 }
4378
4379 struct tree_opt_pass pass_merge_phi = {
4380   "mergephi",                   /* name */
4381   gate_merge_phi,               /* gate */
4382   merge_phi_nodes,              /* execute */
4383   NULL,                         /* sub */
4384   NULL,                         /* next */
4385   0,                            /* static_pass_number */
4386   TV_TREE_MERGE_PHI,            /* tv_id */
4387   PROP_cfg | PROP_ssa,          /* properties_required */
4388   0,                            /* properties_provided */
4389   0,                            /* properties_destroyed */
4390   0,                            /* todo_flags_start */
4391   TODO_dump_func | TODO_ggc_collect     /* todo_flags_finish */
4392   | TODO_verify_ssa,
4393   0                             /* letter */
4394 };
4395
4396 /* Return a non-special label in the head of basic block BLOCK.
4397    Create one if it doesn't exist.  */
4398
4399 tree
4400 tree_block_label (basic_block bb)
4401 {
4402   block_stmt_iterator i, s = bsi_start (bb);
4403   bool first = true;
4404   tree label, stmt;
4405
4406   for (i = s; !bsi_end_p (i); first = false, bsi_next (&i))
4407     {
4408       stmt = bsi_stmt (i);
4409       if (TREE_CODE (stmt) != LABEL_EXPR)
4410         break;
4411       label = LABEL_EXPR_LABEL (stmt);
4412       if (!DECL_NONLOCAL (label))
4413         {
4414           if (!first)
4415             bsi_move_before (&i, &s);
4416           return label;
4417         }
4418     }
4419
4420   label = create_artificial_label ();
4421   stmt = build1 (LABEL_EXPR, void_type_node, label);
4422   bsi_insert_before (&s, stmt, BSI_NEW_STMT);
4423   return label;
4424 }
4425
4426
4427 /* Attempt to perform edge redirection by replacing a possibly complex
4428    jump instruction by a goto or by removing the jump completely.
4429    This can apply only if all edges now point to the same block.  The
4430    parameters and return values are equivalent to
4431    redirect_edge_and_branch.  */
4432
4433 static edge
4434 tree_try_redirect_by_replacing_jump (edge e, basic_block target)
4435 {
4436   basic_block src = e->src;
4437   block_stmt_iterator b;
4438   tree stmt;
4439
4440   /* We can replace or remove a complex jump only when we have exactly
4441      two edges.  */
4442   if (EDGE_COUNT (src->succs) != 2
4443       /* Verify that all targets will be TARGET.  Specifically, the
4444          edge that is not E must also go to TARGET.  */
4445       || EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target)
4446     return NULL;
4447
4448   b = bsi_last (src);
4449   if (bsi_end_p (b))
4450     return NULL;
4451   stmt = bsi_stmt (b);
4452
4453   if (TREE_CODE (stmt) == COND_EXPR
4454       || TREE_CODE (stmt) == SWITCH_EXPR)
4455     {
4456       bsi_remove (&b);
4457       e = ssa_redirect_edge (e, target);
4458       e->flags = EDGE_FALLTHRU;
4459       return e;
4460     }
4461
4462   return NULL;
4463 }
4464
4465
4466 /* Redirect E to DEST.  Return NULL on failure.  Otherwise, return the
4467    edge representing the redirected branch.  */
4468
4469 static edge
4470 tree_redirect_edge_and_branch (edge e, basic_block dest)
4471 {
4472   basic_block bb = e->src;
4473   block_stmt_iterator bsi;
4474   edge ret;
4475   tree label, stmt;
4476
4477   if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH))
4478     return NULL;
4479
4480   if (e->src != ENTRY_BLOCK_PTR 
4481       && (ret = tree_try_redirect_by_replacing_jump (e, dest)))
4482     return ret;
4483
4484   if (e->dest == dest)
4485     return NULL;
4486
4487   label = tree_block_label (dest);
4488
4489   bsi = bsi_last (bb);
4490   stmt = bsi_end_p (bsi) ? NULL : bsi_stmt (bsi);
4491
4492   switch (stmt ? TREE_CODE (stmt) : ERROR_MARK)
4493     {
4494     case COND_EXPR:
4495       stmt = (e->flags & EDGE_TRUE_VALUE
4496               ? COND_EXPR_THEN (stmt)
4497               : COND_EXPR_ELSE (stmt));
4498       GOTO_DESTINATION (stmt) = label;
4499       break;
4500
4501     case GOTO_EXPR:
4502       /* No non-abnormal edges should lead from a non-simple goto, and
4503          simple ones should be represented implicitly.  */
4504       gcc_unreachable ();
4505
4506     case SWITCH_EXPR:
4507       {
4508         tree cases = get_cases_for_edge (e, stmt);
4509
4510         /* If we have a list of cases associated with E, then use it
4511            as it's a lot faster than walking the entire case vector.  */
4512         if (cases)
4513           {
4514             edge e2 = find_edge (e->src, dest);
4515             tree last, first;
4516
4517             first = cases;
4518             while (cases)
4519               {
4520                 last = cases;
4521                 CASE_LABEL (cases) = label;
4522                 cases = TREE_CHAIN (cases);
4523               }
4524
4525             /* If there was already an edge in the CFG, then we need
4526                to move all the cases associated with E to E2.  */
4527             if (e2)
4528               {
4529                 tree cases2 = get_cases_for_edge (e2, stmt);
4530
4531                 TREE_CHAIN (last) = TREE_CHAIN (cases2);
4532                 TREE_CHAIN (cases2) = first;
4533               }
4534           }
4535         else
4536           {
4537             tree vec = SWITCH_LABELS (stmt);
4538             size_t i, n = TREE_VEC_LENGTH (vec);
4539
4540             for (i = 0; i < n; i++)
4541               {
4542                 tree elt = TREE_VEC_ELT (vec, i);
4543
4544                 if (label_to_block (CASE_LABEL (elt)) == e->dest)
4545                   CASE_LABEL (elt) = label;
4546               }
4547           }
4548
4549         break;
4550       }
4551
4552     case RETURN_EXPR:
4553       bsi_remove (&bsi);
4554       e->flags |= EDGE_FALLTHRU;
4555       break;
4556
4557     default:
4558       /* Otherwise it must be a fallthru edge, and we don't need to
4559          do anything besides redirecting it.  */
4560       gcc_assert (e->flags & EDGE_FALLTHRU);
4561       break;
4562     }
4563
4564   /* Update/insert PHI nodes as necessary.  */
4565
4566   /* Now update the edges in the CFG.  */
4567   e = ssa_redirect_edge (e, dest);
4568
4569   return e;
4570 }
4571
4572
4573 /* Simple wrapper, as we can always redirect fallthru edges.  */
4574
4575 static basic_block
4576 tree_redirect_edge_and_branch_force (edge e, basic_block dest)
4577 {
4578   e = tree_redirect_edge_and_branch (e, dest);
4579   gcc_assert (e);
4580
4581   return NULL;
4582 }
4583
4584
4585 /* Splits basic block BB after statement STMT (but at least after the
4586    labels).  If STMT is NULL, BB is split just after the labels.  */
4587
4588 static basic_block
4589 tree_split_block (basic_block bb, void *stmt)
4590 {
4591   block_stmt_iterator bsi, bsi_tgt;
4592   tree act;
4593   basic_block new_bb;
4594   edge e;
4595   edge_iterator ei;
4596
4597   new_bb = create_empty_bb (bb);
4598
4599   /* Redirect the outgoing edges.  */
4600   new_bb->succs = bb->succs;
4601   bb->succs = NULL;
4602   FOR_EACH_EDGE (e, ei, new_bb->succs)
4603     e->src = new_bb;
4604
4605   if (stmt && TREE_CODE ((tree) stmt) == LABEL_EXPR)
4606     stmt = NULL;
4607
4608   /* Move everything from BSI to the new basic block.  */
4609   for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4610     {
4611       act = bsi_stmt (bsi);
4612       if (TREE_CODE (act) == LABEL_EXPR)
4613         continue;
4614
4615       if (!stmt)
4616         break;
4617
4618       if (stmt == act)
4619         {
4620           bsi_next (&bsi);
4621           break;
4622         }
4623     }
4624
4625   bsi_tgt = bsi_start (new_bb);
4626   while (!bsi_end_p (bsi))
4627     {
4628       act = bsi_stmt (bsi);
4629       bsi_remove (&bsi);
4630       bsi_insert_after (&bsi_tgt, act, BSI_NEW_STMT);
4631     }
4632
4633   return new_bb;
4634 }
4635
4636
4637 /* Moves basic block BB after block AFTER.  */
4638
4639 static bool
4640 tree_move_block_after (basic_block bb, basic_block after)
4641 {
4642   if (bb->prev_bb == after)
4643     return true;
4644
4645   unlink_block (bb);
4646   link_block (bb, after);
4647
4648   return true;
4649 }
4650
4651
4652 /* Return true if basic_block can be duplicated.  */
4653
4654 static bool
4655 tree_can_duplicate_bb_p (basic_block bb ATTRIBUTE_UNUSED)
4656 {
4657   return true;
4658 }
4659
4660 /* Create a duplicate of the basic block BB.  NOTE: This does not
4661    preserve SSA form.  */
4662
4663 static basic_block
4664 tree_duplicate_bb (basic_block bb)
4665 {
4666   basic_block new_bb;
4667   block_stmt_iterator bsi, bsi_tgt;
4668   tree phi, val;
4669   ssa_op_iter op_iter;
4670
4671   new_bb = create_empty_bb (EXIT_BLOCK_PTR->prev_bb);
4672
4673   /* First copy the phi nodes.  We do not copy phi node arguments here,
4674      since the edges are not ready yet.  Keep the chain of phi nodes in
4675      the same order, so that we can add them later.  */
4676   for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
4677     {
4678       mark_for_rewrite (PHI_RESULT (phi));
4679       create_phi_node (PHI_RESULT (phi), new_bb);
4680     }
4681   set_phi_nodes (new_bb, phi_reverse (phi_nodes (new_bb)));
4682
4683   bsi_tgt = bsi_start (new_bb);
4684   for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4685     {
4686       tree stmt = bsi_stmt (bsi);
4687       tree copy;
4688
4689       if (TREE_CODE (stmt) == LABEL_EXPR)
4690         continue;
4691
4692       /* Record the definitions.  */
4693       get_stmt_operands (stmt);
4694
4695       FOR_EACH_SSA_TREE_OPERAND (val, stmt, op_iter, SSA_OP_ALL_DEFS)
4696         mark_for_rewrite (val);
4697
4698       copy = unshare_expr (stmt);
4699
4700       /* Copy also the virtual operands.  */
4701       get_stmt_ann (copy);
4702       copy_virtual_operands (copy, stmt);
4703       
4704       bsi_insert_after (&bsi_tgt, copy, BSI_NEW_STMT);
4705     }
4706
4707   return new_bb;
4708 }
4709
4710 /* Basic block BB_COPY was created by code duplication.  Add phi node
4711    arguments for edges going out of BB_COPY.  The blocks that were
4712    duplicated have rbi->duplicated set to one.  */
4713
4714 void
4715 add_phi_args_after_copy_bb (basic_block bb_copy)
4716 {
4717   basic_block bb, dest;
4718   edge e, e_copy;
4719   edge_iterator ei;
4720   tree phi, phi_copy, phi_next, def;
4721       
4722   bb = bb_copy->rbi->original;
4723
4724   FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
4725     {
4726       if (!phi_nodes (e_copy->dest))
4727         continue;
4728
4729       if (e_copy->dest->rbi->duplicated)
4730         dest = e_copy->dest->rbi->original;
4731       else
4732         dest = e_copy->dest;
4733
4734       e = find_edge (bb, dest);
4735       if (!e)
4736         {
4737           /* During loop unrolling the target of the latch edge is copied.
4738              In this case we are not looking for edge to dest, but to
4739              duplicated block whose original was dest.  */
4740           FOR_EACH_EDGE (e, ei, bb->succs)
4741             if (e->dest->rbi->duplicated
4742                 && e->dest->rbi->original == dest)
4743               break;
4744
4745           gcc_assert (e != NULL);
4746         }
4747
4748       for (phi = phi_nodes (e->dest), phi_copy = phi_nodes (e_copy->dest);
4749            phi;
4750            phi = phi_next, phi_copy = PHI_CHAIN (phi_copy))
4751         {
4752           phi_next = PHI_CHAIN (phi);
4753
4754           gcc_assert (PHI_RESULT (phi) == PHI_RESULT (phi_copy));
4755           def = PHI_ARG_DEF_FROM_EDGE (phi, e);
4756           add_phi_arg (phi_copy, def, e_copy);
4757         }
4758     }
4759 }
4760
4761 /* Blocks in REGION_COPY array of length N_REGION were created by
4762    duplication of basic blocks.  Add phi node arguments for edges
4763    going from these blocks.  */
4764
4765 void
4766 add_phi_args_after_copy (basic_block *region_copy, unsigned n_region)
4767 {
4768   unsigned i;
4769
4770   for (i = 0; i < n_region; i++)
4771     region_copy[i]->rbi->duplicated = 1;
4772
4773   for (i = 0; i < n_region; i++)
4774     add_phi_args_after_copy_bb (region_copy[i]);
4775
4776   for (i = 0; i < n_region; i++)
4777     region_copy[i]->rbi->duplicated = 0;
4778 }
4779
4780 /* Maps the old ssa name FROM_NAME to TO_NAME.  */
4781
4782 struct ssa_name_map_entry
4783 {
4784   tree from_name;
4785   tree to_name;
4786 };
4787
4788 /* Hash function for ssa_name_map_entry.  */
4789
4790 static hashval_t
4791 ssa_name_map_entry_hash (const void *entry)
4792 {
4793   const struct ssa_name_map_entry *en = entry;
4794   return SSA_NAME_VERSION (en->from_name);
4795 }
4796
4797 /* Equality function for ssa_name_map_entry.  */
4798
4799 static int
4800 ssa_name_map_entry_eq (const void *in_table, const void *ssa_name)
4801 {
4802   const struct ssa_name_map_entry *en = in_table;
4803
4804   return en->from_name == ssa_name;
4805 }
4806
4807 /* Allocate duplicates of ssa names in list DEFINITIONS and store the mapping
4808    to MAP.  */
4809
4810 void
4811 allocate_ssa_names (bitmap definitions, htab_t *map)
4812 {
4813   tree name;
4814   struct ssa_name_map_entry *entry;
4815   PTR *slot;
4816   unsigned ver;
4817   bitmap_iterator bi;
4818
4819   if (!*map)
4820     *map = htab_create (10, ssa_name_map_entry_hash,
4821                         ssa_name_map_entry_eq, free);
4822   EXECUTE_IF_SET_IN_BITMAP (definitions, 0, ver, bi)
4823     {
4824       name = ssa_name (ver);
4825       slot = htab_find_slot_with_hash (*map, name, SSA_NAME_VERSION (name),
4826                                        INSERT);
4827       if (*slot)
4828         entry = *slot;
4829       else
4830         {
4831           entry = xmalloc (sizeof (struct ssa_name_map_entry));
4832           entry->from_name = name;
4833           *slot = entry;
4834         }
4835       entry->to_name = duplicate_ssa_name (name, SSA_NAME_DEF_STMT (name));
4836     }
4837 }
4838
4839 /* Rewrite the definition DEF in statement STMT to new ssa name as specified
4840    by the mapping MAP.  */
4841
4842 static void
4843 rewrite_to_new_ssa_names_def (def_operand_p def, tree stmt, htab_t map)
4844 {
4845   tree name = DEF_FROM_PTR (def);
4846   struct ssa_name_map_entry *entry;
4847
4848   gcc_assert (TREE_CODE (name) == SSA_NAME);
4849
4850   entry = htab_find_with_hash (map, name, SSA_NAME_VERSION (name));
4851   if (!entry)
4852     return;
4853
4854   SET_DEF (def, entry->to_name);
4855   SSA_NAME_DEF_STMT (entry->to_name) = stmt;
4856 }
4857
4858 /* Rewrite the USE to new ssa name as specified by the mapping MAP.  */
4859
4860 static void
4861 rewrite_to_new_ssa_names_use (use_operand_p use, htab_t map)
4862 {
4863   tree name = USE_FROM_PTR (use);
4864   struct ssa_name_map_entry *entry;
4865
4866   if (TREE_CODE (name) != SSA_NAME)
4867     return;
4868
4869   entry = htab_find_with_hash (map, name, SSA_NAME_VERSION (name));
4870   if (!entry)
4871     return;
4872
4873   SET_USE (use, entry->to_name);
4874 }
4875
4876 /* Rewrite the ssa names in basic block BB to new ones as specified by the
4877    mapping MAP.  */
4878
4879 void
4880 rewrite_to_new_ssa_names_bb (basic_block bb, htab_t map)
4881 {
4882   unsigned i;
4883   edge e;
4884   edge_iterator ei;
4885   tree phi, stmt;
4886   block_stmt_iterator bsi;
4887   use_optype uses;
4888   vuse_optype vuses;
4889   def_optype defs;
4890   v_may_def_optype v_may_defs;
4891   v_must_def_optype v_must_defs;
4892   stmt_ann_t ann;
4893
4894   FOR_EACH_EDGE (e, ei, bb->preds)
4895     if (e->flags & EDGE_ABNORMAL)
4896       break;
4897
4898   for (phi = phi_nodes (bb); phi; phi = PHI_CHAIN (phi))
4899     {
4900       rewrite_to_new_ssa_names_def (PHI_RESULT_PTR (phi), phi, map);
4901       if (e)
4902         SSA_NAME_OCCURS_IN_ABNORMAL_PHI (PHI_RESULT (phi)) = 1;
4903     }
4904
4905   for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
4906     {
4907       stmt = bsi_stmt (bsi);
4908       get_stmt_operands (stmt);
4909       ann = stmt_ann (stmt);
4910
4911       uses = USE_OPS (ann);
4912       for (i = 0; i < NUM_USES (uses); i++)
4913         rewrite_to_new_ssa_names_use (USE_OP_PTR (uses, i), map);
4914
4915       defs = DEF_OPS (ann);
4916       for (i = 0; i < NUM_DEFS (defs); i++)
4917         rewrite_to_new_ssa_names_def (DEF_OP_PTR (defs, i), stmt, map);
4918
4919       vuses = VUSE_OPS (ann);
4920       for (i = 0; i < NUM_VUSES (vuses); i++)
4921         rewrite_to_new_ssa_names_use (VUSE_OP_PTR (vuses, i), map);
4922
4923       v_may_defs = V_MAY_DEF_OPS (ann);
4924       for (i = 0; i < NUM_V_MAY_DEFS (v_may_defs); i++)
4925         {
4926           rewrite_to_new_ssa_names_use
4927                   (V_MAY_DEF_OP_PTR (v_may_defs, i), map);
4928           rewrite_to_new_ssa_names_def
4929                   (V_MAY_DEF_RESULT_PTR (v_may_defs, i), stmt, map);
4930         }
4931
4932       v_must_defs = V_MUST_DEF_OPS (ann);
4933       for (i = 0; i < NUM_V_MUST_DEFS (v_must_defs); i++)
4934         {
4935           rewrite_to_new_ssa_names_def
4936             (V_MUST_DEF_RESULT_PTR (v_must_defs, i), stmt, map);
4937           rewrite_to_new_ssa_names_use
4938             (V_MUST_DEF_KILL_PTR (v_must_defs, i),  map);
4939         }
4940     }
4941
4942   FOR_EACH_EDGE (e, ei, bb->succs)
4943     for (phi = phi_nodes (e->dest); phi; phi = PHI_CHAIN (phi))
4944       {
4945         rewrite_to_new_ssa_names_use
4946                 (PHI_ARG_DEF_PTR_FROM_EDGE (phi, e), map);
4947
4948         if (e->flags & EDGE_ABNORMAL)
4949           {
4950             tree op = PHI_ARG_DEF_FROM_EDGE (phi, e);
4951             SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op) = 1;
4952           }
4953       }
4954 }
4955
4956 /* Rewrite the ssa names in N_REGION blocks REGION to the new ones as specified
4957    by the mapping MAP.  */
4958
4959 void
4960 rewrite_to_new_ssa_names (basic_block *region, unsigned n_region, htab_t map)
4961 {
4962   unsigned r;
4963
4964   for (r = 0; r < n_region; r++)
4965     rewrite_to_new_ssa_names_bb (region[r], map);
4966 }
4967
4968 /* Duplicates a REGION (set of N_REGION basic blocks) with just a single
4969    important exit edge EXIT.  By important we mean that no SSA name defined
4970    inside region is live over the other exit edges of the region.  All entry
4971    edges to the region must go to ENTRY->dest.  The edge ENTRY is redirected
4972    to the duplicate of the region.  SSA form, dominance and loop information
4973    is updated.  The new basic blocks are stored to REGION_COPY in the same
4974    order as they had in REGION, provided that REGION_COPY is not NULL.
4975    The function returns false if it is unable to copy the region,
4976    true otherwise.  */
4977
4978 bool
4979 tree_duplicate_sese_region (edge entry, edge exit,
4980                             basic_block *region, unsigned n_region,
4981                             basic_block *region_copy)
4982 {
4983   unsigned i, n_doms, ver;
4984   bool free_region_copy = false, copying_header = false;
4985   struct loop *loop = entry->dest->loop_father;
4986   edge exit_copy;
4987   bitmap definitions;
4988   tree phi;
4989   basic_block *doms;
4990   htab_t ssa_name_map = NULL;
4991   edge redirected;
4992   bitmap_iterator bi;
4993
4994   if (!can_copy_bbs_p (region, n_region))
4995     return false;
4996
4997   /* Some sanity checking.  Note that we do not check for all possible
4998      missuses of the functions.  I.e. if you ask to copy something weird,
4999      it will work, but the state of structures probably will not be
5000      correct.  */
5001
5002   for (i = 0; i < n_region; i++)
5003     {
5004       /* We do not handle subloops, i.e. all the blocks must belong to the
5005          same loop.  */
5006       if (region[i]->loop_father != loop)
5007         return false;
5008
5009       if (region[i] != entry->dest
5010           && region[i] == loop->header)
5011         return false;
5012     }
5013
5014   loop->copy = loop;
5015
5016   /* In case the function is used for loop header copying (which is the primary
5017      use), ensure that EXIT and its copy will be new latch and entry edges.  */
5018   if (loop->header == entry->dest)
5019     {
5020       copying_header = true;
5021       loop->copy = loop->outer;
5022
5023       if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
5024         return false;
5025
5026       for (i = 0; i < n_region; i++)
5027         if (region[i] != exit->src
5028             && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
5029           return false;
5030     }
5031
5032   if (!region_copy)
5033     {
5034       region_copy = xmalloc (sizeof (basic_block) * n_region);
5035       free_region_copy = true;
5036     }
5037
5038   gcc_assert (!any_marked_for_rewrite_p ());
5039
5040   /* Record blocks outside the region that are duplicated by something
5041      inside.  */
5042   doms = xmalloc (sizeof (basic_block) * n_basic_blocks);
5043   n_doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region, doms);
5044
5045   copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop);
5046   definitions = marked_ssa_names ();
5047
5048   if (copying_header)
5049     {
5050       loop->header = exit->dest;
5051       loop->latch = exit->src;
5052     }
5053
5054   /* Redirect the entry and add the phi node arguments.  */
5055   redirected = redirect_edge_and_branch (entry, entry->dest->rbi->copy);
5056   gcc_assert (redirected != NULL);
5057   flush_pending_stmts (entry);
5058
5059   /* Concerning updating of dominators:  We must recount dominators
5060      for entry block and its copy.  Anything that is outside of the region, but
5061      was dominated by something inside needs recounting as well.  */
5062   set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
5063   doms[n_doms++] = entry->dest->rbi->original;
5064   iterate_fix_dominators (CDI_DOMINATORS, doms, n_doms);
5065   free (doms);
5066
5067   /* Add the other phi node arguments.  */
5068   add_phi_args_after_copy (region_copy, n_region);
5069
5070   /* Add phi nodes for definitions at exit.  TODO -- once we have immediate
5071      uses, it should be possible to emit phi nodes just for definitions that
5072      are used outside region.  */
5073   EXECUTE_IF_SET_IN_BITMAP (definitions, 0, ver, bi)
5074     {
5075       tree name = ssa_name (ver);
5076
5077       phi = create_phi_node (name, exit->dest);
5078       add_phi_arg (phi, name, exit);
5079       add_phi_arg (phi, name, exit_copy);
5080
5081       SSA_NAME_DEF_STMT (name) = phi;
5082     }
5083
5084   /* And create new definitions inside region and its copy.  TODO -- once we
5085      have immediate uses, it might be better to leave definitions in region
5086      unchanged, create new ssa names for phi nodes on exit, and rewrite
5087      the uses, to avoid changing the copied region.  */
5088   allocate_ssa_names (definitions, &ssa_name_map);
5089   rewrite_to_new_ssa_names (region, n_region, ssa_name_map);
5090   allocate_ssa_names (definitions, &ssa_name_map);
5091   rewrite_to_new_ssa_names (region_copy, n_region, ssa_name_map);
5092   htab_delete (ssa_name_map);
5093
5094   if (free_region_copy)
5095     free (region_copy);
5096
5097   unmark_all_for_rewrite ();
5098   BITMAP_FREE (definitions);
5099
5100   return true;
5101 }
5102
5103 /* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in tree.h)  */
5104
5105 void
5106 dump_function_to_file (tree fn, FILE *file, int flags)
5107 {
5108   tree arg, vars, var;
5109   bool ignore_topmost_bind = false, any_var = false;
5110   basic_block bb;
5111   tree chain;
5112
5113   fprintf (file, "%s (", lang_hooks.decl_printable_name (fn, 2));
5114
5115   arg = DECL_ARGUMENTS (fn);
5116   while (arg)
5117     {
5118       print_generic_expr (file, arg, dump_flags);
5119       if (TREE_CHAIN (arg))
5120         fprintf (file, ", ");
5121       arg = TREE_CHAIN (arg);
5122     }
5123   fprintf (file, ")\n");
5124
5125   if (flags & TDF_RAW)
5126     {
5127       dump_node (fn, TDF_SLIM | flags, file);
5128       return;
5129     }
5130
5131   /* When GIMPLE is lowered, the variables are no longer available in
5132      BIND_EXPRs, so display them separately.  */
5133   if (cfun && cfun->unexpanded_var_list)
5134     {
5135       ignore_topmost_bind = true;
5136
5137       fprintf (file, "{\n");
5138       for (vars = cfun->unexpanded_var_list; vars; vars = TREE_CHAIN (vars))
5139         {
5140           var = TREE_VALUE (vars);
5141
5142           print_generic_decl (file, var, flags);
5143           fprintf (file, "\n");
5144
5145           any_var = true;
5146         }
5147     }
5148
5149   if (basic_block_info)
5150     {
5151       /* Make a CFG based dump.  */
5152       check_bb_profile (ENTRY_BLOCK_PTR, file);
5153       if (!ignore_topmost_bind)
5154         fprintf (file, "{\n");
5155
5156       if (any_var && n_basic_blocks)
5157         fprintf (file, "\n");
5158
5159       FOR_EACH_BB (bb)
5160         dump_generic_bb (file, bb, 2, flags);
5161         
5162       fprintf (file, "}\n");
5163       check_bb_profile (EXIT_BLOCK_PTR, file);
5164     }
5165   else
5166     {
5167       int indent;
5168
5169       /* Make a tree based dump.  */
5170       chain = DECL_SAVED_TREE (fn);
5171
5172       if (TREE_CODE (chain) == BIND_EXPR)
5173         {
5174           if (ignore_topmost_bind)
5175             {
5176               chain = BIND_EXPR_BODY (chain);
5177               indent = 2;
5178             }
5179           else
5180             indent = 0;
5181         }
5182       else
5183         {
5184           if (!ignore_topmost_bind)
5185             fprintf (file, "{\n");
5186           indent = 2;
5187         }
5188
5189       if (any_var)
5190         fprintf (file, "\n");
5191
5192       print_generic_stmt_indented (file, chain, flags, indent);
5193       if (ignore_topmost_bind)
5194         fprintf (file, "}\n");
5195     }
5196
5197   fprintf (file, "\n\n");
5198 }
5199
5200
5201 /* Pretty print of the loops intermediate representation.  */
5202 static void print_loop (FILE *, struct loop *, int);
5203 static void print_pred_bbs (FILE *, basic_block bb);
5204 static void print_succ_bbs (FILE *, basic_block bb);
5205
5206
5207 /* Print the predecessors indexes of edge E on FILE.  */
5208
5209 static void
5210 print_pred_bbs (FILE *file, basic_block bb)
5211 {
5212   edge e;
5213   edge_iterator ei;
5214
5215   FOR_EACH_EDGE (e, ei, bb->preds)
5216     fprintf (file, "bb_%d", e->src->index);
5217 }
5218
5219
5220 /* Print the successors indexes of edge E on FILE.  */
5221
5222 static void
5223 print_succ_bbs (FILE *file, basic_block bb)
5224 {
5225   edge e;
5226   edge_iterator ei;
5227
5228   FOR_EACH_EDGE (e, ei, bb->succs)
5229     fprintf (file, "bb_%d", e->src->index);
5230 }
5231
5232
5233 /* Pretty print LOOP on FILE, indented INDENT spaces.  */
5234
5235 static void
5236 print_loop (FILE *file, struct loop *loop, int indent)
5237 {
5238   char *s_indent;
5239   basic_block bb;
5240   
5241   if (loop == NULL)
5242     return;
5243
5244   s_indent = (char *) alloca ((size_t) indent + 1);
5245   memset ((void *) s_indent, ' ', (size_t) indent);
5246   s_indent[indent] = '\0';
5247
5248   /* Print the loop's header.  */
5249   fprintf (file, "%sloop_%d\n", s_indent, loop->num);
5250   
5251   /* Print the loop's body.  */
5252   fprintf (file, "%s{\n", s_indent);
5253   FOR_EACH_BB (bb)
5254     if (bb->loop_father == loop)
5255       {
5256         /* Print the basic_block's header.  */
5257         fprintf (file, "%s  bb_%d (preds = {", s_indent, bb->index);
5258         print_pred_bbs (file, bb);
5259         fprintf (file, "}, succs = {");
5260         print_succ_bbs (file, bb);
5261         fprintf (file, "})\n");
5262         
5263         /* Print the basic_block's body.  */
5264         fprintf (file, "%s  {\n", s_indent);
5265         tree_dump_bb (bb, file, indent + 4);
5266         fprintf (file, "%s  }\n", s_indent);
5267       }
5268   
5269   print_loop (file, loop->inner, indent + 2);
5270   fprintf (file, "%s}\n", s_indent);
5271   print_loop (file, loop->next, indent);
5272 }
5273
5274
5275 /* Follow a CFG edge from the entry point of the program, and on entry
5276    of a loop, pretty print the loop structure on FILE.  */
5277
5278 void 
5279 print_loop_ir (FILE *file)
5280 {
5281   basic_block bb;
5282   
5283   bb = BASIC_BLOCK (0);
5284   if (bb && bb->loop_father)
5285     print_loop (file, bb->loop_father, 0);
5286 }
5287
5288
5289 /* Debugging loops structure at tree level.  */
5290
5291 void 
5292 debug_loop_ir (void)
5293 {
5294   print_loop_ir (stderr);
5295 }
5296
5297
5298 /* Return true if BB ends with a call, possibly followed by some
5299    instructions that must stay with the call.  Return false,
5300    otherwise.  */
5301
5302 static bool
5303 tree_block_ends_with_call_p (basic_block bb)
5304 {
5305   block_stmt_iterator bsi = bsi_last (bb);
5306   return get_call_expr_in (bsi_stmt (bsi)) != NULL;
5307 }
5308
5309
5310 /* Return true if BB ends with a conditional branch.  Return false,
5311    otherwise.  */
5312
5313 static bool
5314 tree_block_ends_with_condjump_p (basic_block bb)
5315 {
5316   tree stmt = tsi_stmt (bsi_last (bb).tsi);
5317   return (TREE_CODE (stmt) == COND_EXPR);
5318 }
5319
5320
5321 /* Return true if we need to add fake edge to exit at statement T.
5322    Helper function for tree_flow_call_edges_add.  */
5323
5324 static bool
5325 need_fake_edge_p (tree t)
5326 {
5327   tree call;
5328
5329   /* NORETURN and LONGJMP calls already have an edge to exit.
5330      CONST, PURE and ALWAYS_RETURN calls do not need one.
5331      We don't currently check for CONST and PURE here, although
5332      it would be a good idea, because those attributes are
5333      figured out from the RTL in mark_constant_function, and
5334      the counter incrementation code from -fprofile-arcs
5335      leads to different results from -fbranch-probabilities.  */
5336   call = get_call_expr_in (t);
5337   if (call
5338       && !(call_expr_flags (call) & (ECF_NORETURN | ECF_ALWAYS_RETURN)))
5339     return true;
5340
5341   if (TREE_CODE (t) == ASM_EXPR
5342        && (ASM_VOLATILE_P (t) || ASM_INPUT_P (t)))
5343     return true;
5344
5345   return false;
5346 }
5347
5348
5349 /* Add fake edges to the function exit for any non constant and non
5350    noreturn calls, volatile inline assembly in the bitmap of blocks
5351    specified by BLOCKS or to the whole CFG if BLOCKS is zero.  Return
5352    the number of blocks that were split.
5353
5354    The goal is to expose cases in which entering a basic block does
5355    not imply that all subsequent instructions must be executed.  */
5356
5357 static int
5358 tree_flow_call_edges_add (sbitmap blocks)
5359 {
5360   int i;
5361   int blocks_split = 0;
5362   int last_bb = last_basic_block;
5363   bool check_last_block = false;
5364
5365   if (n_basic_blocks == 0)
5366     return 0;
5367
5368   if (! blocks)
5369     check_last_block = true;
5370   else
5371     check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
5372
5373   /* In the last basic block, before epilogue generation, there will be
5374      a fallthru edge to EXIT.  Special care is required if the last insn
5375      of the last basic block is a call because make_edge folds duplicate
5376      edges, which would result in the fallthru edge also being marked
5377      fake, which would result in the fallthru edge being removed by
5378      remove_fake_edges, which would result in an invalid CFG.
5379
5380      Moreover, we can't elide the outgoing fake edge, since the block
5381      profiler needs to take this into account in order to solve the minimal
5382      spanning tree in the case that the call doesn't return.
5383
5384      Handle this by adding a dummy instruction in a new last basic block.  */
5385   if (check_last_block)
5386     {
5387       basic_block bb = EXIT_BLOCK_PTR->prev_bb;
5388       block_stmt_iterator bsi = bsi_last (bb);
5389       tree t = NULL_TREE;
5390       if (!bsi_end_p (bsi))
5391         t = bsi_stmt (bsi);
5392
5393       if (need_fake_edge_p (t))
5394         {
5395           edge e;
5396
5397           e = find_edge (bb, EXIT_BLOCK_PTR);
5398           if (e)
5399             {
5400               bsi_insert_on_edge (e, build_empty_stmt ());
5401               bsi_commit_edge_inserts ();
5402             }
5403         }
5404     }
5405
5406   /* Now add fake edges to the function exit for any non constant
5407      calls since there is no way that we can determine if they will
5408      return or not...  */
5409   for (i = 0; i < last_bb; i++)
5410     {
5411       basic_block bb = BASIC_BLOCK (i);
5412       block_stmt_iterator bsi;
5413       tree stmt, last_stmt;
5414
5415       if (!bb)
5416         continue;
5417
5418       if (blocks && !TEST_BIT (blocks, i))
5419         continue;
5420
5421       bsi = bsi_last (bb);
5422       if (!bsi_end_p (bsi))
5423         {
5424           last_stmt = bsi_stmt (bsi);
5425           do
5426             {
5427               stmt = bsi_stmt (bsi);
5428               if (need_fake_edge_p (stmt))
5429                 {
5430                   edge e;
5431                   /* The handling above of the final block before the
5432                      epilogue should be enough to verify that there is
5433                      no edge to the exit block in CFG already.
5434                      Calling make_edge in such case would cause us to
5435                      mark that edge as fake and remove it later.  */
5436 #ifdef ENABLE_CHECKING
5437                   if (stmt == last_stmt)
5438                     {
5439                       e = find_edge (bb, EXIT_BLOCK_PTR);
5440                       gcc_assert (e == NULL);
5441                     }
5442 #endif
5443
5444                   /* Note that the following may create a new basic block
5445                      and renumber the existing basic blocks.  */
5446                   if (stmt != last_stmt)
5447                     {
5448                       e = split_block (bb, stmt);
5449                       if (e)
5450                         blocks_split++;
5451                     }
5452                   make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
5453                 }
5454               bsi_prev (&bsi);
5455             }
5456           while (!bsi_end_p (bsi));
5457         }
5458     }
5459
5460   if (blocks_split)
5461     verify_flow_info ();
5462
5463   return blocks_split;
5464 }
5465
5466 bool
5467 tree_purge_dead_eh_edges (basic_block bb)
5468 {
5469   bool changed = false;
5470   edge e;
5471   edge_iterator ei;
5472   tree stmt = last_stmt (bb);
5473
5474   if (stmt && tree_can_throw_internal (stmt))
5475     return false;
5476
5477   for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
5478     {
5479       if (e->flags & EDGE_EH)
5480         {
5481           remove_edge (e);
5482           changed = true;
5483         }
5484       else
5485         ei_next (&ei);
5486     }
5487
5488   /* Removal of dead EH edges might change dominators of not
5489      just immediate successors.  E.g. when bb1 is changed so that
5490      it no longer can throw and bb1->bb3 and bb1->bb4 are dead
5491      eh edges purged by this function in:
5492            0
5493           / \
5494          v   v
5495          1-->2
5496         / \  |
5497        v   v |
5498        3-->4 |
5499         \    v
5500          --->5
5501              |
5502              -
5503      idom(bb5) must be recomputed.  For now just free the dominance
5504      info.  */
5505   if (changed)
5506     free_dominance_info (CDI_DOMINATORS);
5507
5508   return changed;
5509 }
5510
5511 bool
5512 tree_purge_all_dead_eh_edges (bitmap blocks)
5513 {
5514   bool changed = false;
5515   unsigned i;
5516   bitmap_iterator bi;
5517
5518   EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
5519     {
5520       changed |= tree_purge_dead_eh_edges (BASIC_BLOCK (i));
5521     }
5522
5523   return changed;
5524 }
5525
5526 /* This function is called whenever a new edge is created or
5527    redirected.  */
5528
5529 static void
5530 tree_execute_on_growing_pred (edge e)
5531 {
5532   basic_block bb = e->dest;
5533
5534   if (phi_nodes (bb))
5535     reserve_phi_args_for_new_edge (bb);
5536 }
5537
5538 /* This function is called immediately before edge E is removed from
5539    the edge vector E->dest->preds.  */
5540
5541 static void
5542 tree_execute_on_shrinking_pred (edge e)
5543 {
5544   if (phi_nodes (e->dest))
5545     remove_phi_args (e);
5546 }
5547
5548 struct cfg_hooks tree_cfg_hooks = {
5549   "tree",
5550   tree_verify_flow_info,
5551   tree_dump_bb,                 /* dump_bb  */
5552   create_bb,                    /* create_basic_block  */
5553   tree_redirect_edge_and_branch,/* redirect_edge_and_branch  */
5554   tree_redirect_edge_and_branch_force,/* redirect_edge_and_branch_force  */
5555   remove_bb,                    /* delete_basic_block  */
5556   tree_split_block,             /* split_block  */
5557   tree_move_block_after,        /* move_block_after  */
5558   tree_can_merge_blocks_p,      /* can_merge_blocks_p  */
5559   tree_merge_blocks,            /* merge_blocks  */
5560   tree_predict_edge,            /* predict_edge  */
5561   tree_predicted_by_p,          /* predicted_by_p  */
5562   tree_can_duplicate_bb_p,      /* can_duplicate_block_p  */
5563   tree_duplicate_bb,            /* duplicate_block  */
5564   tree_split_edge,              /* split_edge  */
5565   tree_make_forwarder_block,    /* make_forward_block  */
5566   NULL,                         /* tidy_fallthru_edge  */
5567   tree_block_ends_with_call_p,  /* block_ends_with_call_p */
5568   tree_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
5569   tree_flow_call_edges_add,     /* flow_call_edges_add */
5570   tree_execute_on_growing_pred, /* execute_on_growing_pred */
5571   tree_execute_on_shrinking_pred, /* execute_on_shrinking_pred */
5572 };
5573
5574
5575 /* Split all critical edges.  */
5576
5577 static void
5578 split_critical_edges (void)
5579 {
5580   basic_block bb;
5581   edge e;
5582   edge_iterator ei;
5583
5584   /* split_edge can redirect edges out of SWITCH_EXPRs, which can get
5585      expensive.  So we want to enable recording of edge to CASE_LABEL_EXPR
5586      mappings around the calls to split_edge.  */
5587   start_recording_case_labels ();
5588   FOR_ALL_BB (bb)
5589     {
5590       FOR_EACH_EDGE (e, ei, bb->succs)
5591         if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
5592           {
5593             split_edge (e);
5594           }
5595     }
5596   end_recording_case_labels ();
5597 }
5598
5599 struct tree_opt_pass pass_split_crit_edges = 
5600 {
5601   "crited",                          /* name */
5602   NULL,                          /* gate */
5603   split_critical_edges,          /* execute */
5604   NULL,                          /* sub */
5605   NULL,                          /* next */
5606   0,                             /* static_pass_number */
5607   TV_TREE_SPLIT_EDGES,           /* tv_id */
5608   PROP_cfg,                      /* properties required */
5609   PROP_no_crit_edges,            /* properties_provided */
5610   0,                             /* properties_destroyed */
5611   0,                             /* todo_flags_start */
5612   TODO_dump_func,                /* todo_flags_finish */
5613   0                              /* letter */
5614 };
5615
5616 \f
5617 /* Return EXP if it is a valid GIMPLE rvalue, else gimplify it into
5618    a temporary, make sure and register it to be renamed if necessary,
5619    and finally return the temporary.  Put the statements to compute
5620    EXP before the current statement in BSI.  */
5621
5622 tree
5623 gimplify_val (block_stmt_iterator *bsi, tree type, tree exp)
5624 {
5625   tree t, new_stmt, orig_stmt;
5626
5627   if (is_gimple_val (exp))
5628     return exp;
5629
5630   t = make_rename_temp (type, NULL);
5631   new_stmt = build (MODIFY_EXPR, type, t, exp);
5632
5633   orig_stmt = bsi_stmt (*bsi);
5634   SET_EXPR_LOCUS (new_stmt, EXPR_LOCUS (orig_stmt));
5635   TREE_BLOCK (new_stmt) = TREE_BLOCK (orig_stmt);
5636
5637   bsi_insert_before (bsi, new_stmt, BSI_SAME_STMT);
5638
5639   return t;
5640 }
5641
5642 /* Build a ternary operation and gimplify it.  Emit code before BSI.
5643    Return the gimple_val holding the result.  */
5644
5645 tree
5646 gimplify_build3 (block_stmt_iterator *bsi, enum tree_code code,
5647                  tree type, tree a, tree b, tree c)
5648 {
5649   tree ret;
5650
5651   ret = fold (build3 (code, type, a, b, c));
5652   STRIP_NOPS (ret);
5653
5654   return gimplify_val (bsi, type, ret);
5655 }
5656
5657 /* Build a binary operation and gimplify it.  Emit code before BSI.
5658    Return the gimple_val holding the result.  */
5659
5660 tree
5661 gimplify_build2 (block_stmt_iterator *bsi, enum tree_code code,
5662                  tree type, tree a, tree b)
5663 {
5664   tree ret;
5665
5666   ret = fold (build2 (code, type, a, b));
5667   STRIP_NOPS (ret);
5668
5669   return gimplify_val (bsi, type, ret);
5670 }
5671
5672 /* Build a unary operation and gimplify it.  Emit code before BSI.
5673    Return the gimple_val holding the result.  */
5674
5675 tree
5676 gimplify_build1 (block_stmt_iterator *bsi, enum tree_code code, tree type,
5677                  tree a)
5678 {
5679   tree ret;
5680
5681   ret = fold (build1 (code, type, a));
5682   STRIP_NOPS (ret);
5683
5684   return gimplify_val (bsi, type, ret);
5685 }
5686
5687
5688 \f
5689 /* Emit return warnings.  */
5690
5691 static void
5692 execute_warn_function_return (void)
5693 {
5694 #ifdef USE_MAPPED_LOCATION
5695   source_location location;
5696 #else
5697   location_t *locus;
5698 #endif
5699   tree last;
5700   edge e;
5701   edge_iterator ei;
5702
5703   if (warn_missing_noreturn
5704       && !TREE_THIS_VOLATILE (cfun->decl)
5705       && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0
5706       && !lang_hooks.function.missing_noreturn_ok_p (cfun->decl))
5707     warning ("%Jfunction might be possible candidate for "
5708              "attribute %<noreturn%>",
5709              cfun->decl);
5710
5711   /* If we have a path to EXIT, then we do return.  */
5712   if (TREE_THIS_VOLATILE (cfun->decl)
5713       && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0)
5714     {
5715 #ifdef USE_MAPPED_LOCATION
5716       location = UNKNOWN_LOCATION;
5717 #else
5718       locus = NULL;
5719 #endif
5720       FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5721         {
5722           last = last_stmt (e->src);
5723           if (TREE_CODE (last) == RETURN_EXPR
5724 #ifdef USE_MAPPED_LOCATION
5725               && (location = EXPR_LOCATION (last)) != UNKNOWN_LOCATION)
5726 #else
5727               && (locus = EXPR_LOCUS (last)) != NULL)
5728 #endif
5729             break;
5730         }
5731 #ifdef USE_MAPPED_LOCATION
5732       if (location == UNKNOWN_LOCATION)
5733         location = cfun->function_end_locus;
5734       warning ("%H%<noreturn%> function does return", &location);
5735 #else
5736       if (!locus)
5737         locus = &cfun->function_end_locus;
5738       warning ("%H%<noreturn%> function does return", locus);
5739 #endif
5740     }
5741
5742   /* If we see "return;" in some basic block, then we do reach the end
5743      without returning a value.  */
5744   else if (warn_return_type
5745            && !TREE_NO_WARNING (cfun->decl)
5746            && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0
5747            && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (cfun->decl))))
5748     {
5749       FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
5750         {
5751           tree last = last_stmt (e->src);
5752           if (TREE_CODE (last) == RETURN_EXPR
5753               && TREE_OPERAND (last, 0) == NULL)
5754             {
5755 #ifdef USE_MAPPED_LOCATION
5756               location = EXPR_LOCATION (last);
5757               if (location == UNKNOWN_LOCATION)
5758                   location = cfun->function_end_locus;
5759               warning ("%Hcontrol reaches end of non-void function", &location);
5760 #else
5761               locus = EXPR_LOCUS (last);
5762               if (!locus)
5763                 locus = &cfun->function_end_locus;
5764               warning ("%Hcontrol reaches end of non-void function", locus);
5765 #endif
5766               TREE_NO_WARNING (cfun->decl) = 1;
5767               break;
5768             }
5769         }
5770     }
5771 }
5772
5773
5774 /* Given a basic block B which ends with a conditional and has
5775    precisely two successors, determine which of the edges is taken if
5776    the conditional is true and which is taken if the conditional is
5777    false.  Set TRUE_EDGE and FALSE_EDGE appropriately.  */
5778
5779 void
5780 extract_true_false_edges_from_block (basic_block b,
5781                                      edge *true_edge,
5782                                      edge *false_edge)
5783 {
5784   edge e = EDGE_SUCC (b, 0);
5785
5786   if (e->flags & EDGE_TRUE_VALUE)
5787     {
5788       *true_edge = e;
5789       *false_edge = EDGE_SUCC (b, 1);
5790     }
5791   else
5792     {
5793       *false_edge = e;
5794       *true_edge = EDGE_SUCC (b, 1);
5795     }
5796 }
5797
5798 struct tree_opt_pass pass_warn_function_return =
5799 {
5800   NULL,                                 /* name */
5801   NULL,                                 /* gate */
5802   execute_warn_function_return,         /* execute */
5803   NULL,                                 /* sub */
5804   NULL,                                 /* next */
5805   0,                                    /* static_pass_number */
5806   0,                                    /* tv_id */
5807   PROP_cfg,                             /* properties_required */
5808   0,                                    /* properties_provided */
5809   0,                                    /* properties_destroyed */
5810   0,                                    /* todo_flags_start */
5811   0,                                    /* todo_flags_finish */
5812   0                                     /* letter */
5813 };
5814
5815 #include "gt-tree-cfg.h"