OSDN Git Service

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