OSDN Git Service

PR c++/39763
[pf3gnuchains/gcc-fork.git] / gcc / tree-cfg.c
1 /* Control flow functions for trees.
2    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
3    Free Software Foundation, Inc.
4    Contributed by Diego Novillo <dnovillo@redhat.com>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
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 "flags.h"
33 #include "function.h"
34 #include "expr.h"
35 #include "ggc.h"
36 #include "langhooks.h"
37 #include "diagnostic.h"
38 #include "tree-flow.h"
39 #include "timevar.h"
40 #include "tree-dump.h"
41 #include "tree-pass.h"
42 #include "toplev.h"
43 #include "except.h"
44 #include "cfgloop.h"
45 #include "cfglayout.h"
46 #include "tree-ssa-propagate.h"
47 #include "value-prof.h"
48 #include "pointer-set.h"
49 #include "tree-inline.h"
50
51 /* This file contains functions for building the Control Flow Graph (CFG)
52    for a function tree.  */
53
54 /* Local declarations.  */
55
56 /* Initial capacity for the basic block array.  */
57 static const int initial_cfg_capacity = 20;
58
59 /* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs
60    which use a particular edge.  The CASE_LABEL_EXPRs are chained together
61    via their TREE_CHAIN field, which we clear after we're done with the
62    hash table to prevent problems with duplication of GIMPLE_SWITCHes.
63
64    Access to this list of CASE_LABEL_EXPRs allows us to efficiently
65    update the case vector in response to edge redirections.
66
67    Right now this table is set up and torn down at key points in the
68    compilation process.  It would be nice if we could make the table
69    more persistent.  The key is getting notification of changes to
70    the CFG (particularly edge removal, creation and redirection).  */
71
72 static struct pointer_map_t *edge_to_cases;
73
74 /* CFG statistics.  */
75 struct cfg_stats_d
76 {
77   long num_merged_labels;
78 };
79
80 static struct cfg_stats_d cfg_stats;
81
82 /* Nonzero if we found a computed goto while building basic blocks.  */
83 static bool found_computed_goto;
84
85 /* Basic blocks and flowgraphs.  */
86 static void make_blocks (gimple_seq);
87 static void factor_computed_gotos (void);
88
89 /* Edges.  */
90 static void make_edges (void);
91 static void make_cond_expr_edges (basic_block);
92 static void make_gimple_switch_edges (basic_block);
93 static void make_goto_expr_edges (basic_block);
94 static edge gimple_redirect_edge_and_branch (edge, basic_block);
95 static edge gimple_try_redirect_by_replacing_jump (edge, basic_block);
96 static unsigned int split_critical_edges (void);
97
98 /* Various helpers.  */
99 static inline bool stmt_starts_bb_p (gimple, gimple);
100 static int gimple_verify_flow_info (void);
101 static void gimple_make_forwarder_block (edge);
102 static void gimple_cfg2vcg (FILE *);
103
104 /* Flowgraph optimization and cleanup.  */
105 static void gimple_merge_blocks (basic_block, basic_block);
106 static bool gimple_can_merge_blocks_p (basic_block, basic_block);
107 static void remove_bb (basic_block);
108 static edge find_taken_edge_computed_goto (basic_block, tree);
109 static edge find_taken_edge_cond_expr (basic_block, tree);
110 static edge find_taken_edge_switch_expr (basic_block, tree);
111 static tree find_case_label_for_value (gimple, tree);
112
113 void
114 init_empty_tree_cfg_for_function (struct function *fn)
115 {
116   /* Initialize the basic block array.  */
117   init_flow (fn);
118   profile_status_for_function (fn) = PROFILE_ABSENT;
119   n_basic_blocks_for_function (fn) = NUM_FIXED_BLOCKS;
120   last_basic_block_for_function (fn) = NUM_FIXED_BLOCKS;
121   basic_block_info_for_function (fn)
122     = VEC_alloc (basic_block, gc, initial_cfg_capacity);
123   VEC_safe_grow_cleared (basic_block, gc,
124                          basic_block_info_for_function (fn),
125                          initial_cfg_capacity);
126
127   /* Build a mapping of labels to their associated blocks.  */
128   label_to_block_map_for_function (fn)
129     = VEC_alloc (basic_block, gc, initial_cfg_capacity);
130   VEC_safe_grow_cleared (basic_block, gc,
131                          label_to_block_map_for_function (fn),
132                          initial_cfg_capacity);
133
134   SET_BASIC_BLOCK_FOR_FUNCTION (fn, ENTRY_BLOCK, 
135                                 ENTRY_BLOCK_PTR_FOR_FUNCTION (fn));
136   SET_BASIC_BLOCK_FOR_FUNCTION (fn, EXIT_BLOCK, 
137                    EXIT_BLOCK_PTR_FOR_FUNCTION (fn));
138
139   ENTRY_BLOCK_PTR_FOR_FUNCTION (fn)->next_bb
140     = EXIT_BLOCK_PTR_FOR_FUNCTION (fn);
141   EXIT_BLOCK_PTR_FOR_FUNCTION (fn)->prev_bb
142     = ENTRY_BLOCK_PTR_FOR_FUNCTION (fn);
143 }
144
145 void
146 init_empty_tree_cfg (void)
147 {
148   init_empty_tree_cfg_for_function (cfun);
149 }
150
151 /*---------------------------------------------------------------------------
152                               Create basic blocks
153 ---------------------------------------------------------------------------*/
154
155 /* Entry point to the CFG builder for trees.  SEQ is the sequence of
156    statements to be added to the flowgraph.  */
157
158 static void
159 build_gimple_cfg (gimple_seq seq)
160 {
161   /* Register specific gimple functions.  */
162   gimple_register_cfg_hooks ();
163
164   memset ((void *) &cfg_stats, 0, sizeof (cfg_stats));
165
166   init_empty_tree_cfg ();
167
168   found_computed_goto = 0;
169   make_blocks (seq);
170
171   /* Computed gotos are hell to deal with, especially if there are
172      lots of them with a large number of destinations.  So we factor
173      them to a common computed goto location before we build the
174      edge list.  After we convert back to normal form, we will un-factor
175      the computed gotos since factoring introduces an unwanted jump.  */
176   if (found_computed_goto)
177     factor_computed_gotos ();
178
179   /* Make sure there is always at least one block, even if it's empty.  */
180   if (n_basic_blocks == NUM_FIXED_BLOCKS)
181     create_empty_bb (ENTRY_BLOCK_PTR);
182
183   /* Adjust the size of the array.  */
184   if (VEC_length (basic_block, basic_block_info) < (size_t) n_basic_blocks)
185     VEC_safe_grow_cleared (basic_block, gc, basic_block_info, n_basic_blocks);
186
187   /* To speed up statement iterator walks, we first purge dead labels.  */
188   cleanup_dead_labels ();
189
190   /* Group case nodes to reduce the number of edges.
191      We do this after cleaning up dead labels because otherwise we miss
192      a lot of obvious case merging opportunities.  */
193   group_case_labels ();
194
195   /* Create the edges of the flowgraph.  */
196   make_edges ();
197   cleanup_dead_labels ();
198
199   /* Debugging dumps.  */
200
201   /* Write the flowgraph to a VCG file.  */
202   {
203     int local_dump_flags;
204     FILE *vcg_file = dump_begin (TDI_vcg, &local_dump_flags);
205     if (vcg_file)
206       {
207         gimple_cfg2vcg (vcg_file);
208         dump_end (TDI_vcg, vcg_file);
209       }
210   }
211
212 #ifdef ENABLE_CHECKING
213   verify_stmts ();
214 #endif
215 }
216
217 static unsigned int
218 execute_build_cfg (void)
219 {
220   gimple_seq body = gimple_body (current_function_decl);
221
222   build_gimple_cfg (body);
223   gimple_set_body (current_function_decl, NULL);
224   if (dump_file && (dump_flags & TDF_DETAILS))
225     {
226       fprintf (dump_file, "Scope blocks:\n");
227       dump_scope_blocks (dump_file, dump_flags);
228     }
229   return 0;
230 }
231
232 struct gimple_opt_pass pass_build_cfg =
233 {
234  {
235   GIMPLE_PASS,
236   "cfg",                                /* name */
237   NULL,                                 /* gate */
238   execute_build_cfg,                    /* execute */
239   NULL,                                 /* sub */
240   NULL,                                 /* next */
241   0,                                    /* static_pass_number */
242   TV_TREE_CFG,                          /* tv_id */
243   PROP_gimple_leh,                      /* properties_required */
244   PROP_cfg,                             /* properties_provided */
245   0,                                    /* properties_destroyed */
246   0,                                    /* todo_flags_start */
247   TODO_verify_stmts | TODO_cleanup_cfg
248   | TODO_dump_func                      /* todo_flags_finish */
249  }
250 };
251
252
253 /* Return true if T is a computed goto.  */
254
255 static bool
256 computed_goto_p (gimple t)
257 {
258   return (gimple_code (t) == GIMPLE_GOTO
259           && TREE_CODE (gimple_goto_dest (t)) != LABEL_DECL);
260 }
261
262
263 /* Search the CFG for any computed gotos.  If found, factor them to a
264    common computed goto site.  Also record the location of that site so
265    that we can un-factor the gotos after we have converted back to
266    normal form.  */
267
268 static void
269 factor_computed_gotos (void)
270 {
271   basic_block bb;
272   tree factored_label_decl = NULL;
273   tree var = NULL;
274   gimple factored_computed_goto_label = NULL;
275   gimple factored_computed_goto = NULL;
276
277   /* We know there are one or more computed gotos in this function.
278      Examine the last statement in each basic block to see if the block
279      ends with a computed goto.  */
280
281   FOR_EACH_BB (bb)
282     {
283       gimple_stmt_iterator gsi = gsi_last_bb (bb);
284       gimple last;
285
286       if (gsi_end_p (gsi))
287         continue;
288
289       last = gsi_stmt (gsi);
290
291       /* Ignore the computed goto we create when we factor the original
292          computed gotos.  */
293       if (last == factored_computed_goto)
294         continue;
295
296       /* If the last statement is a computed goto, factor it.  */
297       if (computed_goto_p (last))
298         {
299           gimple assignment;
300
301           /* The first time we find a computed goto we need to create
302              the factored goto block and the variable each original
303              computed goto will use for their goto destination.  */
304           if (!factored_computed_goto)
305             {
306               basic_block new_bb = create_empty_bb (bb);
307               gimple_stmt_iterator new_gsi = gsi_start_bb (new_bb);
308
309               /* Create the destination of the factored goto.  Each original
310                  computed goto will put its desired destination into this
311                  variable and jump to the label we create immediately
312                  below.  */
313               var = create_tmp_var (ptr_type_node, "gotovar");
314
315               /* Build a label for the new block which will contain the
316                  factored computed goto.  */
317               factored_label_decl = create_artificial_label ();
318               factored_computed_goto_label
319                 = gimple_build_label (factored_label_decl);
320               gsi_insert_after (&new_gsi, factored_computed_goto_label,
321                                 GSI_NEW_STMT);
322
323               /* Build our new computed goto.  */
324               factored_computed_goto = gimple_build_goto (var);
325               gsi_insert_after (&new_gsi, factored_computed_goto, GSI_NEW_STMT);
326             }
327
328           /* Copy the original computed goto's destination into VAR.  */
329           assignment = gimple_build_assign (var, gimple_goto_dest (last));
330           gsi_insert_before (&gsi, assignment, GSI_SAME_STMT);
331
332           /* And re-vector the computed goto to the new destination.  */
333           gimple_goto_set_dest (last, factored_label_decl);
334         }
335     }
336 }
337
338
339 /* Build a flowgraph for the sequence of stmts SEQ.  */
340
341 static void
342 make_blocks (gimple_seq seq)
343 {
344   gimple_stmt_iterator i = gsi_start (seq);
345   gimple stmt = NULL;
346   bool start_new_block = true;
347   bool first_stmt_of_seq = true;
348   basic_block bb = ENTRY_BLOCK_PTR;
349
350   while (!gsi_end_p (i))
351     {
352       gimple prev_stmt;
353
354       prev_stmt = stmt;
355       stmt = gsi_stmt (i);
356
357       /* If the statement starts a new basic block or if we have determined
358          in a previous pass that we need to create a new block for STMT, do
359          so now.  */
360       if (start_new_block || stmt_starts_bb_p (stmt, prev_stmt))
361         {
362           if (!first_stmt_of_seq)
363             seq = gsi_split_seq_before (&i);
364           bb = create_basic_block (seq, NULL, bb);
365           start_new_block = false;
366         }
367
368       /* Now add STMT to BB and create the subgraphs for special statement
369          codes.  */
370       gimple_set_bb (stmt, bb);
371
372       if (computed_goto_p (stmt))
373         found_computed_goto = true;
374
375       /* If STMT is a basic block terminator, set START_NEW_BLOCK for the
376          next iteration.  */
377       if (stmt_ends_bb_p (stmt))
378         start_new_block = true;
379
380       gsi_next (&i);
381       first_stmt_of_seq = false;
382     }
383 }
384
385
386 /* Create and return a new empty basic block after bb AFTER.  */
387
388 static basic_block
389 create_bb (void *h, void *e, basic_block after)
390 {
391   basic_block bb;
392
393   gcc_assert (!e);
394
395   /* Create and initialize a new basic block.  Since alloc_block uses
396      ggc_alloc_cleared to allocate a basic block, we do not have to
397      clear the newly allocated basic block here.  */
398   bb = alloc_block ();
399
400   bb->index = last_basic_block;
401   bb->flags = BB_NEW;
402   bb->il.gimple = GGC_CNEW (struct gimple_bb_info);
403   set_bb_seq (bb, h ? (gimple_seq) h : gimple_seq_alloc ());
404
405   /* Add the new block to the linked list of blocks.  */
406   link_block (bb, after);
407
408   /* Grow the basic block array if needed.  */
409   if ((size_t) last_basic_block == VEC_length (basic_block, basic_block_info))
410     {
411       size_t new_size = last_basic_block + (last_basic_block + 3) / 4;
412       VEC_safe_grow_cleared (basic_block, gc, basic_block_info, new_size);
413     }
414
415   /* Add the newly created block to the array.  */
416   SET_BASIC_BLOCK (last_basic_block, bb);
417
418   n_basic_blocks++;
419   last_basic_block++;
420
421   return bb;
422 }
423
424
425 /*---------------------------------------------------------------------------
426                                  Edge creation
427 ---------------------------------------------------------------------------*/
428
429 /* Fold COND_EXPR_COND of each COND_EXPR.  */
430
431 void
432 fold_cond_expr_cond (void)
433 {
434   basic_block bb;
435
436   FOR_EACH_BB (bb)
437     {
438       gimple stmt = last_stmt (bb);
439
440       if (stmt && gimple_code (stmt) == GIMPLE_COND)
441         {
442           tree cond;
443           bool zerop, onep;
444
445           fold_defer_overflow_warnings ();
446           cond = fold_binary (gimple_cond_code (stmt), boolean_type_node,
447                               gimple_cond_lhs (stmt), gimple_cond_rhs (stmt));
448           if (cond)
449             {
450               zerop = integer_zerop (cond);
451               onep = integer_onep (cond);
452             }
453           else
454             zerop = onep = false;
455
456           fold_undefer_overflow_warnings (zerop || onep,
457                                           stmt,
458                                           WARN_STRICT_OVERFLOW_CONDITIONAL);
459           if (zerop)
460             gimple_cond_make_false (stmt);
461           else if (onep)
462             gimple_cond_make_true (stmt);
463         }
464     }
465 }
466
467 /* Join all the blocks in the flowgraph.  */
468
469 static void
470 make_edges (void)
471 {
472   basic_block bb;
473   struct omp_region *cur_region = NULL;
474
475   /* Create an edge from entry to the first block with executable
476      statements in it.  */
477   make_edge (ENTRY_BLOCK_PTR, BASIC_BLOCK (NUM_FIXED_BLOCKS), EDGE_FALLTHRU);
478
479   /* Traverse the basic block array placing edges.  */
480   FOR_EACH_BB (bb)
481     {
482       gimple last = last_stmt (bb);
483       bool fallthru;
484
485       if (last)
486         {
487           enum gimple_code code = gimple_code (last);
488           switch (code)
489             {
490             case GIMPLE_GOTO:
491               make_goto_expr_edges (bb);
492               fallthru = false;
493               break;
494             case GIMPLE_RETURN:
495               make_edge (bb, EXIT_BLOCK_PTR, 0);
496               fallthru = false;
497               break;
498             case GIMPLE_COND:
499               make_cond_expr_edges (bb);
500               fallthru = false;
501               break;
502             case GIMPLE_SWITCH:
503               make_gimple_switch_edges (bb);
504               fallthru = false;
505               break;
506             case GIMPLE_RESX:
507               make_eh_edges (last);
508               fallthru = false;
509               break;
510
511             case GIMPLE_CALL:
512               /* If this function receives a nonlocal goto, then we need to
513                  make edges from this call site to all the nonlocal goto
514                  handlers.  */
515               if (stmt_can_make_abnormal_goto (last))
516                 make_abnormal_goto_edges (bb, true);
517
518               /* If this statement has reachable exception handlers, then
519                  create abnormal edges to them.  */
520               make_eh_edges (last);
521
522               /* Some calls are known not to return.  */
523               fallthru = !(gimple_call_flags (last) & ECF_NORETURN);
524               break;
525
526             case GIMPLE_ASSIGN:
527                /* A GIMPLE_ASSIGN may throw internally and thus be considered
528                   control-altering. */
529               if (is_ctrl_altering_stmt (last))
530                 {
531                   make_eh_edges (last);
532                 }
533               fallthru = true;
534               break;
535
536             case GIMPLE_OMP_PARALLEL:
537             case GIMPLE_OMP_TASK:
538             case GIMPLE_OMP_FOR:
539             case GIMPLE_OMP_SINGLE:
540             case GIMPLE_OMP_MASTER:
541             case GIMPLE_OMP_ORDERED:
542             case GIMPLE_OMP_CRITICAL:
543             case GIMPLE_OMP_SECTION:
544               cur_region = new_omp_region (bb, code, cur_region);
545               fallthru = true;
546               break;
547
548             case GIMPLE_OMP_SECTIONS:
549               cur_region = new_omp_region (bb, code, cur_region);
550               fallthru = true;
551               break;
552
553             case GIMPLE_OMP_SECTIONS_SWITCH:
554               fallthru = false;
555               break;
556
557
558             case GIMPLE_OMP_ATOMIC_LOAD:
559             case GIMPLE_OMP_ATOMIC_STORE:
560                fallthru = true;
561                break;
562
563
564             case GIMPLE_OMP_RETURN:
565               /* In the case of a GIMPLE_OMP_SECTION, the edge will go
566                  somewhere other than the next block.  This will be
567                  created later.  */
568               cur_region->exit = bb;
569               fallthru = cur_region->type != GIMPLE_OMP_SECTION;
570               cur_region = cur_region->outer;
571               break;
572
573             case GIMPLE_OMP_CONTINUE:
574               cur_region->cont = bb;
575               switch (cur_region->type)
576                 {
577                 case GIMPLE_OMP_FOR:
578                   /* Mark all GIMPLE_OMP_FOR and GIMPLE_OMP_CONTINUE
579                      succs edges as abnormal to prevent splitting
580                      them.  */
581                   single_succ_edge (cur_region->entry)->flags |= EDGE_ABNORMAL;
582                   /* Make the loopback edge.  */
583                   make_edge (bb, single_succ (cur_region->entry),
584                              EDGE_ABNORMAL);
585
586                   /* Create an edge from GIMPLE_OMP_FOR to exit, which
587                      corresponds to the case that the body of the loop
588                      is not executed at all.  */
589                   make_edge (cur_region->entry, bb->next_bb, EDGE_ABNORMAL);
590                   make_edge (bb, bb->next_bb, EDGE_FALLTHRU | EDGE_ABNORMAL);
591                   fallthru = false;
592                   break;
593
594                 case GIMPLE_OMP_SECTIONS:
595                   /* Wire up the edges into and out of the nested sections.  */
596                   {
597                     basic_block switch_bb = single_succ (cur_region->entry);
598
599                     struct omp_region *i;
600                     for (i = cur_region->inner; i ; i = i->next)
601                       {
602                         gcc_assert (i->type == GIMPLE_OMP_SECTION);
603                         make_edge (switch_bb, i->entry, 0);
604                         make_edge (i->exit, bb, EDGE_FALLTHRU);
605                       }
606
607                     /* Make the loopback edge to the block with
608                        GIMPLE_OMP_SECTIONS_SWITCH.  */
609                     make_edge (bb, switch_bb, 0);
610
611                     /* Make the edge from the switch to exit.  */
612                     make_edge (switch_bb, bb->next_bb, 0);
613                     fallthru = false;
614                   }
615                   break;
616
617                 default:
618                   gcc_unreachable ();
619                 }
620               break;
621
622             default:
623               gcc_assert (!stmt_ends_bb_p (last));
624               fallthru = true;
625             }
626         }
627       else
628         fallthru = true;
629
630       if (fallthru)
631         make_edge (bb, bb->next_bb, EDGE_FALLTHRU);
632     }
633
634   if (root_omp_region)
635     free_omp_regions ();
636
637   /* Fold COND_EXPR_COND of each COND_EXPR.  */
638   fold_cond_expr_cond ();
639 }
640
641
642 /* Create the edges for a GIMPLE_COND starting at block BB.  */
643
644 static void
645 make_cond_expr_edges (basic_block bb)
646 {
647   gimple entry = last_stmt (bb);
648   gimple then_stmt, else_stmt;
649   basic_block then_bb, else_bb;
650   tree then_label, else_label;
651   edge e;
652
653   gcc_assert (entry);
654   gcc_assert (gimple_code (entry) == GIMPLE_COND);
655
656   /* Entry basic blocks for each component.  */
657   then_label = gimple_cond_true_label (entry);
658   else_label = gimple_cond_false_label (entry);
659   then_bb = label_to_block (then_label);
660   else_bb = label_to_block (else_label);
661   then_stmt = first_stmt (then_bb);
662   else_stmt = first_stmt (else_bb);
663
664   e = make_edge (bb, then_bb, EDGE_TRUE_VALUE);
665   e->goto_locus = gimple_location (then_stmt);
666   if (e->goto_locus)
667     e->goto_block = gimple_block (then_stmt);
668   e = make_edge (bb, else_bb, EDGE_FALSE_VALUE);
669   if (e)
670     {
671       e->goto_locus = gimple_location (else_stmt);
672       if (e->goto_locus)
673         e->goto_block = gimple_block (else_stmt);
674     }
675
676   /* We do not need the labels anymore.  */
677   gimple_cond_set_true_label (entry, NULL_TREE);
678   gimple_cond_set_false_label (entry, NULL_TREE);
679 }
680
681
682 /* Called for each element in the hash table (P) as we delete the
683    edge to cases hash table.
684
685    Clear all the TREE_CHAINs to prevent problems with copying of
686    SWITCH_EXPRs and structure sharing rules, then free the hash table
687    element.  */
688
689 static bool
690 edge_to_cases_cleanup (const void *key ATTRIBUTE_UNUSED, void **value,
691                        void *data ATTRIBUTE_UNUSED)
692 {
693   tree t, next;
694
695   for (t = (tree) *value; t; t = next)
696     {
697       next = TREE_CHAIN (t);
698       TREE_CHAIN (t) = NULL;
699     }
700
701   *value = NULL;
702   return false;
703 }
704
705 /* Start recording information mapping edges to case labels.  */
706
707 void
708 start_recording_case_labels (void)
709 {
710   gcc_assert (edge_to_cases == NULL);
711   edge_to_cases = pointer_map_create ();
712 }
713
714 /* Return nonzero if we are recording information for case labels.  */
715
716 static bool
717 recording_case_labels_p (void)
718 {
719   return (edge_to_cases != NULL);
720 }
721
722 /* Stop recording information mapping edges to case labels and
723    remove any information we have recorded.  */
724 void
725 end_recording_case_labels (void)
726 {
727   pointer_map_traverse (edge_to_cases, edge_to_cases_cleanup, NULL);
728   pointer_map_destroy (edge_to_cases);
729   edge_to_cases = NULL;
730 }
731
732 /* If we are inside a {start,end}_recording_cases block, then return
733    a chain of CASE_LABEL_EXPRs from T which reference E.
734
735    Otherwise return NULL.  */
736
737 static tree
738 get_cases_for_edge (edge e, gimple t)
739 {
740   void **slot;
741   size_t i, n;
742
743   /* If we are not recording cases, then we do not have CASE_LABEL_EXPR
744      chains available.  Return NULL so the caller can detect this case.  */
745   if (!recording_case_labels_p ())
746     return NULL;
747
748   slot = pointer_map_contains (edge_to_cases, e);
749   if (slot)
750     return (tree) *slot;
751
752   /* If we did not find E in the hash table, then this must be the first
753      time we have been queried for information about E & T.  Add all the
754      elements from T to the hash table then perform the query again.  */
755
756   n = gimple_switch_num_labels (t);
757   for (i = 0; i < n; i++)
758     {
759       tree elt = gimple_switch_label (t, i);
760       tree lab = CASE_LABEL (elt);
761       basic_block label_bb = label_to_block (lab);
762       edge this_edge = find_edge (e->src, label_bb);
763
764       /* Add it to the chain of CASE_LABEL_EXPRs referencing E, or create
765          a new chain.  */
766       slot = pointer_map_insert (edge_to_cases, this_edge);
767       TREE_CHAIN (elt) = (tree) *slot;
768       *slot = elt;
769     }
770
771   return (tree) *pointer_map_contains (edge_to_cases, e);
772 }
773
774 /* Create the edges for a GIMPLE_SWITCH starting at block BB.  */
775
776 static void
777 make_gimple_switch_edges (basic_block bb)
778 {
779   gimple entry = last_stmt (bb);
780   size_t i, n;
781
782   n = gimple_switch_num_labels (entry);
783
784   for (i = 0; i < n; ++i)
785     {
786       tree lab = CASE_LABEL (gimple_switch_label (entry, i));
787       basic_block label_bb = label_to_block (lab);
788       make_edge (bb, label_bb, 0);
789     }
790 }
791
792
793 /* Return the basic block holding label DEST.  */
794
795 basic_block
796 label_to_block_fn (struct function *ifun, tree dest)
797 {
798   int uid = LABEL_DECL_UID (dest);
799
800   /* We would die hard when faced by an undefined label.  Emit a label to
801      the very first basic block.  This will hopefully make even the dataflow
802      and undefined variable warnings quite right.  */
803   if ((errorcount || sorrycount) && uid < 0)
804     {
805       gimple_stmt_iterator gsi = gsi_start_bb (BASIC_BLOCK (NUM_FIXED_BLOCKS));
806       gimple stmt;
807
808       stmt = gimple_build_label (dest);
809       gsi_insert_before (&gsi, stmt, GSI_NEW_STMT);
810       uid = LABEL_DECL_UID (dest);
811     }
812   if (VEC_length (basic_block, ifun->cfg->x_label_to_block_map)
813       <= (unsigned int) uid)
814     return NULL;
815   return VEC_index (basic_block, ifun->cfg->x_label_to_block_map, uid);
816 }
817
818 /* Create edges for an abnormal goto statement at block BB.  If FOR_CALL
819    is true, the source statement is a CALL_EXPR instead of a GOTO_EXPR.  */
820
821 void
822 make_abnormal_goto_edges (basic_block bb, bool for_call)
823 {
824   basic_block target_bb;
825   gimple_stmt_iterator gsi;
826
827   FOR_EACH_BB (target_bb)
828     for (gsi = gsi_start_bb (target_bb); !gsi_end_p (gsi); gsi_next (&gsi))
829       {
830         gimple label_stmt = gsi_stmt (gsi);
831         tree target;
832
833         if (gimple_code (label_stmt) != GIMPLE_LABEL)
834           break;
835
836         target = gimple_label_label (label_stmt);
837
838         /* Make an edge to every label block that has been marked as a
839            potential target for a computed goto or a non-local goto.  */
840         if ((FORCED_LABEL (target) && !for_call)
841             || (DECL_NONLOCAL (target) && for_call))
842           {
843             make_edge (bb, target_bb, EDGE_ABNORMAL);
844             break;
845           }
846       }
847 }
848
849 /* Create edges for a goto statement at block BB.  */
850
851 static void
852 make_goto_expr_edges (basic_block bb)
853 {
854   gimple_stmt_iterator last = gsi_last_bb (bb);
855   gimple goto_t = gsi_stmt (last);
856
857   /* A simple GOTO creates normal edges.  */
858   if (simple_goto_p (goto_t))
859     {
860       tree dest = gimple_goto_dest (goto_t);
861       edge e = make_edge (bb, label_to_block (dest), EDGE_FALLTHRU);
862       e->goto_locus = gimple_location (goto_t);
863       if (e->goto_locus)
864         e->goto_block = gimple_block (goto_t);
865       gsi_remove (&last, true);
866       return;
867     }
868
869   /* A computed GOTO creates abnormal edges.  */
870   make_abnormal_goto_edges (bb, false);
871 }
872
873
874 /*---------------------------------------------------------------------------
875                                Flowgraph analysis
876 ---------------------------------------------------------------------------*/
877
878 /* Cleanup useless labels in basic blocks.  This is something we wish
879    to do early because it allows us to group case labels before creating
880    the edges for the CFG, and it speeds up block statement iterators in
881    all passes later on.
882    We rerun this pass after CFG is created, to get rid of the labels that
883    are no longer referenced.  After then we do not run it any more, since
884    (almost) no new labels should be created.  */
885
886 /* A map from basic block index to the leading label of that block.  */
887 static struct label_record
888 {
889   /* The label.  */
890   tree label;
891
892   /* True if the label is referenced from somewhere.  */
893   bool used;
894 } *label_for_bb;
895
896 /* Callback for for_each_eh_region.  Helper for cleanup_dead_labels.  */
897 static void
898 update_eh_label (struct eh_region *region)
899 {
900   tree old_label = get_eh_region_tree_label (region);
901   if (old_label)
902     {
903       tree new_label;
904       basic_block bb = label_to_block (old_label);
905
906       /* ??? After optimizing, there may be EH regions with labels
907          that have already been removed from the function body, so
908          there is no basic block for them.  */
909       if (! bb)
910         return;
911
912       new_label = label_for_bb[bb->index].label;
913       label_for_bb[bb->index].used = true;
914       set_eh_region_tree_label (region, new_label);
915     }
916 }
917
918
919 /* Given LABEL return the first label in the same basic block.  */
920
921 static tree
922 main_block_label (tree label)
923 {
924   basic_block bb = label_to_block (label);
925   tree main_label = label_for_bb[bb->index].label;
926
927   /* label_to_block possibly inserted undefined label into the chain.  */
928   if (!main_label)
929     {
930       label_for_bb[bb->index].label = label;
931       main_label = label;
932     }
933
934   label_for_bb[bb->index].used = true;
935   return main_label;
936 }
937
938 /* Cleanup redundant labels.  This is a three-step process:
939      1) Find the leading label for each block.
940      2) Redirect all references to labels to the leading labels.
941      3) Cleanup all useless labels.  */
942
943 void
944 cleanup_dead_labels (void)
945 {
946   basic_block bb;
947   label_for_bb = XCNEWVEC (struct label_record, last_basic_block);
948
949   /* Find a suitable label for each block.  We use the first user-defined
950      label if there is one, or otherwise just the first label we see.  */
951   FOR_EACH_BB (bb)
952     {
953       gimple_stmt_iterator i;
954
955       for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
956         {
957           tree label;
958           gimple stmt = gsi_stmt (i);
959
960           if (gimple_code (stmt) != GIMPLE_LABEL)
961             break;
962
963           label = gimple_label_label (stmt);
964
965           /* If we have not yet seen a label for the current block,
966              remember this one and see if there are more labels.  */
967           if (!label_for_bb[bb->index].label)
968             {
969               label_for_bb[bb->index].label = label;
970               continue;
971             }
972
973           /* If we did see a label for the current block already, but it
974              is an artificially created label, replace it if the current
975              label is a user defined label.  */
976           if (!DECL_ARTIFICIAL (label)
977               && DECL_ARTIFICIAL (label_for_bb[bb->index].label))
978             {
979               label_for_bb[bb->index].label = label;
980               break;
981             }
982         }
983     }
984
985   /* Now redirect all jumps/branches to the selected label.
986      First do so for each block ending in a control statement.  */
987   FOR_EACH_BB (bb)
988     {
989       gimple stmt = last_stmt (bb);
990       if (!stmt)
991         continue;
992
993       switch (gimple_code (stmt))
994         {
995         case GIMPLE_COND:
996           {
997             tree true_label = gimple_cond_true_label (stmt);
998             tree false_label = gimple_cond_false_label (stmt);
999
1000             if (true_label)
1001               gimple_cond_set_true_label (stmt, main_block_label (true_label));
1002             if (false_label)
1003               gimple_cond_set_false_label (stmt, main_block_label (false_label));
1004             break;
1005           }
1006
1007         case GIMPLE_SWITCH:
1008           {
1009             size_t i, n = gimple_switch_num_labels (stmt);
1010
1011             /* Replace all destination labels.  */
1012             for (i = 0; i < n; ++i)
1013               {
1014                 tree case_label = gimple_switch_label (stmt, i);
1015                 tree label = main_block_label (CASE_LABEL (case_label));
1016                 CASE_LABEL (case_label) = label;
1017               }
1018             break;
1019           }
1020
1021         /* We have to handle gotos until they're removed, and we don't
1022            remove them until after we've created the CFG edges.  */
1023         case GIMPLE_GOTO:
1024           if (!computed_goto_p (stmt))
1025             {
1026               tree new_dest = main_block_label (gimple_goto_dest (stmt));
1027               gimple_goto_set_dest (stmt, new_dest);
1028               break;
1029             }
1030
1031         default:
1032           break;
1033       }
1034     }
1035
1036   for_each_eh_region (update_eh_label);
1037
1038   /* Finally, purge dead labels.  All user-defined labels and labels that
1039      can be the target of non-local gotos and labels which have their
1040      address taken are preserved.  */
1041   FOR_EACH_BB (bb)
1042     {
1043       gimple_stmt_iterator i;
1044       tree label_for_this_bb = label_for_bb[bb->index].label;
1045
1046       if (!label_for_this_bb)
1047         continue;
1048
1049       /* If the main label of the block is unused, we may still remove it.  */
1050       if (!label_for_bb[bb->index].used)
1051         label_for_this_bb = NULL;
1052
1053       for (i = gsi_start_bb (bb); !gsi_end_p (i); )
1054         {
1055           tree label;
1056           gimple stmt = gsi_stmt (i);
1057
1058           if (gimple_code (stmt) != GIMPLE_LABEL)
1059             break;
1060
1061           label = gimple_label_label (stmt);
1062
1063           if (label == label_for_this_bb
1064               || !DECL_ARTIFICIAL (label)
1065               || DECL_NONLOCAL (label)
1066               || FORCED_LABEL (label))
1067             gsi_next (&i);
1068           else
1069             gsi_remove (&i, true);
1070         }
1071     }
1072
1073   free (label_for_bb);
1074 }
1075
1076 /* Look for blocks ending in a multiway branch (a SWITCH_EXPR in GIMPLE),
1077    and scan the sorted vector of cases.  Combine the ones jumping to the
1078    same label.
1079    Eg. three separate entries 1: 2: 3: become one entry 1..3:  */
1080
1081 void
1082 group_case_labels (void)
1083 {
1084   basic_block bb;
1085
1086   FOR_EACH_BB (bb)
1087     {
1088       gimple stmt = last_stmt (bb);
1089       if (stmt && gimple_code (stmt) == GIMPLE_SWITCH)
1090         {
1091           int old_size = gimple_switch_num_labels (stmt);
1092           int i, j, new_size = old_size;
1093           tree default_case = NULL_TREE;
1094           tree default_label = NULL_TREE;
1095           bool has_default;
1096
1097           /* The default label is always the first case in a switch
1098              statement after gimplification if it was not optimized
1099              away */
1100           if (!CASE_LOW (gimple_switch_default_label (stmt))
1101               && !CASE_HIGH (gimple_switch_default_label (stmt)))
1102             {
1103               default_case = gimple_switch_default_label (stmt);
1104               default_label = CASE_LABEL (default_case);
1105               has_default = true;
1106             }
1107           else
1108             has_default = false;
1109
1110           /* Look for possible opportunities to merge cases.  */
1111           if (has_default)
1112             i = 1;
1113           else
1114             i = 0;
1115           while (i < old_size)
1116             {
1117               tree base_case, base_label, base_high;
1118               base_case = gimple_switch_label (stmt, i);
1119
1120               gcc_assert (base_case);
1121               base_label = CASE_LABEL (base_case);
1122
1123               /* Discard cases that have the same destination as the
1124                  default case.  */
1125               if (base_label == default_label)
1126                 {
1127                   gimple_switch_set_label (stmt, i, NULL_TREE);
1128                   i++;
1129                   new_size--;
1130                   continue;
1131                 }
1132
1133               base_high = CASE_HIGH (base_case)
1134                           ? CASE_HIGH (base_case)
1135                           : CASE_LOW (base_case);
1136               i++;
1137
1138               /* Try to merge case labels.  Break out when we reach the end
1139                  of the label vector or when we cannot merge the next case
1140                  label with the current one.  */
1141               while (i < old_size)
1142                 {
1143                   tree merge_case = gimple_switch_label (stmt, i);
1144                   tree merge_label = CASE_LABEL (merge_case);
1145                   tree t = int_const_binop (PLUS_EXPR, base_high,
1146                                             integer_one_node, 1);
1147
1148                   /* Merge the cases if they jump to the same place,
1149                      and their ranges are consecutive.  */
1150                   if (merge_label == base_label
1151                       && tree_int_cst_equal (CASE_LOW (merge_case), t))
1152                     {
1153                       base_high = CASE_HIGH (merge_case) ?
1154                         CASE_HIGH (merge_case) : CASE_LOW (merge_case);
1155                       CASE_HIGH (base_case) = base_high;
1156                       gimple_switch_set_label (stmt, i, NULL_TREE);
1157                       new_size--;
1158                       i++;
1159                     }
1160                   else
1161                     break;
1162                 }
1163             }
1164
1165           /* Compress the case labels in the label vector, and adjust the
1166              length of the vector.  */
1167           for (i = 0, j = 0; i < new_size; i++)
1168             {
1169               while (! gimple_switch_label (stmt, j))
1170                 j++;
1171               gimple_switch_set_label (stmt, i,
1172                                        gimple_switch_label (stmt, j++));
1173             }
1174
1175           gcc_assert (new_size <= old_size);
1176           gimple_switch_set_num_labels (stmt, new_size);
1177         }
1178     }
1179 }
1180
1181 /* Checks whether we can merge block B into block A.  */
1182
1183 static bool
1184 gimple_can_merge_blocks_p (basic_block a, basic_block b)
1185 {
1186   gimple stmt;
1187   gimple_stmt_iterator gsi;
1188   gimple_seq phis;
1189
1190   if (!single_succ_p (a))
1191     return false;
1192
1193   if (single_succ_edge (a)->flags & EDGE_ABNORMAL)
1194     return false;
1195
1196   if (single_succ (a) != b)
1197     return false;
1198
1199   if (!single_pred_p (b))
1200     return false;
1201
1202   if (b == EXIT_BLOCK_PTR)
1203     return false;
1204
1205   /* If A ends by a statement causing exceptions or something similar, we
1206      cannot merge the blocks.  */
1207   stmt = last_stmt (a);
1208   if (stmt && stmt_ends_bb_p (stmt))
1209     return false;
1210
1211   /* Do not allow a block with only a non-local label to be merged.  */
1212   if (stmt
1213       && gimple_code (stmt) == GIMPLE_LABEL
1214       && DECL_NONLOCAL (gimple_label_label (stmt)))
1215     return false;
1216
1217   /* It must be possible to eliminate all phi nodes in B.  If ssa form
1218      is not up-to-date, we cannot eliminate any phis; however, if only
1219      some symbols as whole are marked for renaming, this is not a problem,
1220      as phi nodes for those symbols are irrelevant in updating anyway.  */
1221   phis = phi_nodes (b);
1222   if (!gimple_seq_empty_p (phis))
1223     {
1224       gimple_stmt_iterator i;
1225
1226       if (name_mappings_registered_p ())
1227         return false;
1228
1229       for (i = gsi_start (phis); !gsi_end_p (i); gsi_next (&i))
1230         {
1231           gimple phi = gsi_stmt (i);
1232
1233           if (!is_gimple_reg (gimple_phi_result (phi))
1234               && !may_propagate_copy (gimple_phi_result (phi),
1235                                       gimple_phi_arg_def (phi, 0)))
1236             return false;
1237         }
1238     }
1239
1240   /* Do not remove user labels.  */
1241   for (gsi = gsi_start_bb (b); !gsi_end_p (gsi); gsi_next (&gsi))
1242     {
1243       stmt = gsi_stmt (gsi);
1244       if (gimple_code (stmt) != GIMPLE_LABEL)
1245         break;
1246       if (!DECL_ARTIFICIAL (gimple_label_label (stmt)))
1247         return false;
1248     }
1249
1250   /* Protect the loop latches.  */
1251   if (current_loops
1252       && b->loop_father->latch == b)
1253     return false;
1254
1255   return true;
1256 }
1257
1258 /* Replaces all uses of NAME by VAL.  */
1259
1260 void
1261 replace_uses_by (tree name, tree val)
1262 {
1263   imm_use_iterator imm_iter;
1264   use_operand_p use;
1265   gimple stmt;
1266   edge e;
1267
1268   FOR_EACH_IMM_USE_STMT (stmt, imm_iter, name)
1269     {
1270       if (gimple_code (stmt) != GIMPLE_PHI)
1271         push_stmt_changes (&stmt);
1272
1273       FOR_EACH_IMM_USE_ON_STMT (use, imm_iter)
1274         {
1275           replace_exp (use, val);
1276
1277           if (gimple_code (stmt) == GIMPLE_PHI)
1278             {
1279               e = gimple_phi_arg_edge (stmt, PHI_ARG_INDEX_FROM_USE (use));
1280               if (e->flags & EDGE_ABNORMAL)
1281                 {
1282                   /* This can only occur for virtual operands, since
1283                      for the real ones SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
1284                      would prevent replacement.  */
1285                   gcc_assert (!is_gimple_reg (name));
1286                   SSA_NAME_OCCURS_IN_ABNORMAL_PHI (val) = 1;
1287                 }
1288             }
1289         }
1290
1291       if (gimple_code (stmt) != GIMPLE_PHI)
1292         {
1293           size_t i;
1294
1295           fold_stmt_inplace (stmt);
1296           if (cfgcleanup_altered_bbs)
1297             bitmap_set_bit (cfgcleanup_altered_bbs, gimple_bb (stmt)->index);
1298
1299           /* FIXME.  This should go in pop_stmt_changes.  */
1300           for (i = 0; i < gimple_num_ops (stmt); i++)
1301             {
1302               tree op = gimple_op (stmt, i);
1303               /* Operands may be empty here.  For example, the labels
1304                  of a GIMPLE_COND are nulled out following the creation
1305                  of the corresponding CFG edges.  */
1306               if (op && TREE_CODE (op) == ADDR_EXPR)
1307                 recompute_tree_invariant_for_addr_expr (op);
1308             }
1309
1310           maybe_clean_or_replace_eh_stmt (stmt, stmt);
1311
1312           pop_stmt_changes (&stmt);
1313         }
1314     }
1315
1316   gcc_assert (has_zero_uses (name));
1317
1318   /* Also update the trees stored in loop structures.  */
1319   if (current_loops)
1320     {
1321       struct loop *loop;
1322       loop_iterator li;
1323
1324       FOR_EACH_LOOP (li, loop, 0)
1325         {
1326           substitute_in_loop_info (loop, name, val);
1327         }
1328     }
1329 }
1330
1331 /* Merge block B into block A.  */
1332
1333 static void
1334 gimple_merge_blocks (basic_block a, basic_block b)
1335 {
1336   gimple_stmt_iterator last, gsi, psi;
1337   gimple_seq phis = phi_nodes (b);
1338
1339   if (dump_file)
1340     fprintf (dump_file, "Merging blocks %d and %d\n", a->index, b->index);
1341
1342   /* Remove all single-valued PHI nodes from block B of the form
1343      V_i = PHI <V_j> by propagating V_j to all the uses of V_i.  */
1344   gsi = gsi_last_bb (a);
1345   for (psi = gsi_start (phis); !gsi_end_p (psi); )
1346     {
1347       gimple phi = gsi_stmt (psi);
1348       tree def = gimple_phi_result (phi), use = gimple_phi_arg_def (phi, 0);
1349       gimple copy;
1350       bool may_replace_uses = !is_gimple_reg (def)
1351                               || may_propagate_copy (def, use);
1352
1353       /* In case we maintain loop closed ssa form, do not propagate arguments
1354          of loop exit phi nodes.  */
1355       if (current_loops
1356           && loops_state_satisfies_p (LOOP_CLOSED_SSA)
1357           && is_gimple_reg (def)
1358           && TREE_CODE (use) == SSA_NAME
1359           && a->loop_father != b->loop_father)
1360         may_replace_uses = false;
1361
1362       if (!may_replace_uses)
1363         {
1364           gcc_assert (is_gimple_reg (def));
1365
1366           /* Note that just emitting the copies is fine -- there is no problem
1367              with ordering of phi nodes.  This is because A is the single
1368              predecessor of B, therefore results of the phi nodes cannot
1369              appear as arguments of the phi nodes.  */
1370           copy = gimple_build_assign (def, use);
1371           gsi_insert_after (&gsi, copy, GSI_NEW_STMT);
1372           remove_phi_node (&psi, false);
1373         }
1374       else
1375         {
1376           /* If we deal with a PHI for virtual operands, we can simply
1377              propagate these without fussing with folding or updating
1378              the stmt.  */
1379           if (!is_gimple_reg (def))
1380             {
1381               imm_use_iterator iter;
1382               use_operand_p use_p;
1383               gimple stmt;
1384
1385               FOR_EACH_IMM_USE_STMT (stmt, iter, def)
1386                 FOR_EACH_IMM_USE_ON_STMT (use_p, iter)
1387                   SET_USE (use_p, use);
1388             }
1389           else
1390             replace_uses_by (def, use);
1391
1392           remove_phi_node (&psi, true);
1393         }
1394     }
1395
1396   /* Ensure that B follows A.  */
1397   move_block_after (b, a);
1398
1399   gcc_assert (single_succ_edge (a)->flags & EDGE_FALLTHRU);
1400   gcc_assert (!last_stmt (a) || !stmt_ends_bb_p (last_stmt (a)));
1401
1402   /* Remove labels from B and set gimple_bb to A for other statements.  */
1403   for (gsi = gsi_start_bb (b); !gsi_end_p (gsi);)
1404     {
1405       if (gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
1406         {
1407           gimple label = gsi_stmt (gsi);
1408
1409           gsi_remove (&gsi, false);
1410
1411           /* Now that we can thread computed gotos, we might have
1412              a situation where we have a forced label in block B
1413              However, the label at the start of block B might still be
1414              used in other ways (think about the runtime checking for
1415              Fortran assigned gotos).  So we can not just delete the
1416              label.  Instead we move the label to the start of block A.  */
1417           if (FORCED_LABEL (gimple_label_label (label)))
1418             {
1419               gimple_stmt_iterator dest_gsi = gsi_start_bb (a);
1420               gsi_insert_before (&dest_gsi, label, GSI_NEW_STMT);
1421             }
1422         }
1423       else
1424         {
1425           gimple_set_bb (gsi_stmt (gsi), a);
1426           gsi_next (&gsi);
1427         }
1428     }
1429
1430   /* Merge the sequences.  */
1431   last = gsi_last_bb (a);
1432   gsi_insert_seq_after (&last, bb_seq (b), GSI_NEW_STMT);
1433   set_bb_seq (b, NULL);
1434
1435   if (cfgcleanup_altered_bbs)
1436     bitmap_set_bit (cfgcleanup_altered_bbs, a->index);
1437 }
1438
1439
1440 /* Return the one of two successors of BB that is not reachable by a
1441    reached by a complex edge, if there is one.  Else, return BB.  We use
1442    this in optimizations that use post-dominators for their heuristics,
1443    to catch the cases in C++ where function calls are involved.  */
1444
1445 basic_block
1446 single_noncomplex_succ (basic_block bb)
1447 {
1448   edge e0, e1;
1449   if (EDGE_COUNT (bb->succs) != 2)
1450     return bb;
1451
1452   e0 = EDGE_SUCC (bb, 0);
1453   e1 = EDGE_SUCC (bb, 1);
1454   if (e0->flags & EDGE_COMPLEX)
1455     return e1->dest;
1456   if (e1->flags & EDGE_COMPLEX)
1457     return e0->dest;
1458
1459   return bb;
1460 }
1461
1462
1463 /* Walk the function tree removing unnecessary statements.
1464
1465      * Empty statement nodes are removed
1466
1467      * Unnecessary TRY_FINALLY and TRY_CATCH blocks are removed
1468
1469      * Unnecessary COND_EXPRs are removed
1470
1471      * Some unnecessary BIND_EXPRs are removed
1472
1473      * GOTO_EXPRs immediately preceding destination are removed.
1474
1475    Clearly more work could be done.  The trick is doing the analysis
1476    and removal fast enough to be a net improvement in compile times.
1477
1478    Note that when we remove a control structure such as a COND_EXPR
1479    BIND_EXPR, or TRY block, we will need to repeat this optimization pass
1480    to ensure we eliminate all the useless code.  */
1481
1482 struct rus_data
1483 {
1484   bool repeat;
1485   bool may_throw;
1486   bool may_branch;
1487   bool has_label;
1488   bool last_was_goto;
1489   gimple_stmt_iterator last_goto_gsi;
1490 };
1491
1492
1493 static void remove_useless_stmts_1 (gimple_stmt_iterator *gsi, struct rus_data *);
1494
1495 /* Given a statement sequence, find the first executable statement with
1496    location information, and warn that it is unreachable.  When searching,
1497    descend into containers in execution order.  */
1498
1499 static bool
1500 remove_useless_stmts_warn_notreached (gimple_seq stmts)
1501 {
1502   gimple_stmt_iterator gsi;
1503
1504   for (gsi = gsi_start (stmts); !gsi_end_p (gsi); gsi_next (&gsi))
1505     {
1506       gimple stmt = gsi_stmt (gsi);
1507
1508       if (gimple_has_location (stmt))
1509         {
1510           location_t loc = gimple_location (stmt);
1511           if (LOCATION_LINE (loc) > 0)
1512             {
1513               warning (OPT_Wunreachable_code, "%Hwill never be executed", &loc);
1514               return true;
1515             }
1516         }
1517
1518       switch (gimple_code (stmt))
1519         {
1520         /* Unfortunately, we need the CFG now to detect unreachable
1521            branches in a conditional, so conditionals are not handled here.  */
1522
1523         case GIMPLE_TRY:
1524           if (remove_useless_stmts_warn_notreached (gimple_try_eval (stmt)))
1525             return true;
1526           if (remove_useless_stmts_warn_notreached (gimple_try_cleanup (stmt)))
1527             return true;
1528           break;
1529
1530         case GIMPLE_CATCH:
1531           return remove_useless_stmts_warn_notreached (gimple_catch_handler (stmt));
1532
1533         case GIMPLE_EH_FILTER:
1534           return remove_useless_stmts_warn_notreached (gimple_eh_filter_failure (stmt));
1535
1536         case GIMPLE_BIND:
1537           return remove_useless_stmts_warn_notreached (gimple_bind_body (stmt));
1538
1539         default:
1540           break;
1541         }
1542     }
1543
1544   return false;
1545 }
1546
1547 /* Helper for remove_useless_stmts_1.  Handle GIMPLE_COND statements.  */
1548
1549 static void
1550 remove_useless_stmts_cond (gimple_stmt_iterator *gsi, struct rus_data *data)
1551 {
1552   gimple stmt = gsi_stmt (*gsi);
1553
1554   /* The folded result must still be a conditional statement.  */
1555   fold_stmt_inplace (stmt);
1556
1557   data->may_branch = true;
1558
1559   /* Replace trivial conditionals with gotos. */
1560   if (gimple_cond_true_p (stmt))
1561     {
1562       /* Goto THEN label.  */
1563       tree then_label = gimple_cond_true_label (stmt);
1564
1565       gsi_replace (gsi, gimple_build_goto (then_label), false);
1566       data->last_goto_gsi = *gsi;
1567       data->last_was_goto = true;
1568       data->repeat = true;
1569     }
1570   else if (gimple_cond_false_p (stmt))
1571     {
1572       /* Goto ELSE label.  */
1573       tree else_label = gimple_cond_false_label (stmt);
1574
1575       gsi_replace (gsi, gimple_build_goto (else_label), false);
1576       data->last_goto_gsi = *gsi;
1577       data->last_was_goto = true;
1578       data->repeat = true;
1579     }
1580   else
1581     {
1582       tree then_label = gimple_cond_true_label (stmt);
1583       tree else_label = gimple_cond_false_label (stmt);
1584
1585       if (then_label == else_label)
1586         {
1587           /* Goto common destination.  */
1588           gsi_replace (gsi, gimple_build_goto (then_label), false);
1589           data->last_goto_gsi = *gsi;
1590           data->last_was_goto = true;
1591           data->repeat = true;
1592         }
1593     }
1594
1595   gsi_next (gsi);
1596
1597   data->last_was_goto = false;
1598 }
1599
1600 /* Helper for remove_useless_stmts_1. 
1601    Handle the try-finally case for GIMPLE_TRY statements.  */
1602
1603 static void
1604 remove_useless_stmts_tf (gimple_stmt_iterator *gsi, struct rus_data *data)
1605 {
1606   bool save_may_branch, save_may_throw;
1607   bool this_may_branch, this_may_throw;
1608
1609   gimple_seq eval_seq, cleanup_seq;
1610   gimple_stmt_iterator eval_gsi, cleanup_gsi;
1611
1612   gimple stmt = gsi_stmt (*gsi);
1613
1614   /* Collect may_branch and may_throw information for the body only.  */
1615   save_may_branch = data->may_branch;
1616   save_may_throw = data->may_throw;
1617   data->may_branch = false;
1618   data->may_throw = false;
1619   data->last_was_goto = false;
1620
1621   eval_seq = gimple_try_eval (stmt);
1622   eval_gsi = gsi_start (eval_seq);
1623   remove_useless_stmts_1 (&eval_gsi, data);
1624
1625   this_may_branch = data->may_branch;
1626   this_may_throw = data->may_throw;
1627   data->may_branch |= save_may_branch;
1628   data->may_throw |= save_may_throw;
1629   data->last_was_goto = false;
1630
1631   cleanup_seq = gimple_try_cleanup (stmt);
1632   cleanup_gsi = gsi_start (cleanup_seq);
1633   remove_useless_stmts_1 (&cleanup_gsi, data);
1634
1635   /* If the body is empty, then we can emit the FINALLY block without
1636      the enclosing TRY_FINALLY_EXPR.  */
1637   if (gimple_seq_empty_p (eval_seq))
1638     {
1639       gsi_insert_seq_before (gsi, cleanup_seq, GSI_SAME_STMT);
1640       gsi_remove (gsi, false);
1641       data->repeat = true;
1642     }
1643
1644   /* If the handler is empty, then we can emit the TRY block without
1645      the enclosing TRY_FINALLY_EXPR.  */
1646   else if (gimple_seq_empty_p (cleanup_seq))
1647     {
1648       gsi_insert_seq_before (gsi, eval_seq, GSI_SAME_STMT);
1649       gsi_remove (gsi, false);
1650       data->repeat = true;
1651     }
1652
1653   /* If the body neither throws, nor branches, then we can safely
1654      string the TRY and FINALLY blocks together.  */
1655   else if (!this_may_branch && !this_may_throw)
1656     {
1657       gsi_insert_seq_before (gsi, eval_seq, GSI_SAME_STMT);
1658       gsi_insert_seq_before (gsi, cleanup_seq, GSI_SAME_STMT);
1659       gsi_remove (gsi, false);
1660       data->repeat = true;
1661     }
1662   else
1663     gsi_next (gsi);
1664 }
1665
1666 /* Helper for remove_useless_stmts_1. 
1667    Handle the try-catch case for GIMPLE_TRY statements.  */
1668
1669 static void
1670 remove_useless_stmts_tc (gimple_stmt_iterator *gsi, struct rus_data *data)
1671 {
1672   bool save_may_throw, this_may_throw;
1673
1674   gimple_seq eval_seq, cleanup_seq, handler_seq, failure_seq;
1675   gimple_stmt_iterator eval_gsi, cleanup_gsi, handler_gsi, failure_gsi;
1676
1677   gimple stmt = gsi_stmt (*gsi);
1678
1679   /* Collect may_throw information for the body only.  */
1680   save_may_throw = data->may_throw;
1681   data->may_throw = false;
1682   data->last_was_goto = false;
1683
1684   eval_seq = gimple_try_eval (stmt);
1685   eval_gsi = gsi_start (eval_seq);
1686   remove_useless_stmts_1 (&eval_gsi, data);
1687
1688   this_may_throw = data->may_throw;
1689   data->may_throw = save_may_throw;
1690
1691   cleanup_seq = gimple_try_cleanup (stmt);
1692
1693   /* If the body cannot throw, then we can drop the entire TRY_CATCH_EXPR.  */
1694   if (!this_may_throw)
1695     {
1696       if (warn_notreached)
1697         {
1698           remove_useless_stmts_warn_notreached (cleanup_seq);
1699         }
1700       gsi_insert_seq_before (gsi, eval_seq, GSI_SAME_STMT);
1701       gsi_remove (gsi, false);
1702       data->repeat = true;
1703       return;
1704     }
1705
1706   /* Process the catch clause specially.  We may be able to tell that
1707      no exceptions propagate past this point.  */
1708
1709   this_may_throw = true;
1710   cleanup_gsi = gsi_start (cleanup_seq);
1711   stmt = gsi_stmt (cleanup_gsi);
1712   data->last_was_goto = false;
1713
1714   switch (gimple_code (stmt))
1715     {
1716     case GIMPLE_CATCH:
1717       /* If the first element is a catch, they all must be.  */
1718       while (!gsi_end_p (cleanup_gsi))
1719         {
1720           stmt = gsi_stmt (cleanup_gsi);
1721           /* If we catch all exceptions, then the body does not
1722              propagate exceptions past this point.  */
1723           if (gimple_catch_types (stmt) == NULL)
1724             this_may_throw = false;
1725           data->last_was_goto = false;
1726           handler_seq = gimple_catch_handler (stmt);
1727           handler_gsi = gsi_start (handler_seq);
1728           remove_useless_stmts_1 (&handler_gsi, data);
1729           gsi_next (&cleanup_gsi);
1730         }
1731       gsi_next (gsi);
1732       break;
1733
1734     case GIMPLE_EH_FILTER:
1735       /* If the first element is an eh_filter, it should stand alone.  */
1736       if (gimple_eh_filter_must_not_throw (stmt))
1737         this_may_throw = false;
1738       else if (gimple_eh_filter_types (stmt) == NULL)
1739         this_may_throw = false;
1740       failure_seq = gimple_eh_filter_failure (stmt);
1741       failure_gsi = gsi_start (failure_seq);
1742       remove_useless_stmts_1 (&failure_gsi, data);
1743       gsi_next (gsi);
1744       break;
1745
1746     default:
1747       /* Otherwise this is a list of cleanup statements.  */
1748       remove_useless_stmts_1 (&cleanup_gsi, data);
1749
1750       /* If the cleanup is empty, then we can emit the TRY block without
1751          the enclosing TRY_CATCH_EXPR.  */
1752       if (gimple_seq_empty_p (cleanup_seq))
1753         {
1754           gsi_insert_seq_before (gsi, eval_seq, GSI_SAME_STMT);
1755           gsi_remove(gsi, false);
1756           data->repeat = true;
1757         }
1758       else
1759         gsi_next (gsi);
1760       break;
1761     }
1762
1763   data->may_throw |= this_may_throw;
1764 }
1765
1766 /* Helper for remove_useless_stmts_1.  Handle GIMPLE_BIND statements.  */
1767
1768 static void
1769 remove_useless_stmts_bind (gimple_stmt_iterator *gsi, struct rus_data *data ATTRIBUTE_UNUSED)
1770 {
1771   tree block;
1772   gimple_seq body_seq, fn_body_seq;
1773   gimple_stmt_iterator body_gsi;
1774
1775   gimple stmt = gsi_stmt (*gsi);
1776
1777   /* First remove anything underneath the BIND_EXPR.  */
1778   
1779   body_seq = gimple_bind_body (stmt);
1780   body_gsi = gsi_start (body_seq);
1781   remove_useless_stmts_1 (&body_gsi, data);
1782
1783   /* If the GIMPLE_BIND has no variables, then we can pull everything
1784      up one level and remove the GIMPLE_BIND, unless this is the toplevel
1785      GIMPLE_BIND for the current function or an inlined function.
1786
1787      When this situation occurs we will want to apply this
1788      optimization again.  */
1789   block = gimple_bind_block (stmt);
1790   fn_body_seq = gimple_body (current_function_decl);
1791   if (gimple_bind_vars (stmt) == NULL_TREE
1792       && (gimple_seq_empty_p (fn_body_seq)
1793           || stmt != gimple_seq_first_stmt (fn_body_seq))
1794       && (! block
1795           || ! BLOCK_ABSTRACT_ORIGIN (block)
1796           || (TREE_CODE (BLOCK_ABSTRACT_ORIGIN (block))
1797               != FUNCTION_DECL)))
1798     {
1799       tree var = NULL_TREE;
1800       /* Even if there are no gimple_bind_vars, there might be other
1801          decls in BLOCK_VARS rendering the GIMPLE_BIND not useless.  */
1802       if (block && !BLOCK_NUM_NONLOCALIZED_VARS (block))
1803         for (var = BLOCK_VARS (block); var; var = TREE_CHAIN (var))
1804           if (TREE_CODE (var) == IMPORTED_DECL)
1805             break;
1806       if (var || (block && BLOCK_NUM_NONLOCALIZED_VARS (block)))
1807         gsi_next (gsi);
1808       else
1809         {
1810           gsi_insert_seq_before (gsi, body_seq, GSI_SAME_STMT);
1811           gsi_remove (gsi, false);
1812           data->repeat = true;
1813         }
1814     }
1815   else
1816     gsi_next (gsi);
1817 }
1818
1819 /* Helper for remove_useless_stmts_1.  Handle GIMPLE_GOTO statements.  */
1820
1821 static void
1822 remove_useless_stmts_goto (gimple_stmt_iterator *gsi, struct rus_data *data)
1823 {
1824   gimple stmt = gsi_stmt (*gsi);
1825
1826   tree dest = gimple_goto_dest (stmt);
1827
1828   data->may_branch = true;
1829   data->last_was_goto = false;
1830
1831   /* Record iterator for last goto expr, so that we can delete it if unnecessary.  */
1832   if (TREE_CODE (dest) == LABEL_DECL)
1833     {
1834       data->last_goto_gsi = *gsi;
1835       data->last_was_goto = true;
1836     }
1837
1838   gsi_next(gsi);
1839 }
1840
1841 /* Helper for remove_useless_stmts_1.  Handle GIMPLE_LABEL statements.  */
1842
1843 static void
1844 remove_useless_stmts_label (gimple_stmt_iterator *gsi, struct rus_data *data)
1845 {
1846   gimple stmt = gsi_stmt (*gsi);
1847
1848   tree label = gimple_label_label (stmt);
1849
1850   data->has_label = true;
1851
1852   /* We do want to jump across non-local label receiver code.  */
1853   if (DECL_NONLOCAL (label))
1854     data->last_was_goto = false;
1855
1856   else if (data->last_was_goto
1857            && gimple_goto_dest (gsi_stmt (data->last_goto_gsi)) == label)
1858     {
1859       /* Replace the preceding GIMPLE_GOTO statement with
1860          a GIMPLE_NOP, which will be subsequently removed.
1861          In this way, we avoid invalidating other iterators
1862          active on the statement sequence.  */
1863       gsi_replace(&data->last_goto_gsi, gimple_build_nop(), false);
1864       data->last_was_goto = false;
1865       data->repeat = true;
1866     }
1867
1868   /* ??? Add something here to delete unused labels.  */
1869
1870   gsi_next (gsi);
1871 }
1872
1873
1874 /* T is CALL_EXPR.  Set current_function_calls_* flags.  */
1875
1876 void
1877 notice_special_calls (gimple call)
1878 {
1879   int flags = gimple_call_flags (call);
1880
1881   if (flags & ECF_MAY_BE_ALLOCA)
1882     cfun->calls_alloca = true;
1883   if (flags & ECF_RETURNS_TWICE)
1884     cfun->calls_setjmp = true;
1885 }
1886
1887
1888 /* Clear flags set by notice_special_calls.  Used by dead code removal
1889    to update the flags.  */
1890
1891 void
1892 clear_special_calls (void)
1893 {
1894   cfun->calls_alloca = false;
1895   cfun->calls_setjmp = false;
1896 }
1897
1898 /* Remove useless statements from a statement sequence, and perform
1899    some preliminary simplifications.  */
1900
1901 static void
1902 remove_useless_stmts_1 (gimple_stmt_iterator *gsi, struct rus_data *data)
1903 {
1904   while (!gsi_end_p (*gsi))
1905     {
1906       gimple stmt = gsi_stmt (*gsi);
1907
1908       switch (gimple_code (stmt))
1909         {
1910         case GIMPLE_COND:
1911           remove_useless_stmts_cond (gsi, data);
1912           break;
1913
1914         case GIMPLE_GOTO:
1915           remove_useless_stmts_goto (gsi, data);
1916           break;
1917
1918         case GIMPLE_LABEL:
1919           remove_useless_stmts_label (gsi, data);
1920           break;
1921
1922         case GIMPLE_ASSIGN:
1923           fold_stmt (gsi);
1924           stmt = gsi_stmt (*gsi);
1925           data->last_was_goto = false;
1926           if (stmt_could_throw_p (stmt))
1927             data->may_throw = true;
1928           gsi_next (gsi);
1929           break;
1930
1931         case GIMPLE_ASM:
1932           fold_stmt (gsi);
1933           data->last_was_goto = false;
1934           gsi_next (gsi);
1935           break;
1936
1937         case GIMPLE_CALL:
1938           fold_stmt (gsi);
1939           stmt = gsi_stmt (*gsi);
1940           data->last_was_goto = false;
1941           if (is_gimple_call (stmt))
1942             notice_special_calls (stmt);
1943
1944           /* We used to call update_gimple_call_flags here,
1945              which copied side-effects and nothrows status
1946              from the function decl to the call.  In the new
1947              tuplified GIMPLE, the accessors for this information
1948              always consult the function decl, so this copying
1949              is no longer necessary.  */
1950           if (stmt_could_throw_p (stmt))
1951             data->may_throw = true;
1952           gsi_next (gsi);
1953           break;
1954
1955         case GIMPLE_RETURN:
1956           fold_stmt (gsi);
1957           data->last_was_goto = false;
1958           data->may_branch = true;
1959           gsi_next (gsi);
1960           break;
1961
1962         case GIMPLE_BIND:
1963           remove_useless_stmts_bind (gsi, data);
1964           break;
1965
1966         case GIMPLE_TRY:
1967           if (gimple_try_kind (stmt) == GIMPLE_TRY_CATCH)
1968             remove_useless_stmts_tc (gsi, data);
1969           else if (gimple_try_kind (stmt) == GIMPLE_TRY_FINALLY)
1970             remove_useless_stmts_tf (gsi, data);
1971           else
1972             gcc_unreachable ();
1973           break;
1974
1975         case GIMPLE_CATCH:
1976           gcc_unreachable ();
1977           break;
1978
1979         case GIMPLE_NOP:
1980           gsi_remove (gsi, false);
1981           break;
1982
1983         case GIMPLE_OMP_FOR:
1984           {
1985             gimple_seq pre_body_seq = gimple_omp_for_pre_body (stmt);
1986             gimple_stmt_iterator pre_body_gsi = gsi_start (pre_body_seq);
1987
1988             remove_useless_stmts_1 (&pre_body_gsi, data);
1989             data->last_was_goto = false;
1990           }
1991           /* FALLTHROUGH */
1992         case GIMPLE_OMP_CRITICAL:
1993         case GIMPLE_OMP_CONTINUE:
1994         case GIMPLE_OMP_MASTER:
1995         case GIMPLE_OMP_ORDERED:
1996         case GIMPLE_OMP_SECTION:
1997         case GIMPLE_OMP_SECTIONS:
1998         case GIMPLE_OMP_SINGLE:
1999           {
2000             gimple_seq body_seq = gimple_omp_body (stmt);
2001             gimple_stmt_iterator body_gsi = gsi_start (body_seq);
2002
2003             remove_useless_stmts_1 (&body_gsi, data);
2004             data->last_was_goto = false;
2005             gsi_next (gsi);
2006           }
2007           break;
2008
2009         case GIMPLE_OMP_PARALLEL:
2010         case GIMPLE_OMP_TASK:
2011           {
2012             /* Make sure the outermost GIMPLE_BIND isn't removed
2013                as useless.  */
2014             gimple_seq body_seq = gimple_omp_body (stmt);
2015             gimple bind = gimple_seq_first_stmt (body_seq);
2016             gimple_seq bind_seq = gimple_bind_body (bind);
2017             gimple_stmt_iterator bind_gsi = gsi_start (bind_seq);
2018
2019             remove_useless_stmts_1 (&bind_gsi, data);
2020             data->last_was_goto = false;
2021             gsi_next (gsi);
2022           }
2023           break;
2024
2025         case GIMPLE_CHANGE_DYNAMIC_TYPE:
2026           /* If we do not optimize remove GIMPLE_CHANGE_DYNAMIC_TYPE as
2027              expansion is confused about them and we only remove them
2028              during alias computation otherwise.  */
2029           if (!optimize)
2030             {
2031               data->last_was_goto = false;
2032               gsi_remove (gsi, false);
2033               break;
2034             }
2035           /* Fallthru.  */
2036
2037         default:
2038           data->last_was_goto = false;
2039           gsi_next (gsi);
2040           break;
2041         }
2042     }
2043 }
2044
2045 /* Walk the function tree, removing useless statements and performing
2046    some preliminary simplifications.  */
2047
2048 static unsigned int
2049 remove_useless_stmts (void)
2050 {
2051   struct rus_data data;
2052
2053   clear_special_calls ();
2054
2055   do
2056     {
2057       gimple_stmt_iterator gsi;
2058
2059       gsi = gsi_start (gimple_body (current_function_decl));
2060       memset (&data, 0, sizeof (data));
2061       remove_useless_stmts_1 (&gsi, &data);
2062     }
2063   while (data.repeat);
2064   return 0;
2065 }
2066
2067
2068 struct gimple_opt_pass pass_remove_useless_stmts =
2069 {
2070  {
2071   GIMPLE_PASS,
2072   "useless",                            /* name */
2073   NULL,                                 /* gate */
2074   remove_useless_stmts,                 /* execute */
2075   NULL,                                 /* sub */
2076   NULL,                                 /* next */
2077   0,                                    /* static_pass_number */
2078   0,                                    /* tv_id */
2079   PROP_gimple_any,                      /* properties_required */
2080   0,                                    /* properties_provided */
2081   0,                                    /* properties_destroyed */
2082   0,                                    /* todo_flags_start */
2083   TODO_dump_func                        /* todo_flags_finish */
2084  }
2085 };
2086
2087 /* Remove PHI nodes associated with basic block BB and all edges out of BB.  */
2088
2089 static void
2090 remove_phi_nodes_and_edges_for_unreachable_block (basic_block bb)
2091 {
2092   /* Since this block is no longer reachable, we can just delete all
2093      of its PHI nodes.  */
2094   remove_phi_nodes (bb);
2095
2096   /* Remove edges to BB's successors.  */
2097   while (EDGE_COUNT (bb->succs) > 0)
2098     remove_edge (EDGE_SUCC (bb, 0));
2099 }
2100
2101
2102 /* Remove statements of basic block BB.  */
2103
2104 static void
2105 remove_bb (basic_block bb)
2106 {
2107   gimple_stmt_iterator i;
2108   source_location loc = UNKNOWN_LOCATION;
2109
2110   if (dump_file)
2111     {
2112       fprintf (dump_file, "Removing basic block %d\n", bb->index);
2113       if (dump_flags & TDF_DETAILS)
2114         {
2115           dump_bb (bb, dump_file, 0);
2116           fprintf (dump_file, "\n");
2117         }
2118     }
2119
2120   if (current_loops)
2121     {
2122       struct loop *loop = bb->loop_father;
2123
2124       /* If a loop gets removed, clean up the information associated
2125          with it.  */
2126       if (loop->latch == bb
2127           || loop->header == bb)
2128         free_numbers_of_iterations_estimates_loop (loop);
2129     }
2130
2131   /* Remove all the instructions in the block.  */
2132   if (bb_seq (bb) != NULL)
2133     {
2134       for (i = gsi_start_bb (bb); !gsi_end_p (i);)
2135         {
2136           gimple stmt = gsi_stmt (i);
2137           if (gimple_code (stmt) == GIMPLE_LABEL
2138               && (FORCED_LABEL (gimple_label_label (stmt))
2139                   || DECL_NONLOCAL (gimple_label_label (stmt))))
2140             {
2141               basic_block new_bb;
2142               gimple_stmt_iterator new_gsi;
2143
2144               /* A non-reachable non-local label may still be referenced.
2145                  But it no longer needs to carry the extra semantics of
2146                  non-locality.  */
2147               if (DECL_NONLOCAL (gimple_label_label (stmt)))
2148                 {
2149                   DECL_NONLOCAL (gimple_label_label (stmt)) = 0;
2150                   FORCED_LABEL (gimple_label_label (stmt)) = 1;
2151                 }
2152
2153               new_bb = bb->prev_bb;
2154               new_gsi = gsi_start_bb (new_bb);
2155               gsi_remove (&i, false);
2156               gsi_insert_before (&new_gsi, stmt, GSI_NEW_STMT);
2157             }
2158           else
2159             {
2160               /* Release SSA definitions if we are in SSA.  Note that we
2161                  may be called when not in SSA.  For example,
2162                  final_cleanup calls this function via
2163                  cleanup_tree_cfg.  */
2164               if (gimple_in_ssa_p (cfun))
2165                 release_defs (stmt);
2166
2167               gsi_remove (&i, true);
2168             }
2169
2170           /* Don't warn for removed gotos.  Gotos are often removed due to
2171              jump threading, thus resulting in bogus warnings.  Not great,
2172              since this way we lose warnings for gotos in the original
2173              program that are indeed unreachable.  */
2174           if (gimple_code (stmt) != GIMPLE_GOTO
2175               && gimple_has_location (stmt)
2176               && !loc)
2177             loc = gimple_location (stmt);
2178         }
2179     }
2180
2181   /* If requested, give a warning that the first statement in the
2182      block is unreachable.  We walk statements backwards in the
2183      loop above, so the last statement we process is the first statement
2184      in the block.  */
2185   if (loc > BUILTINS_LOCATION && LOCATION_LINE (loc) > 0)
2186     warning (OPT_Wunreachable_code, "%Hwill never be executed", &loc);
2187
2188   remove_phi_nodes_and_edges_for_unreachable_block (bb);
2189   bb->il.gimple = NULL;
2190 }
2191
2192
2193 /* Given a basic block BB ending with COND_EXPR or SWITCH_EXPR, and a
2194    predicate VAL, return the edge that will be taken out of the block.
2195    If VAL does not match a unique edge, NULL is returned.  */
2196
2197 edge
2198 find_taken_edge (basic_block bb, tree val)
2199 {
2200   gimple stmt;
2201
2202   stmt = last_stmt (bb);
2203
2204   gcc_assert (stmt);
2205   gcc_assert (is_ctrl_stmt (stmt));
2206
2207   if (val == NULL)
2208     return NULL;
2209
2210   if (!is_gimple_min_invariant (val))
2211     return NULL;
2212
2213   if (gimple_code (stmt) == GIMPLE_COND)
2214     return find_taken_edge_cond_expr (bb, val);
2215
2216   if (gimple_code (stmt) == GIMPLE_SWITCH)
2217     return find_taken_edge_switch_expr (bb, val);
2218
2219   if (computed_goto_p (stmt))
2220     {
2221       /* Only optimize if the argument is a label, if the argument is
2222          not a label then we can not construct a proper CFG.
2223
2224          It may be the case that we only need to allow the LABEL_REF to
2225          appear inside an ADDR_EXPR, but we also allow the LABEL_REF to
2226          appear inside a LABEL_EXPR just to be safe.  */
2227       if ((TREE_CODE (val) == ADDR_EXPR || TREE_CODE (val) == LABEL_EXPR)
2228           && TREE_CODE (TREE_OPERAND (val, 0)) == LABEL_DECL)
2229         return find_taken_edge_computed_goto (bb, TREE_OPERAND (val, 0));
2230       return NULL;
2231     }
2232
2233   gcc_unreachable ();
2234 }
2235
2236 /* Given a constant value VAL and the entry block BB to a GOTO_EXPR
2237    statement, determine which of the outgoing edges will be taken out of the
2238    block.  Return NULL if either edge may be taken.  */
2239
2240 static edge
2241 find_taken_edge_computed_goto (basic_block bb, tree val)
2242 {
2243   basic_block dest;
2244   edge e = NULL;
2245
2246   dest = label_to_block (val);
2247   if (dest)
2248     {
2249       e = find_edge (bb, dest);
2250       gcc_assert (e != NULL);
2251     }
2252
2253   return e;
2254 }
2255
2256 /* Given a constant value VAL and the entry block BB to a COND_EXPR
2257    statement, determine which of the two edges will be taken out of the
2258    block.  Return NULL if either edge may be taken.  */
2259
2260 static edge
2261 find_taken_edge_cond_expr (basic_block bb, tree val)
2262 {
2263   edge true_edge, false_edge;
2264
2265   extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
2266
2267   gcc_assert (TREE_CODE (val) == INTEGER_CST);
2268   return (integer_zerop (val) ? false_edge : true_edge);
2269 }
2270
2271 /* Given an INTEGER_CST VAL and the entry block BB to a SWITCH_EXPR
2272    statement, determine which edge will be taken out of the block.  Return
2273    NULL if any edge may be taken.  */
2274
2275 static edge
2276 find_taken_edge_switch_expr (basic_block bb, tree val)
2277 {
2278   basic_block dest_bb;
2279   edge e;
2280   gimple switch_stmt;
2281   tree taken_case;
2282
2283   switch_stmt = last_stmt (bb);
2284   taken_case = find_case_label_for_value (switch_stmt, val);
2285   dest_bb = label_to_block (CASE_LABEL (taken_case));
2286
2287   e = find_edge (bb, dest_bb);
2288   gcc_assert (e);
2289   return e;
2290 }
2291
2292
2293 /* Return the CASE_LABEL_EXPR that SWITCH_STMT will take for VAL.
2294    We can make optimal use here of the fact that the case labels are
2295    sorted: We can do a binary search for a case matching VAL.  */
2296
2297 static tree
2298 find_case_label_for_value (gimple switch_stmt, tree val)
2299 {
2300   size_t low, high, n = gimple_switch_num_labels (switch_stmt);
2301   tree default_case = gimple_switch_default_label (switch_stmt);
2302
2303   for (low = 0, high = n; high - low > 1; )
2304     {
2305       size_t i = (high + low) / 2;
2306       tree t = gimple_switch_label (switch_stmt, i);
2307       int cmp;
2308
2309       /* Cache the result of comparing CASE_LOW and val.  */
2310       cmp = tree_int_cst_compare (CASE_LOW (t), val);
2311
2312       if (cmp > 0)
2313         high = i;
2314       else
2315         low = i;
2316
2317       if (CASE_HIGH (t) == NULL)
2318         {
2319           /* A singe-valued case label.  */
2320           if (cmp == 0)
2321             return t;
2322         }
2323       else
2324         {
2325           /* A case range.  We can only handle integer ranges.  */
2326           if (cmp <= 0 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
2327             return t;
2328         }
2329     }
2330
2331   return default_case;
2332 }
2333
2334
2335 /* Dump a basic block on stderr.  */
2336
2337 void
2338 gimple_debug_bb (basic_block bb)
2339 {
2340   gimple_dump_bb (bb, stderr, 0, TDF_VOPS|TDF_MEMSYMS);
2341 }
2342
2343
2344 /* Dump basic block with index N on stderr.  */
2345
2346 basic_block
2347 gimple_debug_bb_n (int n)
2348 {
2349   gimple_debug_bb (BASIC_BLOCK (n));
2350   return BASIC_BLOCK (n);
2351 }
2352
2353
2354 /* Dump the CFG on stderr.
2355
2356    FLAGS are the same used by the tree dumping functions
2357    (see TDF_* in tree-pass.h).  */
2358
2359 void
2360 gimple_debug_cfg (int flags)
2361 {
2362   gimple_dump_cfg (stderr, flags);
2363 }
2364
2365
2366 /* Dump the program showing basic block boundaries on the given FILE.
2367
2368    FLAGS are the same used by the tree dumping functions (see TDF_* in
2369    tree.h).  */
2370
2371 void
2372 gimple_dump_cfg (FILE *file, int flags)
2373 {
2374   if (flags & TDF_DETAILS)
2375     {
2376       const char *funcname
2377         = lang_hooks.decl_printable_name (current_function_decl, 2);
2378
2379       fputc ('\n', file);
2380       fprintf (file, ";; Function %s\n\n", funcname);
2381       fprintf (file, ";; \n%d basic blocks, %d edges, last basic block %d.\n\n",
2382                n_basic_blocks, n_edges, last_basic_block);
2383
2384       brief_dump_cfg (file);
2385       fprintf (file, "\n");
2386     }
2387
2388   if (flags & TDF_STATS)
2389     dump_cfg_stats (file);
2390
2391   dump_function_to_file (current_function_decl, file, flags | TDF_BLOCKS);
2392 }
2393
2394
2395 /* Dump CFG statistics on FILE.  */
2396
2397 void
2398 dump_cfg_stats (FILE *file)
2399 {
2400   static long max_num_merged_labels = 0;
2401   unsigned long size, total = 0;
2402   long num_edges;
2403   basic_block bb;
2404   const char * const fmt_str   = "%-30s%-13s%12s\n";
2405   const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
2406   const char * const fmt_str_2 = "%-30s%13ld%11lu%c\n";
2407   const char * const fmt_str_3 = "%-43s%11lu%c\n";
2408   const char *funcname
2409     = lang_hooks.decl_printable_name (current_function_decl, 2);
2410
2411
2412   fprintf (file, "\nCFG Statistics for %s\n\n", funcname);
2413
2414   fprintf (file, "---------------------------------------------------------\n");
2415   fprintf (file, fmt_str, "", "  Number of  ", "Memory");
2416   fprintf (file, fmt_str, "", "  instances  ", "used ");
2417   fprintf (file, "---------------------------------------------------------\n");
2418
2419   size = n_basic_blocks * sizeof (struct basic_block_def);
2420   total += size;
2421   fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks,
2422            SCALE (size), LABEL (size));
2423
2424   num_edges = 0;
2425   FOR_EACH_BB (bb)
2426     num_edges += EDGE_COUNT (bb->succs);
2427   size = num_edges * sizeof (struct edge_def);
2428   total += size;
2429   fprintf (file, fmt_str_2, "Edges", num_edges, SCALE (size), LABEL (size));
2430
2431   fprintf (file, "---------------------------------------------------------\n");
2432   fprintf (file, fmt_str_3, "Total memory used by CFG data", SCALE (total),
2433            LABEL (total));
2434   fprintf (file, "---------------------------------------------------------\n");
2435   fprintf (file, "\n");
2436
2437   if (cfg_stats.num_merged_labels > max_num_merged_labels)
2438     max_num_merged_labels = cfg_stats.num_merged_labels;
2439
2440   fprintf (file, "Coalesced label blocks: %ld (Max so far: %ld)\n",
2441            cfg_stats.num_merged_labels, max_num_merged_labels);
2442
2443   fprintf (file, "\n");
2444 }
2445
2446
2447 /* Dump CFG statistics on stderr.  Keep extern so that it's always
2448    linked in the final executable.  */
2449
2450 void
2451 debug_cfg_stats (void)
2452 {
2453   dump_cfg_stats (stderr);
2454 }
2455
2456
2457 /* Dump the flowgraph to a .vcg FILE.  */
2458
2459 static void
2460 gimple_cfg2vcg (FILE *file)
2461 {
2462   edge e;
2463   edge_iterator ei;
2464   basic_block bb;
2465   const char *funcname
2466     = lang_hooks.decl_printable_name (current_function_decl, 2);
2467
2468   /* Write the file header.  */
2469   fprintf (file, "graph: { title: \"%s\"\n", funcname);
2470   fprintf (file, "node: { title: \"ENTRY\" label: \"ENTRY\" }\n");
2471   fprintf (file, "node: { title: \"EXIT\" label: \"EXIT\" }\n");
2472
2473   /* Write blocks and edges.  */
2474   FOR_EACH_EDGE (e, ei, ENTRY_BLOCK_PTR->succs)
2475     {
2476       fprintf (file, "edge: { sourcename: \"ENTRY\" targetname: \"%d\"",
2477                e->dest->index);
2478
2479       if (e->flags & EDGE_FAKE)
2480         fprintf (file, " linestyle: dotted priority: 10");
2481       else
2482         fprintf (file, " linestyle: solid priority: 100");
2483
2484       fprintf (file, " }\n");
2485     }
2486   fputc ('\n', file);
2487
2488   FOR_EACH_BB (bb)
2489     {
2490       enum gimple_code head_code, end_code;
2491       const char *head_name, *end_name;
2492       int head_line = 0;
2493       int end_line = 0;
2494       gimple first = first_stmt (bb);
2495       gimple last = last_stmt (bb);
2496
2497       if (first)
2498         {
2499           head_code = gimple_code (first);
2500           head_name = gimple_code_name[head_code];
2501           head_line = get_lineno (first);
2502         }
2503       else
2504         head_name = "no-statement";
2505
2506       if (last)
2507         {
2508           end_code = gimple_code (last);
2509           end_name = gimple_code_name[end_code];
2510           end_line = get_lineno (last);
2511         }
2512       else
2513         end_name = "no-statement";
2514
2515       fprintf (file, "node: { title: \"%d\" label: \"#%d\\n%s (%d)\\n%s (%d)\"}\n",
2516                bb->index, bb->index, head_name, head_line, end_name,
2517                end_line);
2518
2519       FOR_EACH_EDGE (e, ei, bb->succs)
2520         {
2521           if (e->dest == EXIT_BLOCK_PTR)
2522             fprintf (file, "edge: { sourcename: \"%d\" targetname: \"EXIT\"", bb->index);
2523           else
2524             fprintf (file, "edge: { sourcename: \"%d\" targetname: \"%d\"", bb->index, e->dest->index);
2525
2526           if (e->flags & EDGE_FAKE)
2527             fprintf (file, " priority: 10 linestyle: dotted");
2528           else
2529             fprintf (file, " priority: 100 linestyle: solid");
2530
2531           fprintf (file, " }\n");
2532         }
2533
2534       if (bb->next_bb != EXIT_BLOCK_PTR)
2535         fputc ('\n', file);
2536     }
2537
2538   fputs ("}\n\n", file);
2539 }
2540
2541
2542
2543 /*---------------------------------------------------------------------------
2544                              Miscellaneous helpers
2545 ---------------------------------------------------------------------------*/
2546
2547 /* Return true if T represents a stmt that always transfers control.  */
2548
2549 bool
2550 is_ctrl_stmt (gimple t)
2551 {
2552   return gimple_code (t) == GIMPLE_COND
2553     || gimple_code (t) == GIMPLE_SWITCH
2554     || gimple_code (t) == GIMPLE_GOTO
2555     || gimple_code (t) == GIMPLE_RETURN
2556     || gimple_code (t) == GIMPLE_RESX;
2557 }
2558
2559
2560 /* Return true if T is a statement that may alter the flow of control
2561    (e.g., a call to a non-returning function).  */
2562
2563 bool
2564 is_ctrl_altering_stmt (gimple t)
2565 {
2566   gcc_assert (t);
2567
2568   if (is_gimple_call (t))
2569     {
2570       int flags = gimple_call_flags (t);
2571
2572       /* A non-pure/const call alters flow control if the current
2573          function has nonlocal labels.  */
2574       if (!(flags & (ECF_CONST | ECF_PURE))
2575           && cfun->has_nonlocal_label)
2576         return true;
2577
2578       /* A call also alters control flow if it does not return.  */
2579       if (gimple_call_flags (t) & ECF_NORETURN)
2580         return true;
2581     }
2582
2583   /* OpenMP directives alter control flow.  */
2584   if (is_gimple_omp (t))
2585     return true;
2586
2587   /* If a statement can throw, it alters control flow.  */
2588   return stmt_can_throw_internal (t);
2589 }
2590
2591
2592 /* Return true if T is a simple local goto.  */
2593
2594 bool
2595 simple_goto_p (gimple t)
2596 {
2597   return (gimple_code (t) == GIMPLE_GOTO
2598           && TREE_CODE (gimple_goto_dest (t)) == LABEL_DECL);
2599 }
2600
2601
2602 /* Return true if T can make an abnormal transfer of control flow.
2603    Transfers of control flow associated with EH are excluded.  */
2604
2605 bool
2606 stmt_can_make_abnormal_goto (gimple t)
2607 {
2608   if (computed_goto_p (t))
2609     return true;
2610   if (is_gimple_call (t))
2611     return gimple_has_side_effects (t) && cfun->has_nonlocal_label;
2612   return false;
2613 }
2614
2615
2616 /* Return true if STMT should start a new basic block.  PREV_STMT is
2617    the statement preceding STMT.  It is used when STMT is a label or a
2618    case label.  Labels should only start a new basic block if their
2619    previous statement wasn't a label.  Otherwise, sequence of labels
2620    would generate unnecessary basic blocks that only contain a single
2621    label.  */
2622
2623 static inline bool
2624 stmt_starts_bb_p (gimple stmt, gimple prev_stmt)
2625 {
2626   if (stmt == NULL)
2627     return false;
2628
2629   /* Labels start a new basic block only if the preceding statement
2630      wasn't a label of the same type.  This prevents the creation of
2631      consecutive blocks that have nothing but a single label.  */
2632   if (gimple_code (stmt) == GIMPLE_LABEL)
2633     {
2634       /* Nonlocal and computed GOTO targets always start a new block.  */
2635       if (DECL_NONLOCAL (gimple_label_label (stmt))
2636           || FORCED_LABEL (gimple_label_label (stmt)))
2637         return true;
2638
2639       if (prev_stmt && gimple_code (prev_stmt) == GIMPLE_LABEL)
2640         {
2641           if (DECL_NONLOCAL (gimple_label_label (prev_stmt)))
2642             return true;
2643
2644           cfg_stats.num_merged_labels++;
2645           return false;
2646         }
2647       else
2648         return true;
2649     }
2650
2651   return false;
2652 }
2653
2654
2655 /* Return true if T should end a basic block.  */
2656
2657 bool
2658 stmt_ends_bb_p (gimple t)
2659 {
2660   return is_ctrl_stmt (t) || is_ctrl_altering_stmt (t);
2661 }
2662
2663 /* Remove block annotations and other data structures.  */
2664
2665 void
2666 delete_tree_cfg_annotations (void)
2667 {
2668   label_to_block_map = NULL;
2669 }
2670
2671
2672 /* Return the first statement in basic block BB.  */
2673
2674 gimple
2675 first_stmt (basic_block bb)
2676 {
2677   gimple_stmt_iterator i = gsi_start_bb (bb);
2678   return !gsi_end_p (i) ? gsi_stmt (i) : NULL;
2679 }
2680
2681 /* Return the last statement in basic block BB.  */
2682
2683 gimple
2684 last_stmt (basic_block bb)
2685 {
2686   gimple_stmt_iterator b = gsi_last_bb (bb);
2687   return !gsi_end_p (b) ? gsi_stmt (b) : NULL;
2688 }
2689
2690 /* Return the last statement of an otherwise empty block.  Return NULL
2691    if the block is totally empty, or if it contains more than one
2692    statement.  */
2693
2694 gimple
2695 last_and_only_stmt (basic_block bb)
2696 {
2697   gimple_stmt_iterator i = gsi_last_bb (bb);
2698   gimple last, prev;
2699
2700   if (gsi_end_p (i))
2701     return NULL;
2702
2703   last = gsi_stmt (i);
2704   gsi_prev (&i);
2705   if (gsi_end_p (i))
2706     return last;
2707
2708   /* Empty statements should no longer appear in the instruction stream.
2709      Everything that might have appeared before should be deleted by
2710      remove_useless_stmts, and the optimizers should just gsi_remove
2711      instead of smashing with build_empty_stmt.
2712
2713      Thus the only thing that should appear here in a block containing
2714      one executable statement is a label.  */
2715   prev = gsi_stmt (i);
2716   if (gimple_code (prev) == GIMPLE_LABEL)
2717     return last;
2718   else
2719     return NULL;
2720 }
2721
2722 /* Reinstall those PHI arguments queued in OLD_EDGE to NEW_EDGE.  */
2723
2724 static void
2725 reinstall_phi_args (edge new_edge, edge old_edge)
2726 {
2727   edge_var_map_vector v;
2728   edge_var_map *vm;
2729   int i;
2730   gimple_stmt_iterator phis;
2731   
2732   v = redirect_edge_var_map_vector (old_edge);
2733   if (!v)
2734     return;
2735   
2736   for (i = 0, phis = gsi_start_phis (new_edge->dest);
2737        VEC_iterate (edge_var_map, v, i, vm) && !gsi_end_p (phis);
2738        i++, gsi_next (&phis))
2739     {
2740       gimple phi = gsi_stmt (phis);
2741       tree result = redirect_edge_var_map_result (vm);
2742       tree arg = redirect_edge_var_map_def (vm);
2743  
2744       gcc_assert (result == gimple_phi_result (phi));
2745   
2746       add_phi_arg (phi, arg, new_edge);
2747     }
2748   
2749   redirect_edge_var_map_clear (old_edge);
2750 }
2751
2752 /* Returns the basic block after which the new basic block created
2753    by splitting edge EDGE_IN should be placed.  Tries to keep the new block
2754    near its "logical" location.  This is of most help to humans looking
2755    at debugging dumps.  */
2756
2757 static basic_block
2758 split_edge_bb_loc (edge edge_in)
2759 {
2760   basic_block dest = edge_in->dest;
2761
2762   if (dest->prev_bb && find_edge (dest->prev_bb, dest))
2763     return edge_in->src;
2764   else
2765     return dest->prev_bb;
2766 }
2767
2768 /* Split a (typically critical) edge EDGE_IN.  Return the new block.
2769    Abort on abnormal edges.  */
2770
2771 static basic_block
2772 gimple_split_edge (edge edge_in)
2773 {
2774   basic_block new_bb, after_bb, dest;
2775   edge new_edge, e;
2776
2777   /* Abnormal edges cannot be split.  */
2778   gcc_assert (!(edge_in->flags & EDGE_ABNORMAL));
2779
2780   dest = edge_in->dest;
2781
2782   after_bb = split_edge_bb_loc (edge_in);
2783
2784   new_bb = create_empty_bb (after_bb);
2785   new_bb->frequency = EDGE_FREQUENCY (edge_in);
2786   new_bb->count = edge_in->count;
2787   new_edge = make_edge (new_bb, dest, EDGE_FALLTHRU);
2788   new_edge->probability = REG_BR_PROB_BASE;
2789   new_edge->count = edge_in->count;
2790
2791   e = redirect_edge_and_branch (edge_in, new_bb);
2792   gcc_assert (e == edge_in);
2793   reinstall_phi_args (new_edge, e);
2794
2795   return new_bb;
2796 }
2797
2798 /* Callback for walk_tree, check that all elements with address taken are
2799    properly noticed as such.  The DATA is an int* that is 1 if TP was seen
2800    inside a PHI node.  */
2801
2802 static tree
2803 verify_expr (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
2804 {
2805   tree t = *tp, x;
2806
2807   if (TYPE_P (t))
2808     *walk_subtrees = 0;
2809
2810   /* Check operand N for being valid GIMPLE and give error MSG if not.  */
2811 #define CHECK_OP(N, MSG) \
2812   do { if (!is_gimple_val (TREE_OPERAND (t, N)))                \
2813        { error (MSG); return TREE_OPERAND (t, N); }} while (0)
2814
2815   switch (TREE_CODE (t))
2816     {
2817     case SSA_NAME:
2818       if (SSA_NAME_IN_FREE_LIST (t))
2819         {
2820           error ("SSA name in freelist but still referenced");
2821           return *tp;
2822         }
2823       break;
2824
2825     case INDIRECT_REF:
2826       x = TREE_OPERAND (t, 0);
2827       if (!is_gimple_reg (x) && !is_gimple_min_invariant (x))
2828         {
2829           error ("Indirect reference's operand is not a register or a constant.");
2830           return x;
2831         }
2832       break;
2833
2834     case ASSERT_EXPR:
2835       x = fold (ASSERT_EXPR_COND (t));
2836       if (x == boolean_false_node)
2837         {
2838           error ("ASSERT_EXPR with an always-false condition");
2839           return *tp;
2840         }
2841       break;
2842
2843     case MODIFY_EXPR:
2844       error ("MODIFY_EXPR not expected while having tuples.");
2845       return *tp;
2846
2847     case ADDR_EXPR:
2848       {
2849         bool old_constant;
2850         bool old_side_effects;
2851         bool new_constant;
2852         bool new_side_effects;
2853
2854         gcc_assert (is_gimple_address (t));
2855
2856         old_constant = TREE_CONSTANT (t);
2857         old_side_effects = TREE_SIDE_EFFECTS (t);
2858
2859         recompute_tree_invariant_for_addr_expr (t);
2860         new_side_effects = TREE_SIDE_EFFECTS (t);
2861         new_constant = TREE_CONSTANT (t);
2862
2863         if (old_constant != new_constant)
2864           {
2865             error ("constant not recomputed when ADDR_EXPR changed");
2866             return t;
2867           }
2868         if (old_side_effects != new_side_effects)
2869           {
2870             error ("side effects not recomputed when ADDR_EXPR changed");
2871             return t;
2872           }
2873
2874         /* Skip any references (they will be checked when we recurse down the
2875            tree) and ensure that any variable used as a prefix is marked
2876            addressable.  */
2877         for (x = TREE_OPERAND (t, 0);
2878              handled_component_p (x);
2879              x = TREE_OPERAND (x, 0))
2880           ;
2881
2882         if (!(TREE_CODE (x) == VAR_DECL
2883               || TREE_CODE (x) == PARM_DECL
2884               || TREE_CODE (x) == RESULT_DECL))
2885           return NULL;
2886         if (!TREE_ADDRESSABLE (x))
2887           {
2888             error ("address taken, but ADDRESSABLE bit not set");
2889             return x;
2890           }
2891         if (DECL_GIMPLE_REG_P (x))
2892           {
2893             error ("DECL_GIMPLE_REG_P set on a variable with address taken");
2894             return x;
2895           }
2896
2897         break;
2898       }
2899
2900     case COND_EXPR:
2901       x = COND_EXPR_COND (t);
2902       if (!INTEGRAL_TYPE_P (TREE_TYPE (x)))
2903         {
2904           error ("non-integral used in condition");
2905           return x;
2906         }
2907       if (!is_gimple_condexpr (x))
2908         {
2909           error ("invalid conditional operand");
2910           return x;
2911         }
2912       break;
2913
2914     case NON_LVALUE_EXPR:
2915         gcc_unreachable ();
2916
2917     CASE_CONVERT:
2918     case FIX_TRUNC_EXPR:
2919     case FLOAT_EXPR:
2920     case NEGATE_EXPR:
2921     case ABS_EXPR:
2922     case BIT_NOT_EXPR:
2923     case TRUTH_NOT_EXPR:
2924       CHECK_OP (0, "invalid operand to unary operator");
2925       break;
2926
2927     case REALPART_EXPR:
2928     case IMAGPART_EXPR:
2929     case COMPONENT_REF:
2930     case ARRAY_REF:
2931     case ARRAY_RANGE_REF:
2932     case BIT_FIELD_REF:
2933     case VIEW_CONVERT_EXPR:
2934       /* We have a nest of references.  Verify that each of the operands
2935          that determine where to reference is either a constant or a variable,
2936          verify that the base is valid, and then show we've already checked
2937          the subtrees.  */
2938       while (handled_component_p (t))
2939         {
2940           if (TREE_CODE (t) == COMPONENT_REF && TREE_OPERAND (t, 2))
2941             CHECK_OP (2, "invalid COMPONENT_REF offset operator");
2942           else if (TREE_CODE (t) == ARRAY_REF
2943                    || TREE_CODE (t) == ARRAY_RANGE_REF)
2944             {
2945               CHECK_OP (1, "invalid array index");
2946               if (TREE_OPERAND (t, 2))
2947                 CHECK_OP (2, "invalid array lower bound");
2948               if (TREE_OPERAND (t, 3))
2949                 CHECK_OP (3, "invalid array stride");
2950             }
2951           else if (TREE_CODE (t) == BIT_FIELD_REF)
2952             {
2953               if (!host_integerp (TREE_OPERAND (t, 1), 1)
2954                   || !host_integerp (TREE_OPERAND (t, 2), 1))
2955                 {
2956                   error ("invalid position or size operand to BIT_FIELD_REF");
2957                   return t;
2958                 }
2959               else if (INTEGRAL_TYPE_P (TREE_TYPE (t))
2960                        && (TYPE_PRECISION (TREE_TYPE (t))
2961                            != TREE_INT_CST_LOW (TREE_OPERAND (t, 1))))
2962                 {
2963                   error ("integral result type precision does not match "
2964                          "field size of BIT_FIELD_REF");
2965                   return t;
2966                 }
2967               if (!INTEGRAL_TYPE_P (TREE_TYPE (t))
2968                   && (GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (t)))
2969                       != TREE_INT_CST_LOW (TREE_OPERAND (t, 1))))
2970                 {
2971                   error ("mode precision of non-integral result does not "
2972                          "match field size of BIT_FIELD_REF");
2973                   return t;
2974                 }
2975             }
2976
2977           t = TREE_OPERAND (t, 0);
2978         }
2979
2980       if (!is_gimple_min_invariant (t) && !is_gimple_lvalue (t))
2981         {
2982           error ("invalid reference prefix");
2983           return t;
2984         }
2985       *walk_subtrees = 0;
2986       break;
2987     case PLUS_EXPR:
2988     case MINUS_EXPR:
2989       /* PLUS_EXPR and MINUS_EXPR don't work on pointers, they should be done using
2990          POINTER_PLUS_EXPR. */
2991       if (POINTER_TYPE_P (TREE_TYPE (t)))
2992         {
2993           error ("invalid operand to plus/minus, type is a pointer");
2994           return t;
2995         }
2996       CHECK_OP (0, "invalid operand to binary operator");
2997       CHECK_OP (1, "invalid operand to binary operator");
2998       break;
2999
3000     case POINTER_PLUS_EXPR:
3001       /* Check to make sure the first operand is a pointer or reference type. */
3002       if (!POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (t, 0))))
3003         {
3004           error ("invalid operand to pointer plus, first operand is not a pointer");
3005           return t;
3006         }
3007       /* Check to make sure the second operand is an integer with type of
3008          sizetype.  */
3009       if (!useless_type_conversion_p (sizetype,
3010                                      TREE_TYPE (TREE_OPERAND (t, 1))))
3011         {
3012           error ("invalid operand to pointer plus, second operand is not an "
3013                  "integer with type of sizetype.");
3014           return t;
3015         }
3016       /* FALLTHROUGH */
3017     case LT_EXPR:
3018     case LE_EXPR:
3019     case GT_EXPR:
3020     case GE_EXPR:
3021     case EQ_EXPR:
3022     case NE_EXPR:
3023     case UNORDERED_EXPR:
3024     case ORDERED_EXPR:
3025     case UNLT_EXPR:
3026     case UNLE_EXPR:
3027     case UNGT_EXPR:
3028     case UNGE_EXPR:
3029     case UNEQ_EXPR:
3030     case LTGT_EXPR:
3031     case MULT_EXPR:
3032     case TRUNC_DIV_EXPR:
3033     case CEIL_DIV_EXPR:
3034     case FLOOR_DIV_EXPR:
3035     case ROUND_DIV_EXPR:
3036     case TRUNC_MOD_EXPR:
3037     case CEIL_MOD_EXPR:
3038     case FLOOR_MOD_EXPR:
3039     case ROUND_MOD_EXPR:
3040     case RDIV_EXPR:
3041     case EXACT_DIV_EXPR:
3042     case MIN_EXPR:
3043     case MAX_EXPR:
3044     case LSHIFT_EXPR:
3045     case RSHIFT_EXPR:
3046     case LROTATE_EXPR:
3047     case RROTATE_EXPR:
3048     case BIT_IOR_EXPR:
3049     case BIT_XOR_EXPR:
3050     case BIT_AND_EXPR:
3051       CHECK_OP (0, "invalid operand to binary operator");
3052       CHECK_OP (1, "invalid operand to binary operator");
3053       break;
3054
3055     case CONSTRUCTOR:
3056       if (TREE_CONSTANT (t) && TREE_CODE (TREE_TYPE (t)) == VECTOR_TYPE)
3057         *walk_subtrees = 0;
3058       break;
3059
3060     default:
3061       break;
3062     }
3063   return NULL;
3064
3065 #undef CHECK_OP
3066 }
3067
3068
3069 /* Verify if EXPR is either a GIMPLE ID or a GIMPLE indirect reference.
3070    Returns true if there is an error, otherwise false.  */
3071
3072 static bool
3073 verify_types_in_gimple_min_lval (tree expr)
3074 {
3075   tree op;
3076
3077   if (is_gimple_id (expr))
3078     return false;
3079
3080   if (!INDIRECT_REF_P (expr)
3081       && TREE_CODE (expr) != TARGET_MEM_REF)
3082     {
3083       error ("invalid expression for min lvalue");
3084       return true;
3085     }
3086
3087   /* TARGET_MEM_REFs are strange beasts.  */
3088   if (TREE_CODE (expr) == TARGET_MEM_REF)
3089     return false;
3090
3091   op = TREE_OPERAND (expr, 0);
3092   if (!is_gimple_val (op))
3093     {
3094       error ("invalid operand in indirect reference");
3095       debug_generic_stmt (op);
3096       return true;
3097     }
3098   if (!useless_type_conversion_p (TREE_TYPE (expr),
3099                                   TREE_TYPE (TREE_TYPE (op))))
3100     {
3101       error ("type mismatch in indirect reference");
3102       debug_generic_stmt (TREE_TYPE (expr));
3103       debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3104       return true;
3105     }
3106
3107   return false;
3108 }
3109
3110 /* Verify if EXPR is a valid GIMPLE reference expression.  Returns true
3111    if there is an error, otherwise false.  */
3112
3113 static bool
3114 verify_types_in_gimple_reference (tree expr)
3115 {
3116   while (handled_component_p (expr))
3117     {
3118       tree op = TREE_OPERAND (expr, 0);
3119
3120       if (TREE_CODE (expr) == ARRAY_REF
3121           || TREE_CODE (expr) == ARRAY_RANGE_REF)
3122         {
3123           if (!is_gimple_val (TREE_OPERAND (expr, 1))
3124               || (TREE_OPERAND (expr, 2)
3125                   && !is_gimple_val (TREE_OPERAND (expr, 2)))
3126               || (TREE_OPERAND (expr, 3)
3127                   && !is_gimple_val (TREE_OPERAND (expr, 3))))
3128             {
3129               error ("invalid operands to array reference");
3130               debug_generic_stmt (expr);
3131               return true;
3132             }
3133         }
3134
3135       /* Verify if the reference array element types are compatible.  */
3136       if (TREE_CODE (expr) == ARRAY_REF
3137           && !useless_type_conversion_p (TREE_TYPE (expr),
3138                                          TREE_TYPE (TREE_TYPE (op))))
3139         {
3140           error ("type mismatch in array reference");
3141           debug_generic_stmt (TREE_TYPE (expr));
3142           debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3143           return true;
3144         }
3145       if (TREE_CODE (expr) == ARRAY_RANGE_REF
3146           && !useless_type_conversion_p (TREE_TYPE (TREE_TYPE (expr)),
3147                                          TREE_TYPE (TREE_TYPE (op))))
3148         {
3149           error ("type mismatch in array range reference");
3150           debug_generic_stmt (TREE_TYPE (TREE_TYPE (expr)));
3151           debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3152           return true;
3153         }
3154
3155       if ((TREE_CODE (expr) == REALPART_EXPR
3156            || TREE_CODE (expr) == IMAGPART_EXPR)
3157           && !useless_type_conversion_p (TREE_TYPE (expr),
3158                                          TREE_TYPE (TREE_TYPE (op))))
3159         {
3160           error ("type mismatch in real/imagpart reference");
3161           debug_generic_stmt (TREE_TYPE (expr));
3162           debug_generic_stmt (TREE_TYPE (TREE_TYPE (op)));
3163           return true;
3164         }
3165
3166       if (TREE_CODE (expr) == COMPONENT_REF
3167           && !useless_type_conversion_p (TREE_TYPE (expr),
3168                                          TREE_TYPE (TREE_OPERAND (expr, 1))))
3169         {
3170           error ("type mismatch in component reference");
3171           debug_generic_stmt (TREE_TYPE (expr));
3172           debug_generic_stmt (TREE_TYPE (TREE_OPERAND (expr, 1)));
3173           return true;
3174         }
3175
3176       /* For VIEW_CONVERT_EXPRs which are allowed here, too, there
3177          is nothing to verify.  Gross mismatches at most invoke
3178          undefined behavior.  */
3179       if (TREE_CODE (expr) == VIEW_CONVERT_EXPR
3180           && !handled_component_p (op))
3181         return false;
3182
3183       expr = op;
3184     }
3185
3186   return verify_types_in_gimple_min_lval (expr);
3187 }
3188
3189 /* Returns true if there is one pointer type in TYPE_POINTER_TO (SRC_OBJ)
3190    list of pointer-to types that is trivially convertible to DEST.  */
3191
3192 static bool
3193 one_pointer_to_useless_type_conversion_p (tree dest, tree src_obj)
3194 {
3195   tree src;
3196
3197   if (!TYPE_POINTER_TO (src_obj))
3198     return true;
3199
3200   for (src = TYPE_POINTER_TO (src_obj); src; src = TYPE_NEXT_PTR_TO (src))
3201     if (useless_type_conversion_p (dest, src))
3202       return true;
3203
3204   return false;
3205 }
3206
3207 /* Return true if TYPE1 is a fixed-point type and if conversions to and
3208    from TYPE2 can be handled by FIXED_CONVERT_EXPR.  */
3209
3210 static bool
3211 valid_fixed_convert_types_p (tree type1, tree type2)
3212 {
3213   return (FIXED_POINT_TYPE_P (type1)
3214           && (INTEGRAL_TYPE_P (type2)
3215               || SCALAR_FLOAT_TYPE_P (type2)
3216               || FIXED_POINT_TYPE_P (type2)));
3217 }
3218
3219 /* Verify the contents of a GIMPLE_CALL STMT.  Returns true when there
3220    is a problem, otherwise false.  */
3221
3222 static bool
3223 verify_gimple_call (gimple stmt)
3224 {
3225   tree fn = gimple_call_fn (stmt);
3226   tree fntype;
3227
3228   if (!POINTER_TYPE_P (TREE_TYPE  (fn))
3229       || (TREE_CODE (TREE_TYPE (TREE_TYPE (fn))) != FUNCTION_TYPE
3230           && TREE_CODE (TREE_TYPE (TREE_TYPE (fn))) != METHOD_TYPE))
3231     {
3232       error ("non-function in gimple call");
3233       return true;
3234     }
3235
3236   if (gimple_call_lhs (stmt)
3237       && !is_gimple_lvalue (gimple_call_lhs (stmt)))
3238     {
3239       error ("invalid LHS in gimple call");
3240       return true;
3241     }
3242
3243   fntype = TREE_TYPE (TREE_TYPE (fn));
3244   if (gimple_call_lhs (stmt)
3245       && !useless_type_conversion_p (TREE_TYPE (gimple_call_lhs (stmt)),
3246                                      TREE_TYPE (fntype))
3247       /* ???  At least C++ misses conversions at assignments from
3248          void * call results.
3249          ???  Java is completely off.  Especially with functions
3250          returning java.lang.Object.
3251          For now simply allow arbitrary pointer type conversions.  */
3252       && !(POINTER_TYPE_P (TREE_TYPE (gimple_call_lhs (stmt)))
3253            && POINTER_TYPE_P (TREE_TYPE (fntype))))
3254     {
3255       error ("invalid conversion in gimple call");
3256       debug_generic_stmt (TREE_TYPE (gimple_call_lhs (stmt)));
3257       debug_generic_stmt (TREE_TYPE (fntype));
3258       return true;
3259     }
3260
3261   /* ???  The C frontend passes unpromoted arguments in case it
3262      didn't see a function declaration before the call.  So for now
3263      leave the call arguments unverified.  Once we gimplify
3264      unit-at-a-time we have a chance to fix this.  */
3265
3266   return false;
3267 }
3268
3269 /* Verifies the gimple comparison with the result type TYPE and
3270    the operands OP0 and OP1.  */
3271
3272 static bool
3273 verify_gimple_comparison (tree type, tree op0, tree op1)
3274 {
3275   tree op0_type = TREE_TYPE (op0);
3276   tree op1_type = TREE_TYPE (op1);
3277
3278   if (!is_gimple_val (op0) || !is_gimple_val (op1))
3279     {
3280       error ("invalid operands in gimple comparison");
3281       return true;
3282     }
3283
3284   /* For comparisons we do not have the operations type as the
3285      effective type the comparison is carried out in.  Instead
3286      we require that either the first operand is trivially
3287      convertible into the second, or the other way around.
3288      The resulting type of a comparison may be any integral type.
3289      Because we special-case pointers to void we allow
3290      comparisons of pointers with the same mode as well.  */
3291   if ((!useless_type_conversion_p (op0_type, op1_type)
3292        && !useless_type_conversion_p (op1_type, op0_type)
3293        && (!POINTER_TYPE_P (op0_type)
3294            || !POINTER_TYPE_P (op1_type)
3295            || TYPE_MODE (op0_type) != TYPE_MODE (op1_type)))
3296       || !INTEGRAL_TYPE_P (type))
3297     {
3298       error ("type mismatch in comparison expression");
3299       debug_generic_expr (type);
3300       debug_generic_expr (op0_type);
3301       debug_generic_expr (op1_type);
3302       return true;
3303     }
3304
3305   return false;
3306 }
3307
3308 /* Verify a gimple assignment statement STMT with an unary rhs.
3309    Returns true if anything is wrong.  */
3310
3311 static bool
3312 verify_gimple_assign_unary (gimple stmt)
3313 {
3314   enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3315   tree lhs = gimple_assign_lhs (stmt);
3316   tree lhs_type = TREE_TYPE (lhs);
3317   tree rhs1 = gimple_assign_rhs1 (stmt);
3318   tree rhs1_type = TREE_TYPE (rhs1);
3319
3320   if (!is_gimple_reg (lhs)
3321       && !(optimize == 0
3322            && TREE_CODE (lhs_type) == COMPLEX_TYPE))
3323     {
3324       error ("non-register as LHS of unary operation");
3325       return true;
3326     }
3327
3328   if (!is_gimple_val (rhs1))
3329     {
3330       error ("invalid operand in unary operation");
3331       return true;
3332     }
3333
3334   /* First handle conversions.  */
3335   switch (rhs_code)
3336     {
3337     CASE_CONVERT:
3338       {
3339         /* Allow conversions between integral types and pointers only if
3340            there is no sign or zero extension involved.
3341            For targets were the precision of sizetype doesn't match that
3342            of pointers we need to allow arbitrary conversions from and
3343            to sizetype.  */
3344         if ((POINTER_TYPE_P (lhs_type)
3345              && INTEGRAL_TYPE_P (rhs1_type)
3346              && (TYPE_PRECISION (lhs_type) >= TYPE_PRECISION (rhs1_type)
3347                  || rhs1_type == sizetype))
3348             || (POINTER_TYPE_P (rhs1_type)
3349                 && INTEGRAL_TYPE_P (lhs_type)
3350                 && (TYPE_PRECISION (rhs1_type) >= TYPE_PRECISION (lhs_type)
3351                     || lhs_type == sizetype)))
3352           return false;
3353
3354         /* Allow conversion from integer to offset type and vice versa.  */
3355         if ((TREE_CODE (lhs_type) == OFFSET_TYPE
3356              && TREE_CODE (rhs1_type) == INTEGER_TYPE)
3357             || (TREE_CODE (lhs_type) == INTEGER_TYPE
3358                 && TREE_CODE (rhs1_type) == OFFSET_TYPE))
3359           return false;
3360
3361         /* Otherwise assert we are converting between types of the
3362            same kind.  */
3363         if (INTEGRAL_TYPE_P (lhs_type) != INTEGRAL_TYPE_P (rhs1_type))
3364           {
3365             error ("invalid types in nop conversion");
3366             debug_generic_expr (lhs_type);
3367             debug_generic_expr (rhs1_type);
3368             return true;
3369           }
3370
3371         return false;
3372       }
3373
3374     case FIXED_CONVERT_EXPR:
3375       {
3376         if (!valid_fixed_convert_types_p (lhs_type, rhs1_type)
3377             && !valid_fixed_convert_types_p (rhs1_type, lhs_type))
3378           {
3379             error ("invalid types in fixed-point conversion");
3380             debug_generic_expr (lhs_type);
3381             debug_generic_expr (rhs1_type);
3382             return true;
3383           }
3384
3385         return false;
3386       }
3387
3388     case FLOAT_EXPR:
3389       {
3390         if (!INTEGRAL_TYPE_P (rhs1_type) || !SCALAR_FLOAT_TYPE_P (lhs_type))
3391           {
3392             error ("invalid types in conversion to floating point");
3393             debug_generic_expr (lhs_type);
3394             debug_generic_expr (rhs1_type);
3395             return true;
3396           }
3397
3398         return false;
3399       }
3400
3401     case FIX_TRUNC_EXPR:
3402       {
3403         if (!INTEGRAL_TYPE_P (lhs_type) || !SCALAR_FLOAT_TYPE_P (rhs1_type))
3404           {
3405             error ("invalid types in conversion to integer");
3406             debug_generic_expr (lhs_type);
3407             debug_generic_expr (rhs1_type);
3408             return true;
3409           }
3410
3411         return false;
3412       }
3413
3414     case VEC_UNPACK_HI_EXPR:
3415     case VEC_UNPACK_LO_EXPR:
3416     case REDUC_MAX_EXPR:
3417     case REDUC_MIN_EXPR:
3418     case REDUC_PLUS_EXPR:
3419     case VEC_UNPACK_FLOAT_HI_EXPR:
3420     case VEC_UNPACK_FLOAT_LO_EXPR:
3421       /* FIXME.  */
3422       return false;
3423
3424     case TRUTH_NOT_EXPR:
3425     case NEGATE_EXPR:
3426     case ABS_EXPR:
3427     case BIT_NOT_EXPR:
3428     case PAREN_EXPR:
3429     case NON_LVALUE_EXPR:
3430     case CONJ_EXPR:
3431       break;
3432
3433     default:
3434       gcc_unreachable ();
3435     }
3436
3437   /* For the remaining codes assert there is no conversion involved.  */
3438   if (!useless_type_conversion_p (lhs_type, rhs1_type))
3439     {
3440       error ("non-trivial conversion in unary operation");
3441       debug_generic_expr (lhs_type);
3442       debug_generic_expr (rhs1_type);
3443       return true;
3444     }
3445
3446   return false;
3447 }
3448
3449 /* Verify a gimple assignment statement STMT with a binary rhs.
3450    Returns true if anything is wrong.  */
3451
3452 static bool
3453 verify_gimple_assign_binary (gimple stmt)
3454 {
3455   enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3456   tree lhs = gimple_assign_lhs (stmt);
3457   tree lhs_type = TREE_TYPE (lhs);
3458   tree rhs1 = gimple_assign_rhs1 (stmt);
3459   tree rhs1_type = TREE_TYPE (rhs1);
3460   tree rhs2 = gimple_assign_rhs2 (stmt);
3461   tree rhs2_type = TREE_TYPE (rhs2);
3462
3463   if (!is_gimple_reg (lhs)
3464       && !(optimize == 0
3465            && TREE_CODE (lhs_type) == COMPLEX_TYPE))
3466     {
3467       error ("non-register as LHS of binary operation");
3468       return true;
3469     }
3470
3471   if (!is_gimple_val (rhs1)
3472       || !is_gimple_val (rhs2))
3473     {
3474       error ("invalid operands in binary operation");
3475       return true;
3476     }
3477
3478   /* First handle operations that involve different types.  */
3479   switch (rhs_code)
3480     {
3481     case COMPLEX_EXPR:
3482       {
3483         if (TREE_CODE (lhs_type) != COMPLEX_TYPE
3484             || !(INTEGRAL_TYPE_P (rhs1_type)
3485                  || SCALAR_FLOAT_TYPE_P (rhs1_type))
3486             || !(INTEGRAL_TYPE_P (rhs2_type)
3487                  || SCALAR_FLOAT_TYPE_P (rhs2_type)))
3488           {
3489             error ("type mismatch in complex expression");
3490             debug_generic_expr (lhs_type);
3491             debug_generic_expr (rhs1_type);
3492             debug_generic_expr (rhs2_type);
3493             return true;
3494           }
3495
3496         return false;
3497       }
3498
3499     case LSHIFT_EXPR:
3500     case RSHIFT_EXPR:
3501     case LROTATE_EXPR:
3502     case RROTATE_EXPR:
3503       {
3504         /* Shifts and rotates are ok on integral types, fixed point
3505            types and integer vector types.  */
3506         if ((!INTEGRAL_TYPE_P (rhs1_type)
3507              && !FIXED_POINT_TYPE_P (rhs1_type)
3508              && !(TREE_CODE (rhs1_type) == VECTOR_TYPE
3509                   && TREE_CODE (TREE_TYPE (rhs1_type)) == INTEGER_TYPE))
3510             || (!INTEGRAL_TYPE_P (rhs2_type)
3511                 /* Vector shifts of vectors are also ok.  */
3512                 && !(TREE_CODE (rhs1_type) == VECTOR_TYPE
3513                      && TREE_CODE (TREE_TYPE (rhs1_type)) == INTEGER_TYPE
3514                      && TREE_CODE (rhs2_type) == VECTOR_TYPE
3515                      && TREE_CODE (TREE_TYPE (rhs2_type)) == INTEGER_TYPE))
3516             || !useless_type_conversion_p (lhs_type, rhs1_type))
3517           {
3518             error ("type mismatch in shift expression");
3519             debug_generic_expr (lhs_type);
3520             debug_generic_expr (rhs1_type);
3521             debug_generic_expr (rhs2_type);
3522             return true;
3523           }
3524
3525         return false;
3526       }
3527
3528     case VEC_LSHIFT_EXPR:
3529     case VEC_RSHIFT_EXPR:
3530       {
3531         if (TREE_CODE (rhs1_type) != VECTOR_TYPE
3532             || !(INTEGRAL_TYPE_P (TREE_TYPE (rhs1_type))
3533                  || FIXED_POINT_TYPE_P (TREE_TYPE (rhs1_type)))
3534             || (!INTEGRAL_TYPE_P (rhs2_type)
3535                 && (TREE_CODE (rhs2_type) != VECTOR_TYPE
3536                     || !INTEGRAL_TYPE_P (TREE_TYPE (rhs2_type))))
3537             || !useless_type_conversion_p (lhs_type, rhs1_type))
3538           {
3539             error ("type mismatch in vector shift expression");
3540             debug_generic_expr (lhs_type);
3541             debug_generic_expr (rhs1_type);
3542             debug_generic_expr (rhs2_type);
3543             return true;
3544           }
3545
3546         return false;
3547       }
3548
3549     case POINTER_PLUS_EXPR:
3550       {
3551         if (!POINTER_TYPE_P (rhs1_type)
3552             || !useless_type_conversion_p (lhs_type, rhs1_type)
3553             || !useless_type_conversion_p (sizetype, rhs2_type))
3554           {
3555             error ("type mismatch in pointer plus expression");
3556             debug_generic_stmt (lhs_type);
3557             debug_generic_stmt (rhs1_type);
3558             debug_generic_stmt (rhs2_type);
3559             return true;
3560           }
3561
3562         return false;
3563       } 
3564
3565     case TRUTH_ANDIF_EXPR:
3566     case TRUTH_ORIF_EXPR:
3567       gcc_unreachable ();
3568
3569     case TRUTH_AND_EXPR:
3570     case TRUTH_OR_EXPR:
3571     case TRUTH_XOR_EXPR:
3572       {
3573         /* We allow any kind of integral typed argument and result.  */
3574         if (!INTEGRAL_TYPE_P (rhs1_type)
3575             || !INTEGRAL_TYPE_P (rhs2_type)
3576             || !INTEGRAL_TYPE_P (lhs_type))
3577           {
3578             error ("type mismatch in binary truth expression");
3579             debug_generic_expr (lhs_type);
3580             debug_generic_expr (rhs1_type);
3581             debug_generic_expr (rhs2_type);
3582             return true;
3583           }
3584
3585         return false;
3586       }
3587
3588     case LT_EXPR:
3589     case LE_EXPR:
3590     case GT_EXPR:
3591     case GE_EXPR:
3592     case EQ_EXPR:
3593     case NE_EXPR:
3594     case UNORDERED_EXPR:
3595     case ORDERED_EXPR:
3596     case UNLT_EXPR:
3597     case UNLE_EXPR:
3598     case UNGT_EXPR:
3599     case UNGE_EXPR:
3600     case UNEQ_EXPR:
3601     case LTGT_EXPR:
3602       /* Comparisons are also binary, but the result type is not
3603          connected to the operand types.  */
3604       return verify_gimple_comparison (lhs_type, rhs1, rhs2);
3605
3606     case PLUS_EXPR:
3607     case MINUS_EXPR:
3608       {
3609         if (POINTER_TYPE_P (lhs_type)
3610             || POINTER_TYPE_P (rhs1_type)
3611             || POINTER_TYPE_P (rhs2_type))
3612           {
3613             error ("invalid (pointer) operands to plus/minus");
3614             return true;
3615           }
3616
3617         /* Continue with generic binary expression handling.  */
3618         break;
3619       }
3620
3621     case WIDEN_SUM_EXPR:
3622     case WIDEN_MULT_EXPR:
3623     case VEC_WIDEN_MULT_HI_EXPR:
3624     case VEC_WIDEN_MULT_LO_EXPR:
3625     case VEC_PACK_TRUNC_EXPR:
3626     case VEC_PACK_SAT_EXPR:
3627     case VEC_PACK_FIX_TRUNC_EXPR:
3628     case VEC_EXTRACT_EVEN_EXPR:
3629     case VEC_EXTRACT_ODD_EXPR:
3630     case VEC_INTERLEAVE_HIGH_EXPR:
3631     case VEC_INTERLEAVE_LOW_EXPR:
3632       /* FIXME.  */
3633       return false;
3634
3635     case MULT_EXPR:
3636     case TRUNC_DIV_EXPR:
3637     case CEIL_DIV_EXPR:
3638     case FLOOR_DIV_EXPR:
3639     case ROUND_DIV_EXPR:
3640     case TRUNC_MOD_EXPR:
3641     case CEIL_MOD_EXPR:
3642     case FLOOR_MOD_EXPR:
3643     case ROUND_MOD_EXPR:
3644     case RDIV_EXPR:
3645     case EXACT_DIV_EXPR:
3646     case MIN_EXPR:
3647     case MAX_EXPR:
3648     case BIT_IOR_EXPR:
3649     case BIT_XOR_EXPR:
3650     case BIT_AND_EXPR:
3651       /* Continue with generic binary expression handling.  */
3652       break;
3653
3654     default:
3655       gcc_unreachable ();
3656     }
3657
3658   if (!useless_type_conversion_p (lhs_type, rhs1_type)
3659       || !useless_type_conversion_p (lhs_type, rhs2_type))
3660     {
3661       error ("type mismatch in binary expression");
3662       debug_generic_stmt (lhs_type);
3663       debug_generic_stmt (rhs1_type);
3664       debug_generic_stmt (rhs2_type);
3665       return true;
3666     }
3667
3668   return false;
3669 }
3670
3671 /* Verify a gimple assignment statement STMT with a single rhs.
3672    Returns true if anything is wrong.  */
3673
3674 static bool
3675 verify_gimple_assign_single (gimple stmt)
3676 {
3677   enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
3678   tree lhs = gimple_assign_lhs (stmt);
3679   tree lhs_type = TREE_TYPE (lhs);
3680   tree rhs1 = gimple_assign_rhs1 (stmt);
3681   tree rhs1_type = TREE_TYPE (rhs1);
3682   bool res = false;
3683
3684   if (!useless_type_conversion_p (lhs_type, rhs1_type))
3685     {
3686       error ("non-trivial conversion at assignment");
3687       debug_generic_expr (lhs_type);
3688       debug_generic_expr (rhs1_type);
3689       return true;
3690     }
3691
3692   if (handled_component_p (lhs))
3693     res |= verify_types_in_gimple_reference (lhs);
3694
3695   /* Special codes we cannot handle via their class.  */
3696   switch (rhs_code)
3697     {
3698     case ADDR_EXPR:
3699       {
3700         tree op = TREE_OPERAND (rhs1, 0);
3701         if (!is_gimple_addressable (op))
3702           {
3703             error ("invalid operand in unary expression");
3704             return true;
3705           }
3706
3707         if (!one_pointer_to_useless_type_conversion_p (lhs_type,
3708                                                        TREE_TYPE (op)))
3709           {
3710             error ("type mismatch in address expression");
3711             debug_generic_stmt (lhs_type);
3712             debug_generic_stmt (TYPE_POINTER_TO (TREE_TYPE (op)));
3713             return true;
3714           }
3715
3716         return verify_types_in_gimple_reference (op);
3717       }
3718
3719     /* tcc_reference  */
3720     case COMPONENT_REF:
3721     case BIT_FIELD_REF:
3722     case INDIRECT_REF:
3723     case ALIGN_INDIRECT_REF:
3724     case MISALIGNED_INDIRECT_REF:
3725     case ARRAY_REF:
3726     case ARRAY_RANGE_REF:
3727     case VIEW_CONVERT_EXPR:
3728     case REALPART_EXPR:
3729     case IMAGPART_EXPR:
3730     case TARGET_MEM_REF:
3731       if (!is_gimple_reg (lhs)
3732           && is_gimple_reg_type (TREE_TYPE (lhs)))
3733         {
3734           error ("invalid rhs for gimple memory store");
3735           debug_generic_stmt (lhs);
3736           debug_generic_stmt (rhs1);
3737           return true;
3738         }
3739       return res || verify_types_in_gimple_reference (rhs1);
3740
3741     /* tcc_constant  */
3742     case SSA_NAME:
3743     case INTEGER_CST:
3744     case REAL_CST:
3745     case FIXED_CST:
3746     case COMPLEX_CST:
3747     case VECTOR_CST:
3748     case STRING_CST:
3749       return res;
3750
3751     /* tcc_declaration  */
3752     case CONST_DECL:
3753       return res;
3754     case VAR_DECL:
3755     case PARM_DECL:
3756       if (!is_gimple_reg (lhs)
3757           && !is_gimple_reg (rhs1)
3758           && is_gimple_reg_type (TREE_TYPE (lhs)))
3759         {
3760           error ("invalid rhs for gimple memory store");
3761           debug_generic_stmt (lhs);
3762           debug_generic_stmt (rhs1);
3763           return true;
3764         }
3765       return res;
3766
3767     case COND_EXPR:
3768     case CONSTRUCTOR:
3769     case OBJ_TYPE_REF:
3770     case ASSERT_EXPR:
3771     case WITH_SIZE_EXPR:
3772     case EXC_PTR_EXPR:
3773     case FILTER_EXPR:
3774     case POLYNOMIAL_CHREC:
3775     case DOT_PROD_EXPR:
3776     case VEC_COND_EXPR:
3777     case REALIGN_LOAD_EXPR:
3778       /* FIXME.  */
3779       return res;
3780
3781     default:;
3782     }
3783
3784   return res;
3785 }
3786
3787 /* Verify the contents of a GIMPLE_ASSIGN STMT.  Returns true when there
3788    is a problem, otherwise false.  */
3789
3790 static bool
3791 verify_gimple_assign (gimple stmt)
3792 {
3793   switch (gimple_assign_rhs_class (stmt))
3794     {
3795     case GIMPLE_SINGLE_RHS:
3796       return verify_gimple_assign_single (stmt);
3797
3798     case GIMPLE_UNARY_RHS:
3799       return verify_gimple_assign_unary (stmt);
3800
3801     case GIMPLE_BINARY_RHS:
3802       return verify_gimple_assign_binary (stmt);
3803
3804     default:
3805       gcc_unreachable ();
3806     }
3807 }
3808
3809 /* Verify the contents of a GIMPLE_RETURN STMT.  Returns true when there
3810    is a problem, otherwise false.  */
3811
3812 static bool
3813 verify_gimple_return (gimple stmt)
3814 {
3815   tree op = gimple_return_retval (stmt);
3816   tree restype = TREE_TYPE (TREE_TYPE (cfun->decl));
3817
3818   /* We cannot test for present return values as we do not fix up missing
3819      return values from the original source.  */
3820   if (op == NULL)
3821     return false;
3822  
3823   if (!is_gimple_val (op)
3824       && TREE_CODE (op) != RESULT_DECL)
3825     {
3826       error ("invalid operand in return statement");
3827       debug_generic_stmt (op);
3828       return true;
3829     }
3830
3831   if (!useless_type_conversion_p (restype, TREE_TYPE (op))
3832       /* ???  With C++ we can have the situation that the result
3833          decl is a reference type while the return type is an aggregate.  */
3834       && !(TREE_CODE (op) == RESULT_DECL
3835            && TREE_CODE (TREE_TYPE (op)) == REFERENCE_TYPE
3836            && useless_type_conversion_p (restype, TREE_TYPE (TREE_TYPE (op)))))
3837     {
3838       error ("invalid conversion in return statement");
3839       debug_generic_stmt (restype);
3840       debug_generic_stmt (TREE_TYPE (op));
3841       return true;
3842     }
3843
3844   return false;
3845 }
3846
3847
3848 /* Verify the contents of a GIMPLE_GOTO STMT.  Returns true when there
3849    is a problem, otherwise false.  */
3850
3851 static bool
3852 verify_gimple_goto (gimple stmt)
3853 {
3854   tree dest = gimple_goto_dest (stmt);
3855
3856   /* ???  We have two canonical forms of direct goto destinations, a
3857      bare LABEL_DECL and an ADDR_EXPR of a LABEL_DECL.  */
3858   if (TREE_CODE (dest) != LABEL_DECL
3859       && (!is_gimple_val (dest)
3860           || !POINTER_TYPE_P (TREE_TYPE (dest))))
3861     {
3862       error ("goto destination is neither a label nor a pointer");
3863       return true;
3864     }
3865
3866   return false;
3867 }
3868
3869 /* Verify the contents of a GIMPLE_SWITCH STMT.  Returns true when there
3870    is a problem, otherwise false.  */
3871
3872 static bool
3873 verify_gimple_switch (gimple stmt)
3874 {
3875   if (!is_gimple_val (gimple_switch_index (stmt)))
3876     {
3877       error ("invalid operand to switch statement");
3878       debug_generic_stmt (gimple_switch_index (stmt));
3879       return true;
3880     }
3881
3882   return false;
3883 }
3884
3885
3886 /* Verify the contents of a GIMPLE_PHI.  Returns true if there is a problem,
3887    and false otherwise.  */
3888
3889 static bool
3890 verify_gimple_phi (gimple stmt)
3891 {
3892   tree type = TREE_TYPE (gimple_phi_result (stmt));
3893   unsigned i;
3894
3895   if (!is_gimple_variable (gimple_phi_result (stmt)))
3896     {
3897       error ("Invalid PHI result");
3898       return true;
3899     }
3900
3901   for (i = 0; i < gimple_phi_num_args (stmt); i++)
3902     {
3903       tree arg = gimple_phi_arg_def (stmt, i);
3904       if ((is_gimple_reg (gimple_phi_result (stmt))
3905            && !is_gimple_val (arg))
3906           || (!is_gimple_reg (gimple_phi_result (stmt))
3907               && !is_gimple_addressable (arg)))
3908         {
3909           error ("Invalid PHI argument");
3910           debug_generic_stmt (arg);
3911           return true;
3912         }
3913       if (!useless_type_conversion_p (type, TREE_TYPE (arg)))
3914         {
3915           error ("Incompatible types in PHI argument %u", i);
3916           debug_generic_stmt (type);
3917           debug_generic_stmt (TREE_TYPE (arg));
3918           return true;
3919         }
3920     }
3921
3922   return false;
3923 }
3924
3925
3926 /* Verify the GIMPLE statement STMT.  Returns true if there is an
3927    error, otherwise false.  */
3928
3929 static bool
3930 verify_types_in_gimple_stmt (gimple stmt)
3931 {
3932   if (is_gimple_omp (stmt))
3933     {
3934       /* OpenMP directives are validated by the FE and never operated
3935          on by the optimizers.  Furthermore, GIMPLE_OMP_FOR may contain
3936          non-gimple expressions when the main index variable has had
3937          its address taken.  This does not affect the loop itself
3938          because the header of an GIMPLE_OMP_FOR is merely used to determine
3939          how to setup the parallel iteration.  */
3940       return false;
3941     }
3942
3943   switch (gimple_code (stmt))
3944     {
3945     case GIMPLE_ASSIGN:
3946       return verify_gimple_assign (stmt);
3947
3948     case GIMPLE_LABEL:
3949       return TREE_CODE (gimple_label_label (stmt)) != LABEL_DECL;
3950
3951     case GIMPLE_CALL:
3952       return verify_gimple_call (stmt);
3953
3954     case GIMPLE_COND:
3955       return verify_gimple_comparison (boolean_type_node,
3956                                        gimple_cond_lhs (stmt),
3957                                        gimple_cond_rhs (stmt));
3958
3959     case GIMPLE_GOTO:
3960       return verify_gimple_goto (stmt);
3961
3962     case GIMPLE_SWITCH:
3963       return verify_gimple_switch (stmt);
3964
3965     case GIMPLE_RETURN:
3966       return verify_gimple_return (stmt);
3967
3968     case GIMPLE_ASM:
3969       return false;
3970
3971     case GIMPLE_CHANGE_DYNAMIC_TYPE:
3972       return (!is_gimple_val (gimple_cdt_location (stmt))
3973               || !POINTER_TYPE_P (TREE_TYPE (gimple_cdt_location (stmt))));
3974
3975     case GIMPLE_PHI:
3976       return verify_gimple_phi (stmt);
3977
3978     /* Tuples that do not have tree operands.  */
3979     case GIMPLE_NOP:
3980     case GIMPLE_RESX:
3981     case GIMPLE_PREDICT:
3982       return false;
3983
3984     default:
3985       gcc_unreachable ();
3986     }
3987 }
3988
3989 /* Verify the GIMPLE statements inside the sequence STMTS.  */
3990
3991 static bool
3992 verify_types_in_gimple_seq_2 (gimple_seq stmts)
3993 {
3994   gimple_stmt_iterator ittr;
3995   bool err = false;
3996
3997   for (ittr = gsi_start (stmts); !gsi_end_p (ittr); gsi_next (&ittr))
3998     {
3999       gimple stmt = gsi_stmt (ittr);
4000
4001       switch (gimple_code (stmt))
4002         {
4003         case GIMPLE_BIND:
4004           err |= verify_types_in_gimple_seq_2 (gimple_bind_body (stmt));
4005           break;
4006
4007         case GIMPLE_TRY:
4008           err |= verify_types_in_gimple_seq_2 (gimple_try_eval (stmt));
4009           err |= verify_types_in_gimple_seq_2 (gimple_try_cleanup (stmt));
4010           break;
4011
4012         case GIMPLE_EH_FILTER:
4013           err |= verify_types_in_gimple_seq_2 (gimple_eh_filter_failure (stmt));
4014           break;
4015
4016         case GIMPLE_CATCH:
4017           err |= verify_types_in_gimple_seq_2 (gimple_catch_handler (stmt));
4018           break;
4019
4020         default:
4021           {
4022             bool err2 = verify_types_in_gimple_stmt (stmt);
4023             if (err2)
4024               debug_gimple_stmt (stmt);
4025             err |= err2;
4026           }
4027         }
4028     }
4029
4030   return err;
4031 }
4032
4033
4034 /* Verify the GIMPLE statements inside the statement list STMTS.  */
4035
4036 void
4037 verify_types_in_gimple_seq (gimple_seq stmts)
4038 {
4039   if (verify_types_in_gimple_seq_2 (stmts))
4040     internal_error ("verify_gimple failed");
4041 }
4042
4043
4044 /* Verify STMT, return true if STMT is not in GIMPLE form.
4045    TODO: Implement type checking.  */
4046
4047 static bool
4048 verify_stmt (gimple_stmt_iterator *gsi)
4049 {
4050   tree addr;
4051   struct walk_stmt_info wi;
4052   bool last_in_block = gsi_one_before_end_p (*gsi);
4053   gimple stmt = gsi_stmt (*gsi);
4054
4055   if (is_gimple_omp (stmt))
4056     {
4057       /* OpenMP directives are validated by the FE and never operated
4058          on by the optimizers.  Furthermore, GIMPLE_OMP_FOR may contain
4059          non-gimple expressions when the main index variable has had
4060          its address taken.  This does not affect the loop itself
4061          because the header of an GIMPLE_OMP_FOR is merely used to determine
4062          how to setup the parallel iteration.  */
4063       return false;
4064     }
4065
4066   /* FIXME.  The C frontend passes unpromoted arguments in case it
4067      didn't see a function declaration before the call.  */
4068   if (is_gimple_call (stmt))
4069     {
4070       tree decl;
4071
4072       if (!is_gimple_call_addr (gimple_call_fn (stmt)))
4073         {
4074           error ("invalid function in call statement");
4075           return true;
4076         }
4077
4078       decl = gimple_call_fndecl (stmt);
4079       if (decl
4080           && TREE_CODE (decl) == FUNCTION_DECL
4081           && DECL_LOOPING_CONST_OR_PURE_P (decl)
4082           && (!DECL_PURE_P (decl))
4083           && (!TREE_READONLY (decl)))
4084         {
4085           error ("invalid pure const state for function");
4086           return true;
4087         }
4088     }
4089
4090   memset (&wi, 0, sizeof (wi));
4091   addr = walk_gimple_op (gsi_stmt (*gsi), verify_expr, &wi);
4092   if (addr)
4093     {
4094       debug_generic_expr (addr);
4095       inform (input_location, "in statement");
4096       debug_gimple_stmt (stmt);
4097       return true;
4098     }
4099
4100   /* If the statement is marked as part of an EH region, then it is
4101      expected that the statement could throw.  Verify that when we
4102      have optimizations that simplify statements such that we prove
4103      that they cannot throw, that we update other data structures
4104      to match.  */
4105   if (lookup_stmt_eh_region (stmt) >= 0)
4106     {
4107       if (!stmt_could_throw_p (stmt))
4108         {
4109           error ("statement marked for throw, but doesn%'t");
4110           goto fail;
4111         }
4112       if (!last_in_block && stmt_can_throw_internal (stmt))
4113         {
4114           error ("statement marked for throw in middle of block");
4115           goto fail;
4116         }
4117     }
4118
4119   return false;
4120
4121  fail:
4122   debug_gimple_stmt (stmt);
4123   return true;
4124 }
4125
4126
4127 /* Return true when the T can be shared.  */
4128
4129 static bool
4130 tree_node_can_be_shared (tree t)
4131 {
4132   if (IS_TYPE_OR_DECL_P (t)
4133       || is_gimple_min_invariant (t)
4134       || TREE_CODE (t) == SSA_NAME
4135       || t == error_mark_node
4136       || TREE_CODE (t) == IDENTIFIER_NODE)
4137     return true;
4138
4139   if (TREE_CODE (t) == CASE_LABEL_EXPR)
4140     return true;
4141
4142   while (((TREE_CODE (t) == ARRAY_REF || TREE_CODE (t) == ARRAY_RANGE_REF)
4143            && is_gimple_min_invariant (TREE_OPERAND (t, 1)))
4144          || TREE_CODE (t) == COMPONENT_REF
4145          || TREE_CODE (t) == REALPART_EXPR
4146          || TREE_CODE (t) == IMAGPART_EXPR)
4147     t = TREE_OPERAND (t, 0);
4148
4149   if (DECL_P (t))
4150     return true;
4151
4152   return false;
4153 }
4154
4155
4156 /* Called via walk_gimple_stmt.  Verify tree sharing.  */
4157
4158 static tree
4159 verify_node_sharing (tree *tp, int *walk_subtrees, void *data)
4160 {
4161   struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
4162   struct pointer_set_t *visited = (struct pointer_set_t *) wi->info;
4163
4164   if (tree_node_can_be_shared (*tp))
4165     {
4166       *walk_subtrees = false;
4167       return NULL;
4168     }
4169
4170   if (pointer_set_insert (visited, *tp))
4171     return *tp;
4172
4173   return NULL;
4174 }
4175
4176
4177 static bool eh_error_found;
4178 static int
4179 verify_eh_throw_stmt_node (void **slot, void *data)
4180 {
4181   struct throw_stmt_node *node = (struct throw_stmt_node *)*slot;
4182   struct pointer_set_t *visited = (struct pointer_set_t *) data;
4183
4184   if (!pointer_set_contains (visited, node->stmt))
4185     {
4186       error ("Dead STMT in EH table");
4187       debug_gimple_stmt (node->stmt);
4188       eh_error_found = true;
4189     }
4190   return 1;
4191 }
4192
4193
4194 /* Verify the GIMPLE statements in every basic block.  */
4195
4196 void
4197 verify_stmts (void)
4198 {
4199   basic_block bb;
4200   gimple_stmt_iterator gsi;
4201   bool err = false;
4202   struct pointer_set_t *visited, *visited_stmts;
4203   tree addr;
4204   struct walk_stmt_info wi;
4205
4206   timevar_push (TV_TREE_STMT_VERIFY);
4207   visited = pointer_set_create ();
4208   visited_stmts = pointer_set_create ();
4209
4210   memset (&wi, 0, sizeof (wi));
4211   wi.info = (void *) visited;
4212
4213   FOR_EACH_BB (bb)
4214     {
4215       gimple phi;
4216       size_t i;
4217
4218       for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4219         {
4220           phi = gsi_stmt (gsi);
4221           pointer_set_insert (visited_stmts, phi);
4222           if (gimple_bb (phi) != bb)
4223             {
4224               error ("gimple_bb (phi) is set to a wrong basic block");
4225               err |= true;
4226             }
4227
4228           for (i = 0; i < gimple_phi_num_args (phi); i++)
4229             {
4230               tree t = gimple_phi_arg_def (phi, i);
4231               tree addr;
4232
4233               if (!t)
4234                 {
4235                   error ("missing PHI def");
4236                   debug_gimple_stmt (phi);
4237                   err |= true;
4238                   continue;
4239                 }
4240               /* Addressable variables do have SSA_NAMEs but they
4241                  are not considered gimple values.  */
4242               else if (TREE_CODE (t) != SSA_NAME
4243                        && TREE_CODE (t) != FUNCTION_DECL
4244                        && !is_gimple_min_invariant (t))
4245                 {
4246                   error ("PHI argument is not a GIMPLE value");
4247                   debug_gimple_stmt (phi);
4248                   debug_generic_expr (t);
4249                   err |= true;
4250                 }
4251
4252               addr = walk_tree (&t, verify_node_sharing, visited, NULL);
4253               if (addr)
4254                 {
4255                   error ("incorrect sharing of tree nodes");
4256                   debug_gimple_stmt (phi);
4257                   debug_generic_expr (addr);
4258                   err |= true;
4259                 }
4260             }
4261         }
4262
4263       for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); )
4264         {
4265           gimple stmt = gsi_stmt (gsi);
4266
4267           if (gimple_code (stmt) == GIMPLE_WITH_CLEANUP_EXPR
4268               || gimple_code (stmt) == GIMPLE_BIND)
4269             {
4270               error ("invalid GIMPLE statement");
4271               debug_gimple_stmt (stmt);
4272               err |= true;
4273             }
4274
4275           pointer_set_insert (visited_stmts, stmt);
4276
4277           if (gimple_bb (stmt) != bb)
4278             {
4279               error ("gimple_bb (stmt) is set to a wrong basic block");
4280               err |= true;
4281             }
4282
4283           if (gimple_code (stmt) == GIMPLE_LABEL)
4284             {
4285               tree decl = gimple_label_label (stmt);
4286               int uid = LABEL_DECL_UID (decl);
4287
4288               if (uid == -1
4289                   || VEC_index (basic_block, label_to_block_map, uid) != bb)
4290                 {
4291                   error ("incorrect entry in label_to_block_map.\n");
4292                   err |= true;
4293                 }
4294             }
4295
4296           err |= verify_stmt (&gsi);
4297           addr = walk_gimple_op (gsi_stmt (gsi), verify_node_sharing, &wi);
4298           if (addr)
4299             {
4300               error ("incorrect sharing of tree nodes");
4301               debug_gimple_stmt (stmt);
4302               debug_generic_expr (addr);
4303               err |= true;
4304             }
4305           gsi_next (&gsi);
4306         }
4307     }
4308
4309   eh_error_found = false;
4310   if (get_eh_throw_stmt_table (cfun))
4311     htab_traverse (get_eh_throw_stmt_table (cfun),
4312                    verify_eh_throw_stmt_node,
4313                    visited_stmts);
4314
4315   if (err | eh_error_found)
4316     internal_error ("verify_stmts failed");
4317
4318   pointer_set_destroy (visited);
4319   pointer_set_destroy (visited_stmts);
4320   verify_histograms ();
4321   timevar_pop (TV_TREE_STMT_VERIFY);
4322 }
4323
4324
4325 /* Verifies that the flow information is OK.  */
4326
4327 static int
4328 gimple_verify_flow_info (void)
4329 {
4330   int err = 0;
4331   basic_block bb;
4332   gimple_stmt_iterator gsi;
4333   gimple stmt;
4334   edge e;
4335   edge_iterator ei;
4336
4337   if (ENTRY_BLOCK_PTR->il.gimple)
4338     {
4339       error ("ENTRY_BLOCK has IL associated with it");
4340       err = 1;
4341     }
4342
4343   if (EXIT_BLOCK_PTR->il.gimple)
4344     {
4345       error ("EXIT_BLOCK has IL associated with it");
4346       err = 1;
4347     }
4348
4349   FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
4350     if (e->flags & EDGE_FALLTHRU)
4351       {
4352         error ("fallthru to exit from bb %d", e->src->index);
4353         err = 1;
4354       }
4355
4356   FOR_EACH_BB (bb)
4357     {
4358       bool found_ctrl_stmt = false;
4359
4360       stmt = NULL;
4361
4362       /* Skip labels on the start of basic block.  */
4363       for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4364         {
4365           tree label;
4366           gimple prev_stmt = stmt;
4367
4368           stmt = gsi_stmt (gsi);
4369
4370           if (gimple_code (stmt) != GIMPLE_LABEL)
4371             break;
4372
4373           label = gimple_label_label (stmt);
4374           if (prev_stmt && DECL_NONLOCAL (label))
4375             {
4376               error ("nonlocal label ");
4377               print_generic_expr (stderr, label, 0);
4378               fprintf (stderr, " is not first in a sequence of labels in bb %d",
4379                        bb->index);
4380               err = 1;
4381             }
4382
4383           if (label_to_block (label) != bb)
4384             {
4385               error ("label ");
4386               print_generic_expr (stderr, label, 0);
4387               fprintf (stderr, " to block does not match in bb %d",
4388                        bb->index);
4389               err = 1;
4390             }
4391
4392           if (decl_function_context (label) != current_function_decl)
4393             {
4394               error ("label ");
4395               print_generic_expr (stderr, label, 0);
4396               fprintf (stderr, " has incorrect context in bb %d",
4397                        bb->index);
4398               err = 1;
4399             }
4400         }
4401
4402       /* Verify that body of basic block BB is free of control flow.  */
4403       for (; !gsi_end_p (gsi); gsi_next (&gsi))
4404         {
4405           gimple stmt = gsi_stmt (gsi);
4406
4407           if (found_ctrl_stmt)
4408             {
4409               error ("control flow in the middle of basic block %d",
4410                      bb->index);
4411               err = 1;
4412             }
4413
4414           if (stmt_ends_bb_p (stmt))
4415             found_ctrl_stmt = true;
4416
4417           if (gimple_code (stmt) == GIMPLE_LABEL)
4418             {
4419               error ("label ");
4420               print_generic_expr (stderr, gimple_label_label (stmt), 0);
4421               fprintf (stderr, " in the middle of basic block %d", bb->index);
4422               err = 1;
4423             }
4424         }
4425
4426       gsi = gsi_last_bb (bb);
4427       if (gsi_end_p (gsi))
4428         continue;
4429
4430       stmt = gsi_stmt (gsi);
4431
4432       err |= verify_eh_edges (stmt);
4433
4434       if (is_ctrl_stmt (stmt))
4435         {
4436           FOR_EACH_EDGE (e, ei, bb->succs)
4437             if (e->flags & EDGE_FALLTHRU)
4438               {
4439                 error ("fallthru edge after a control statement in bb %d",
4440                        bb->index);
4441                 err = 1;
4442               }
4443         }
4444
4445       if (gimple_code (stmt) != GIMPLE_COND)
4446         {
4447           /* Verify that there are no edges with EDGE_TRUE/FALSE_FLAG set
4448              after anything else but if statement.  */
4449           FOR_EACH_EDGE (e, ei, bb->succs)
4450             if (e->flags & (EDGE_TRUE_VALUE | EDGE_FALSE_VALUE))
4451               {
4452                 error ("true/false edge after a non-GIMPLE_COND in bb %d",
4453                        bb->index);
4454                 err = 1;
4455               }
4456         }
4457
4458       switch (gimple_code (stmt))
4459         {
4460         case GIMPLE_COND:
4461           {
4462             edge true_edge;
4463             edge false_edge;
4464   
4465             extract_true_false_edges_from_block (bb, &true_edge, &false_edge);
4466
4467             if (!true_edge
4468                 || !false_edge
4469                 || !(true_edge->flags & EDGE_TRUE_VALUE)
4470                 || !(false_edge->flags & EDGE_FALSE_VALUE)
4471                 || (true_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
4472                 || (false_edge->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL))
4473                 || EDGE_COUNT (bb->succs) >= 3)
4474               {
4475                 error ("wrong outgoing edge flags at end of bb %d",
4476                        bb->index);
4477                 err = 1;
4478               }
4479           }
4480           break;
4481
4482         case GIMPLE_GOTO:
4483           if (simple_goto_p (stmt))
4484             {
4485               error ("explicit goto at end of bb %d", bb->index);
4486               err = 1;
4487             }
4488           else
4489             {
4490               /* FIXME.  We should double check that the labels in the
4491                  destination blocks have their address taken.  */
4492               FOR_EACH_EDGE (e, ei, bb->succs)
4493                 if ((e->flags & (EDGE_FALLTHRU | EDGE_TRUE_VALUE
4494                                  | EDGE_FALSE_VALUE))
4495                     || !(e->flags & EDGE_ABNORMAL))
4496                   {
4497                     error ("wrong outgoing edge flags at end of bb %d",
4498                            bb->index);
4499                     err = 1;
4500                   }
4501             }
4502           break;
4503
4504         case GIMPLE_RETURN:
4505           if (!single_succ_p (bb)
4506               || (single_succ_edge (bb)->flags
4507                   & (EDGE_FALLTHRU | EDGE_ABNORMAL
4508                      | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
4509             {
4510               error ("wrong outgoing edge flags at end of bb %d", bb->index);
4511               err = 1;
4512             }
4513           if (single_succ (bb) != EXIT_BLOCK_PTR)
4514             {
4515               error ("return edge does not point to exit in bb %d",
4516                      bb->index);
4517               err = 1;
4518             }
4519           break;
4520
4521         case GIMPLE_SWITCH:
4522           {
4523             tree prev;
4524             edge e;
4525             size_t i, n;
4526
4527             n = gimple_switch_num_labels (stmt);
4528
4529             /* Mark all the destination basic blocks.  */
4530             for (i = 0; i < n; ++i)
4531               {
4532                 tree lab = CASE_LABEL (gimple_switch_label (stmt, i));
4533                 basic_block label_bb = label_to_block (lab);
4534                 gcc_assert (!label_bb->aux || label_bb->aux == (void *)1);
4535                 label_bb->aux = (void *)1;
4536               }
4537
4538             /* Verify that the case labels are sorted.  */
4539             prev = gimple_switch_label (stmt, 0);
4540             for (i = 1; i < n; ++i)
4541               {
4542                 tree c = gimple_switch_label (stmt, i);
4543                 if (!CASE_LOW (c))
4544                   {
4545                     error ("found default case not at the start of "
4546                            "case vector");
4547                     err = 1;
4548                     continue;
4549                   }
4550                 if (CASE_LOW (prev)
4551                     && !tree_int_cst_lt (CASE_LOW (prev), CASE_LOW (c)))
4552                   {
4553                     error ("case labels not sorted: ");
4554                     print_generic_expr (stderr, prev, 0);
4555                     fprintf (stderr," is greater than ");
4556                     print_generic_expr (stderr, c, 0);
4557                     fprintf (stderr," but comes before it.\n");
4558                     err = 1;
4559                   }
4560                 prev = c;
4561               }
4562             /* VRP will remove the default case if it can prove it will
4563                never be executed.  So do not verify there always exists
4564                a default case here.  */
4565
4566             FOR_EACH_EDGE (e, ei, bb->succs)
4567               {
4568                 if (!e->dest->aux)
4569                   {
4570                     error ("extra outgoing edge %d->%d",
4571                            bb->index, e->dest->index);
4572                     err = 1;
4573                   }
4574
4575                 e->dest->aux = (void *)2;
4576                 if ((e->flags & (EDGE_FALLTHRU | EDGE_ABNORMAL
4577                                  | EDGE_TRUE_VALUE | EDGE_FALSE_VALUE)))
4578                   {
4579                     error ("wrong outgoing edge flags at end of bb %d",
4580                            bb->index);
4581                     err = 1;
4582                   }
4583               }
4584
4585             /* Check that we have all of them.  */
4586             for (i = 0; i < n; ++i)
4587               {
4588                 tree lab = CASE_LABEL (gimple_switch_label (stmt, i));
4589                 basic_block label_bb = label_to_block (lab);
4590
4591                 if (label_bb->aux != (void *)2)
4592                   {
4593                     error ("missing edge %i->%i", bb->index, label_bb->index);
4594                     err = 1;
4595                   }
4596               }
4597
4598             FOR_EACH_EDGE (e, ei, bb->succs)
4599               e->dest->aux = (void *)0;
4600           }
4601
4602         default: ;
4603         }
4604     }
4605
4606   if (dom_info_state (CDI_DOMINATORS) >= DOM_NO_FAST_QUERY)
4607     verify_dominators (CDI_DOMINATORS);
4608
4609   return err;
4610 }
4611
4612
4613 /* Updates phi nodes after creating a forwarder block joined
4614    by edge FALLTHRU.  */
4615
4616 static void
4617 gimple_make_forwarder_block (edge fallthru)
4618 {
4619   edge e;
4620   edge_iterator ei;
4621   basic_block dummy, bb;
4622   tree var;
4623   gimple_stmt_iterator gsi;
4624
4625   dummy = fallthru->src;
4626   bb = fallthru->dest;
4627
4628   if (single_pred_p (bb))
4629     return;
4630
4631   /* If we redirected a branch we must create new PHI nodes at the
4632      start of BB.  */
4633   for (gsi = gsi_start_phis (dummy); !gsi_end_p (gsi); gsi_next (&gsi))
4634     {
4635       gimple phi, new_phi;
4636       
4637       phi = gsi_stmt (gsi);
4638       var = gimple_phi_result (phi);
4639       new_phi = create_phi_node (var, bb);
4640       SSA_NAME_DEF_STMT (var) = new_phi;
4641       gimple_phi_set_result (phi, make_ssa_name (SSA_NAME_VAR (var), phi));
4642       add_phi_arg (new_phi, gimple_phi_result (phi), fallthru);
4643     }
4644
4645   /* Add the arguments we have stored on edges.  */
4646   FOR_EACH_EDGE (e, ei, bb->preds)
4647     {
4648       if (e == fallthru)
4649         continue;
4650
4651       flush_pending_stmts (e);
4652     }
4653 }
4654
4655
4656 /* Return a non-special label in the head of basic block BLOCK.
4657    Create one if it doesn't exist.  */
4658
4659 tree
4660 gimple_block_label (basic_block bb)
4661 {
4662   gimple_stmt_iterator i, s = gsi_start_bb (bb);
4663   bool first = true;
4664   tree label;
4665   gimple stmt;
4666
4667   for (i = s; !gsi_end_p (i); first = false, gsi_next (&i))
4668     {
4669       stmt = gsi_stmt (i);
4670       if (gimple_code (stmt) != GIMPLE_LABEL)
4671         break;
4672       label = gimple_label_label (stmt);
4673       if (!DECL_NONLOCAL (label))
4674         {
4675           if (!first)
4676             gsi_move_before (&i, &s);
4677           return label;
4678         }
4679     }
4680
4681   label = create_artificial_label ();
4682   stmt = gimple_build_label (label);
4683   gsi_insert_before (&s, stmt, GSI_NEW_STMT);
4684   return label;
4685 }
4686
4687
4688 /* Attempt to perform edge redirection by replacing a possibly complex
4689    jump instruction by a goto or by removing the jump completely.
4690    This can apply only if all edges now point to the same block.  The
4691    parameters and return values are equivalent to
4692    redirect_edge_and_branch.  */
4693
4694 static edge
4695 gimple_try_redirect_by_replacing_jump (edge e, basic_block target)
4696 {
4697   basic_block src = e->src;
4698   gimple_stmt_iterator i;
4699   gimple stmt;
4700
4701   /* We can replace or remove a complex jump only when we have exactly
4702      two edges.  */
4703   if (EDGE_COUNT (src->succs) != 2
4704       /* Verify that all targets will be TARGET.  Specifically, the
4705          edge that is not E must also go to TARGET.  */
4706       || EDGE_SUCC (src, EDGE_SUCC (src, 0) == e)->dest != target)
4707     return NULL;
4708
4709   i = gsi_last_bb (src);
4710   if (gsi_end_p (i))
4711     return NULL;
4712
4713   stmt = gsi_stmt (i);
4714
4715   if (gimple_code (stmt) == GIMPLE_COND || gimple_code (stmt) == GIMPLE_SWITCH)
4716     {
4717       gsi_remove (&i, true);
4718       e = ssa_redirect_edge (e, target);
4719       e->flags = EDGE_FALLTHRU;
4720       return e;
4721     }
4722
4723   return NULL;
4724 }
4725
4726
4727 /* Redirect E to DEST.  Return NULL on failure.  Otherwise, return the
4728    edge representing the redirected branch.  */
4729
4730 static edge
4731 gimple_redirect_edge_and_branch (edge e, basic_block dest)
4732 {
4733   basic_block bb = e->src;
4734   gimple_stmt_iterator gsi;
4735   edge ret;
4736   gimple stmt;
4737
4738   if (e->flags & EDGE_ABNORMAL)
4739     return NULL;
4740
4741   if (e->src != ENTRY_BLOCK_PTR
4742       && (ret = gimple_try_redirect_by_replacing_jump (e, dest)))
4743     return ret;
4744
4745   if (e->dest == dest)
4746     return NULL;
4747
4748   gsi = gsi_last_bb (bb);
4749   stmt = gsi_end_p (gsi) ? NULL : gsi_stmt (gsi);
4750
4751   switch (stmt ? gimple_code (stmt) : ERROR_MARK)
4752     {
4753     case GIMPLE_COND:
4754       /* For COND_EXPR, we only need to redirect the edge.  */
4755       break;
4756
4757     case GIMPLE_GOTO:
4758       /* No non-abnormal edges should lead from a non-simple goto, and
4759          simple ones should be represented implicitly.  */
4760       gcc_unreachable ();
4761
4762     case GIMPLE_SWITCH:
4763       {
4764         tree label = gimple_block_label (dest);
4765         tree cases = get_cases_for_edge (e, stmt);
4766
4767         /* If we have a list of cases associated with E, then use it
4768            as it's a lot faster than walking the entire case vector.  */
4769         if (cases)
4770           {
4771             edge e2 = find_edge (e->src, dest);
4772             tree last, first;
4773
4774             first = cases;
4775             while (cases)
4776               {
4777                 last = cases;
4778                 CASE_LABEL (cases) = label;
4779                 cases = TREE_CHAIN (cases);
4780               }
4781
4782             /* If there was already an edge in the CFG, then we need
4783                to move all the cases associated with E to E2.  */
4784             if (e2)
4785               {
4786                 tree cases2 = get_cases_for_edge (e2, stmt);
4787
4788                 TREE_CHAIN (last) = TREE_CHAIN (cases2);
4789                 TREE_CHAIN (cases2) = first;
4790               }
4791           }
4792         else
4793           {
4794             size_t i, n = gimple_switch_num_labels (stmt);
4795
4796             for (i = 0; i < n; i++)
4797               {
4798                 tree elt = gimple_switch_label (stmt, i);
4799                 if (label_to_block (CASE_LABEL (elt)) == e->dest)
4800                   CASE_LABEL (elt) = label;
4801               }
4802           }
4803
4804         break;
4805       }
4806
4807     case GIMPLE_RETURN:
4808       gsi_remove (&gsi, true);
4809       e->flags |= EDGE_FALLTHRU;
4810       break;
4811
4812     case GIMPLE_OMP_RETURN:
4813     case GIMPLE_OMP_CONTINUE:
4814     case GIMPLE_OMP_SECTIONS_SWITCH:
4815     case GIMPLE_OMP_FOR:
4816       /* The edges from OMP constructs can be simply redirected.  */
4817       break;
4818
4819     default:
4820       /* Otherwise it must be a fallthru edge, and we don't need to
4821          do anything besides redirecting it.  */
4822       gcc_assert (e->flags & EDGE_FALLTHRU);
4823       break;
4824     }
4825
4826   /* Update/insert PHI nodes as necessary.  */
4827
4828   /* Now update the edges in the CFG.  */
4829   e = ssa_redirect_edge (e, dest);
4830
4831   return e;
4832 }
4833
4834 /* Returns true if it is possible to remove edge E by redirecting
4835    it to the destination of the other edge from E->src.  */
4836
4837 static bool
4838 gimple_can_remove_branch_p (const_edge e)
4839 {
4840   if (e->flags & EDGE_ABNORMAL)
4841     return false;
4842
4843   return true;
4844 }
4845
4846 /* Simple wrapper, as we can always redirect fallthru edges.  */
4847
4848 static basic_block
4849 gimple_redirect_edge_and_branch_force (edge e, basic_block dest)
4850 {
4851   e = gimple_redirect_edge_and_branch (e, dest);
4852   gcc_assert (e);
4853
4854   return NULL;
4855 }
4856
4857
4858 /* Splits basic block BB after statement STMT (but at least after the
4859    labels).  If STMT is NULL, BB is split just after the labels.  */
4860
4861 static basic_block
4862 gimple_split_block (basic_block bb, void *stmt)
4863 {
4864   gimple_stmt_iterator gsi;
4865   gimple_stmt_iterator gsi_tgt;
4866   gimple act;
4867   gimple_seq list;
4868   basic_block new_bb;
4869   edge e;
4870   edge_iterator ei;
4871
4872   new_bb = create_empty_bb (bb);
4873
4874   /* Redirect the outgoing edges.  */
4875   new_bb->succs = bb->succs;
4876   bb->succs = NULL;
4877   FOR_EACH_EDGE (e, ei, new_bb->succs)
4878     e->src = new_bb;
4879
4880   if (stmt && gimple_code ((gimple) stmt) == GIMPLE_LABEL)
4881     stmt = NULL;
4882
4883   /* Move everything from GSI to the new basic block.  */
4884   for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4885     {
4886       act = gsi_stmt (gsi);
4887       if (gimple_code (act) == GIMPLE_LABEL)
4888         continue;
4889
4890       if (!stmt)
4891         break;
4892
4893       if (stmt == act)
4894         {
4895           gsi_next (&gsi);
4896           break;
4897         }
4898     }
4899
4900   if (gsi_end_p (gsi))
4901     return new_bb;
4902
4903   /* Split the statement list - avoid re-creating new containers as this
4904      brings ugly quadratic memory consumption in the inliner.  
4905      (We are still quadratic since we need to update stmt BB pointers,
4906      sadly.)  */
4907   list = gsi_split_seq_before (&gsi);
4908   set_bb_seq (new_bb, list);
4909   for (gsi_tgt = gsi_start (list);
4910        !gsi_end_p (gsi_tgt); gsi_next (&gsi_tgt))
4911     gimple_set_bb (gsi_stmt (gsi_tgt), new_bb);
4912
4913   return new_bb;
4914 }
4915
4916
4917 /* Moves basic block BB after block AFTER.  */
4918
4919 static bool
4920 gimple_move_block_after (basic_block bb, basic_block after)
4921 {
4922   if (bb->prev_bb == after)
4923     return true;
4924
4925   unlink_block (bb);
4926   link_block (bb, after);
4927
4928   return true;
4929 }
4930
4931
4932 /* Return true if basic_block can be duplicated.  */
4933
4934 static bool
4935 gimple_can_duplicate_bb_p (const_basic_block bb ATTRIBUTE_UNUSED)
4936 {
4937   return true;
4938 }
4939
4940 /* Create a duplicate of the basic block BB.  NOTE: This does not
4941    preserve SSA form.  */
4942
4943 static basic_block
4944 gimple_duplicate_bb (basic_block bb)
4945 {
4946   basic_block new_bb;
4947   gimple_stmt_iterator gsi, gsi_tgt;
4948   gimple_seq phis = phi_nodes (bb);
4949   gimple phi, stmt, copy;
4950
4951   new_bb = create_empty_bb (EXIT_BLOCK_PTR->prev_bb);
4952
4953   /* Copy the PHI nodes.  We ignore PHI node arguments here because
4954      the incoming edges have not been setup yet.  */
4955   for (gsi = gsi_start (phis); !gsi_end_p (gsi); gsi_next (&gsi))
4956     {
4957       phi = gsi_stmt (gsi);
4958       copy = create_phi_node (gimple_phi_result (phi), new_bb);
4959       create_new_def_for (gimple_phi_result (copy), copy,
4960                           gimple_phi_result_ptr (copy));
4961     }
4962
4963   gsi_tgt = gsi_start_bb (new_bb);
4964   for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4965     {
4966       def_operand_p def_p;
4967       ssa_op_iter op_iter;
4968       int region;
4969
4970       stmt = gsi_stmt (gsi);
4971       if (gimple_code (stmt) == GIMPLE_LABEL)
4972         continue;
4973
4974       /* Create a new copy of STMT and duplicate STMT's virtual
4975          operands.  */
4976       copy = gimple_copy (stmt);
4977       gsi_insert_after (&gsi_tgt, copy, GSI_NEW_STMT);
4978       region = lookup_stmt_eh_region (stmt);
4979       if (region >= 0)
4980         add_stmt_to_eh_region (copy, region);
4981       gimple_duplicate_stmt_histograms (cfun, copy, cfun, stmt);
4982
4983       /* Create new names for all the definitions created by COPY and
4984          add replacement mappings for each new name.  */
4985       FOR_EACH_SSA_DEF_OPERAND (def_p, copy, op_iter, SSA_OP_ALL_DEFS)
4986         create_new_def_for (DEF_FROM_PTR (def_p), copy, def_p);
4987     }
4988
4989   return new_bb;
4990 }
4991
4992 /* Adds phi node arguments for edge E_COPY after basic block duplication.  */
4993
4994 static void
4995 add_phi_args_after_copy_edge (edge e_copy)
4996 {
4997   basic_block bb, bb_copy = e_copy->src, dest;
4998   edge e;
4999   edge_iterator ei;
5000   gimple phi, phi_copy;
5001   tree def;
5002   gimple_stmt_iterator psi, psi_copy;
5003
5004   if (gimple_seq_empty_p (phi_nodes (e_copy->dest)))
5005     return;
5006
5007   bb = bb_copy->flags & BB_DUPLICATED ? get_bb_original (bb_copy) : bb_copy;
5008
5009   if (e_copy->dest->flags & BB_DUPLICATED)
5010     dest = get_bb_original (e_copy->dest);
5011   else
5012     dest = e_copy->dest;
5013
5014   e = find_edge (bb, dest);
5015   if (!e)
5016     {
5017       /* During loop unrolling the target of the latch edge is copied.
5018          In this case we are not looking for edge to dest, but to
5019          duplicated block whose original was dest.  */
5020       FOR_EACH_EDGE (e, ei, bb->succs)
5021         {
5022           if ((e->dest->flags & BB_DUPLICATED)
5023               && get_bb_original (e->dest) == dest)
5024             break;
5025         }
5026
5027       gcc_assert (e != NULL);
5028     }
5029
5030   for (psi = gsi_start_phis (e->dest),
5031        psi_copy = gsi_start_phis (e_copy->dest);
5032        !gsi_end_p (psi);
5033        gsi_next (&psi), gsi_next (&psi_copy))
5034     {
5035       phi = gsi_stmt (psi);
5036       phi_copy = gsi_stmt (psi_copy);
5037       def = PHI_ARG_DEF_FROM_EDGE (phi, e);
5038       add_phi_arg (phi_copy, def, e_copy);
5039     }
5040 }
5041
5042
5043 /* Basic block BB_COPY was created by code duplication.  Add phi node
5044    arguments for edges going out of BB_COPY.  The blocks that were
5045    duplicated have BB_DUPLICATED set.  */
5046
5047 void
5048 add_phi_args_after_copy_bb (basic_block bb_copy)
5049 {
5050   edge e_copy;
5051   edge_iterator ei;
5052
5053   FOR_EACH_EDGE (e_copy, ei, bb_copy->succs)
5054     {
5055       add_phi_args_after_copy_edge (e_copy);
5056     }
5057 }
5058
5059 /* Blocks in REGION_COPY array of length N_REGION were created by
5060    duplication of basic blocks.  Add phi node arguments for edges
5061    going from these blocks.  If E_COPY is not NULL, also add
5062    phi node arguments for its destination.*/
5063
5064 void
5065 add_phi_args_after_copy (basic_block *region_copy, unsigned n_region,
5066                          edge e_copy)
5067 {
5068   unsigned i;
5069
5070   for (i = 0; i < n_region; i++)
5071     region_copy[i]->flags |= BB_DUPLICATED;
5072
5073   for (i = 0; i < n_region; i++)
5074     add_phi_args_after_copy_bb (region_copy[i]);
5075   if (e_copy)
5076     add_phi_args_after_copy_edge (e_copy);
5077
5078   for (i = 0; i < n_region; i++)
5079     region_copy[i]->flags &= ~BB_DUPLICATED;
5080 }
5081
5082 /* Duplicates a REGION (set of N_REGION basic blocks) with just a single
5083    important exit edge EXIT.  By important we mean that no SSA name defined
5084    inside region is live over the other exit edges of the region.  All entry
5085    edges to the region must go to ENTRY->dest.  The edge ENTRY is redirected
5086    to the duplicate of the region.  SSA form, dominance and loop information
5087    is updated.  The new basic blocks are stored to REGION_COPY in the same
5088    order as they had in REGION, provided that REGION_COPY is not NULL.
5089    The function returns false if it is unable to copy the region,
5090    true otherwise.  */
5091
5092 bool
5093 gimple_duplicate_sese_region (edge entry, edge exit,
5094                             basic_block *region, unsigned n_region,
5095                             basic_block *region_copy)
5096 {
5097   unsigned i;
5098   bool free_region_copy = false, copying_header = false;
5099   struct loop *loop = entry->dest->loop_father;
5100   edge exit_copy;
5101   VEC (basic_block, heap) *doms;
5102   edge redirected;
5103   int total_freq = 0, entry_freq = 0;
5104   gcov_type total_count = 0, entry_count = 0;
5105
5106   if (!can_copy_bbs_p (region, n_region))
5107     return false;
5108
5109   /* Some sanity checking.  Note that we do not check for all possible
5110      missuses of the functions.  I.e. if you ask to copy something weird,
5111      it will work, but the state of structures probably will not be
5112      correct.  */
5113   for (i = 0; i < n_region; i++)
5114     {
5115       /* We do not handle subloops, i.e. all the blocks must belong to the
5116          same loop.  */
5117       if (region[i]->loop_father != loop)
5118         return false;
5119
5120       if (region[i] != entry->dest
5121           && region[i] == loop->header)
5122         return false;
5123     }
5124
5125   set_loop_copy (loop, loop);
5126
5127   /* In case the function is used for loop header copying (which is the primary
5128      use), ensure that EXIT and its copy will be new latch and entry edges.  */
5129   if (loop->header == entry->dest)
5130     {
5131       copying_header = true;
5132       set_loop_copy (loop, loop_outer (loop));
5133
5134       if (!dominated_by_p (CDI_DOMINATORS, loop->latch, exit->src))
5135         return false;
5136
5137       for (i = 0; i < n_region; i++)
5138         if (region[i] != exit->src
5139             && dominated_by_p (CDI_DOMINATORS, region[i], exit->src))
5140           return false;
5141     }
5142
5143   if (!region_copy)
5144     {
5145       region_copy = XNEWVEC (basic_block, n_region);
5146       free_region_copy = true;
5147     }
5148
5149   gcc_assert (!need_ssa_update_p (cfun));
5150
5151   /* Record blocks outside the region that are dominated by something
5152      inside.  */
5153   doms = NULL;
5154   initialize_original_copy_tables ();
5155
5156   doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region);
5157
5158   if (entry->dest->count)
5159     {
5160       total_count = entry->dest->count;
5161       entry_count = entry->count;
5162       /* Fix up corner cases, to avoid division by zero or creation of negative
5163          frequencies.  */
5164       if (entry_count > total_count)
5165         entry_count = total_count;
5166     }
5167   else
5168     {
5169       total_freq = entry->dest->frequency;
5170       entry_freq = EDGE_FREQUENCY (entry);
5171       /* Fix up corner cases, to avoid division by zero or creation of negative
5172          frequencies.  */
5173       if (total_freq == 0)
5174         total_freq = 1;
5175       else if (entry_freq > total_freq)
5176         entry_freq = total_freq;
5177     }
5178
5179   copy_bbs (region, n_region, region_copy, &exit, 1, &exit_copy, loop,
5180             split_edge_bb_loc (entry));
5181   if (total_count)
5182     {
5183       scale_bbs_frequencies_gcov_type (region, n_region,
5184                                        total_count - entry_count,
5185                                        total_count);
5186       scale_bbs_frequencies_gcov_type (region_copy, n_region, entry_count,
5187                                        total_count);
5188     }
5189   else
5190     {
5191       scale_bbs_frequencies_int (region, n_region, total_freq - entry_freq,
5192                                  total_freq);
5193       scale_bbs_frequencies_int (region_copy, n_region, entry_freq, total_freq);
5194     }
5195
5196   if (copying_header)
5197     {
5198       loop->header = exit->dest;
5199       loop->latch = exit->src;
5200     }
5201
5202   /* Redirect the entry and add the phi node arguments.  */
5203   redirected = redirect_edge_and_branch (entry, get_bb_copy (entry->dest));
5204   gcc_assert (redirected != NULL);
5205   flush_pending_stmts (entry);
5206
5207   /* Concerning updating of dominators:  We must recount dominators
5208      for entry block and its copy.  Anything that is outside of the
5209      region, but was dominated by something inside needs recounting as
5210      well.  */
5211   set_immediate_dominator (CDI_DOMINATORS, entry->dest, entry->src);
5212   VEC_safe_push (basic_block, heap, doms, get_bb_original (entry->dest));
5213   iterate_fix_dominators (CDI_DOMINATORS, doms, false);
5214   VEC_free (basic_block, heap, doms);
5215
5216   /* Add the other PHI node arguments.  */
5217   add_phi_args_after_copy (region_copy, n_region, NULL);
5218
5219   /* Update the SSA web.  */
5220   update_ssa (TODO_update_ssa);
5221
5222   if (free_region_copy)
5223     free (region_copy);
5224
5225   free_original_copy_tables ();
5226   return true;
5227 }
5228
5229 /* Duplicates REGION consisting of N_REGION blocks.  The new blocks
5230    are stored to REGION_COPY in the same order in that they appear
5231    in REGION, if REGION_COPY is not NULL.  ENTRY is the entry to
5232    the region, EXIT an exit from it.  The condition guarding EXIT
5233    is moved to ENTRY.  Returns true if duplication succeeds, false
5234    otherwise.
5235
5236    For example, 
5237  
5238    some_code;
5239    if (cond)
5240      A;
5241    else
5242      B;
5243
5244    is transformed to
5245
5246    if (cond)
5247      {
5248        some_code;
5249        A;
5250      }
5251    else
5252      {
5253        some_code;
5254        B;
5255      }
5256 */
5257
5258 bool
5259 gimple_duplicate_sese_tail (edge entry ATTRIBUTE_UNUSED, edge exit ATTRIBUTE_UNUSED,
5260                           basic_block *region ATTRIBUTE_UNUSED, unsigned n_region ATTRIBUTE_UNUSED,
5261                           basic_block *region_copy ATTRIBUTE_UNUSED)
5262 {
5263   unsigned i;
5264   bool free_region_copy = false;
5265   struct loop *loop = exit->dest->loop_father;
5266   struct loop *orig_loop = entry->dest->loop_father;
5267   basic_block switch_bb, entry_bb, nentry_bb;
5268   VEC (basic_block, heap) *doms;
5269   int total_freq = 0, exit_freq = 0;
5270   gcov_type total_count = 0, exit_count = 0;
5271   edge exits[2], nexits[2], e;
5272   gimple_stmt_iterator gsi;
5273   gimple cond_stmt;
5274   edge sorig, snew;
5275
5276   gcc_assert (EDGE_COUNT (exit->src->succs) == 2);
5277   exits[0] = exit;
5278   exits[1] = EDGE_SUCC (exit->src, EDGE_SUCC (exit->src, 0) == exit);
5279
5280   if (!can_copy_bbs_p (region, n_region))
5281     return false;
5282
5283   /* Some sanity checking.  Note that we do not check for all possible
5284      missuses of the functions.  I.e. if you ask to copy something weird
5285      (e.g., in the example, if there is a jump from inside to the middle
5286      of some_code, or come_code defines some of the values used in cond)
5287      it will work, but the resulting code will not be correct.  */
5288   for (i = 0; i < n_region; i++)
5289     {
5290       /* We do not handle subloops, i.e. all the blocks must belong to the
5291          same loop.  */
5292       if (region[i]->loop_father != orig_loop)
5293         return false;
5294
5295       if (region[i] == orig_loop->latch)
5296         return false;
5297     }
5298
5299   initialize_original_copy_tables ();
5300   set_loop_copy (orig_loop, loop);
5301
5302   if (!region_copy)
5303     {
5304       region_copy = XNEWVEC (basic_block, n_region);
5305       free_region_copy = true;
5306     }
5307
5308   gcc_assert (!need_ssa_update_p (cfun));
5309
5310   /* Record blocks outside the region that are dominated by something
5311      inside.  */
5312   doms = get_dominated_by_region (CDI_DOMINATORS, region, n_region);
5313
5314   if (exit->src->count)
5315     {
5316       total_count = exit->src->count;
5317       exit_count = exit->count;
5318       /* Fix up corner cases, to avoid division by zero or creation of negative
5319          frequencies.  */
5320       if (exit_count > total_count)
5321         exit_count = total_count;
5322     }
5323   else
5324     {
5325       total_freq = exit->src->frequency;
5326       exit_freq = EDGE_FREQUENCY (exit);
5327       /* Fix up corner cases, to avoid division by zero or creation of negative
5328          frequencies.  */
5329       if (total_freq == 0)
5330         total_freq = 1;
5331       if (exit_freq > total_freq)
5332         exit_freq = total_freq;
5333     }
5334
5335   copy_bbs (region, n_region, region_copy, exits, 2, nexits, orig_loop,
5336             split_edge_bb_loc (exit));
5337   if (total_count)
5338     {
5339       scale_bbs_frequencies_gcov_type (region, n_region,
5340                                        total_count - exit_count,
5341                                        total_count);
5342       scale_bbs_frequencies_gcov_type (region_copy, n_region, exit_count,
5343                                        total_count);
5344     }
5345   else
5346     {
5347       scale_bbs_frequencies_int (region, n_region, total_freq - exit_freq,
5348                                  total_freq);
5349       scale_bbs_frequencies_int (region_copy, n_region, exit_freq, total_freq);
5350     }
5351
5352   /* Create the switch block, and put the exit condition to it.  */
5353   entry_bb = entry->dest;
5354   nentry_bb = get_bb_copy (entry_bb);
5355   if (!last_stmt (entry->src)
5356       || !stmt_ends_bb_p (last_stmt (entry->src)))
5357     switch_bb = entry->src;
5358   else
5359     switch_bb = split_edge (entry);
5360   set_immediate_dominator (CDI_DOMINATORS, nentry_bb, switch_bb);
5361
5362   gsi = gsi_last_bb (switch_bb);
5363   cond_stmt = last_stmt (exit->src);
5364   gcc_assert (gimple_code (cond_stmt) == GIMPLE_COND);
5365   cond_stmt = gimple_copy (cond_stmt);
5366   gimple_cond_set_lhs (cond_stmt, unshare_expr (gimple_cond_lhs (cond_stmt)));
5367   gimple_cond_set_rhs (cond_stmt, unshare_expr (gimple_cond_rhs (cond_stmt)));
5368   gsi_insert_after (&gsi, cond_stmt, GSI_NEW_STMT);
5369
5370   sorig = single_succ_edge (switch_bb);
5371   sorig->flags = exits[1]->flags;
5372   snew = make_edge (switch_bb, nentry_bb, exits[0]->flags);
5373
5374   /* Register the new edge from SWITCH_BB in loop exit lists.  */
5375   rescan_loop_exit (snew, true, false);
5376
5377   /* Add the PHI node arguments.  */
5378   add_phi_args_after_copy (region_copy, n_region, snew);
5379
5380   /* Get rid of now superfluous conditions and associated edges (and phi node
5381      arguments).  */
5382   e = redirect_edge_and_branch (exits[0], exits[1]->dest);
5383   PENDING_STMT (e) = NULL;
5384   e = redirect_edge_and_branch (nexits[1], nexits[0]->dest);
5385   PENDING_STMT (e) = NULL;
5386
5387   /* Anything that is outside of the region, but was dominated by something
5388      inside needs to update dominance info.  */
5389   iterate_fix_dominators (CDI_DOMINATORS, doms, false);
5390   VEC_free (basic_block, heap, doms);
5391
5392   /* Update the SSA web.  */
5393   update_ssa (TODO_update_ssa);
5394
5395   if (free_region_copy)
5396     free (region_copy);
5397
5398   free_original_copy_tables ();
5399   return true;
5400 }
5401
5402 /* Add all the blocks dominated by ENTRY to the array BBS_P.  Stop
5403    adding blocks when the dominator traversal reaches EXIT.  This
5404    function silently assumes that ENTRY strictly dominates EXIT.  */
5405
5406 void
5407 gather_blocks_in_sese_region (basic_block entry, basic_block exit,
5408                               VEC(basic_block,heap) **bbs_p)
5409 {
5410   basic_block son;
5411
5412   for (son = first_dom_son (CDI_DOMINATORS, entry);
5413        son;
5414        son = next_dom_son (CDI_DOMINATORS, son))
5415     {
5416       VEC_safe_push (basic_block, heap, *bbs_p, son);
5417       if (son != exit)
5418         gather_blocks_in_sese_region (son, exit, bbs_p);
5419     }
5420 }
5421
5422 /* Replaces *TP with a duplicate (belonging to function TO_CONTEXT).
5423    The duplicates are recorded in VARS_MAP.  */
5424
5425 static void
5426 replace_by_duplicate_decl (tree *tp, struct pointer_map_t *vars_map,
5427                            tree to_context)
5428 {
5429   tree t = *tp, new_t;
5430   struct function *f = DECL_STRUCT_FUNCTION (to_context);
5431   void **loc;
5432
5433   if (DECL_CONTEXT (t) == to_context)
5434     return;
5435
5436   loc = pointer_map_contains (vars_map, t);
5437
5438   if (!loc)
5439     {
5440       loc = pointer_map_insert (vars_map, t);
5441
5442       if (SSA_VAR_P (t))
5443         {
5444           new_t = copy_var_decl (t, DECL_NAME (t), TREE_TYPE (t));
5445           f->local_decls = tree_cons (NULL_TREE, new_t, f->local_decls);
5446         }
5447       else
5448         {
5449           gcc_assert (TREE_CODE (t) == CONST_DECL);
5450           new_t = copy_node (t);
5451         }
5452       DECL_CONTEXT (new_t) = to_context;
5453
5454       *loc = new_t;
5455     }
5456   else
5457     new_t = (tree) *loc;
5458
5459   *tp = new_t;
5460 }
5461
5462
5463 /* Creates an ssa name in TO_CONTEXT equivalent to NAME.
5464    VARS_MAP maps old ssa names and var_decls to the new ones.  */
5465
5466 static tree
5467 replace_ssa_name (tree name, struct pointer_map_t *vars_map,
5468                   tree to_context)
5469 {
5470   void **loc;
5471   tree new_name, decl = SSA_NAME_VAR (name);
5472
5473   gcc_assert (is_gimple_reg (name));
5474
5475   loc = pointer_map_contains (vars_map, name);
5476
5477   if (!loc)
5478     {
5479       replace_by_duplicate_decl (&decl, vars_map, to_context);
5480
5481       push_cfun (DECL_STRUCT_FUNCTION (to_context));
5482       if (gimple_in_ssa_p (cfun))
5483         add_referenced_var (decl);
5484
5485       new_name = make_ssa_name (decl, SSA_NAME_DEF_STMT (name));
5486       if (SSA_NAME_IS_DEFAULT_DEF (name))
5487         set_default_def (decl, new_name);
5488       pop_cfun ();
5489
5490       loc = pointer_map_insert (vars_map, name);
5491       *loc = new_name;
5492     }
5493   else
5494     new_name = (tree) *loc;
5495
5496   return new_name;
5497 }
5498
5499 struct move_stmt_d
5500 {
5501   tree orig_block;
5502   tree new_block;
5503   tree from_context;
5504   tree to_context;
5505   struct pointer_map_t *vars_map;
5506   htab_t new_label_map;
5507   bool remap_decls_p;
5508 };
5509
5510 /* Helper for move_block_to_fn.  Set TREE_BLOCK in every expression
5511    contained in *TP if it has been ORIG_BLOCK previously and change the
5512    DECL_CONTEXT of every local variable referenced in *TP.  */
5513
5514 static tree
5515 move_stmt_op (tree *tp, int *walk_subtrees, void *data)
5516 {
5517   struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
5518   struct move_stmt_d *p = (struct move_stmt_d *) wi->info;
5519   tree t = *tp;
5520
5521   if (EXPR_P (t))
5522     /* We should never have TREE_BLOCK set on non-statements.  */
5523     gcc_assert (!TREE_BLOCK (t));
5524
5525   else if (DECL_P (t) || TREE_CODE (t) == SSA_NAME)
5526     {
5527       if (TREE_CODE (t) == SSA_NAME)
5528         *tp = replace_ssa_name (t, p->vars_map, p->to_context);
5529       else if (TREE_CODE (t) == LABEL_DECL)
5530         {
5531           if (p->new_label_map)
5532             {
5533               struct tree_map in, *out;
5534               in.base.from = t;
5535               out = (struct tree_map *)
5536                 htab_find_with_hash (p->new_label_map, &in, DECL_UID (t));
5537               if (out)
5538                 *tp = t = out->to;
5539             }
5540
5541           DECL_CONTEXT (t) = p->to_context;
5542         }
5543       else if (p->remap_decls_p)
5544         {
5545           /* Replace T with its duplicate.  T should no longer appear in the
5546              parent function, so this looks wasteful; however, it may appear
5547              in referenced_vars, and more importantly, as virtual operands of
5548              statements, and in alias lists of other variables.  It would be
5549              quite difficult to expunge it from all those places.  ??? It might
5550              suffice to do this for addressable variables.  */
5551           if ((TREE_CODE (t) == VAR_DECL
5552                && !is_global_var (t))
5553               || TREE_CODE (t) == CONST_DECL)
5554             replace_by_duplicate_decl (tp, p->vars_map, p->to_context);
5555           
5556           if (SSA_VAR_P (t)
5557               && gimple_in_ssa_p (cfun))
5558             {
5559               push_cfun (DECL_STRUCT_FUNCTION (p->to_context));
5560               add_referenced_var (*tp);
5561               pop_cfun ();
5562             }
5563         }
5564       *walk_subtrees = 0;
5565     }
5566   else if (TYPE_P (t))
5567     *walk_subtrees = 0;
5568
5569   return NULL_TREE;
5570 }
5571
5572 /* Like move_stmt_op, but for gimple statements.
5573
5574    Helper for move_block_to_fn.  Set GIMPLE_BLOCK in every expression
5575    contained in the current statement in *GSI_P and change the
5576    DECL_CONTEXT of every local variable referenced in the current
5577    statement.  */
5578
5579 static tree
5580 move_stmt_r (gimple_stmt_iterator *gsi_p, bool *handled_ops_p,
5581              struct walk_stmt_info *wi)
5582 {
5583   struct move_stmt_d *p = (struct move_stmt_d *) wi->info;
5584   gimple stmt = gsi_stmt (*gsi_p);
5585   tree block = gimple_block (stmt);
5586
5587   if (p->orig_block == NULL_TREE
5588       || block == p->orig_block
5589       || block == NULL_TREE)
5590     gimple_set_block (stmt, p->new_block);
5591 #ifdef ENABLE_CHECKING
5592   else if (block != p->new_block)
5593     {
5594       while (block && block != p->orig_block)
5595         block = BLOCK_SUPERCONTEXT (block);
5596       gcc_assert (block);
5597     }
5598 #endif
5599
5600   if (is_gimple_omp (stmt)
5601       && gimple_code (stmt) != GIMPLE_OMP_RETURN
5602       && gimple_code (stmt) != GIMPLE_OMP_CONTINUE)
5603     {
5604       /* Do not remap variables inside OMP directives.  Variables
5605          referenced in clauses and directive header belong to the
5606          parent function and should not be moved into the child
5607          function.  */
5608       bool save_remap_decls_p = p->remap_decls_p;
5609       p->remap_decls_p = false;
5610       *handled_ops_p = true;
5611
5612       walk_gimple_seq (gimple_omp_body (stmt), move_stmt_r, move_stmt_op, wi);
5613
5614       p->remap_decls_p = save_remap_decls_p;
5615     }
5616
5617   return NULL_TREE;
5618 }
5619
5620 /* Marks virtual operands of all statements in basic blocks BBS for
5621    renaming.  */
5622
5623 void
5624 mark_virtual_ops_in_bb (basic_block bb)
5625 {
5626   gimple_stmt_iterator gsi;
5627
5628   for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5629     mark_virtual_ops_for_renaming (gsi_stmt (gsi));
5630
5631   for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5632     mark_virtual_ops_for_renaming (gsi_stmt (gsi));
5633 }
5634
5635 /* Move basic block BB from function CFUN to function DEST_FN.  The
5636    block is moved out of the original linked list and placed after
5637    block AFTER in the new list.  Also, the block is removed from the
5638    original array of blocks and placed in DEST_FN's array of blocks.
5639    If UPDATE_EDGE_COUNT_P is true, the edge counts on both CFGs is
5640    updated to reflect the moved edges.
5641
5642    The local variables are remapped to new instances, VARS_MAP is used
5643    to record the mapping.  */
5644
5645 static void
5646 move_block_to_fn (struct function *dest_cfun, basic_block bb,
5647                   basic_block after, bool update_edge_count_p,
5648                   struct move_stmt_d *d, int eh_offset)
5649 {
5650   struct control_flow_graph *cfg;
5651   edge_iterator ei;
5652   edge e;
5653   gimple_stmt_iterator si;
5654   unsigned old_len, new_len;
5655
5656   /* Remove BB from dominance structures.  */
5657   delete_from_dominance_info (CDI_DOMINATORS, bb);
5658   if (current_loops)
5659     remove_bb_from_loops (bb);
5660
5661   /* Link BB to the new linked list.  */
5662   move_block_after (bb, after);
5663
5664   /* Update the edge count in the corresponding flowgraphs.  */
5665   if (update_edge_count_p)
5666     FOR_EACH_EDGE (e, ei, bb->succs)
5667       {
5668         cfun->cfg->x_n_edges--;
5669         dest_cfun->cfg->x_n_edges++;
5670       }
5671
5672   /* Remove BB from the original basic block array.  */
5673   VEC_replace (basic_block, cfun->cfg->x_basic_block_info, bb->index, NULL);
5674   cfun->cfg->x_n_basic_blocks--;
5675
5676   /* Grow DEST_CFUN's basic block array if needed.  */
5677   cfg = dest_cfun->cfg;
5678   cfg->x_n_basic_blocks++;
5679   if (bb->index >= cfg->x_last_basic_block)
5680     cfg->x_last_basic_block = bb->index + 1;
5681
5682   old_len = VEC_length (basic_block, cfg->x_basic_block_info);
5683   if ((unsigned) cfg->x_last_basic_block >= old_len)
5684     {
5685       new_len = cfg->x_last_basic_block + (cfg->x_last_basic_block + 3) / 4;
5686       VEC_safe_grow_cleared (basic_block, gc, cfg->x_basic_block_info,
5687                              new_len);
5688     }
5689
5690   VEC_replace (basic_block, cfg->x_basic_block_info,
5691                bb->index, bb);
5692
5693   /* Remap the variables in phi nodes.  */
5694   for (si = gsi_start_phis (bb); !gsi_end_p (si); )
5695     {
5696       gimple phi = gsi_stmt (si);
5697       use_operand_p use;
5698       tree op = PHI_RESULT (phi);
5699       ssa_op_iter oi;
5700
5701       if (!is_gimple_reg (op))
5702         {
5703           /* Remove the phi nodes for virtual operands (alias analysis will be
5704              run for the new function, anyway).  */
5705           remove_phi_node (&si, true);
5706           continue;
5707         }
5708
5709       SET_PHI_RESULT (phi,
5710                       replace_ssa_name (op, d->vars_map, dest_cfun->decl));
5711       FOR_EACH_PHI_ARG (use, phi, oi, SSA_OP_USE)
5712         {
5713           op = USE_FROM_PTR (use);
5714           if (TREE_CODE (op) == SSA_NAME)
5715             SET_USE (use, replace_ssa_name (op, d->vars_map, dest_cfun->decl));
5716         }
5717
5718       gsi_next (&si);
5719     }
5720
5721   for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5722     {
5723       gimple stmt = gsi_stmt (si);
5724       int region;
5725       struct walk_stmt_info wi;
5726
5727       memset (&wi, 0, sizeof (wi));
5728       wi.info = d;
5729       walk_gimple_stmt (&si, move_stmt_r, move_stmt_op, &wi);
5730
5731       if (gimple_code (stmt) == GIMPLE_LABEL)
5732         {
5733           tree label = gimple_label_label (stmt);
5734           int uid = LABEL_DECL_UID (label);
5735
5736           gcc_assert (uid > -1);
5737
5738           old_len = VEC_length (basic_block, cfg->x_label_to_block_map);
5739           if (old_len <= (unsigned) uid)
5740             {
5741               new_len = 3 * uid / 2 + 1;
5742               VEC_safe_grow_cleared (basic_block, gc,
5743                                      cfg->x_label_to_block_map, new_len);
5744             }
5745
5746           VEC_replace (basic_block, cfg->x_label_to_block_map, uid, bb);
5747           VEC_replace (basic_block, cfun->cfg->x_label_to_block_map, uid, NULL);
5748
5749           gcc_assert (DECL_CONTEXT (label) == dest_cfun->decl);
5750
5751           if (uid >= dest_cfun->cfg->last_label_uid)
5752             dest_cfun->cfg->last_label_uid = uid + 1;
5753         }
5754       else if (gimple_code (stmt) == GIMPLE_RESX && eh_offset != 0)
5755         gimple_resx_set_region (stmt, gimple_resx_region (stmt) + eh_offset);
5756
5757       region = lookup_stmt_eh_region (stmt);
5758       if (region >= 0)
5759         {
5760           add_stmt_to_eh_region_fn (dest_cfun, stmt, region + eh_offset);
5761           remove_stmt_from_eh_region (stmt);
5762           gimple_duplicate_stmt_histograms (dest_cfun, stmt, cfun, stmt);
5763           gimple_remove_stmt_histograms (cfun, stmt);
5764         }
5765
5766       /* We cannot leave any operands allocated from the operand caches of
5767          the current function.  */
5768       free_stmt_operands (stmt);
5769       push_cfun (dest_cfun);
5770       update_stmt (stmt);
5771       pop_cfun ();
5772     }
5773
5774   FOR_EACH_EDGE (e, ei, bb->succs)
5775     if (e->goto_locus)
5776       {
5777         tree block = e->goto_block;
5778         if (d->orig_block == NULL_TREE
5779             || block == d->orig_block)
5780           e->goto_block = d->new_block;
5781 #ifdef ENABLE_CHECKING
5782         else if (block != d->new_block)
5783           {
5784             while (block && block != d->orig_block)
5785               block = BLOCK_SUPERCONTEXT (block);
5786             gcc_assert (block);
5787           }
5788 #endif
5789       }
5790 }
5791
5792 /* Examine the statements in BB (which is in SRC_CFUN); find and return
5793    the outermost EH region.  Use REGION as the incoming base EH region.  */
5794
5795 static int
5796 find_outermost_region_in_block (struct function *src_cfun,
5797                                 basic_block bb, int region)
5798 {
5799   gimple_stmt_iterator si;
5800
5801   for (si = gsi_start_bb (bb); !gsi_end_p (si); gsi_next (&si))
5802     {
5803       gimple stmt = gsi_stmt (si);
5804       int stmt_region;
5805
5806       if (gimple_code (stmt) == GIMPLE_RESX)
5807         stmt_region = gimple_resx_region (stmt);
5808       else
5809         stmt_region = lookup_stmt_eh_region_fn (src_cfun, stmt);
5810       if (stmt_region > 0)
5811         {
5812           if (region < 0)
5813             region = stmt_region;
5814           else if (stmt_region != region)
5815             {
5816               region = eh_region_outermost (src_cfun, stmt_region, region);
5817               gcc_assert (region != -1);
5818             }
5819         }
5820     }
5821
5822   return region;
5823 }
5824
5825 static tree
5826 new_label_mapper (tree decl, void *data)
5827 {
5828   htab_t hash = (htab_t) data;
5829   struct tree_map *m;
5830   void **slot;
5831
5832   gcc_assert (TREE_CODE (decl) == LABEL_DECL);
5833
5834   m = XNEW (struct tree_map);
5835   m->hash = DECL_UID (decl);
5836   m->base.from = decl;
5837   m->to = create_artificial_label ();
5838   LABEL_DECL_UID (m->to) = LABEL_DECL_UID (decl);
5839   if (LABEL_DECL_UID (m->to) >= cfun->cfg->last_label_uid)
5840     cfun->cfg->last_label_uid = LABEL_DECL_UID (m->to) + 1;
5841
5842   slot = htab_find_slot_with_hash (hash, m, m->hash, INSERT);
5843   gcc_assert (*slot == NULL);
5844
5845   *slot = m;
5846
5847   return m->to;
5848 }
5849
5850 /* Change DECL_CONTEXT of all BLOCK_VARS in block, including
5851    subblocks.  */
5852
5853 static void
5854 replace_block_vars_by_duplicates (tree block, struct pointer_map_t *vars_map,
5855                                   tree to_context)
5856 {
5857   tree *tp, t;
5858
5859   for (tp = &BLOCK_VARS (block); *tp; tp = &TREE_CHAIN (*tp))
5860     {
5861       t = *tp;
5862       if (TREE_CODE (t) != VAR_DECL && TREE_CODE (t) != CONST_DECL)
5863         continue;
5864       replace_by_duplicate_decl (&t, vars_map, to_context);
5865       if (t != *tp)
5866         {
5867           if (TREE_CODE (*tp) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (*tp))
5868             {
5869               SET_DECL_VALUE_EXPR (t, DECL_VALUE_EXPR (*tp));
5870               DECL_HAS_VALUE_EXPR_P (t) = 1;
5871             }
5872           TREE_CHAIN (t) = TREE_CHAIN (*tp);
5873           *tp = t;
5874         }
5875     }
5876
5877   for (block = BLOCK_SUBBLOCKS (block); block; block = BLOCK_CHAIN (block))
5878     replace_block_vars_by_duplicates (block, vars_map, to_context);
5879 }
5880
5881 /* Move a single-entry, single-exit region delimited by ENTRY_BB and
5882    EXIT_BB to function DEST_CFUN.  The whole region is replaced by a
5883    single basic block in the original CFG and the new basic block is
5884    returned.  DEST_CFUN must not have a CFG yet.
5885
5886    Note that the region need not be a pure SESE region.  Blocks inside
5887    the region may contain calls to abort/exit.  The only restriction
5888    is that ENTRY_BB should be the only entry point and it must
5889    dominate EXIT_BB.
5890
5891    Change TREE_BLOCK of all statements in ORIG_BLOCK to the new
5892    functions outermost BLOCK, move all subblocks of ORIG_BLOCK
5893    to the new function.
5894
5895    All local variables referenced in the region are assumed to be in
5896    the corresponding BLOCK_VARS and unexpanded variable lists
5897    associated with DEST_CFUN.  */
5898
5899 basic_block
5900 move_sese_region_to_fn (struct function *dest_cfun, basic_block entry_bb,
5901                         basic_block exit_bb, tree orig_block)
5902 {
5903   VEC(basic_block,heap) *bbs, *dom_bbs;
5904   basic_block dom_entry = get_immediate_dominator (CDI_DOMINATORS, entry_bb);
5905   basic_block after, bb, *entry_pred, *exit_succ, abb;
5906   struct function *saved_cfun = cfun;
5907   int *entry_flag, *exit_flag, eh_offset;
5908   unsigned *entry_prob, *exit_prob;
5909   unsigned i, num_entry_edges, num_exit_edges;
5910   edge e;
5911   edge_iterator ei;
5912   htab_t new_label_map;
5913   struct pointer_map_t *vars_map;
5914   struct loop *loop = entry_bb->loop_father;
5915   struct move_stmt_d d;
5916
5917   /* If ENTRY does not strictly dominate EXIT, this cannot be an SESE
5918      region.  */
5919   gcc_assert (entry_bb != exit_bb
5920               && (!exit_bb
5921                   || dominated_by_p (CDI_DOMINATORS, exit_bb, entry_bb)));
5922
5923   /* Collect all the blocks in the region.  Manually add ENTRY_BB
5924      because it won't be added by dfs_enumerate_from.  */
5925   bbs = NULL;
5926   VEC_safe_push (basic_block, heap, bbs, entry_bb);
5927   gather_blocks_in_sese_region (entry_bb, exit_bb, &bbs);
5928
5929   /* The blocks that used to be dominated by something in BBS will now be
5930      dominated by the new block.  */
5931   dom_bbs = get_dominated_by_region (CDI_DOMINATORS,
5932                                      VEC_address (basic_block, bbs),
5933                                      VEC_length (basic_block, bbs));
5934
5935   /* Detach ENTRY_BB and EXIT_BB from CFUN->CFG.  We need to remember
5936      the predecessor edges to ENTRY_BB and the successor edges to
5937      EXIT_BB so that we can re-attach them to the new basic block that
5938      will replace the region.  */
5939   num_entry_edges = EDGE_COUNT (entry_bb->preds);
5940   entry_pred = (basic_block *) xcalloc (num_entry_edges, sizeof (basic_block));
5941   entry_flag = (int *) xcalloc (num_entry_edges, sizeof (int));
5942   entry_prob = XNEWVEC (unsigned, num_entry_edges);
5943   i = 0;
5944   for (ei = ei_start (entry_bb->preds); (e = ei_safe_edge (ei)) != NULL;)
5945     {
5946       entry_prob[i] = e->probability;
5947       entry_flag[i] = e->flags;
5948       entry_pred[i++] = e->src;
5949       remove_edge (e);
5950     }
5951
5952   if (exit_bb)
5953     {
5954       num_exit_edges = EDGE_COUNT (exit_bb->succs);
5955       exit_succ = (basic_block *) xcalloc (num_exit_edges,
5956                                            sizeof (basic_block));
5957       exit_flag = (int *) xcalloc (num_exit_edges, sizeof (int));
5958       exit_prob = XNEWVEC (unsigned, num_exit_edges);
5959       i = 0;
5960       for (ei = ei_start (exit_bb->succs); (e = ei_safe_edge (ei)) != NULL;)
5961         {
5962           exit_prob[i] = e->probability;
5963           exit_flag[i] = e->flags;
5964           exit_succ[i++] = e->dest;
5965           remove_edge (e);
5966         }
5967     }
5968   else
5969     {
5970       num_exit_edges = 0;
5971       exit_succ = NULL;
5972       exit_flag = NULL;
5973       exit_prob = NULL;
5974     }
5975
5976   /* Switch context to the child function to initialize DEST_FN's CFG.  */
5977   gcc_assert (dest_cfun->cfg == NULL);
5978   push_cfun (dest_cfun);
5979
5980   init_empty_tree_cfg ();
5981
5982   /* Initialize EH information for the new function.  */
5983   eh_offset = 0;
5984   new_label_map = NULL;
5985   if (saved_cfun->eh)
5986     {
5987       int region = -1;
5988
5989       for (i = 0; VEC_iterate (basic_block, bbs, i, bb); i++)
5990         region = find_outermost_region_in_block (saved_cfun, bb, region);
5991
5992       init_eh_for_function ();
5993       if (region != -1)
5994         {
5995           new_label_map = htab_create (17, tree_map_hash, tree_map_eq, free);
5996           eh_offset = duplicate_eh_regions (saved_cfun, new_label_mapper,
5997                                             new_label_map, region, 0);
5998         }
5999     }
6000
6001   pop_cfun ();
6002
6003   /* Move blocks from BBS into DEST_CFUN.  */
6004   gcc_assert (VEC_length (basic_block, bbs) >= 2);
6005   after = dest_cfun->cfg->x_entry_block_ptr;
6006   vars_map = pointer_map_create ();
6007
6008   memset (&d, 0, sizeof (d));
6009   d.vars_map = vars_map;
6010   d.from_context = cfun->decl;
6011   d.to_context = dest_cfun->decl;
6012   d.new_label_map = new_label_map;
6013   d.remap_decls_p = true;
6014   d.orig_block = orig_block;
6015   d.new_block = DECL_INITIAL (dest_cfun->decl);
6016
6017   for (i = 0; VEC_iterate (basic_block, bbs, i, bb); i++)
6018     {
6019       /* No need to update edge counts on the last block.  It has
6020          already been updated earlier when we detached the region from
6021          the original CFG.  */
6022       move_block_to_fn (dest_cfun, bb, after, bb != exit_bb, &d, eh_offset);
6023       after = bb;
6024     }
6025
6026   /* Rewire BLOCK_SUBBLOCKS of orig_block.  */
6027   if (orig_block)
6028     {
6029       tree block;
6030       gcc_assert (BLOCK_SUBBLOCKS (DECL_INITIAL (dest_cfun->decl))
6031                   == NULL_TREE);
6032       BLOCK_SUBBLOCKS (DECL_INITIAL (dest_cfun->decl))
6033         = BLOCK_SUBBLOCKS (orig_block);
6034       for (block = BLOCK_SUBBLOCKS (orig_block);
6035            block; block = BLOCK_CHAIN (block))
6036         BLOCK_SUPERCONTEXT (block) = DECL_INITIAL (dest_cfun->decl);
6037       BLOCK_SUBBLOCKS (orig_block) = NULL_TREE;
6038     }
6039
6040   replace_block_vars_by_duplicates (DECL_INITIAL (dest_cfun->decl),
6041                                     vars_map, dest_cfun->decl);
6042
6043   if (new_label_map)
6044     htab_delete (new_label_map);
6045   pointer_map_destroy (vars_map);
6046
6047   /* Rewire the entry and exit blocks.  The successor to the entry
6048      block turns into the successor of DEST_FN's ENTRY_BLOCK_PTR in
6049      the child function.  Similarly, the predecessor of DEST_FN's
6050      EXIT_BLOCK_PTR turns into the predecessor of EXIT_BLOCK_PTR.  We
6051      need to switch CFUN between DEST_CFUN and SAVED_CFUN so that the
6052      various CFG manipulation function get to the right CFG.
6053
6054      FIXME, this is silly.  The CFG ought to become a parameter to
6055      these helpers.  */
6056   push_cfun (dest_cfun);
6057   make_edge (ENTRY_BLOCK_PTR, entry_bb, EDGE_FALLTHRU);
6058   if (exit_bb)
6059     make_edge (exit_bb,  EXIT_BLOCK_PTR, 0);
6060   pop_cfun ();
6061
6062   /* Back in the original function, the SESE region has disappeared,
6063      create a new basic block in its place.  */
6064   bb = create_empty_bb (entry_pred[0]);
6065   if (current_loops)
6066     add_bb_to_loop (bb, loop);
6067   for (i = 0; i < num_entry_edges; i++)
6068     {
6069       e = make_edge (entry_pred[i], bb, entry_flag[i]);
6070       e->probability = entry_prob[i];
6071     }
6072
6073   for (i = 0; i < num_exit_edges; i++)
6074     {
6075       e = make_edge (bb, exit_succ[i], exit_flag[i]);
6076       e->probability = exit_prob[i];
6077     }
6078
6079   set_immediate_dominator (CDI_DOMINATORS, bb, dom_entry);
6080   for (i = 0; VEC_iterate (basic_block, dom_bbs, i, abb); i++)
6081     set_immediate_dominator (CDI_DOMINATORS, abb, bb);
6082   VEC_free (basic_block, heap, dom_bbs);
6083
6084   if (exit_bb)
6085     {
6086       free (exit_prob);
6087       free (exit_flag);
6088       free (exit_succ);
6089     }
6090   free (entry_prob);
6091   free (entry_flag);
6092   free (entry_pred);
6093   VEC_free (basic_block, heap, bbs);
6094
6095   return bb;
6096 }
6097
6098
6099 /* Dump FUNCTION_DECL FN to file FILE using FLAGS (see TDF_* in tree-pass.h)
6100    */
6101
6102 void
6103 dump_function_to_file (tree fn, FILE *file, int flags)
6104 {
6105   tree arg, vars, var;
6106   struct function *dsf;
6107   bool ignore_topmost_bind = false, any_var = false;
6108   basic_block bb;
6109   tree chain;
6110
6111   fprintf (file, "%s (", lang_hooks.decl_printable_name (fn, 2));
6112
6113   arg = DECL_ARGUMENTS (fn);
6114   while (arg)
6115     {
6116       print_generic_expr (file, TREE_TYPE (arg), dump_flags);
6117       fprintf (file, " ");
6118       print_generic_expr (file, arg, dump_flags);
6119       if (flags & TDF_VERBOSE)
6120         print_node (file, "", arg, 4);
6121       if (TREE_CHAIN (arg))
6122         fprintf (file, ", ");
6123       arg = TREE_CHAIN (arg);
6124     }
6125   fprintf (file, ")\n");
6126
6127   if (flags & TDF_VERBOSE)
6128     print_node (file, "", fn, 2);
6129
6130   dsf = DECL_STRUCT_FUNCTION (fn);
6131   if (dsf && (flags & TDF_DETAILS))
6132     dump_eh_tree (file, dsf);
6133
6134   if (flags & TDF_RAW && !gimple_has_body_p (fn))
6135     {
6136       dump_node (fn, TDF_SLIM | flags, file);
6137       return;
6138     }
6139
6140   /* Switch CFUN to point to FN.  */
6141   push_cfun (DECL_STRUCT_FUNCTION (fn));
6142
6143   /* When GIMPLE is lowered, the variables are no longer available in
6144      BIND_EXPRs, so display them separately.  */
6145   if (cfun && cfun->decl == fn && cfun->local_decls)
6146     {
6147       ignore_topmost_bind = true;
6148
6149       fprintf (file, "{\n");
6150       for (vars = cfun->local_decls; vars; vars = TREE_CHAIN (vars))
6151         {
6152           var = TREE_VALUE (vars);
6153
6154           print_generic_decl (file, var, flags);
6155           if (flags & TDF_VERBOSE)
6156             print_node (file, "", var, 4);
6157           fprintf (file, "\n");
6158
6159           any_var = true;
6160         }
6161     }
6162
6163   if (cfun && cfun->decl == fn && cfun->cfg && basic_block_info)
6164     {
6165       /* If the CFG has been built, emit a CFG-based dump.  */
6166       check_bb_profile (ENTRY_BLOCK_PTR, file);
6167       if (!ignore_topmost_bind)
6168         fprintf (file, "{\n");
6169
6170       if (any_var && n_basic_blocks)
6171         fprintf (file, "\n");
6172
6173       FOR_EACH_BB (bb)
6174         gimple_dump_bb (bb, file, 2, flags);
6175
6176       fprintf (file, "}\n");
6177       check_bb_profile (EXIT_BLOCK_PTR, file);
6178     }
6179   else if (DECL_SAVED_TREE (fn) == NULL)
6180     {
6181       /* The function is now in GIMPLE form but the CFG has not been
6182          built yet.  Emit the single sequence of GIMPLE statements
6183          that make up its body.  */
6184       gimple_seq body = gimple_body (fn);
6185
6186       if (gimple_seq_first_stmt (body)
6187           && gimple_seq_first_stmt (body) == gimple_seq_last_stmt (body)
6188           && gimple_code (gimple_seq_first_stmt (body)) == GIMPLE_BIND)
6189         print_gimple_seq (file, body, 0, flags);
6190       else
6191         {
6192           if (!ignore_topmost_bind)
6193             fprintf (file, "{\n");
6194
6195           if (any_var)
6196             fprintf (file, "\n");
6197
6198           print_gimple_seq (file, body, 2, flags);
6199           fprintf (file, "}\n");
6200         }
6201     }
6202   else
6203     {
6204       int indent;
6205
6206       /* Make a tree based dump.  */
6207       chain = DECL_SAVED_TREE (fn);
6208
6209       if (chain && TREE_CODE (chain) == BIND_EXPR)
6210         {
6211           if (ignore_topmost_bind)
6212             {
6213               chain = BIND_EXPR_BODY (chain);
6214               indent = 2;
6215             }
6216           else
6217             indent = 0;
6218         }
6219       else
6220         {
6221           if (!ignore_topmost_bind)
6222             fprintf (file, "{\n");
6223           indent = 2;
6224         }
6225
6226       if (any_var)
6227         fprintf (file, "\n");
6228
6229       print_generic_stmt_indented (file, chain, flags, indent);
6230       if (ignore_topmost_bind)
6231         fprintf (file, "}\n");
6232     }
6233
6234   fprintf (file, "\n\n");
6235
6236   /* Restore CFUN.  */
6237   pop_cfun ();
6238 }
6239
6240
6241 /* Dump FUNCTION_DECL FN to stderr using FLAGS (see TDF_* in tree.h)  */
6242
6243 void
6244 debug_function (tree fn, int flags)
6245 {
6246   dump_function_to_file (fn, stderr, flags);
6247 }
6248
6249
6250 /* Print on FILE the indexes for the predecessors of basic_block BB.  */
6251
6252 static void
6253 print_pred_bbs (FILE *file, basic_block bb)
6254 {
6255   edge e;
6256   edge_iterator ei;
6257
6258   FOR_EACH_EDGE (e, ei, bb->preds)
6259     fprintf (file, "bb_%d ", e->src->index);
6260 }
6261
6262
6263 /* Print on FILE the indexes for the successors of basic_block BB.  */
6264
6265 static void
6266 print_succ_bbs (FILE *file, basic_block bb)
6267 {
6268   edge e;
6269   edge_iterator ei;
6270
6271   FOR_EACH_EDGE (e, ei, bb->succs)
6272     fprintf (file, "bb_%d ", e->dest->index);
6273 }
6274
6275 /* Print to FILE the basic block BB following the VERBOSITY level.  */
6276
6277 void 
6278 print_loops_bb (FILE *file, basic_block bb, int indent, int verbosity)
6279 {
6280   char *s_indent = (char *) alloca ((size_t) indent + 1);
6281   memset ((void *) s_indent, ' ', (size_t) indent);
6282   s_indent[indent] = '\0';
6283
6284   /* Print basic_block's header.  */
6285   if (verbosity >= 2)
6286     {
6287       fprintf (file, "%s  bb_%d (preds = {", s_indent, bb->index);
6288       print_pred_bbs (file, bb);
6289       fprintf (file, "}, succs = {");
6290       print_succ_bbs (file, bb);
6291       fprintf (file, "})\n");
6292     }
6293
6294   /* Print basic_block's body.  */
6295   if (verbosity >= 3)
6296     {
6297       fprintf (file, "%s  {\n", s_indent);
6298       gimple_dump_bb (bb, file, indent + 4, TDF_VOPS|TDF_MEMSYMS);
6299       fprintf (file, "%s  }\n", s_indent);
6300     }
6301 }
6302
6303 static void print_loop_and_siblings (FILE *, struct loop *, int, int);
6304
6305 /* Pretty print LOOP on FILE, indented INDENT spaces.  Following
6306    VERBOSITY level this outputs the contents of the loop, or just its
6307    structure.  */
6308
6309 static void
6310 print_loop (FILE *file, struct loop *loop, int indent, int verbosity)
6311 {
6312   char *s_indent;
6313   basic_block bb;
6314
6315   if (loop == NULL)
6316     return;
6317
6318   s_indent = (char *) alloca ((size_t) indent + 1);
6319   memset ((void *) s_indent, ' ', (size_t) indent);
6320   s_indent[indent] = '\0';
6321
6322   /* Print loop's header.  */
6323   fprintf (file, "%sloop_%d (header = %d, latch = %d", s_indent, 
6324            loop->num, loop->header->index, loop->latch->index);
6325   fprintf (file, ", niter = ");
6326   print_generic_expr (file, loop->nb_iterations, 0);
6327
6328   if (loop->any_upper_bound)
6329     {
6330       fprintf (file, ", upper_bound = ");
6331       dump_double_int (file, loop->nb_iterations_upper_bound, true);
6332     }
6333
6334   if (loop->any_estimate)
6335     {
6336       fprintf (file, ", estimate = ");
6337       dump_double_int (file, loop->nb_iterations_estimate, true);
6338     }
6339   fprintf (file, ")\n");
6340
6341   /* Print loop's body.  */
6342   if (verbosity >= 1)
6343     {
6344       fprintf (file, "%s{\n", s_indent);
6345       FOR_EACH_BB (bb)
6346         if (bb->loop_father == loop)
6347           print_loops_bb (file, bb, indent, verbosity);
6348
6349       print_loop_and_siblings (file, loop->inner, indent + 2, verbosity);
6350       fprintf (file, "%s}\n", s_indent);
6351     }
6352 }
6353
6354 /* Print the LOOP and its sibling loops on FILE, indented INDENT
6355    spaces.  Following VERBOSITY level this outputs the contents of the
6356    loop, or just its structure.  */
6357
6358 static void
6359 print_loop_and_siblings (FILE *file, struct loop *loop, int indent, int verbosity)
6360 {
6361   if (loop == NULL)
6362     return;
6363
6364   print_loop (file, loop, indent, verbosity);
6365   print_loop_and_siblings (file, loop->next, indent, verbosity);
6366 }
6367
6368 /* Follow a CFG edge from the entry point of the program, and on entry
6369    of a loop, pretty print the loop structure on FILE.  */
6370
6371 void
6372 print_loops (FILE *file, int verbosity)
6373 {
6374   basic_block bb;
6375
6376   bb = ENTRY_BLOCK_PTR;
6377   if (bb && bb->loop_father)
6378     print_loop_and_siblings (file, bb->loop_father, 0, verbosity);
6379 }
6380
6381
6382 /* Debugging loops structure at tree level, at some VERBOSITY level.  */
6383
6384 void
6385 debug_loops (int verbosity)
6386 {
6387   print_loops (stderr, verbosity);
6388 }
6389
6390 /* Print on stderr the code of LOOP, at some VERBOSITY level.  */
6391
6392 void
6393 debug_loop (struct loop *loop, int verbosity)
6394 {
6395   print_loop (stderr, loop, 0, verbosity);
6396 }
6397
6398 /* Print on stderr the code of loop number NUM, at some VERBOSITY
6399    level.  */
6400
6401 void
6402 debug_loop_num (unsigned num, int verbosity)
6403 {
6404   debug_loop (get_loop (num), verbosity);
6405 }
6406
6407 /* Return true if BB ends with a call, possibly followed by some
6408    instructions that must stay with the call.  Return false,
6409    otherwise.  */
6410
6411 static bool
6412 gimple_block_ends_with_call_p (basic_block bb)
6413 {
6414   gimple_stmt_iterator gsi = gsi_last_bb (bb);
6415   return is_gimple_call (gsi_stmt (gsi));
6416 }
6417
6418
6419 /* Return true if BB ends with a conditional branch.  Return false,
6420    otherwise.  */
6421
6422 static bool
6423 gimple_block_ends_with_condjump_p (const_basic_block bb)
6424 {
6425   gimple stmt = last_stmt (CONST_CAST_BB (bb));
6426   return (stmt && gimple_code (stmt) == GIMPLE_COND);
6427 }
6428
6429
6430 /* Return true if we need to add fake edge to exit at statement T.
6431    Helper function for gimple_flow_call_edges_add.  */
6432
6433 static bool
6434 need_fake_edge_p (gimple t)
6435 {
6436   tree fndecl = NULL_TREE;
6437   int call_flags = 0;
6438
6439   /* NORETURN and LONGJMP calls already have an edge to exit.
6440      CONST and PURE calls do not need one.
6441      We don't currently check for CONST and PURE here, although
6442      it would be a good idea, because those attributes are
6443      figured out from the RTL in mark_constant_function, and
6444      the counter incrementation code from -fprofile-arcs
6445      leads to different results from -fbranch-probabilities.  */
6446   if (is_gimple_call (t))
6447     {
6448       fndecl = gimple_call_fndecl (t);
6449       call_flags = gimple_call_flags (t);
6450     }
6451
6452   if (is_gimple_call (t)
6453       && fndecl
6454       && DECL_BUILT_IN (fndecl)
6455       && (call_flags & ECF_NOTHROW)
6456       && !(call_flags & ECF_RETURNS_TWICE)
6457       /* fork() doesn't really return twice, but the effect of
6458          wrapping it in __gcov_fork() which calls __gcov_flush()
6459          and clears the counters before forking has the same
6460          effect as returning twice.  Force a fake edge.  */
6461       && !(DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
6462            && DECL_FUNCTION_CODE (fndecl) == BUILT_IN_FORK))
6463     return false;
6464
6465   if (is_gimple_call (t)
6466       && !(call_flags & ECF_NORETURN))
6467     return true;
6468
6469   if (gimple_code (t) == GIMPLE_ASM
6470        && (gimple_asm_volatile_p (t) || gimple_asm_input_p (t)))
6471     return true;
6472
6473   return false;
6474 }
6475
6476
6477 /* Add fake edges to the function exit for any non constant and non
6478    noreturn calls, volatile inline assembly in the bitmap of blocks
6479    specified by BLOCKS or to the whole CFG if BLOCKS is zero.  Return
6480    the number of blocks that were split.
6481
6482    The goal is to expose cases in which entering a basic block does
6483    not imply that all subsequent instructions must be executed.  */
6484
6485 static int
6486 gimple_flow_call_edges_add (sbitmap blocks)
6487 {
6488   int i;
6489   int blocks_split = 0;
6490   int last_bb = last_basic_block;
6491   bool check_last_block = false;
6492
6493   if (n_basic_blocks == NUM_FIXED_BLOCKS)
6494     return 0;
6495
6496   if (! blocks)
6497     check_last_block = true;
6498   else
6499     check_last_block = TEST_BIT (blocks, EXIT_BLOCK_PTR->prev_bb->index);
6500
6501   /* In the last basic block, before epilogue generation, there will be
6502      a fallthru edge to EXIT.  Special care is required if the last insn
6503      of the last basic block is a call because make_edge folds duplicate
6504      edges, which would result in the fallthru edge also being marked
6505      fake, which would result in the fallthru edge being removed by
6506      remove_fake_edges, which would result in an invalid CFG.
6507
6508      Moreover, we can't elide the outgoing fake edge, since the block
6509      profiler needs to take this into account in order to solve the minimal
6510      spanning tree in the case that the call doesn't return.
6511
6512      Handle this by adding a dummy instruction in a new last basic block.  */
6513   if (check_last_block)
6514     {
6515       basic_block bb = EXIT_BLOCK_PTR->prev_bb;
6516       gimple_stmt_iterator gsi = gsi_last_bb (bb);
6517       gimple t = NULL;
6518
6519       if (!gsi_end_p (gsi))
6520         t = gsi_stmt (gsi);
6521
6522       if (t && need_fake_edge_p (t))
6523         {
6524           edge e;
6525
6526           e = find_edge (bb, EXIT_BLOCK_PTR);
6527           if (e)
6528             {
6529               gsi_insert_on_edge (e, gimple_build_nop ());
6530               gsi_commit_edge_inserts ();
6531             }
6532         }
6533     }
6534
6535   /* Now add fake edges to the function exit for any non constant
6536      calls since there is no way that we can determine if they will
6537      return or not...  */
6538   for (i = 0; i < last_bb; i++)
6539     {
6540       basic_block bb = BASIC_BLOCK (i);
6541       gimple_stmt_iterator gsi;
6542       gimple stmt, last_stmt;
6543
6544       if (!bb)
6545         continue;
6546
6547       if (blocks && !TEST_BIT (blocks, i))
6548         continue;
6549
6550       gsi = gsi_last_bb (bb);
6551       if (!gsi_end_p (gsi))
6552         {
6553           last_stmt = gsi_stmt (gsi);
6554           do
6555             {
6556               stmt = gsi_stmt (gsi);
6557               if (need_fake_edge_p (stmt))
6558                 {
6559                   edge e;
6560
6561                   /* The handling above of the final block before the
6562                      epilogue should be enough to verify that there is
6563                      no edge to the exit block in CFG already.
6564                      Calling make_edge in such case would cause us to
6565                      mark that edge as fake and remove it later.  */
6566 #ifdef ENABLE_CHECKING
6567                   if (stmt == last_stmt)
6568                     {
6569                       e = find_edge (bb, EXIT_BLOCK_PTR);
6570                       gcc_assert (e == NULL);
6571                     }
6572 #endif
6573
6574                   /* Note that the following may create a new basic block
6575                      and renumber the existing basic blocks.  */
6576                   if (stmt != last_stmt)
6577                     {
6578                       e = split_block (bb, stmt);
6579                       if (e)
6580                         blocks_split++;
6581                     }
6582                   make_edge (bb, EXIT_BLOCK_PTR, EDGE_FAKE);
6583                 }
6584               gsi_prev (&gsi);
6585             }
6586           while (!gsi_end_p (gsi));
6587         }
6588     }
6589
6590   if (blocks_split)
6591     verify_flow_info ();
6592
6593   return blocks_split;
6594 }
6595
6596 /* Purge dead abnormal call edges from basic block BB.  */
6597
6598 bool
6599 gimple_purge_dead_abnormal_call_edges (basic_block bb)
6600 {
6601   bool changed = gimple_purge_dead_eh_edges (bb);
6602
6603   if (cfun->has_nonlocal_label)
6604     {
6605       gimple stmt = last_stmt (bb);
6606       edge_iterator ei;
6607       edge e;
6608
6609       if (!(stmt && stmt_can_make_abnormal_goto (stmt)))
6610         for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
6611           {
6612             if (e->flags & EDGE_ABNORMAL)
6613               {
6614                 remove_edge (e);
6615                 changed = true;
6616               }
6617             else
6618               ei_next (&ei);
6619           }
6620
6621       /* See gimple_purge_dead_eh_edges below.  */
6622       if (changed)
6623         free_dominance_info (CDI_DOMINATORS);
6624     }
6625
6626   return changed;
6627 }
6628
6629 /* Stores all basic blocks dominated by BB to DOM_BBS.  */
6630
6631 static void
6632 get_all_dominated_blocks (basic_block bb, VEC (basic_block, heap) **dom_bbs)
6633 {
6634   basic_block son;
6635
6636   VEC_safe_push (basic_block, heap, *dom_bbs, bb);
6637   for (son = first_dom_son (CDI_DOMINATORS, bb);
6638        son;
6639        son = next_dom_son (CDI_DOMINATORS, son))
6640     get_all_dominated_blocks (son, dom_bbs);
6641 }
6642
6643 /* Removes edge E and all the blocks dominated by it, and updates dominance
6644    information.  The IL in E->src needs to be updated separately.
6645    If dominance info is not available, only the edge E is removed.*/
6646
6647 void
6648 remove_edge_and_dominated_blocks (edge e)
6649 {
6650   VEC (basic_block, heap) *bbs_to_remove = NULL;
6651   VEC (basic_block, heap) *bbs_to_fix_dom = NULL;
6652   bitmap df, df_idom;
6653   edge f;
6654   edge_iterator ei;
6655   bool none_removed = false;
6656   unsigned i;
6657   basic_block bb, dbb;
6658   bitmap_iterator bi;
6659
6660   if (!dom_info_available_p (CDI_DOMINATORS))
6661     {
6662       remove_edge (e);
6663       return;
6664     }
6665
6666   /* No updating is needed for edges to exit.  */
6667   if (e->dest == EXIT_BLOCK_PTR)
6668     {
6669       if (cfgcleanup_altered_bbs)
6670         bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
6671       remove_edge (e);
6672       return;
6673     }
6674
6675   /* First, we find the basic blocks to remove.  If E->dest has a predecessor
6676      that is not dominated by E->dest, then this set is empty.  Otherwise,
6677      all the basic blocks dominated by E->dest are removed.
6678
6679      Also, to DF_IDOM we store the immediate dominators of the blocks in
6680      the dominance frontier of E (i.e., of the successors of the
6681      removed blocks, if there are any, and of E->dest otherwise).  */
6682   FOR_EACH_EDGE (f, ei, e->dest->preds)
6683     {
6684       if (f == e)
6685         continue;
6686
6687       if (!dominated_by_p (CDI_DOMINATORS, f->src, e->dest))
6688         {
6689           none_removed = true;
6690           break;
6691         }
6692     }
6693
6694   df = BITMAP_ALLOC (NULL);
6695   df_idom = BITMAP_ALLOC (NULL);
6696
6697   if (none_removed)
6698     bitmap_set_bit (df_idom,
6699                     get_immediate_dominator (CDI_DOMINATORS, e->dest)->index);
6700   else
6701     {
6702       get_all_dominated_blocks (e->dest, &bbs_to_remove);
6703       for (i = 0; VEC_iterate (basic_block, bbs_to_remove, i, bb); i++)
6704         {
6705           FOR_EACH_EDGE (f, ei, bb->succs)
6706             {
6707               if (f->dest != EXIT_BLOCK_PTR)
6708                 bitmap_set_bit (df, f->dest->index);
6709             }
6710         }
6711       for (i = 0; VEC_iterate (basic_block, bbs_to_remove, i, bb); i++)
6712         bitmap_clear_bit (df, bb->index);
6713
6714       EXECUTE_IF_SET_IN_BITMAP (df, 0, i, bi)
6715         {
6716           bb = BASIC_BLOCK (i);
6717           bitmap_set_bit (df_idom,
6718                           get_immediate_dominator (CDI_DOMINATORS, bb)->index);
6719         }
6720     }
6721
6722   if (cfgcleanup_altered_bbs)
6723     {
6724       /* Record the set of the altered basic blocks.  */
6725       bitmap_set_bit (cfgcleanup_altered_bbs, e->src->index);
6726       bitmap_ior_into (cfgcleanup_altered_bbs, df);
6727     }
6728
6729   /* Remove E and the cancelled blocks.  */
6730   if (none_removed)
6731     remove_edge (e);
6732   else
6733     {
6734       for (i = 0; VEC_iterate (basic_block, bbs_to_remove, i, bb); i++)
6735         delete_basic_block (bb);
6736     }
6737
6738   /* Update the dominance information.  The immediate dominator may change only
6739      for blocks whose immediate dominator belongs to DF_IDOM:
6740    
6741      Suppose that idom(X) = Y before removal of E and idom(X) != Y after the
6742      removal.  Let Z the arbitrary block such that idom(Z) = Y and
6743      Z dominates X after the removal.  Before removal, there exists a path P
6744      from Y to X that avoids Z.  Let F be the last edge on P that is
6745      removed, and let W = F->dest.  Before removal, idom(W) = Y (since Y
6746      dominates W, and because of P, Z does not dominate W), and W belongs to
6747      the dominance frontier of E.  Therefore, Y belongs to DF_IDOM.  */ 
6748   EXECUTE_IF_SET_IN_BITMAP (df_idom, 0, i, bi)
6749     {
6750       bb = BASIC_BLOCK (i);
6751       for (dbb = first_dom_son (CDI_DOMINATORS, bb);
6752            dbb;
6753            dbb = next_dom_son (CDI_DOMINATORS, dbb))
6754         VEC_safe_push (basic_block, heap, bbs_to_fix_dom, dbb);
6755     }
6756
6757   iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true);
6758
6759   BITMAP_FREE (df);
6760   BITMAP_FREE (df_idom);
6761   VEC_free (basic_block, heap, bbs_to_remove);
6762   VEC_free (basic_block, heap, bbs_to_fix_dom);
6763 }
6764
6765 /* Purge dead EH edges from basic block BB.  */
6766
6767 bool
6768 gimple_purge_dead_eh_edges (basic_block bb)
6769 {
6770   bool changed = false;
6771   edge e;
6772   edge_iterator ei;
6773   gimple stmt = last_stmt (bb);
6774
6775   if (stmt && stmt_can_throw_internal (stmt))
6776     return false;
6777
6778   for (ei = ei_start (bb->succs); (e = ei_safe_edge (ei)); )
6779     {
6780       if (e->flags & EDGE_EH)
6781         {
6782           remove_edge_and_dominated_blocks (e);
6783           changed = true;
6784         }
6785       else
6786         ei_next (&ei);
6787     }
6788
6789   return changed;
6790 }
6791
6792 bool
6793 gimple_purge_all_dead_eh_edges (const_bitmap blocks)
6794 {
6795   bool changed = false;
6796   unsigned i;
6797   bitmap_iterator bi;
6798
6799   EXECUTE_IF_SET_IN_BITMAP (blocks, 0, i, bi)
6800     {
6801       basic_block bb = BASIC_BLOCK (i);
6802
6803       /* Earlier gimple_purge_dead_eh_edges could have removed
6804          this basic block already.  */
6805       gcc_assert (bb || changed);
6806       if (bb != NULL)
6807         changed |= gimple_purge_dead_eh_edges (bb);
6808     }
6809
6810   return changed;
6811 }
6812
6813 /* This function is called whenever a new edge is created or
6814    redirected.  */
6815
6816 static void
6817 gimple_execute_on_growing_pred (edge e)
6818 {
6819   basic_block bb = e->dest;
6820
6821   if (phi_nodes (bb))
6822     reserve_phi_args_for_new_edge (bb);
6823 }
6824
6825 /* This function is called immediately before edge E is removed from
6826    the edge vector E->dest->preds.  */
6827
6828 static void
6829 gimple_execute_on_shrinking_pred (edge e)
6830 {
6831   if (phi_nodes (e->dest))
6832     remove_phi_args (e);
6833 }
6834
6835 /*---------------------------------------------------------------------------
6836   Helper functions for Loop versioning
6837   ---------------------------------------------------------------------------*/
6838
6839 /* Adjust phi nodes for 'first' basic block.  'second' basic block is a copy
6840    of 'first'. Both of them are dominated by 'new_head' basic block. When
6841    'new_head' was created by 'second's incoming edge it received phi arguments
6842    on the edge by split_edge(). Later, additional edge 'e' was created to
6843    connect 'new_head' and 'first'. Now this routine adds phi args on this
6844    additional edge 'e' that new_head to second edge received as part of edge
6845    splitting.  */
6846
6847 static void
6848 gimple_lv_adjust_loop_header_phi (basic_block first, basic_block second,
6849                                   basic_block new_head, edge e)
6850 {
6851   gimple phi1, phi2;
6852   gimple_stmt_iterator psi1, psi2;
6853   tree def;
6854   edge e2 = find_edge (new_head, second);
6855
6856   /* Because NEW_HEAD has been created by splitting SECOND's incoming
6857      edge, we should always have an edge from NEW_HEAD to SECOND.  */
6858   gcc_assert (e2 != NULL);
6859
6860   /* Browse all 'second' basic block phi nodes and add phi args to
6861      edge 'e' for 'first' head. PHI args are always in correct order.  */
6862
6863   for (psi2 = gsi_start_phis (second),
6864        psi1 = gsi_start_phis (first);
6865        !gsi_end_p (psi2) && !gsi_end_p (psi1);
6866        gsi_next (&psi2),  gsi_next (&psi1))
6867     {
6868       phi1 = gsi_stmt (psi1);
6869       phi2 = gsi_stmt (psi2);
6870       def = PHI_ARG_DEF (phi2, e2->dest_idx);
6871       add_phi_arg (phi1, def, e);
6872     }
6873 }
6874
6875
6876 /* Adds a if else statement to COND_BB with condition COND_EXPR.
6877    SECOND_HEAD is the destination of the THEN and FIRST_HEAD is
6878    the destination of the ELSE part.  */
6879
6880 static void
6881 gimple_lv_add_condition_to_bb (basic_block first_head ATTRIBUTE_UNUSED,
6882                                basic_block second_head ATTRIBUTE_UNUSED,
6883                                basic_block cond_bb, void *cond_e)
6884 {
6885   gimple_stmt_iterator gsi;
6886   gimple new_cond_expr;
6887   tree cond_expr = (tree) cond_e;
6888   edge e0;
6889
6890   /* Build new conditional expr */
6891   new_cond_expr = gimple_build_cond_from_tree (cond_expr,
6892                                                NULL_TREE, NULL_TREE);
6893
6894   /* Add new cond in cond_bb.  */
6895   gsi = gsi_last_bb (cond_bb);
6896   gsi_insert_after (&gsi, new_cond_expr, GSI_NEW_STMT);
6897
6898   /* Adjust edges appropriately to connect new head with first head
6899      as well as second head.  */
6900   e0 = single_succ_edge (cond_bb);
6901   e0->flags &= ~EDGE_FALLTHRU;
6902   e0->flags |= EDGE_FALSE_VALUE;
6903 }
6904
6905 struct cfg_hooks gimple_cfg_hooks = {
6906   "gimple",
6907   gimple_verify_flow_info,
6908   gimple_dump_bb,               /* dump_bb  */
6909   create_bb,                    /* create_basic_block  */
6910   gimple_redirect_edge_and_branch, /* redirect_edge_and_branch  */
6911   gimple_redirect_edge_and_branch_force, /* redirect_edge_and_branch_force  */
6912   gimple_can_remove_branch_p,   /* can_remove_branch_p  */
6913   remove_bb,                    /* delete_basic_block  */
6914   gimple_split_block,           /* split_block  */
6915   gimple_move_block_after,      /* move_block_after  */
6916   gimple_can_merge_blocks_p,    /* can_merge_blocks_p  */
6917   gimple_merge_blocks,          /* merge_blocks  */
6918   gimple_predict_edge,          /* predict_edge  */
6919   gimple_predicted_by_p,                /* predicted_by_p  */
6920   gimple_can_duplicate_bb_p,    /* can_duplicate_block_p  */
6921   gimple_duplicate_bb,          /* duplicate_block  */
6922   gimple_split_edge,            /* split_edge  */
6923   gimple_make_forwarder_block,  /* make_forward_block  */
6924   NULL,                         /* tidy_fallthru_edge  */
6925   gimple_block_ends_with_call_p,/* block_ends_with_call_p */
6926   gimple_block_ends_with_condjump_p, /* block_ends_with_condjump_p */
6927   gimple_flow_call_edges_add,     /* flow_call_edges_add */
6928   gimple_execute_on_growing_pred,       /* execute_on_growing_pred */
6929   gimple_execute_on_shrinking_pred, /* execute_on_shrinking_pred */
6930   gimple_duplicate_loop_to_header_edge, /* duplicate loop for trees */
6931   gimple_lv_add_condition_to_bb, /* lv_add_condition_to_bb */
6932   gimple_lv_adjust_loop_header_phi, /* lv_adjust_loop_header_phi*/
6933   extract_true_false_edges_from_block, /* extract_cond_bb_edges */
6934   flush_pending_stmts           /* flush_pending_stmts */
6935 };
6936
6937
6938 /* Split all critical edges.  */
6939
6940 static unsigned int
6941 split_critical_edges (void)
6942 {
6943   basic_block bb;
6944   edge e;
6945   edge_iterator ei;
6946
6947   /* split_edge can redirect edges out of SWITCH_EXPRs, which can get
6948      expensive.  So we want to enable recording of edge to CASE_LABEL_EXPR
6949      mappings around the calls to split_edge.  */
6950   start_recording_case_labels ();
6951   FOR_ALL_BB (bb)
6952     {
6953       FOR_EACH_EDGE (e, ei, bb->succs)
6954         if (EDGE_CRITICAL_P (e) && !(e->flags & EDGE_ABNORMAL))
6955           {
6956             split_edge (e);
6957           }
6958     }
6959   end_recording_case_labels ();
6960   return 0;
6961 }
6962
6963 struct gimple_opt_pass pass_split_crit_edges =
6964 {
6965  {
6966   GIMPLE_PASS,
6967   "crited",                          /* name */
6968   NULL,                          /* gate */
6969   split_critical_edges,          /* execute */
6970   NULL,                          /* sub */
6971   NULL,                          /* next */
6972   0,                             /* static_pass_number */
6973   TV_TREE_SPLIT_EDGES,           /* tv_id */
6974   PROP_cfg,                      /* properties required */
6975   PROP_no_crit_edges,            /* properties_provided */
6976   0,                             /* properties_destroyed */
6977   0,                             /* todo_flags_start */
6978   TODO_dump_func                 /* todo_flags_finish */
6979  }
6980 };
6981
6982
6983 /* Build a ternary operation and gimplify it.  Emit code before GSI.
6984    Return the gimple_val holding the result.  */
6985
6986 tree
6987 gimplify_build3 (gimple_stmt_iterator *gsi, enum tree_code code,
6988                  tree type, tree a, tree b, tree c)
6989 {
6990   tree ret;
6991
6992   ret = fold_build3 (code, type, a, b, c);
6993   STRIP_NOPS (ret);
6994
6995   return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
6996                                    GSI_SAME_STMT);
6997 }
6998
6999 /* Build a binary operation and gimplify it.  Emit code before GSI.
7000    Return the gimple_val holding the result.  */
7001
7002 tree
7003 gimplify_build2 (gimple_stmt_iterator *gsi, enum tree_code code,
7004                  tree type, tree a, tree b)
7005 {
7006   tree ret;
7007
7008   ret = fold_build2 (code, type, a, b);
7009   STRIP_NOPS (ret);
7010
7011   return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
7012                                    GSI_SAME_STMT);
7013 }
7014
7015 /* Build a unary operation and gimplify it.  Emit code before GSI.
7016    Return the gimple_val holding the result.  */
7017
7018 tree
7019 gimplify_build1 (gimple_stmt_iterator *gsi, enum tree_code code, tree type,
7020                  tree a)
7021 {
7022   tree ret;
7023
7024   ret = fold_build1 (code, type, a);
7025   STRIP_NOPS (ret);
7026
7027   return force_gimple_operand_gsi (gsi, ret, true, NULL, true,
7028                                    GSI_SAME_STMT);
7029 }
7030
7031
7032 \f
7033 /* Emit return warnings.  */
7034
7035 static unsigned int
7036 execute_warn_function_return (void)
7037 {
7038   source_location location;
7039   gimple last;
7040   edge e;
7041   edge_iterator ei;
7042
7043   /* If we have a path to EXIT, then we do return.  */
7044   if (TREE_THIS_VOLATILE (cfun->decl)
7045       && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0)
7046     {
7047       location = UNKNOWN_LOCATION;
7048       FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
7049         {
7050           last = last_stmt (e->src);
7051           if (gimple_code (last) == GIMPLE_RETURN
7052               && (location = gimple_location (last)) != UNKNOWN_LOCATION)
7053             break;
7054         }
7055       if (location == UNKNOWN_LOCATION)
7056         location = cfun->function_end_locus;
7057       warning (0, "%H%<noreturn%> function does return", &location);
7058     }
7059
7060   /* If we see "return;" in some basic block, then we do reach the end
7061      without returning a value.  */
7062   else if (warn_return_type
7063            && !TREE_NO_WARNING (cfun->decl)
7064            && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0
7065            && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (cfun->decl))))
7066     {
7067       FOR_EACH_EDGE (e, ei, EXIT_BLOCK_PTR->preds)
7068         {
7069           gimple last = last_stmt (e->src);
7070           if (gimple_code (last) == GIMPLE_RETURN
7071               && gimple_return_retval (last) == NULL
7072               && !gimple_no_warning_p (last))
7073             {
7074               location = gimple_location (last);
7075               if (location == UNKNOWN_LOCATION)
7076                   location = cfun->function_end_locus;
7077               warning_at (location, OPT_Wreturn_type, "control reaches end of non-void function");
7078               TREE_NO_WARNING (cfun->decl) = 1;
7079               break;
7080             }
7081         }
7082     }
7083   return 0;
7084 }
7085
7086
7087 /* Given a basic block B which ends with a conditional and has
7088    precisely two successors, determine which of the edges is taken if
7089    the conditional is true and which is taken if the conditional is
7090    false.  Set TRUE_EDGE and FALSE_EDGE appropriately.  */
7091
7092 void
7093 extract_true_false_edges_from_block (basic_block b,
7094                                      edge *true_edge,
7095                                      edge *false_edge)
7096 {
7097   edge e = EDGE_SUCC (b, 0);
7098
7099   if (e->flags & EDGE_TRUE_VALUE)
7100     {
7101       *true_edge = e;
7102       *false_edge = EDGE_SUCC (b, 1);
7103     }
7104   else
7105     {
7106       *false_edge = e;
7107       *true_edge = EDGE_SUCC (b, 1);
7108     }
7109 }
7110
7111 struct gimple_opt_pass pass_warn_function_return =
7112 {
7113  {
7114   GIMPLE_PASS,
7115   NULL,                                 /* name */
7116   NULL,                                 /* gate */
7117   execute_warn_function_return,         /* execute */
7118   NULL,                                 /* sub */
7119   NULL,                                 /* next */
7120   0,                                    /* static_pass_number */
7121   0,                                    /* tv_id */
7122   PROP_cfg,                             /* properties_required */
7123   0,                                    /* properties_provided */
7124   0,                                    /* properties_destroyed */
7125   0,                                    /* todo_flags_start */
7126   0                                     /* todo_flags_finish */
7127  }
7128 };
7129
7130 /* Emit noreturn warnings.  */
7131
7132 static unsigned int
7133 execute_warn_function_noreturn (void)
7134 {
7135   if (warn_missing_noreturn
7136       && !TREE_THIS_VOLATILE (cfun->decl)
7137       && EDGE_COUNT (EXIT_BLOCK_PTR->preds) == 0
7138       && !lang_hooks.missing_noreturn_ok_p (cfun->decl))
7139     warning (OPT_Wmissing_noreturn, "%Jfunction might be possible candidate "
7140              "for attribute %<noreturn%>",
7141              cfun->decl);
7142   return 0;
7143 }
7144
7145 struct gimple_opt_pass pass_warn_function_noreturn =
7146 {
7147  {
7148   GIMPLE_PASS,
7149   NULL,                                 /* name */
7150   NULL,                                 /* gate */
7151   execute_warn_function_noreturn,       /* execute */
7152   NULL,                                 /* sub */
7153   NULL,                                 /* next */
7154   0,                                    /* static_pass_number */
7155   0,                                    /* tv_id */
7156   PROP_cfg,                             /* properties_required */
7157   0,                                    /* properties_provided */
7158   0,                                    /* properties_destroyed */
7159   0,                                    /* todo_flags_start */
7160   0                                     /* todo_flags_finish */
7161  }
7162 };