OSDN Git Service

New -fcompare-elim pass.
[pf3gnuchains/gcc-fork.git] / gcc / passes.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2    Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4    Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 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 /* This is the top level of cc1/c++.
23    It parses command args, opens files, invokes the various passes
24    in the proper order, and counts the time used by each.
25    Error messages and low-level interface to malloc also handled here.  */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "line-map.h"
32 #include "input.h"
33 #include "tree.h"
34 #include "rtl.h"
35 #include "tm_p.h"
36 #include "flags.h"
37 #include "insn-attr.h"
38 #include "insn-config.h"
39 #include "insn-flags.h"
40 #include "hard-reg-set.h"
41 #include "recog.h"
42 #include "output.h"
43 #include "except.h"
44 #include "function.h"
45 #include "toplev.h"
46 #include "expr.h"
47 #include "basic-block.h"
48 #include "intl.h"
49 #include "ggc.h"
50 #include "graph.h"
51 #include "regs.h"
52 #include "timevar.h"
53 #include "diagnostic-core.h"
54 #include "params.h"
55 #include "reload.h"
56 #include "dwarf2asm.h"
57 #include "integrate.h"
58 #include "debug.h"
59 #include "target.h"
60 #include "langhooks.h"
61 #include "cfglayout.h"
62 #include "cfgloop.h"
63 #include "hosthooks.h"
64 #include "cgraph.h"
65 #include "opts.h"
66 #include "coverage.h"
67 #include "value-prof.h"
68 #include "tree-inline.h"
69 #include "tree-flow.h"
70 #include "tree-pass.h"
71 #include "tree-dump.h"
72 #include "df.h"
73 #include "predict.h"
74 #include "lto-streamer.h"
75 #include "plugin.h"
76
77 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
78 #include "dwarf2out.h"
79 #endif
80
81 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
82 #include "dbxout.h"
83 #endif
84
85 #ifdef SDB_DEBUGGING_INFO
86 #include "sdbout.h"
87 #endif
88
89 #ifdef XCOFF_DEBUGGING_INFO
90 #include "xcoffout.h"           /* Needed for external data
91                                    declarations for e.g. AIX 4.x.  */
92 #endif
93
94 /* This is used for debugging.  It allows the current pass to printed
95    from anywhere in compilation.
96    The variable current_pass is also used for statistics and plugins.  */
97 struct opt_pass *current_pass;
98
99 /* Call from anywhere to find out what pass this is.  Useful for
100    printing out debugging information deep inside an service
101    routine.  */
102 void
103 print_current_pass (FILE *file)
104 {
105   if (current_pass)
106     fprintf (file, "current pass = %s (%d)\n",
107              current_pass->name, current_pass->static_pass_number);
108   else
109     fprintf (file, "no current pass.\n");
110 }
111
112
113 /* Call from the debugger to get the current pass name.  */
114 DEBUG_FUNCTION void
115 debug_pass (void)
116 {
117   print_current_pass (stderr);
118 }
119
120
121
122 /* Global variables used to communicate with passes.  */
123 int dump_flags;
124 bool in_gimple_form;
125 bool first_pass_instance;
126
127
128 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
129    and TYPE_DECL nodes.
130
131    This does nothing for local (non-static) variables, unless the
132    variable is a register variable with DECL_ASSEMBLER_NAME set.  In
133    that case, or if the variable is not an automatic, it sets up the
134    RTL and outputs any assembler code (label definition, storage
135    allocation and initialization).
136
137    DECL is the declaration.  TOP_LEVEL is nonzero
138    if this declaration is not within a function.  */
139
140 void
141 rest_of_decl_compilation (tree decl,
142                           int top_level,
143                           int at_end)
144 {
145   /* We deferred calling assemble_alias so that we could collect
146      other attributes such as visibility.  Emit the alias now.  */
147   if (!in_lto_p)
148   {
149     tree alias;
150     alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
151     if (alias)
152       {
153         alias = TREE_VALUE (TREE_VALUE (alias));
154         alias = get_identifier (TREE_STRING_POINTER (alias));
155         assemble_alias (decl, alias);
156       }
157   }
158
159   /* Can't defer this, because it needs to happen before any
160      later function definitions are processed.  */
161   if (DECL_ASSEMBLER_NAME_SET_P (decl) && DECL_REGISTER (decl))
162     make_decl_rtl (decl);
163
164   /* Forward declarations for nested functions are not "external",
165      but we need to treat them as if they were.  */
166   if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
167       || TREE_CODE (decl) == FUNCTION_DECL)
168     {
169       timevar_push (TV_VARCONST);
170
171       /* Don't output anything when a tentative file-scope definition
172          is seen.  But at end of compilation, do output code for them.
173
174          We do output all variables and rely on
175          callgraph code to defer them except for forward declarations
176          (see gcc.c-torture/compile/920624-1.c) */
177       if ((at_end
178            || !DECL_DEFER_OUTPUT (decl)
179            || DECL_INITIAL (decl))
180           && !DECL_EXTERNAL (decl))
181         {
182           /* When reading LTO unit, we also read varpool, so do not
183              rebuild it.  */
184           if (in_lto_p && !at_end)
185             ;
186           else if (TREE_CODE (decl) != FUNCTION_DECL)
187             varpool_finalize_decl (decl);
188         }
189
190 #ifdef ASM_FINISH_DECLARE_OBJECT
191       if (decl == last_assemble_variable_decl)
192         {
193           ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
194                                      top_level, at_end);
195         }
196 #endif
197
198       timevar_pop (TV_VARCONST);
199     }
200   else if (TREE_CODE (decl) == TYPE_DECL
201            /* Like in rest_of_type_compilation, avoid confusing the debug
202               information machinery when there are errors.  */
203            && !seen_error ())
204     {
205       timevar_push (TV_SYMOUT);
206       debug_hooks->type_decl (decl, !top_level);
207       timevar_pop (TV_SYMOUT);
208     }
209
210   /* Let cgraph know about the existence of variables.  */
211   if (in_lto_p && !at_end)
212     ;
213   else if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl)
214            && TREE_STATIC (decl))
215     varpool_node (decl);
216 }
217
218 /* Called after finishing a record, union or enumeral type.  */
219
220 void
221 rest_of_type_compilation (tree type, int toplev)
222 {
223   /* Avoid confusing the debug information machinery when there are
224      errors.  */
225   if (seen_error ())
226     return;
227
228   timevar_push (TV_SYMOUT);
229   debug_hooks->type_decl (TYPE_STUB_DECL (type), !toplev);
230   timevar_pop (TV_SYMOUT);
231 }
232
233 \f
234
235 void
236 finish_optimization_passes (void)
237 {
238   int i;
239   struct dump_file_info *dfi;
240   char *name;
241
242   timevar_push (TV_DUMP);
243   if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
244     {
245       dump_file = dump_begin (pass_profile.pass.static_pass_number, NULL);
246       end_branch_prob ();
247       if (dump_file)
248         dump_end (pass_profile.pass.static_pass_number, dump_file);
249     }
250
251   if (optimize > 0)
252     {
253       dump_file = dump_begin (pass_combine.pass.static_pass_number, NULL);
254       if (dump_file)
255         {
256           dump_combine_total_stats (dump_file);
257           dump_end (pass_combine.pass.static_pass_number, dump_file);
258         }
259     }
260
261   /* Do whatever is necessary to finish printing the graphs.  */
262   if (graph_dump_format != no_graph)
263     for (i = TDI_end; (dfi = get_dump_file_info (i)) != NULL; ++i)
264       if (dump_initialized_p (i)
265           && (dfi->flags & TDF_GRAPH) != 0
266           && (name = get_dump_file_name (i)) != NULL)
267         {
268           finish_graph_dump_file (name);
269           free (name);
270         }
271
272   timevar_pop (TV_DUMP);
273 }
274
275 static bool
276 gate_rest_of_compilation (void)
277 {
278   /* Early return if there were errors.  We can run afoul of our
279      consistency checks, and there's not really much point in fixing them.  */
280   return !(rtl_dump_and_exit || flag_syntax_only || seen_error ());
281 }
282
283 struct gimple_opt_pass pass_rest_of_compilation =
284 {
285  {
286   GIMPLE_PASS,
287   "*rest_of_compilation",               /* name */
288   gate_rest_of_compilation,             /* gate */
289   NULL,                                 /* execute */
290   NULL,                                 /* sub */
291   NULL,                                 /* next */
292   0,                                    /* static_pass_number */
293   TV_REST_OF_COMPILATION,               /* tv_id */
294   PROP_rtl,                             /* properties_required */
295   0,                                    /* properties_provided */
296   0,                                    /* properties_destroyed */
297   0,                                    /* todo_flags_start */
298   TODO_ggc_collect                      /* todo_flags_finish */
299  }
300 };
301
302 static bool
303 gate_postreload (void)
304 {
305   return reload_completed;
306 }
307
308 struct rtl_opt_pass pass_postreload =
309 {
310  {
311   RTL_PASS,
312   "*all-postreload",                        /* name */
313   gate_postreload,                      /* gate */
314   NULL,                                 /* execute */
315   NULL,                                 /* sub */
316   NULL,                                 /* next */
317   0,                                    /* static_pass_number */
318   TV_POSTRELOAD,                        /* tv_id */
319   PROP_rtl,                             /* properties_required */
320   0,                                    /* properties_provided */
321   0,                                    /* properties_destroyed */
322   0,                                    /* todo_flags_start */
323   TODO_ggc_collect | TODO_verify_rtl_sharing /* todo_flags_finish */
324  }
325 };
326
327
328
329 /* The root of the compilation pass tree, once constructed.  */
330 struct opt_pass *all_passes, *all_small_ipa_passes, *all_lowering_passes,
331   *all_regular_ipa_passes, *all_lto_gen_passes;
332
333 /* This is used by plugins, and should also be used in register_pass.  */
334 #define DEF_PASS_LIST(LIST) &LIST,
335 struct opt_pass **gcc_pass_lists[] = { GCC_PASS_LISTS NULL };
336 #undef DEF_PASS_LIST
337
338 /* A map from static pass id to optimization pass.  */
339 struct opt_pass **passes_by_id;
340 int passes_by_id_size;
341
342 /* Set the static pass number of pass PASS to ID and record that
343    in the mapping from static pass number to pass.  */
344
345 static void
346 set_pass_for_id (int id, struct opt_pass *pass)
347 {
348   pass->static_pass_number = id;
349   if (passes_by_id_size <= id)
350     {
351       passes_by_id = XRESIZEVEC (struct opt_pass *, passes_by_id, id + 1);
352       memset (passes_by_id + passes_by_id_size, 0,
353               (id + 1 - passes_by_id_size) * sizeof (void *));
354       passes_by_id_size = id + 1;
355     }
356   passes_by_id[id] = pass;
357 }
358
359 /* Return the pass with the static pass number ID.  */
360
361 struct opt_pass *
362 get_pass_for_id (int id)
363 {
364   if (id >= passes_by_id_size)
365     return NULL;
366   return passes_by_id[id];
367 }
368
369 /* Iterate over the pass tree allocating dump file numbers.  We want
370    to do this depth first, and independent of whether the pass is
371    enabled or not.  */
372
373 void
374 register_one_dump_file (struct opt_pass *pass)
375 {
376   char *dot_name, *flag_name, *glob_name;
377   const char *name, *prefix;
378   char num[10];
379   int flags, id;
380
381   /* See below in next_pass_1.  */
382   num[0] = '\0';
383   if (pass->static_pass_number != -1)
384     sprintf (num, "%d", ((int) pass->static_pass_number < 0
385                          ? 1 : pass->static_pass_number));
386
387   /* The name is both used to identify the pass for the purposes of plugins,
388      and to specify dump file name and option.
389      The latter two might want something short which is not quite unique; for
390      that reason, we may have a disambiguating prefix, followed by a space
391      to mark the start of the following dump file name / option string.  */
392   name = strchr (pass->name, ' ');
393   name = name ? name + 1 : pass->name;
394   dot_name = concat (".", name, num, NULL);
395   if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
396     prefix = "ipa-", flags = TDF_IPA;
397   else if (pass->type == GIMPLE_PASS)
398     prefix = "tree-", flags = TDF_TREE;
399   else
400     prefix = "rtl-", flags = TDF_RTL;
401
402   flag_name = concat (prefix, name, num, NULL);
403   glob_name = concat (prefix, name, NULL);
404   id = dump_register (dot_name, flag_name, glob_name, flags);
405   set_pass_for_id (id, pass);
406 }
407
408 /* Recursive worker function for register_dump_files.  */
409
410 static int
411 register_dump_files_1 (struct opt_pass *pass, int properties)
412 {
413   do
414     {
415       int new_properties = (properties | pass->properties_provided)
416                            & ~pass->properties_destroyed;
417
418       if (pass->name && pass->name[0] != '*')
419         register_one_dump_file (pass);
420
421       if (pass->sub)
422         new_properties = register_dump_files_1 (pass->sub, new_properties);
423
424       /* If we have a gate, combine the properties that we could have with
425          and without the pass being examined.  */
426       if (pass->gate)
427         properties &= new_properties;
428       else
429         properties = new_properties;
430
431       pass = pass->next;
432     }
433   while (pass);
434
435   return properties;
436 }
437
438 /* Register the dump files for the pipeline starting at PASS.
439    PROPERTIES reflects the properties that are guaranteed to be available at
440    the beginning of the pipeline.  */
441
442 static void
443 register_dump_files (struct opt_pass *pass,int properties)
444 {
445   pass->properties_required |= properties;
446   register_dump_files_1 (pass, properties);
447 }
448
449 /* Look at the static_pass_number and duplicate the pass
450    if it is already added to a list. */
451
452 static struct opt_pass *
453 make_pass_instance (struct opt_pass *pass, bool track_duplicates)
454 {
455   /* A nonzero static_pass_number indicates that the
456      pass is already in the list.  */
457   if (pass->static_pass_number)
458     {
459       struct opt_pass *new_pass;
460
461       if (pass->type == GIMPLE_PASS
462           || pass->type == RTL_PASS
463           || pass->type == SIMPLE_IPA_PASS)
464         {
465           new_pass = XNEW (struct opt_pass);
466           memcpy (new_pass, pass, sizeof (struct opt_pass));
467         }
468       else if (pass->type == IPA_PASS)
469         {
470           new_pass = (struct opt_pass *)XNEW (struct ipa_opt_pass_d);
471           memcpy (new_pass, pass, sizeof (struct ipa_opt_pass_d));
472         }
473       else
474         gcc_unreachable ();
475
476       new_pass->next = NULL;
477
478       new_pass->todo_flags_start &= ~TODO_mark_first_instance;
479
480       /* Indicate to register_dump_files that this pass has duplicates,
481          and so it should rename the dump file.  The first instance will
482          be -1, and be number of duplicates = -static_pass_number - 1.
483          Subsequent instances will be > 0 and just the duplicate number.  */
484       if ((pass->name && pass->name[0] != '*') || track_duplicates)
485         {
486           pass->static_pass_number -= 1;
487           new_pass->static_pass_number = -pass->static_pass_number;
488         }
489       return new_pass;
490     }
491   else
492     {
493       pass->todo_flags_start |= TODO_mark_first_instance;
494       pass->static_pass_number = -1;
495
496       invoke_plugin_callbacks (PLUGIN_NEW_PASS, pass);
497     }
498   return pass;
499 }
500
501 /* Add a pass to the pass list. Duplicate the pass if it's already
502    in the list.  */
503
504 static struct opt_pass **
505 next_pass_1 (struct opt_pass **list, struct opt_pass *pass)
506 {
507   /* Every pass should have a name so that plugins can refer to them.  */
508   gcc_assert (pass->name != NULL);
509
510   *list = make_pass_instance (pass, false);
511
512   return &(*list)->next;
513 }
514
515 /* List node for an inserted pass instance. We need to keep track of all
516    the newly-added pass instances (with 'added_pass_nodes' defined below)
517    so that we can register their dump files after pass-positioning is finished.
518    Registering dumping files needs to be post-processed or the
519    static_pass_number of the opt_pass object would be modified and mess up
520    the dump file names of future pass instances to be added.  */
521
522 struct pass_list_node
523 {
524   struct opt_pass *pass;
525   struct pass_list_node *next;
526 };
527
528 static struct pass_list_node *added_pass_nodes = NULL;
529 static struct pass_list_node *prev_added_pass_node;
530
531 /* Insert the pass at the proper position. Return true if the pass
532    is successfully added.
533
534    NEW_PASS_INFO - new pass to be inserted
535    PASS_LIST - root of the pass list to insert the new pass to  */
536
537 static bool
538 position_pass (struct register_pass_info *new_pass_info,
539                struct opt_pass **pass_list)
540 {
541   struct opt_pass *pass = *pass_list, *prev_pass = NULL;
542   bool success = false;
543
544   for ( ; pass; prev_pass = pass, pass = pass->next)
545     {
546       /* Check if the current pass is of the same type as the new pass and
547          matches the name and the instance number of the reference pass.  */
548       if (pass->type == new_pass_info->pass->type
549           && pass->name
550           && !strcmp (pass->name, new_pass_info->reference_pass_name)
551           && ((new_pass_info->ref_pass_instance_number == 0)
552               || (new_pass_info->ref_pass_instance_number ==
553                   pass->static_pass_number)
554               || (new_pass_info->ref_pass_instance_number == 1
555                   && pass->todo_flags_start & TODO_mark_first_instance)))
556         {
557           struct opt_pass *new_pass;
558           struct pass_list_node *new_pass_node;
559
560           new_pass = make_pass_instance (new_pass_info->pass, true);
561
562           /* Insert the new pass instance based on the positioning op.  */
563           switch (new_pass_info->pos_op)
564             {
565               case PASS_POS_INSERT_AFTER:
566                 new_pass->next = pass->next;
567                 pass->next = new_pass;
568
569                 /* Skip newly inserted pass to avoid repeated
570                    insertions in the case where the new pass and the
571                    existing one have the same name.  */
572                 pass = new_pass;
573                 break;
574               case PASS_POS_INSERT_BEFORE:
575                 new_pass->next = pass;
576                 if (prev_pass)
577                   prev_pass->next = new_pass;
578                 else
579                   *pass_list = new_pass;
580                 break;
581               case PASS_POS_REPLACE:
582                 new_pass->next = pass->next;
583                 if (prev_pass)
584                   prev_pass->next = new_pass;
585                 else
586                   *pass_list = new_pass;
587                 new_pass->sub = pass->sub;
588                 new_pass->tv_id = pass->tv_id;
589                 pass = new_pass;
590                 break;
591               default:
592                 error ("invalid pass positioning operation");
593                 return false;
594             }
595
596           /* Save the newly added pass (instance) in the added_pass_nodes
597              list so that we can register its dump file later. Note that
598              we cannot register the dump file now because doing so will modify
599              the static_pass_number of the opt_pass object and therefore
600              mess up the dump file name of future instances.  */
601           new_pass_node = XCNEW (struct pass_list_node);
602           new_pass_node->pass = new_pass;
603           if (!added_pass_nodes)
604             added_pass_nodes = new_pass_node;
605           else
606             prev_added_pass_node->next = new_pass_node;
607           prev_added_pass_node = new_pass_node;
608
609           success = true;
610         }
611
612       if (pass->sub && position_pass (new_pass_info, &pass->sub))
613         success = true;
614     }
615
616   return success;
617 }
618
619 /* Hooks a new pass into the pass lists.
620
621    PASS_INFO   - pass information that specifies the opt_pass object,
622                  reference pass, instance number, and how to position
623                  the pass  */
624
625 void
626 register_pass (struct register_pass_info *pass_info)
627 {
628   bool all_instances, success;
629
630   /* The checks below could fail in buggy plugins.  Existing GCC
631      passes should never fail these checks, so we mention plugin in
632      the messages.  */
633   if (!pass_info->pass)
634       fatal_error ("plugin cannot register a missing pass");
635
636   if (!pass_info->pass->name)
637       fatal_error ("plugin cannot register an unnamed pass");
638
639   if (!pass_info->reference_pass_name)
640       fatal_error
641         ("plugin cannot register pass %qs without reference pass name",
642          pass_info->pass->name);
643
644   /* Try to insert the new pass to the pass lists.  We need to check
645      all five lists as the reference pass could be in one (or all) of
646      them.  */
647   all_instances = pass_info->ref_pass_instance_number == 0;
648   success = position_pass (pass_info, &all_lowering_passes);
649   if (!success || all_instances)
650     success |= position_pass (pass_info, &all_small_ipa_passes);
651   if (!success || all_instances)
652     success |= position_pass (pass_info, &all_regular_ipa_passes);
653   if (!success || all_instances)
654     success |= position_pass (pass_info, &all_lto_gen_passes);
655   if (!success || all_instances)
656     success |= position_pass (pass_info, &all_passes);
657   if (!success)
658     fatal_error
659       ("pass %qs not found but is referenced by new pass %qs",
660        pass_info->reference_pass_name, pass_info->pass->name);
661
662   /* OK, we have successfully inserted the new pass. We need to register
663      the dump files for the newly added pass and its duplicates (if any).
664      Because the registration of plugin/backend passes happens after the
665      command-line options are parsed, the options that specify single
666      pass dumping (e.g. -fdump-tree-PASSNAME) cannot be used for new
667      passes. Therefore we currently can only enable dumping of
668      new passes when the 'dump-all' flags (e.g. -fdump-tree-all)
669      are specified. While doing so, we also delete the pass_list_node
670      objects created during pass positioning.  */
671   while (added_pass_nodes)
672     {
673       struct pass_list_node *next_node = added_pass_nodes->next;
674       enum tree_dump_index tdi;
675       register_one_dump_file (added_pass_nodes->pass);
676       if (added_pass_nodes->pass->type == SIMPLE_IPA_PASS
677           || added_pass_nodes->pass->type == IPA_PASS)
678         tdi = TDI_ipa_all;
679       else if (added_pass_nodes->pass->type == GIMPLE_PASS)
680         tdi = TDI_tree_all;
681       else
682         tdi = TDI_rtl_all;
683       /* Check if dump-all flag is specified.  */
684       if (get_dump_file_info (tdi)->state)
685         get_dump_file_info (added_pass_nodes->pass->static_pass_number)
686             ->state = get_dump_file_info (tdi)->state;
687       XDELETE (added_pass_nodes);
688       added_pass_nodes = next_node;
689     }
690 }
691
692 /* Construct the pass tree.  The sequencing of passes is driven by
693    the cgraph routines:
694
695    cgraph_finalize_compilation_unit ()
696        for each node N in the cgraph
697            cgraph_analyze_function (N)
698                cgraph_lower_function (N) -> all_lowering_passes
699
700    If we are optimizing, cgraph_optimize is then invoked:
701
702    cgraph_optimize ()
703        ipa_passes ()                    -> all_small_ipa_passes
704        cgraph_expand_all_functions ()
705            for each node N in the cgraph
706                cgraph_expand_function (N)
707                   tree_rest_of_compilation (DECL (N))  -> all_passes
708 */
709
710 void
711 init_optimization_passes (void)
712 {
713   struct opt_pass **p;
714
715 #define NEXT_PASS(PASS)  (p = next_pass_1 (p, &((PASS).pass)))
716
717  /* All passes needed to lower the function into shape optimizers can
718     operate on.  These passes are always run first on the function, but
719     backend might produce already lowered functions that are not processed
720     by these passes.  */
721   p = &all_lowering_passes;
722   NEXT_PASS (pass_warn_unused_result);
723   NEXT_PASS (pass_diagnose_omp_blocks);
724   NEXT_PASS (pass_mudflap_1);
725   NEXT_PASS (pass_lower_omp);
726   NEXT_PASS (pass_lower_cf);
727   NEXT_PASS (pass_refactor_eh);
728   NEXT_PASS (pass_lower_eh);
729   NEXT_PASS (pass_build_cfg);
730   NEXT_PASS (pass_warn_function_return);
731   NEXT_PASS (pass_build_cgraph_edges);
732   NEXT_PASS (pass_inline_parameters);
733   *p = NULL;
734
735   /* Interprocedural optimization passes.  */
736   p = &all_small_ipa_passes;
737   NEXT_PASS (pass_ipa_free_lang_data);
738   NEXT_PASS (pass_ipa_function_and_variable_visibility);
739   NEXT_PASS (pass_early_local_passes);
740     {
741       struct opt_pass **p = &pass_early_local_passes.pass.sub;
742       NEXT_PASS (pass_fixup_cfg);
743       NEXT_PASS (pass_init_datastructures);
744       NEXT_PASS (pass_expand_omp);
745
746       NEXT_PASS (pass_referenced_vars);
747       NEXT_PASS (pass_build_ssa);
748       NEXT_PASS (pass_lower_vector);
749       NEXT_PASS (pass_early_warn_uninitialized);
750       /* Note that it is not strictly necessary to schedule an early
751          inline pass here.  However, some test cases (e.g.,
752          g++.dg/other/p334435.C g++.dg/other/i386-1.C) expect extern
753          inline functions to be inlined even at -O0.  This does not
754          happen during the first early inline pass.  */
755       NEXT_PASS (pass_rebuild_cgraph_edges);
756       NEXT_PASS (pass_early_inline);
757       NEXT_PASS (pass_all_early_optimizations);
758         {
759           struct opt_pass **p = &pass_all_early_optimizations.pass.sub;
760           NEXT_PASS (pass_remove_cgraph_callee_edges);
761           NEXT_PASS (pass_rename_ssa_copies);
762           NEXT_PASS (pass_ccp);
763           NEXT_PASS (pass_forwprop);
764           /* pass_build_ealias is a dummy pass that ensures that we
765              execute TODO_rebuild_alias at this point.  Re-building
766              alias information also rewrites no longer addressed
767              locals into SSA form if possible.  */
768           NEXT_PASS (pass_build_ealias);
769           NEXT_PASS (pass_sra_early);
770           NEXT_PASS (pass_copy_prop);
771           NEXT_PASS (pass_merge_phi);
772           NEXT_PASS (pass_cd_dce);
773           NEXT_PASS (pass_early_ipa_sra);
774           NEXT_PASS (pass_tail_recursion);
775           NEXT_PASS (pass_convert_switch);
776           NEXT_PASS (pass_cleanup_eh);
777           NEXT_PASS (pass_profile);
778           NEXT_PASS (pass_local_pure_const);
779           /* Split functions creates parts that are not run through
780              early optimizations again.  It is thus good idea to do this
781              late.  */
782           NEXT_PASS (pass_split_functions);
783         }
784       NEXT_PASS (pass_release_ssa_names);
785       NEXT_PASS (pass_rebuild_cgraph_edges);
786       NEXT_PASS (pass_inline_parameters);
787     }
788   NEXT_PASS (pass_ipa_tree_profile);
789     {
790       struct opt_pass **p = &pass_ipa_tree_profile.pass.sub;
791       NEXT_PASS (pass_feedback_split_functions);
792     }
793   NEXT_PASS (pass_ipa_increase_alignment);
794   NEXT_PASS (pass_ipa_matrix_reorg);
795   NEXT_PASS (pass_ipa_lower_emutls);
796   *p = NULL;
797
798   p = &all_regular_ipa_passes;
799   NEXT_PASS (pass_ipa_whole_program_visibility);
800   NEXT_PASS (pass_ipa_profile);
801   NEXT_PASS (pass_ipa_cp);
802   NEXT_PASS (pass_ipa_cdtor_merge);
803   NEXT_PASS (pass_ipa_inline);
804   NEXT_PASS (pass_ipa_pure_const);
805   NEXT_PASS (pass_ipa_reference);
806   NEXT_PASS (pass_ipa_type_escape);
807   NEXT_PASS (pass_ipa_pta);
808   NEXT_PASS (pass_ipa_struct_reorg);
809   *p = NULL;
810
811   p = &all_lto_gen_passes;
812   NEXT_PASS (pass_ipa_lto_gimple_out);
813   NEXT_PASS (pass_ipa_lto_finish_out);  /* This must be the last LTO pass.  */
814   *p = NULL;
815
816   /* These passes are run after IPA passes on every function that is being
817      output to the assembler file.  */
818   p = &all_passes;
819   NEXT_PASS (pass_lower_eh_dispatch);
820   NEXT_PASS (pass_all_optimizations);
821     {
822       struct opt_pass **p = &pass_all_optimizations.pass.sub;
823       NEXT_PASS (pass_remove_cgraph_callee_edges);
824       /* Initial scalar cleanups before alias computation.
825          They ensure memory accesses are not indirect wherever possible.  */
826       NEXT_PASS (pass_strip_predict_hints);
827       NEXT_PASS (pass_rename_ssa_copies);
828       NEXT_PASS (pass_complete_unrolli);
829       NEXT_PASS (pass_ccp);
830       NEXT_PASS (pass_forwprop);
831       NEXT_PASS (pass_call_cdce);
832       /* pass_build_alias is a dummy pass that ensures that we
833          execute TODO_rebuild_alias at this point.  Re-building
834          alias information also rewrites no longer addressed
835          locals into SSA form if possible.  */
836       NEXT_PASS (pass_build_alias);
837       NEXT_PASS (pass_return_slot);
838       NEXT_PASS (pass_phiprop);
839       NEXT_PASS (pass_fre);
840       NEXT_PASS (pass_copy_prop);
841       NEXT_PASS (pass_merge_phi);
842       NEXT_PASS (pass_vrp);
843       NEXT_PASS (pass_dce);
844       NEXT_PASS (pass_cselim);
845       NEXT_PASS (pass_tree_ifcombine);
846       NEXT_PASS (pass_phiopt);
847       NEXT_PASS (pass_tail_recursion);
848       NEXT_PASS (pass_ch);
849       NEXT_PASS (pass_stdarg);
850       NEXT_PASS (pass_lower_complex);
851       NEXT_PASS (pass_sra);
852       NEXT_PASS (pass_rename_ssa_copies);
853       /* The dom pass will also resolve all __builtin_constant_p calls
854          that are still there to 0.  This has to be done after some
855          propagations have already run, but before some more dead code
856          is removed, and this place fits nicely.  Remember this when
857          trying to move or duplicate pass_dominator somewhere earlier.  */
858       NEXT_PASS (pass_dominator);
859       /* The only const/copy propagation opportunities left after
860          DOM should be due to degenerate PHI nodes.  So rather than
861          run the full propagators, run a specialized pass which
862          only examines PHIs to discover const/copy propagation
863          opportunities.  */
864       NEXT_PASS (pass_phi_only_cprop);
865       NEXT_PASS (pass_dse);
866       NEXT_PASS (pass_reassoc);
867       NEXT_PASS (pass_dce);
868       NEXT_PASS (pass_forwprop);
869       NEXT_PASS (pass_phiopt);
870       NEXT_PASS (pass_object_sizes);
871       NEXT_PASS (pass_ccp);
872       NEXT_PASS (pass_copy_prop);
873       NEXT_PASS (pass_cse_sincos);
874       NEXT_PASS (pass_optimize_bswap);
875       NEXT_PASS (pass_split_crit_edges);
876       NEXT_PASS (pass_pre);
877       NEXT_PASS (pass_sink_code);
878       NEXT_PASS (pass_tree_loop);
879         {
880           struct opt_pass **p = &pass_tree_loop.pass.sub;
881           NEXT_PASS (pass_tree_loop_init);
882           NEXT_PASS (pass_lim);
883           NEXT_PASS (pass_copy_prop);
884           NEXT_PASS (pass_dce_loop);
885           NEXT_PASS (pass_tree_unswitch);
886           NEXT_PASS (pass_scev_cprop);
887           NEXT_PASS (pass_record_bounds);
888           NEXT_PASS (pass_check_data_deps);
889           NEXT_PASS (pass_loop_distribution);
890           NEXT_PASS (pass_linear_transform);
891           NEXT_PASS (pass_copy_prop);
892           NEXT_PASS (pass_graphite);
893             {
894               struct opt_pass **p = &pass_graphite.pass.sub;
895               NEXT_PASS (pass_graphite_transforms);
896               NEXT_PASS (pass_copy_prop);
897               NEXT_PASS (pass_dce_loop);
898               NEXT_PASS (pass_lim);
899             }
900           NEXT_PASS (pass_iv_canon);
901           NEXT_PASS (pass_if_conversion);
902           NEXT_PASS (pass_vectorize);
903             {
904               struct opt_pass **p = &pass_vectorize.pass.sub;
905               NEXT_PASS (pass_lower_vector_ssa);
906               NEXT_PASS (pass_dce_loop);
907             }
908           NEXT_PASS (pass_predcom);
909           NEXT_PASS (pass_complete_unroll);
910           NEXT_PASS (pass_slp_vectorize);
911           NEXT_PASS (pass_parallelize_loops);
912           NEXT_PASS (pass_loop_prefetch);
913           NEXT_PASS (pass_iv_optimize);
914           NEXT_PASS (pass_tree_loop_done);
915         }
916       NEXT_PASS (pass_cse_reciprocals);
917       NEXT_PASS (pass_reassoc);
918       NEXT_PASS (pass_vrp);
919       NEXT_PASS (pass_dominator);
920       /* The only const/copy propagation opportunities left after
921          DOM should be due to degenerate PHI nodes.  So rather than
922          run the full propagators, run a specialized pass which
923          only examines PHIs to discover const/copy propagation
924          opportunities.  */
925       NEXT_PASS (pass_phi_only_cprop);
926       NEXT_PASS (pass_cd_dce);
927       NEXT_PASS (pass_tracer);
928
929       /* FIXME: If DCE is not run before checking for uninitialized uses,
930          we may get false warnings (e.g., testsuite/gcc.dg/uninit-5.c).
931          However, this also causes us to misdiagnose cases that should be
932          real warnings (e.g., testsuite/gcc.dg/pr18501.c).
933
934          To fix the false positives in uninit-5.c, we would have to
935          account for the predicates protecting the set and the use of each
936          variable.  Using a representation like Gated Single Assignment
937          may help.  */
938       NEXT_PASS (pass_late_warn_uninitialized);
939       NEXT_PASS (pass_dse);
940       NEXT_PASS (pass_forwprop);
941       NEXT_PASS (pass_phiopt);
942       NEXT_PASS (pass_fold_builtins);
943       NEXT_PASS (pass_optimize_widening_mul);
944       NEXT_PASS (pass_tail_calls);
945       NEXT_PASS (pass_rename_ssa_copies);
946       NEXT_PASS (pass_uncprop);
947       NEXT_PASS (pass_local_pure_const);
948     }
949   NEXT_PASS (pass_lower_complex_O0);
950   NEXT_PASS (pass_cleanup_eh);
951   NEXT_PASS (pass_lower_resx);
952   NEXT_PASS (pass_nrv);
953   NEXT_PASS (pass_mudflap_2);
954   NEXT_PASS (pass_cleanup_cfg_post_optimizing);
955   NEXT_PASS (pass_warn_function_noreturn);
956
957   NEXT_PASS (pass_expand);
958
959   NEXT_PASS (pass_rest_of_compilation);
960     {
961       struct opt_pass **p = &pass_rest_of_compilation.pass.sub;
962       NEXT_PASS (pass_init_function);
963       NEXT_PASS (pass_jump);
964       NEXT_PASS (pass_rtl_eh);
965       NEXT_PASS (pass_initial_value_sets);
966       NEXT_PASS (pass_unshare_all_rtl);
967       NEXT_PASS (pass_instantiate_virtual_regs);
968       NEXT_PASS (pass_into_cfg_layout_mode);
969       NEXT_PASS (pass_jump2);
970       NEXT_PASS (pass_lower_subreg);
971       NEXT_PASS (pass_df_initialize_opt);
972       NEXT_PASS (pass_cse);
973       NEXT_PASS (pass_rtl_fwprop);
974       NEXT_PASS (pass_rtl_cprop);
975       NEXT_PASS (pass_rtl_pre);
976       NEXT_PASS (pass_rtl_hoist);
977       NEXT_PASS (pass_rtl_cprop);
978       NEXT_PASS (pass_rtl_store_motion);
979       NEXT_PASS (pass_cse_after_global_opts);
980       NEXT_PASS (pass_rtl_ifcvt);
981       NEXT_PASS (pass_reginfo_init);
982       /* Perform loop optimizations.  It might be better to do them a bit
983          sooner, but we want the profile feedback to work more
984          efficiently.  */
985       NEXT_PASS (pass_loop2);
986         {
987           struct opt_pass **p = &pass_loop2.pass.sub;
988           NEXT_PASS (pass_rtl_loop_init);
989           NEXT_PASS (pass_rtl_move_loop_invariants);
990           NEXT_PASS (pass_rtl_unswitch);
991           NEXT_PASS (pass_rtl_unroll_and_peel_loops);
992           NEXT_PASS (pass_rtl_doloop);
993           NEXT_PASS (pass_rtl_loop_done);
994           *p = NULL;
995         }
996       NEXT_PASS (pass_web);
997       NEXT_PASS (pass_rtl_cprop);
998       NEXT_PASS (pass_cse2);
999       NEXT_PASS (pass_rtl_dse1);
1000       NEXT_PASS (pass_rtl_fwprop_addr);
1001       NEXT_PASS (pass_inc_dec);
1002       NEXT_PASS (pass_initialize_regs);
1003       NEXT_PASS (pass_ud_rtl_dce);
1004       NEXT_PASS (pass_combine);
1005       NEXT_PASS (pass_if_after_combine);
1006       NEXT_PASS (pass_partition_blocks);
1007       NEXT_PASS (pass_regmove);
1008       NEXT_PASS (pass_outof_cfg_layout_mode);
1009       NEXT_PASS (pass_split_all_insns);
1010       NEXT_PASS (pass_lower_subreg2);
1011       NEXT_PASS (pass_df_initialize_no_opt);
1012       NEXT_PASS (pass_stack_ptr_mod);
1013       NEXT_PASS (pass_mode_switching);
1014       NEXT_PASS (pass_match_asm_constraints);
1015       NEXT_PASS (pass_sms);
1016       NEXT_PASS (pass_sched);
1017       NEXT_PASS (pass_ira);
1018       NEXT_PASS (pass_postreload);
1019         {
1020           struct opt_pass **p = &pass_postreload.pass.sub;
1021           NEXT_PASS (pass_postreload_cse);
1022           NEXT_PASS (pass_gcse2);
1023           NEXT_PASS (pass_split_after_reload);
1024           NEXT_PASS (pass_implicit_zee);
1025           NEXT_PASS (pass_compare_elim_after_reload);
1026           NEXT_PASS (pass_branch_target_load_optimize1);
1027           NEXT_PASS (pass_thread_prologue_and_epilogue);
1028           NEXT_PASS (pass_rtl_dse2);
1029           NEXT_PASS (pass_stack_adjustments);
1030           NEXT_PASS (pass_peephole2);
1031           NEXT_PASS (pass_if_after_reload);
1032           NEXT_PASS (pass_regrename);
1033           NEXT_PASS (pass_cprop_hardreg);
1034           NEXT_PASS (pass_fast_rtl_dce);
1035           NEXT_PASS (pass_reorder_blocks);
1036           NEXT_PASS (pass_branch_target_load_optimize2);
1037           NEXT_PASS (pass_leaf_regs);
1038           NEXT_PASS (pass_split_before_sched2);
1039           NEXT_PASS (pass_sched2);
1040           NEXT_PASS (pass_stack_regs);
1041             {
1042               struct opt_pass **p = &pass_stack_regs.pass.sub;
1043               NEXT_PASS (pass_split_before_regstack);
1044               NEXT_PASS (pass_stack_regs_run);
1045             }
1046           NEXT_PASS (pass_compute_alignments);
1047           NEXT_PASS (pass_duplicate_computed_gotos);
1048           NEXT_PASS (pass_variable_tracking);
1049           NEXT_PASS (pass_free_cfg);
1050           NEXT_PASS (pass_machine_reorg);
1051           NEXT_PASS (pass_cleanup_barriers);
1052           NEXT_PASS (pass_delay_slots);
1053           NEXT_PASS (pass_split_for_shorten_branches);
1054           NEXT_PASS (pass_convert_to_eh_region_ranges);
1055           NEXT_PASS (pass_shorten_branches);
1056           NEXT_PASS (pass_set_nothrow_function_flags);
1057           NEXT_PASS (pass_final);
1058         }
1059       NEXT_PASS (pass_df_finish);
1060     }
1061   NEXT_PASS (pass_clean_state);
1062   *p = NULL;
1063
1064 #undef NEXT_PASS
1065
1066   /* Register the passes with the tree dump code.  */
1067   register_dump_files (all_lowering_passes, PROP_gimple_any);
1068   register_dump_files (all_small_ipa_passes,
1069                        PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1070                        | PROP_cfg);
1071   register_dump_files (all_regular_ipa_passes,
1072                        PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1073                        | PROP_cfg);
1074   register_dump_files (all_lto_gen_passes,
1075                        PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1076                        | PROP_cfg);
1077   register_dump_files (all_passes,
1078                        PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1079                        | PROP_cfg);
1080 }
1081
1082 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1083    function CALLBACK for every function in the call graph.  Otherwise,
1084    call CALLBACK on the current function.  */
1085
1086 static void
1087 do_per_function (void (*callback) (void *data), void *data)
1088 {
1089   if (current_function_decl)
1090     callback (data);
1091   else
1092     {
1093       struct cgraph_node *node;
1094       for (node = cgraph_nodes; node; node = node->next)
1095         if (node->analyzed && gimple_has_body_p (node->decl)
1096             && (!node->clone_of || node->decl != node->clone_of->decl))
1097           {
1098             push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1099             current_function_decl = node->decl;
1100             callback (data);
1101             if (!flag_wpa)
1102               {
1103                 free_dominance_info (CDI_DOMINATORS);
1104                 free_dominance_info (CDI_POST_DOMINATORS);
1105               }
1106             current_function_decl = NULL;
1107             pop_cfun ();
1108             ggc_collect ();
1109           }
1110     }
1111 }
1112
1113 /* Because inlining might remove no-longer reachable nodes, we need to
1114    keep the array visible to garbage collector to avoid reading collected
1115    out nodes.  */
1116 static int nnodes;
1117 static GTY ((length ("nnodes"))) cgraph_node_ptr *order;
1118
1119 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1120    function CALLBACK for every function in the call graph.  Otherwise,
1121    call CALLBACK on the current function.
1122    This function is global so that plugins can use it.  */
1123 void
1124 do_per_function_toporder (void (*callback) (void *data), void *data)
1125 {
1126   int i;
1127
1128   if (current_function_decl)
1129     callback (data);
1130   else
1131     {
1132       gcc_assert (!order);
1133       order = ggc_alloc_vec_cgraph_node_ptr (cgraph_n_nodes);
1134       nnodes = cgraph_postorder (order);
1135       for (i = nnodes - 1; i >= 0; i--)
1136         order[i]->process = 1;
1137       for (i = nnodes - 1; i >= 0; i--)
1138         {
1139           struct cgraph_node *node = order[i];
1140
1141           /* Allow possibly removed nodes to be garbage collected.  */
1142           order[i] = NULL;
1143           node->process = 0;
1144           if (node->analyzed)
1145             {
1146               push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1147               current_function_decl = node->decl;
1148               callback (data);
1149               free_dominance_info (CDI_DOMINATORS);
1150               free_dominance_info (CDI_POST_DOMINATORS);
1151               current_function_decl = NULL;
1152               pop_cfun ();
1153               ggc_collect ();
1154             }
1155         }
1156     }
1157   ggc_free (order);
1158   order = NULL;
1159   nnodes = 0;
1160 }
1161
1162 /* Perform all TODO actions that ought to be done on each function.  */
1163
1164 static void
1165 execute_function_todo (void *data)
1166 {
1167   unsigned int flags = (size_t)data;
1168   flags &= ~cfun->last_verified;
1169   if (!flags)
1170     return;
1171
1172   /* Always cleanup the CFG before trying to update SSA.  */
1173   if (flags & TODO_cleanup_cfg)
1174     {
1175       bool cleanup = cleanup_tree_cfg ();
1176
1177       if (cleanup && (cfun->curr_properties & PROP_ssa))
1178         flags |= TODO_remove_unused_locals;
1179
1180       /* When cleanup_tree_cfg merges consecutive blocks, it may
1181          perform some simplistic propagation when removing single
1182          valued PHI nodes.  This propagation may, in turn, cause the
1183          SSA form to become out-of-date (see PR 22037).  So, even
1184          if the parent pass had not scheduled an SSA update, we may
1185          still need to do one.  */
1186       if (!(flags & TODO_update_ssa_any) && need_ssa_update_p (cfun))
1187         flags |= TODO_update_ssa;
1188     }
1189
1190   if (flags & TODO_update_ssa_any)
1191     {
1192       unsigned update_flags = flags & TODO_update_ssa_any;
1193       update_ssa (update_flags);
1194       cfun->last_verified &= ~TODO_verify_ssa;
1195     }
1196
1197   if (flags & TODO_rebuild_alias)
1198     {
1199       execute_update_addresses_taken ();
1200       compute_may_aliases ();
1201     }
1202   else if (optimize && (flags & TODO_update_address_taken))
1203     execute_update_addresses_taken ();
1204
1205   if (flags & TODO_remove_unused_locals)
1206     remove_unused_locals ();
1207
1208   if ((flags & TODO_dump_func) && dump_file && current_function_decl)
1209     {
1210       if (cfun->curr_properties & PROP_trees)
1211         dump_function_to_file (current_function_decl, dump_file, dump_flags);
1212       else
1213         {
1214           if (dump_flags & TDF_SLIM)
1215             print_rtl_slim_with_bb (dump_file, get_insns (), dump_flags);
1216           else if ((cfun->curr_properties & PROP_cfg)
1217                    && (dump_flags & TDF_BLOCKS))
1218             print_rtl_with_bb (dump_file, get_insns ());
1219           else
1220             print_rtl (dump_file, get_insns ());
1221
1222           if ((cfun->curr_properties & PROP_cfg)
1223               && graph_dump_format != no_graph
1224               && (dump_flags & TDF_GRAPH))
1225             print_rtl_graph_with_bb (dump_file_name, get_insns ());
1226         }
1227
1228       /* Flush the file.  If verification fails, we won't be able to
1229          close the file before aborting.  */
1230       fflush (dump_file);
1231     }
1232
1233   if (flags & TODO_rebuild_frequencies)
1234     rebuild_frequencies ();
1235
1236   if (flags & TODO_rebuild_cgraph_edges)
1237     rebuild_cgraph_edges ();
1238
1239   /* If we've seen errors do not bother running any verifiers.  */
1240   if (seen_error ())
1241     return;
1242
1243 #if defined ENABLE_CHECKING
1244   if (flags & TODO_verify_ssa
1245       || (current_loops && loops_state_satisfies_p (LOOP_CLOSED_SSA)))
1246     verify_ssa (true);
1247   if (flags & TODO_verify_flow)
1248     verify_flow_info ();
1249   if (flags & TODO_verify_stmts)
1250     verify_stmts ();
1251   if (current_loops && loops_state_satisfies_p (LOOP_CLOSED_SSA))
1252     verify_loop_closed_ssa (false);
1253   if (flags & TODO_verify_rtl_sharing)
1254     verify_rtl_sharing ();
1255 #endif
1256
1257   cfun->last_verified = flags & TODO_verify_all;
1258 }
1259
1260 /* Perform all TODO actions.  */
1261 static void
1262 execute_todo (unsigned int flags)
1263 {
1264 #if defined ENABLE_CHECKING
1265   if (cfun
1266       && need_ssa_update_p (cfun))
1267     gcc_assert (flags & TODO_update_ssa_any);
1268 #endif
1269
1270   timevar_push (TV_TODO);
1271
1272   /* Inform the pass whether it is the first time it is run.  */
1273   first_pass_instance = (flags & TODO_mark_first_instance) != 0;
1274
1275   statistics_fini_pass ();
1276
1277   do_per_function (execute_function_todo, (void *)(size_t) flags);
1278
1279   /* Always remove functions just as before inlining: IPA passes might be
1280      interested to see bodies of extern inline functions that are not inlined
1281      to analyze side effects.  The full removal is done just at the end
1282      of IPA pass queue.  */
1283   if (flags & TODO_remove_functions)
1284     {
1285       gcc_assert (!cfun);
1286       cgraph_remove_unreachable_nodes (true, dump_file);
1287     }
1288
1289   if ((flags & TODO_dump_cgraph) && dump_file && !current_function_decl)
1290     {
1291       gcc_assert (!cfun);
1292       dump_cgraph (dump_file);
1293       /* Flush the file.  If verification fails, we won't be able to
1294          close the file before aborting.  */
1295       fflush (dump_file);
1296     }
1297
1298   if (flags & TODO_ggc_collect)
1299     ggc_collect ();
1300
1301   /* Now that the dumping has been done, we can get rid of the optional
1302      df problems.  */
1303   if (flags & TODO_df_finish)
1304     df_finish_pass ((flags & TODO_df_verify) != 0);
1305
1306   timevar_pop (TV_TODO);
1307 }
1308
1309 /* Verify invariants that should hold between passes.  This is a place
1310    to put simple sanity checks.  */
1311
1312 static void
1313 verify_interpass_invariants (void)
1314 {
1315   gcc_checking_assert (!fold_deferring_overflow_warnings_p ());
1316 }
1317
1318 /* Clear the last verified flag.  */
1319
1320 static void
1321 clear_last_verified (void *data ATTRIBUTE_UNUSED)
1322 {
1323   cfun->last_verified = 0;
1324 }
1325
1326 /* Helper function. Verify that the properties has been turn into the
1327    properties expected by the pass.  */
1328
1329 #ifdef ENABLE_CHECKING
1330 static void
1331 verify_curr_properties (void *data)
1332 {
1333   unsigned int props = (size_t)data;
1334   gcc_assert ((cfun->curr_properties & props) == props);
1335 }
1336 #endif
1337
1338 /* Initialize pass dump file.  */
1339 /* This is non-static so that the plugins can use it.  */
1340
1341 bool
1342 pass_init_dump_file (struct opt_pass *pass)
1343 {
1344   /* If a dump file name is present, open it if enabled.  */
1345   if (pass->static_pass_number != -1)
1346     {
1347       bool initializing_dump = !dump_initialized_p (pass->static_pass_number);
1348       dump_file_name = get_dump_file_name (pass->static_pass_number);
1349       dump_file = dump_begin (pass->static_pass_number, &dump_flags);
1350       if (dump_file && current_function_decl)
1351         {
1352           const char *dname, *aname;
1353           struct cgraph_node *node = cgraph_node (current_function_decl);
1354           dname = lang_hooks.decl_printable_name (current_function_decl, 2);
1355           aname = (IDENTIFIER_POINTER
1356                    (DECL_ASSEMBLER_NAME (current_function_decl)));
1357           fprintf (dump_file, "\n;; Function %s (%s)%s\n\n", dname, aname,
1358              node->frequency == NODE_FREQUENCY_HOT
1359              ? " (hot)"
1360              : node->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED
1361              ? " (unlikely executed)"
1362              : node->frequency == NODE_FREQUENCY_EXECUTED_ONCE
1363              ? " (executed once)"
1364              : "");
1365         }
1366       return initializing_dump;
1367     }
1368   else
1369     return false;
1370 }
1371
1372 /* Flush PASS dump file.  */
1373 /* This is non-static so that plugins can use it.  */
1374
1375 void
1376 pass_fini_dump_file (struct opt_pass *pass)
1377 {
1378   /* Flush and close dump file.  */
1379   if (dump_file_name)
1380     {
1381       free (CONST_CAST (char *, dump_file_name));
1382       dump_file_name = NULL;
1383     }
1384
1385   if (dump_file)
1386     {
1387       dump_end (pass->static_pass_number, dump_file);
1388       dump_file = NULL;
1389     }
1390 }
1391
1392 /* After executing the pass, apply expected changes to the function
1393    properties. */
1394
1395 static void
1396 update_properties_after_pass (void *data)
1397 {
1398   struct opt_pass *pass = (struct opt_pass *) data;
1399   cfun->curr_properties = (cfun->curr_properties | pass->properties_provided)
1400                            & ~pass->properties_destroyed;
1401 }
1402
1403 /* Execute summary generation for all of the passes in IPA_PASS.  */
1404
1405 void
1406 execute_ipa_summary_passes (struct ipa_opt_pass_d *ipa_pass)
1407 {
1408   while (ipa_pass)
1409     {
1410       struct opt_pass *pass = &ipa_pass->pass;
1411
1412       /* Execute all of the IPA_PASSes in the list.  */
1413       if (ipa_pass->pass.type == IPA_PASS
1414           && (!pass->gate || pass->gate ())
1415           && ipa_pass->generate_summary)
1416         {
1417           pass_init_dump_file (pass);
1418
1419           /* If a timevar is present, start it.  */
1420           if (pass->tv_id)
1421             timevar_push (pass->tv_id);
1422
1423           ipa_pass->generate_summary ();
1424
1425           /* Stop timevar.  */
1426           if (pass->tv_id)
1427             timevar_pop (pass->tv_id);
1428
1429           pass_fini_dump_file (pass);
1430         }
1431       ipa_pass = (struct ipa_opt_pass_d *)ipa_pass->pass.next;
1432     }
1433 }
1434
1435 /* Execute IPA_PASS function transform on NODE.  */
1436
1437 static void
1438 execute_one_ipa_transform_pass (struct cgraph_node *node,
1439                                 struct ipa_opt_pass_d *ipa_pass)
1440 {
1441   struct opt_pass *pass = &ipa_pass->pass;
1442   unsigned int todo_after = 0;
1443
1444   current_pass = pass;
1445   if (!ipa_pass->function_transform)
1446     return;
1447
1448   /* Note that the folders should only create gimple expressions.
1449      This is a hack until the new folder is ready.  */
1450   in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
1451
1452   pass_init_dump_file (pass);
1453
1454   /* Run pre-pass verification.  */
1455   execute_todo (ipa_pass->function_transform_todo_flags_start);
1456
1457   /* If a timevar is present, start it.  */
1458   if (pass->tv_id != TV_NONE)
1459     timevar_push (pass->tv_id);
1460
1461   /* Do it!  */
1462   todo_after = ipa_pass->function_transform (node);
1463
1464   /* Stop timevar.  */
1465   if (pass->tv_id != TV_NONE)
1466     timevar_pop (pass->tv_id);
1467
1468   /* Run post-pass cleanup and verification.  */
1469   execute_todo (todo_after);
1470   verify_interpass_invariants ();
1471
1472   pass_fini_dump_file (pass);
1473
1474   current_pass = NULL;
1475 }
1476
1477 /* For the current function, execute all ipa transforms. */
1478
1479 void
1480 execute_all_ipa_transforms (void)
1481 {
1482   struct cgraph_node *node;
1483   if (!cfun)
1484     return;
1485   node = cgraph_node (current_function_decl);
1486
1487   if (node->ipa_transforms_to_apply)
1488     {
1489       unsigned int i;
1490
1491       for (i = 0; i < VEC_length (ipa_opt_pass, node->ipa_transforms_to_apply);
1492            i++)
1493         execute_one_ipa_transform_pass (node,
1494                                         VEC_index (ipa_opt_pass,
1495                                                    node->ipa_transforms_to_apply,
1496                                                    i));
1497       VEC_free (ipa_opt_pass, heap, node->ipa_transforms_to_apply);
1498       node->ipa_transforms_to_apply = NULL;
1499     }
1500 }
1501
1502 /* Execute PASS. */
1503
1504 bool
1505 execute_one_pass (struct opt_pass *pass)
1506 {
1507   bool initializing_dump;
1508   unsigned int todo_after = 0;
1509
1510   bool gate_status;
1511
1512   /* IPA passes are executed on whole program, so cfun should be NULL.
1513      Other passes need function context set.  */
1514   if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
1515     gcc_assert (!cfun && !current_function_decl);
1516   else
1517     gcc_assert (cfun && current_function_decl);
1518
1519   current_pass = pass;
1520
1521   /* Check whether gate check should be avoided.
1522      User controls the value of the gate through the parameter "gate_status". */
1523   gate_status = (pass->gate == NULL) ? true : pass->gate();
1524
1525   /* Override gate with plugin.  */
1526   invoke_plugin_callbacks (PLUGIN_OVERRIDE_GATE, &gate_status);
1527
1528   if (!gate_status)
1529     {
1530       current_pass = NULL;
1531       return false;
1532     }
1533
1534   /* Pass execution event trigger: useful to identify passes being
1535      executed.  */
1536   invoke_plugin_callbacks (PLUGIN_PASS_EXECUTION, pass);
1537
1538   if (!quiet_flag && !cfun)
1539     fprintf (stderr, " <%s>", pass->name ? pass->name : "");
1540
1541   /* Note that the folders should only create gimple expressions.
1542      This is a hack until the new folder is ready.  */
1543   in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
1544
1545   initializing_dump = pass_init_dump_file (pass);
1546
1547   /* Run pre-pass verification.  */
1548   execute_todo (pass->todo_flags_start);
1549
1550 #ifdef ENABLE_CHECKING
1551   do_per_function (verify_curr_properties,
1552                    (void *)(size_t)pass->properties_required);
1553 #endif
1554
1555   /* If a timevar is present, start it.  */
1556   if (pass->tv_id != TV_NONE)
1557     timevar_push (pass->tv_id);
1558
1559   /* Do it!  */
1560   if (pass->execute)
1561     {
1562       todo_after = pass->execute ();
1563       do_per_function (clear_last_verified, NULL);
1564     }
1565
1566   /* Stop timevar.  */
1567   if (pass->tv_id != TV_NONE)
1568     timevar_pop (pass->tv_id);
1569
1570   do_per_function (update_properties_after_pass, pass);
1571
1572   if (initializing_dump
1573       && dump_file
1574       && graph_dump_format != no_graph
1575       && cfun
1576       && (cfun->curr_properties & (PROP_cfg | PROP_rtl))
1577           == (PROP_cfg | PROP_rtl))
1578     {
1579       get_dump_file_info (pass->static_pass_number)->flags |= TDF_GRAPH;
1580       dump_flags |= TDF_GRAPH;
1581       clean_graph_dump_file (dump_file_name);
1582     }
1583
1584   /* Run post-pass cleanup and verification.  */
1585   execute_todo (todo_after | pass->todo_flags_finish);
1586   verify_interpass_invariants ();
1587   if (pass->type == IPA_PASS)
1588     {
1589       struct cgraph_node *node;
1590       for (node = cgraph_nodes; node; node = node->next)
1591         if (node->analyzed)
1592           VEC_safe_push (ipa_opt_pass, heap, node->ipa_transforms_to_apply,
1593                          (struct ipa_opt_pass_d *)pass);
1594     }
1595
1596   if (!current_function_decl)
1597     cgraph_process_new_functions ();
1598
1599   pass_fini_dump_file (pass);
1600
1601   if (pass->type != SIMPLE_IPA_PASS && pass->type != IPA_PASS)
1602     gcc_assert (!(cfun->curr_properties & PROP_trees)
1603                 || pass->type != RTL_PASS);
1604
1605   current_pass = NULL;
1606
1607   return true;
1608 }
1609
1610 void
1611 execute_pass_list (struct opt_pass *pass)
1612 {
1613   do
1614     {
1615       gcc_assert (pass->type == GIMPLE_PASS
1616                   || pass->type == RTL_PASS);
1617       if (execute_one_pass (pass) && pass->sub)
1618         execute_pass_list (pass->sub);
1619       pass = pass->next;
1620     }
1621   while (pass);
1622 }
1623
1624 /* Same as execute_pass_list but assume that subpasses of IPA passes
1625    are local passes. If SET is not NULL, write out summaries of only
1626    those node in SET. */
1627
1628 static void
1629 ipa_write_summaries_2 (struct opt_pass *pass, cgraph_node_set set,
1630                        varpool_node_set vset,
1631                        struct lto_out_decl_state *state)
1632 {
1633   while (pass)
1634     {
1635       struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *)pass;
1636       gcc_assert (!current_function_decl);
1637       gcc_assert (!cfun);
1638       gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1639       if (pass->type == IPA_PASS
1640           && ipa_pass->write_summary
1641           && (!pass->gate || pass->gate ()))
1642         {
1643           /* If a timevar is present, start it.  */
1644           if (pass->tv_id)
1645             timevar_push (pass->tv_id);
1646
1647           pass_init_dump_file (pass);
1648
1649           ipa_pass->write_summary (set,vset);
1650
1651           pass_fini_dump_file (pass);
1652
1653           /* If a timevar is present, start it.  */
1654           if (pass->tv_id)
1655             timevar_pop (pass->tv_id);
1656         }
1657
1658       if (pass->sub && pass->sub->type != GIMPLE_PASS)
1659         ipa_write_summaries_2 (pass->sub, set, vset, state);
1660
1661       pass = pass->next;
1662     }
1663 }
1664
1665 /* Helper function of ipa_write_summaries. Creates and destroys the
1666    decl state and calls ipa_write_summaries_2 for all passes that have
1667    summaries.  SET is the set of nodes to be written.  */
1668
1669 static void
1670 ipa_write_summaries_1 (cgraph_node_set set, varpool_node_set vset)
1671 {
1672   struct lto_out_decl_state *state = lto_new_out_decl_state ();
1673   compute_ltrans_boundary (state, set, vset);
1674
1675   lto_push_out_decl_state (state);
1676
1677   gcc_assert (!flag_wpa);
1678   ipa_write_summaries_2 (all_regular_ipa_passes, set, vset, state);
1679   ipa_write_summaries_2 (all_lto_gen_passes, set, vset, state);
1680
1681   gcc_assert (lto_get_out_decl_state () == state);
1682   lto_pop_out_decl_state ();
1683   lto_delete_out_decl_state (state);
1684 }
1685
1686 /* Write out summaries for all the nodes in the callgraph.  */
1687
1688 void
1689 ipa_write_summaries (void)
1690 {
1691   cgraph_node_set set;
1692   varpool_node_set vset;
1693   struct cgraph_node **order;
1694   struct varpool_node *vnode;
1695   int i, order_pos;
1696
1697   if (!flag_generate_lto || seen_error ())
1698     return;
1699
1700   set = cgraph_node_set_new ();
1701
1702   /* Create the callgraph set in the same order used in
1703      cgraph_expand_all_functions.  This mostly facilitates debugging,
1704      since it causes the gimple file to be processed in the same order
1705      as the source code.  */
1706   order = XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1707   order_pos = cgraph_postorder (order);
1708   gcc_assert (order_pos == cgraph_n_nodes);
1709
1710   for (i = order_pos - 1; i >= 0; i--)
1711     {
1712       struct cgraph_node *node = order[i];
1713
1714       if (node->analyzed)
1715         {
1716           /* When streaming out references to statements as part of some IPA
1717              pass summary, the statements need to have uids assigned and the
1718              following does that for all the IPA passes here. Naturally, this
1719              ordering then matches the one IPA-passes get in their stmt_fixup
1720              hooks.  */
1721
1722           push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1723           renumber_gimple_stmt_uids ();
1724           pop_cfun ();
1725         }
1726       if (node->analyzed)
1727         cgraph_node_set_add (set, node);
1728     }
1729   vset = varpool_node_set_new ();
1730
1731   for (vnode = varpool_nodes; vnode; vnode = vnode->next)
1732     if (vnode->needed && !vnode->alias)
1733       varpool_node_set_add (vset, vnode);
1734
1735   ipa_write_summaries_1 (set, vset);
1736
1737   free (order);
1738   ggc_free (set);
1739   ggc_free (vset);
1740 }
1741
1742 /* Same as execute_pass_list but assume that subpasses of IPA passes
1743    are local passes. If SET is not NULL, write out optimization summaries of
1744    only those node in SET. */
1745
1746 static void
1747 ipa_write_optimization_summaries_1 (struct opt_pass *pass, cgraph_node_set set,
1748                        varpool_node_set vset,
1749                        struct lto_out_decl_state *state)
1750 {
1751   while (pass)
1752     {
1753       struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *)pass;
1754       gcc_assert (!current_function_decl);
1755       gcc_assert (!cfun);
1756       gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1757       if (pass->type == IPA_PASS
1758           && ipa_pass->write_optimization_summary
1759           && (!pass->gate || pass->gate ()))
1760         {
1761           /* If a timevar is present, start it.  */
1762           if (pass->tv_id)
1763             timevar_push (pass->tv_id);
1764
1765           pass_init_dump_file (pass);
1766
1767           ipa_pass->write_optimization_summary (set, vset);
1768
1769           pass_fini_dump_file (pass);
1770
1771           /* If a timevar is present, start it.  */
1772           if (pass->tv_id)
1773             timevar_pop (pass->tv_id);
1774         }
1775
1776       if (pass->sub && pass->sub->type != GIMPLE_PASS)
1777         ipa_write_optimization_summaries_1 (pass->sub, set, vset, state);
1778
1779       pass = pass->next;
1780     }
1781 }
1782
1783 /* Write all the optimization summaries for the cgraph nodes in SET.  If SET is
1784    NULL, write out all summaries of all nodes. */
1785
1786 void
1787 ipa_write_optimization_summaries (cgraph_node_set set, varpool_node_set vset)
1788 {
1789   struct lto_out_decl_state *state = lto_new_out_decl_state ();
1790   cgraph_node_set_iterator csi;
1791   compute_ltrans_boundary (state, set, vset);
1792
1793   lto_push_out_decl_state (state);
1794   for (csi = csi_start (set); !csi_end_p (csi); csi_next (&csi))
1795     {
1796       struct cgraph_node *node = csi_node (csi);
1797       /* When streaming out references to statements as part of some IPA
1798          pass summary, the statements need to have uids assigned.
1799
1800          For functions newly born at WPA stage we need to initialize
1801          the uids here.  */
1802       if (node->analyzed
1803           && gimple_has_body_p (node->decl))
1804         {
1805           push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1806           renumber_gimple_stmt_uids ();
1807           pop_cfun ();
1808         }
1809     }
1810
1811   gcc_assert (flag_wpa);
1812   ipa_write_optimization_summaries_1 (all_regular_ipa_passes, set, vset, state);
1813   ipa_write_optimization_summaries_1 (all_lto_gen_passes, set, vset, state);
1814
1815   gcc_assert (lto_get_out_decl_state () == state);
1816   lto_pop_out_decl_state ();
1817   lto_delete_out_decl_state (state);
1818 }
1819
1820 /* Same as execute_pass_list but assume that subpasses of IPA passes
1821    are local passes.  */
1822
1823 static void
1824 ipa_read_summaries_1 (struct opt_pass *pass)
1825 {
1826   while (pass)
1827     {
1828       struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
1829
1830       gcc_assert (!current_function_decl);
1831       gcc_assert (!cfun);
1832       gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1833
1834       if (pass->gate == NULL || pass->gate ())
1835         {
1836           if (pass->type == IPA_PASS && ipa_pass->read_summary)
1837             {
1838               /* If a timevar is present, start it.  */
1839               if (pass->tv_id)
1840                 timevar_push (pass->tv_id);
1841
1842               pass_init_dump_file (pass);
1843
1844               ipa_pass->read_summary ();
1845
1846               pass_fini_dump_file (pass);
1847
1848               /* Stop timevar.  */
1849               if (pass->tv_id)
1850                 timevar_pop (pass->tv_id);
1851             }
1852
1853           if (pass->sub && pass->sub->type != GIMPLE_PASS)
1854             ipa_read_summaries_1 (pass->sub);
1855         }
1856       pass = pass->next;
1857     }
1858 }
1859
1860
1861 /* Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes.  */
1862
1863 void
1864 ipa_read_summaries (void)
1865 {
1866   ipa_read_summaries_1 (all_regular_ipa_passes);
1867   ipa_read_summaries_1 (all_lto_gen_passes);
1868 }
1869
1870 /* Same as execute_pass_list but assume that subpasses of IPA passes
1871    are local passes.  */
1872
1873 static void
1874 ipa_read_optimization_summaries_1 (struct opt_pass *pass)
1875 {
1876   while (pass)
1877     {
1878       struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
1879
1880       gcc_assert (!current_function_decl);
1881       gcc_assert (!cfun);
1882       gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1883
1884       if (pass->gate == NULL || pass->gate ())
1885         {
1886           if (pass->type == IPA_PASS && ipa_pass->read_optimization_summary)
1887             {
1888               /* If a timevar is present, start it.  */
1889               if (pass->tv_id)
1890                 timevar_push (pass->tv_id);
1891
1892               pass_init_dump_file (pass);
1893
1894               ipa_pass->read_optimization_summary ();
1895
1896               pass_fini_dump_file (pass);
1897
1898               /* Stop timevar.  */
1899               if (pass->tv_id)
1900                 timevar_pop (pass->tv_id);
1901             }
1902
1903           if (pass->sub && pass->sub->type != GIMPLE_PASS)
1904             ipa_read_optimization_summaries_1 (pass->sub);
1905         }
1906       pass = pass->next;
1907     }
1908 }
1909
1910 /* Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes.  */
1911
1912 void
1913 ipa_read_optimization_summaries (void)
1914 {
1915   ipa_read_optimization_summaries_1 (all_regular_ipa_passes);
1916   ipa_read_optimization_summaries_1 (all_lto_gen_passes);
1917 }
1918
1919 /* Same as execute_pass_list but assume that subpasses of IPA passes
1920    are local passes.  */
1921 void
1922 execute_ipa_pass_list (struct opt_pass *pass)
1923 {
1924   do
1925     {
1926       gcc_assert (!current_function_decl);
1927       gcc_assert (!cfun);
1928       gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1929       if (execute_one_pass (pass) && pass->sub)
1930         {
1931           if (pass->sub->type == GIMPLE_PASS)
1932             {
1933               invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_START, NULL);
1934               do_per_function_toporder ((void (*)(void *))execute_pass_list,
1935                                         pass->sub);
1936               invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_END, NULL);
1937             }
1938           else if (pass->sub->type == SIMPLE_IPA_PASS
1939                    || pass->sub->type == IPA_PASS)
1940             execute_ipa_pass_list (pass->sub);
1941           else
1942             gcc_unreachable ();
1943         }
1944       gcc_assert (!current_function_decl);
1945       cgraph_process_new_functions ();
1946       pass = pass->next;
1947     }
1948   while (pass);
1949 }
1950
1951 /* Execute stmt fixup hooks of all passes in PASS for NODE and STMTS.  */
1952
1953 static void
1954 execute_ipa_stmt_fixups (struct opt_pass *pass,
1955                           struct cgraph_node *node, gimple *stmts)
1956 {
1957   while (pass)
1958     {
1959       /* Execute all of the IPA_PASSes in the list.  */
1960       if (pass->type == IPA_PASS
1961           && (!pass->gate || pass->gate ()))
1962         {
1963           struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
1964
1965           if (ipa_pass->stmt_fixup)
1966             {
1967               pass_init_dump_file (pass);
1968               /* If a timevar is present, start it.  */
1969               if (pass->tv_id)
1970                 timevar_push (pass->tv_id);
1971
1972               ipa_pass->stmt_fixup (node, stmts);
1973
1974               /* Stop timevar.  */
1975               if (pass->tv_id)
1976                 timevar_pop (pass->tv_id);
1977               pass_fini_dump_file (pass);
1978             }
1979           if (pass->sub)
1980             execute_ipa_stmt_fixups (pass->sub, node, stmts);
1981         }
1982       pass = pass->next;
1983     }
1984 }
1985
1986 /* Execute stmt fixup hooks of all IPA passes for NODE and STMTS.  */
1987
1988 void
1989 execute_all_ipa_stmt_fixups (struct cgraph_node *node, gimple *stmts)
1990 {
1991   execute_ipa_stmt_fixups (all_regular_ipa_passes, node, stmts);
1992 }
1993
1994
1995 extern void debug_properties (unsigned int);
1996 extern void dump_properties (FILE *, unsigned int);
1997
1998 DEBUG_FUNCTION void
1999 dump_properties (FILE *dump, unsigned int props)
2000 {
2001   fprintf (dump, "Properties:\n");
2002   if (props & PROP_gimple_any)
2003     fprintf (dump, "PROP_gimple_any\n");
2004   if (props & PROP_gimple_lcf)
2005     fprintf (dump, "PROP_gimple_lcf\n");
2006   if (props & PROP_gimple_leh)
2007     fprintf (dump, "PROP_gimple_leh\n");
2008   if (props & PROP_cfg)
2009     fprintf (dump, "PROP_cfg\n");
2010   if (props & PROP_referenced_vars)
2011     fprintf (dump, "PROP_referenced_vars\n");
2012   if (props & PROP_ssa)
2013     fprintf (dump, "PROP_ssa\n");
2014   if (props & PROP_no_crit_edges)
2015     fprintf (dump, "PROP_no_crit_edges\n");
2016   if (props & PROP_rtl)
2017     fprintf (dump, "PROP_rtl\n");
2018   if (props & PROP_gimple_lomp)
2019     fprintf (dump, "PROP_gimple_lomp\n");
2020   if (props & PROP_gimple_lcx)
2021     fprintf (dump, "PROP_gimple_lcx\n");
2022   if (props & PROP_cfglayout)
2023     fprintf (dump, "PROP_cfglayout\n");
2024 }
2025
2026 DEBUG_FUNCTION void
2027 debug_properties (unsigned int props)
2028 {
2029   dump_properties (stderr, props);
2030 }
2031
2032 /* Called by local passes to see if function is called by already processed nodes.
2033    Because we process nodes in topological order, this means that function is
2034    in recursive cycle or we introduced new direct calls.  */
2035 bool
2036 function_called_by_processed_nodes_p (void)
2037 {
2038   struct cgraph_edge *e;
2039   for (e = cgraph_node (current_function_decl)->callers; e; e = e->next_caller)
2040     {
2041       if (e->caller->decl == current_function_decl)
2042         continue;
2043       if (!e->caller->analyzed)
2044         continue;
2045       if (TREE_ASM_WRITTEN (e->caller->decl))
2046         continue;
2047       if (!e->caller->process && !e->caller->global.inlined_to)
2048         break;
2049     }
2050   if (dump_file && e)
2051     {
2052       fprintf (dump_file, "Already processed call to:\n");
2053       dump_cgraph_node (dump_file, e->caller);
2054     }
2055   return e != NULL;
2056 }
2057
2058 #include "gt-passes.h"