Remove generic cloning code for now - this code is not supposed to
[official-gcc.git] / gcc / passes.c
blob7db6acf63de53f20e31ddf7985d6a154946aaab2
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
4 Free Software Foundation, Inc.
6 This file is part of GCC.
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.
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.
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/>. */
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. */
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>
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif
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"
90 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
91 #include "dwarf2out.h"
92 #endif
94 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
95 #include "dbxout.h"
96 #endif
98 #ifdef SDB_DEBUGGING_INFO
99 #include "sdbout.h"
100 #endif
102 #ifdef XCOFF_DEBUGGING_INFO
103 #include "xcoffout.h" /* Needed for external data
104 declarations for e.g. AIX 4.x. */
105 #endif
107 #include "pass-manager.h"
109 /* This is used for debugging. It allows the current pass to printed
110 from anywhere in compilation. */
111 struct opt_pass *current_pass;
114 /* Return current pass name if known, and NULL otherwise */
115 const char *
116 get_current_pass_name (void)
118 if (current_pass)
119 return current_pass->name; /* can be NULL if name is not set */
120 else
121 return NULL;
125 /* Call from anywhere to find out what pass this is. Useful for
126 printing out debugging information deep inside an service
127 routine. */
128 void
129 print_current_pass (FILE *file)
131 if (current_pass)
132 fprintf (file, "current pass = %s (%d)\n",
133 current_pass->name, current_pass->static_pass_number);
134 else
135 fprintf (file, "no current pass.\n");
139 /* Call from the debugger to get the current pass name. */
140 void
141 debug_pass (void)
143 print_current_pass (stderr);
148 /* Global variables used to communicate with passes. */
149 int dump_flags;
150 bool in_gimple_form;
151 bool first_pass_instance;
154 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
155 and TYPE_DECL nodes.
157 This does nothing for local (non-static) variables, unless the
158 variable is a register variable with DECL_ASSEMBLER_NAME set. In
159 that case, or if the variable is not an automatic, it sets up the
160 RTL and outputs any assembler code (label definition, storage
161 allocation and initialization).
163 DECL is the declaration. TOP_LEVEL is nonzero
164 if this declaration is not within a function. */
166 void
167 rest_of_decl_compilation (tree decl,
168 int top_level,
169 int at_end)
171 /* We deferred calling assemble_alias so that we could collect
172 other attributes such as visibility. Emit the alias now. */
174 tree alias;
175 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
176 if (alias)
178 alias = TREE_VALUE (TREE_VALUE (alias));
179 alias = get_identifier (TREE_STRING_POINTER (alias));
180 assemble_alias (decl, alias);
184 /* Can't defer this, because it needs to happen before any
185 later function definitions are processed. */
186 if (DECL_ASSEMBLER_NAME_SET_P (decl) && DECL_REGISTER (decl))
187 make_decl_rtl (decl);
189 /* Forward declarations for nested functions are not "external",
190 but we need to treat them as if they were. */
191 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
192 || TREE_CODE (decl) == FUNCTION_DECL)
194 timevar_push (TV_VARCONST);
196 /* Don't output anything when a tentative file-scope definition
197 is seen. But at end of compilation, do output code for them.
199 We do output all variables and rely on
200 callgraph code to defer them except for forward declarations
201 (see gcc.c-torture/compile/920624-1.c) */
202 if ((at_end
203 || !DECL_DEFER_OUTPUT (decl)
204 || DECL_INITIAL (decl))
205 && !DECL_EXTERNAL (decl))
207 if (TREE_CODE (decl) != FUNCTION_DECL)
208 varpool_finalize_decl (decl);
209 else
210 assemble_variable (decl, top_level, at_end, 0);
213 #ifdef ASM_FINISH_DECLARE_OBJECT
214 if (decl == last_assemble_variable_decl)
216 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
217 top_level, at_end);
219 #endif
221 timevar_pop (TV_VARCONST);
223 else if (TREE_CODE (decl) == TYPE_DECL
224 /* Like in rest_of_type_compilation, avoid confusing the debug
225 information machinery when there are errors. */
226 && !(sorrycount || errorcount))
228 timevar_push (TV_SYMOUT);
229 debug_hooks->type_decl (decl, !top_level);
230 timevar_pop (TV_SYMOUT);
233 /* Let cgraph know about the existence of variables. */
234 if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
235 varpool_node (decl);
238 /* Called after finishing a record, union or enumeral type. */
240 void
241 rest_of_type_compilation (tree type, int toplev)
243 /* Avoid confusing the debug information machinery when there are
244 errors. */
245 if (errorcount != 0 || sorrycount != 0)
246 return;
248 timevar_push (TV_SYMOUT);
249 debug_hooks->type_decl (TYPE_STUB_DECL (type), !toplev);
250 timevar_pop (TV_SYMOUT);
255 void
256 finish_optimization_passes (void)
258 int i;
259 struct dump_file_info *dfi;
260 char *name;
262 timevar_push (TV_DUMP);
263 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
265 dump_file = dump_begin (pass_profile.pass.static_pass_number, NULL);
266 end_branch_prob ();
267 if (dump_file)
268 dump_end (pass_profile.pass.static_pass_number, dump_file);
271 if (optimize > 0)
273 dump_file = dump_begin (pass_combine.pass.static_pass_number, NULL);
274 if (dump_file)
276 dump_combine_total_stats (dump_file);
277 dump_end (pass_combine.pass.static_pass_number, dump_file);
281 /* Do whatever is necessary to finish printing the graphs. */
282 if (graph_dump_format != no_graph)
283 for (i = TDI_end; (dfi = get_dump_file_info (i)) != NULL; ++i)
284 if (dump_initialized_p (i)
285 && (dfi->flags & TDF_GRAPH) != 0
286 && (name = get_dump_file_name (i)) != NULL)
288 finish_graph_dump_file (name);
289 free (name);
292 timevar_pop (TV_DUMP);
295 static bool
296 gate_rest_of_compilation (void)
298 /* Early return if there were errors. We can run afoul of our
299 consistency checks, and there's not really much point in fixing them. */
300 return !(rtl_dump_and_exit || flag_syntax_only || errorcount || sorrycount);
303 struct gimple_opt_pass pass_rest_of_compilation =
306 GIMPLE_PASS,
307 "*rest_of_compilation", /* name */
308 gate_rest_of_compilation, /* gate */
309 NULL, /* execute */
310 NULL, /* sub */
311 NULL, /* next */
312 0, /* static_pass_number */
313 TV_REST_OF_COMPILATION, /* tv_id */
314 PROP_rtl, /* properties_required */
315 0, /* properties_provided */
316 0, /* properties_destroyed */
317 0, /* todo_flags_start */
318 TODO_ggc_collect /* todo_flags_finish */
322 static bool
323 gate_postreload (void)
325 return reload_completed;
328 struct rtl_opt_pass pass_postreload =
331 RTL_PASS,
332 "*all-postreload", /* name */
333 gate_postreload, /* gate */
334 NULL, /* execute */
335 NULL, /* sub */
336 NULL, /* next */
337 0, /* static_pass_number */
338 TV_NONE, /* tv_id */
339 PROP_rtl, /* properties_required */
340 0, /* properties_provided */
341 0, /* properties_destroyed */
342 0, /* todo_flags_start */
343 TODO_ggc_collect | TODO_verify_rtl_sharing /* todo_flags_finish */
349 /* The root of the compilation pass tree, once constructed. */
350 struct opt_pass *all_passes, *all_small_ipa_passes, *all_lowering_passes,
351 *all_regular_ipa_passes, *all_lto_gen_passes;
353 /* A map from static pass id to optimization pass. */
354 struct opt_pass **passes_by_id;
355 int passes_by_id_size;
357 /* Set the static pass number of pass PASS to ID and record that
358 in the mapping from static pass number to pass. */
360 static void
361 set_pass_for_id (int id, struct opt_pass *pass)
363 pass->static_pass_number = id;
364 if (passes_by_id_size <= id)
366 passes_by_id = XRESIZEVEC (struct opt_pass *, passes_by_id, id + 1);
367 memset (passes_by_id + passes_by_id_size, 0,
368 (id + 1 - passes_by_id_size) * sizeof (void *));
369 passes_by_id_size = id + 1;
371 passes_by_id[id] = pass;
374 /* Return the pass with the static pass number ID. */
376 struct opt_pass *
377 get_pass_for_id (int id)
379 if (id >= passes_by_id_size)
380 return NULL;
381 return passes_by_id[id];
384 /* Iterate over the pass tree allocating dump file numbers. We want
385 to do this depth first, and independent of whether the pass is
386 enabled or not. */
388 void
389 register_one_dump_file (struct opt_pass *pass)
391 char *dot_name, *flag_name, *glob_name;
392 const char *name, *prefix;
393 char num[10];
394 int flags, id;
396 /* See below in next_pass_1. */
397 num[0] = '\0';
398 if (pass->static_pass_number != -1)
399 sprintf (num, "%d", ((int) pass->static_pass_number < 0
400 ? 1 : pass->static_pass_number));
402 /* The name is both used to identify the pass for the purposes of plugins,
403 and to specify dump file name and option.
404 The latter two might want something short which is not quite unique; for
405 that reason, we may have a disambiguating prefix, followed by a space
406 to mark the start of the following dump file name / option string. */
407 name = strchr (pass->name, ' ');
408 name = name ? name + 1 : pass->name;
409 dot_name = concat (".", name, num, NULL);
410 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
411 prefix = "ipa-", flags = TDF_IPA;
412 else if (pass->type == GIMPLE_PASS)
413 prefix = "tree-", flags = TDF_TREE;
414 else
415 prefix = "rtl-", flags = TDF_RTL;
417 flag_name = concat (prefix, name, num, NULL);
418 glob_name = concat (prefix, name, NULL);
419 id = dump_register (dot_name, flag_name, glob_name, flags);
420 set_pass_for_id (id, pass);
423 /* Recursive worker function for register_dump_files. */
425 static int
426 register_dump_files_1 (struct opt_pass *pass, int properties)
430 int new_properties = (properties | pass->properties_provided)
431 & ~pass->properties_destroyed;
433 if (pass->name && pass->name[0] != '*')
434 register_one_dump_file (pass);
436 if (pass->sub)
437 new_properties = register_dump_files_1 (pass->sub, new_properties);
439 /* If we have a gate, combine the properties that we could have with
440 and without the pass being examined. */
441 if (pass->gate)
442 properties &= new_properties;
443 else
444 properties = new_properties;
446 pass = pass->next;
448 while (pass);
450 return properties;
453 /* Register the dump files for the pipeline starting at PASS.
454 PROPERTIES reflects the properties that are guaranteed to be available at
455 the beginning of the pipeline. */
457 static void
458 register_dump_files (struct opt_pass *pass,int properties)
460 pass->properties_required |= properties;
461 register_dump_files_1 (pass, properties);
464 /* Look at the static_pass_number and duplicate the pass
465 if it is already added to a list. */
467 static struct opt_pass *
468 make_pass_instance (struct opt_pass *pass, bool track_duplicates)
470 /* A nonzero static_pass_number indicates that the
471 pass is already in the list. */
472 if (pass->static_pass_number)
474 struct opt_pass *new_pass;
476 new_pass = XNEW (struct opt_pass);
477 memcpy (new_pass, pass, sizeof (*new_pass));
478 new_pass->next = NULL;
480 new_pass->todo_flags_start &= ~TODO_mark_first_instance;
482 /* Indicate to register_dump_files that this pass has duplicates,
483 and so it should rename the dump file. The first instance will
484 be -1, and be number of duplicates = -static_pass_number - 1.
485 Subsequent instances will be > 0 and just the duplicate number. */
486 if ((pass->name && pass->name[0] != '*') || track_duplicates)
488 pass->static_pass_number -= 1;
489 new_pass->static_pass_number = -pass->static_pass_number;
491 return new_pass;
493 else
495 pass->todo_flags_start |= TODO_mark_first_instance;
496 pass->static_pass_number = -1;
498 /* Inserts pass in ICI pass list. */
499 register_pass_by_name (pass);
501 return pass;
504 /* Add a pass to the pass list. Duplicate the pass if it's already
505 in the list. */
507 static struct opt_pass **
508 next_pass_1 (struct opt_pass **list, struct opt_pass *pass)
510 /* Every pass should have a name so that plugins can refer to them. */
511 gcc_assert (pass->name != NULL);
513 *list = make_pass_instance (pass, false);
515 return &(*list)->next;
518 /* List node for an inserted pass instance. We need to keep track of all
519 the newly-added pass instances (with 'added_pass_nodes' defined below)
520 so that we can register their dump files after pass-positioning is finished.
521 Registering dumping files needs to be post-processed or the
522 static_pass_number of the opt_pass object would be modified and mess up
523 the dump file names of future pass instances to be added. */
525 struct pass_list_node
527 struct opt_pass *pass;
528 struct pass_list_node *next;
531 static struct pass_list_node *added_pass_nodes = NULL;
532 static struct pass_list_node *prev_added_pass_node;
534 /* Insert the pass at the proper position. Return true if the pass
535 is successfully added.
537 NEW_PASS_INFO - new pass to be inserted
538 PASS_LIST - root of the pass list to insert the new pass to */
540 static bool
541 position_pass (struct register_pass_info *new_pass_info,
542 struct opt_pass **pass_list)
544 struct opt_pass *pass = *pass_list, *prev_pass = NULL;
545 bool success = false;
547 for ( ; pass; prev_pass = pass, pass = pass->next)
549 /* Check if the current pass is of the same type as the new pass and
550 matches the name and the instance number of the reference pass. */
551 if (pass->type == new_pass_info->pass->type
552 && pass->name
553 && !strcmp (pass->name, new_pass_info->reference_pass_name)
554 && ((new_pass_info->ref_pass_instance_number == 0)
555 || (new_pass_info->ref_pass_instance_number ==
556 pass->static_pass_number)
557 || (new_pass_info->ref_pass_instance_number == 1
558 && pass->todo_flags_start & TODO_mark_first_instance)))
560 struct opt_pass *new_pass;
561 struct pass_list_node *new_pass_node;
563 new_pass = make_pass_instance (new_pass_info->pass, true);
565 /* Insert the new pass instance based on the positioning op. */
566 switch (new_pass_info->pos_op)
568 case PASS_POS_INSERT_AFTER:
569 new_pass->next = pass->next;
570 pass->next = new_pass;
572 /* Skip newly inserted pass to avoid repeated
573 insertions in the case where the new pass and the
574 existing one have the same name. */
575 pass = new_pass;
576 break;
577 case PASS_POS_INSERT_BEFORE:
578 new_pass->next = pass;
579 if (prev_pass)
580 prev_pass->next = new_pass;
581 else
582 *pass_list = new_pass;
583 break;
584 case PASS_POS_REPLACE:
585 new_pass->next = pass->next;
586 if (prev_pass)
587 prev_pass->next = new_pass;
588 else
589 *pass_list = new_pass;
590 new_pass->sub = pass->sub;
591 new_pass->tv_id = pass->tv_id;
592 pass = new_pass;
593 break;
594 default:
595 error ("Invalid pass positioning operation");
596 return false;
599 /* Save the newly added pass (instance) in the added_pass_nodes
600 list so that we can register its dump file later. Note that
601 we cannot register the dump file now because doing so will modify
602 the static_pass_number of the opt_pass object and therefore
603 mess up the dump file name of future instances. */
604 new_pass_node = XCNEW (struct pass_list_node);
605 new_pass_node->pass = new_pass;
606 if (!added_pass_nodes)
607 added_pass_nodes = new_pass_node;
608 else
609 prev_added_pass_node->next = new_pass_node;
610 prev_added_pass_node = new_pass_node;
612 success = true;
615 if (pass->sub && position_pass (new_pass_info, &pass->sub))
616 success = true;
619 return success;
622 /* Hooks a new pass into the pass lists.
624 PASS_INFO - pass information that specifies the opt_pass object,
625 reference pass, instance number, and how to position
626 the pass */
628 void
629 register_pass (struct register_pass_info *pass_info)
631 /* The checks below could fail in buggy plugins. Existing GCC
632 passes should never fail these checks, so we mention plugin in
633 the messages. */
634 if (!pass_info->pass)
635 fatal_error ("plugin cannot register a missing pass");
637 if (!pass_info->pass->name)
638 fatal_error ("plugin cannot register an unnamed pass");
640 if (!pass_info->reference_pass_name)
641 fatal_error
642 ("plugin cannot register pass %qs without reference pass name",
643 pass_info->pass->name);
645 /* Try to insert the new pass to the pass lists. We need to check
646 all three lists as the reference pass could be in one (or all) of
647 them. */
648 if (!position_pass (pass_info, &all_lowering_passes)
649 && !position_pass (pass_info, &all_small_ipa_passes)
650 && !position_pass (pass_info, &all_regular_ipa_passes)
651 && !position_pass (pass_info, &all_lto_gen_passes)
652 && !position_pass (pass_info, &all_passes))
653 fatal_error
654 ("pass %qs not found but is referenced by new pass %qs",
655 pass_info->reference_pass_name, pass_info->pass->name);
656 else
658 /* OK, we have successfully inserted the new pass. We need to register
659 the dump files for the newly added pass and its duplicates (if any).
660 Because the registration of plugin/backend passes happens after the
661 command-line options are parsed, the options that specify single
662 pass dumping (e.g. -fdump-tree-PASSNAME) cannot be used for new
663 passes. Therefore we currently can only enable dumping of
664 new passes when the 'dump-all' flags (e.g. -fdump-tree-all)
665 are specified. While doing so, we also delete the pass_list_node
666 objects created during pass positioning. */
667 while (added_pass_nodes)
669 struct pass_list_node *next_node = added_pass_nodes->next;
670 enum tree_dump_index tdi;
671 register_one_dump_file (added_pass_nodes->pass);
672 if (added_pass_nodes->pass->type == SIMPLE_IPA_PASS
673 || added_pass_nodes->pass->type == IPA_PASS)
674 tdi = TDI_ipa_all;
675 else if (added_pass_nodes->pass->type == GIMPLE_PASS)
676 tdi = TDI_tree_all;
677 else
678 tdi = TDI_rtl_all;
679 /* Check if dump-all flag is specified. */
680 if (get_dump_file_info (tdi)->state)
681 get_dump_file_info (added_pass_nodes->pass->static_pass_number)
682 ->state = get_dump_file_info (tdi)->state;
683 XDELETE (added_pass_nodes);
684 added_pass_nodes = next_node;
689 /* Construct the pass tree. The sequencing of passes is driven by
690 the cgraph routines:
692 cgraph_finalize_compilation_unit ()
693 for each node N in the cgraph
694 cgraph_analyze_function (N)
695 cgraph_lower_function (N) -> all_lowering_passes
697 If we are optimizing, cgraph_optimize is then invoked:
699 cgraph_optimize ()
700 ipa_passes () -> all_small_ipa_passes
701 cgraph_expand_all_functions ()
702 for each node N in the cgraph
703 cgraph_expand_function (N)
704 tree_rest_of_compilation (DECL (N)) -> all_passes
707 void
708 init_optimization_passes (void)
710 struct opt_pass **p;
712 #define NEXT_PASS(PASS) (p = next_pass_1 (p, &((PASS).pass)))
714 /* All passes needed to lower the function into shape optimizers can
715 operate on. These passes are always run first on the function, but
716 backend might produce already lowered functions that are not processed
717 by these passes. */
718 p = &all_lowering_passes;
719 NEXT_PASS (pass_warn_unused_result);
720 NEXT_PASS (pass_diagnose_omp_blocks);
721 NEXT_PASS (pass_mudflap_1);
722 NEXT_PASS (pass_lower_omp);
723 NEXT_PASS (pass_lower_cf);
724 NEXT_PASS (pass_refactor_eh);
725 NEXT_PASS (pass_lower_eh);
726 NEXT_PASS (pass_build_cfg);
727 NEXT_PASS (pass_lower_complex_O0);
728 NEXT_PASS (pass_lower_vector);
729 NEXT_PASS (pass_warn_function_return);
730 NEXT_PASS (pass_build_cgraph_edges);
731 NEXT_PASS (pass_inline_parameters);
732 *p = NULL;
734 /* Interprocedural optimization passes. */
735 p = &all_small_ipa_passes;
736 NEXT_PASS (pass_ipa_function_and_variable_visibility);
737 NEXT_PASS (pass_ipa_early_inline);
739 struct opt_pass **p = &pass_ipa_early_inline.pass.sub;
740 NEXT_PASS (pass_early_inline);
741 NEXT_PASS (pass_inline_parameters);
742 NEXT_PASS (pass_rebuild_cgraph_edges);
744 NEXT_PASS (pass_ipa_free_lang_data);
745 NEXT_PASS (pass_instrument_functions);
746 NEXT_PASS (pass_early_local_passes);
748 struct opt_pass **p = &pass_early_local_passes.pass.sub;
749 NEXT_PASS (pass_fixup_cfg);
750 NEXT_PASS (pass_tree_profile);
751 NEXT_PASS (pass_cleanup_cfg);
752 NEXT_PASS (pass_init_datastructures);
753 NEXT_PASS (pass_expand_omp);
755 NEXT_PASS (pass_referenced_vars);
756 NEXT_PASS (pass_build_ssa);
757 NEXT_PASS (pass_early_warn_uninitialized);
758 /* Note that it is not strictly necessary to schedule an early
759 inline pass here. However, some test cases (e.g.,
760 g++.dg/other/p334435.C g++.dg/other/i386-1.C) expect extern
761 inline functions to be inlined even at -O0. This does not
762 happen during the first early inline pass. */
763 NEXT_PASS (pass_rebuild_cgraph_edges);
764 NEXT_PASS (pass_early_inline);
765 NEXT_PASS (pass_all_early_optimizations);
767 struct opt_pass **p = &pass_all_early_optimizations.pass.sub;
768 NEXT_PASS (pass_remove_cgraph_callee_edges);
769 NEXT_PASS (pass_rename_ssa_copies);
770 NEXT_PASS (pass_ccp);
771 NEXT_PASS (pass_forwprop);
772 /* pass_build_ealias is a dummy pass that ensures that we
773 execute TODO_rebuild_alias at this point. Re-building
774 alias information also rewrites no longer addressed
775 locals into SSA form if possible. */
776 NEXT_PASS (pass_build_ealias);
777 NEXT_PASS (pass_sra_early);
778 NEXT_PASS (pass_copy_prop);
779 NEXT_PASS (pass_merge_phi);
780 NEXT_PASS (pass_cd_dce);
781 NEXT_PASS (pass_early_ipa_sra);
782 NEXT_PASS (pass_tail_recursion);
783 NEXT_PASS (pass_convert_switch);
784 NEXT_PASS (pass_cleanup_eh);
785 NEXT_PASS (pass_profile);
786 NEXT_PASS (pass_local_pure_const);
788 NEXT_PASS (pass_release_ssa_names);
789 NEXT_PASS (pass_rebuild_cgraph_edges);
790 NEXT_PASS (pass_inline_parameters);
792 NEXT_PASS (pass_ipa_increase_alignment);
793 NEXT_PASS (pass_ipa_matrix_reorg);
794 *p = NULL;
796 p = &all_regular_ipa_passes;
797 NEXT_PASS (pass_ipa_whole_program_visibility);
798 NEXT_PASS (pass_ipa_cp);
799 NEXT_PASS (pass_ipa_inline);
800 NEXT_PASS (pass_ipa_reference);
801 NEXT_PASS (pass_ipa_pure_const);
802 NEXT_PASS (pass_ipa_type_escape);
803 NEXT_PASS (pass_ipa_pta);
804 NEXT_PASS (pass_ipa_struct_reorg);
805 *p = NULL;
807 p = &all_lto_gen_passes;
808 NEXT_PASS (pass_ipa_lto_gimple_out);
809 NEXT_PASS (pass_ipa_lto_wpa_fixup);
810 NEXT_PASS (pass_ipa_lto_finish_out); /* This must be the last LTO pass. */
811 *p = NULL;
813 /* These passes are run after IPA passes on every function that is being
814 output to the assembler file. */
815 p = &all_passes;
816 NEXT_PASS (pass_lower_eh_dispatch);
817 NEXT_PASS (pass_all_optimizations);
819 struct opt_pass **p = &pass_all_optimizations.pass.sub;
820 NEXT_PASS (pass_remove_cgraph_callee_edges);
821 /* Initial scalar cleanups before alias computation.
822 They ensure memory accesses are not indirect wherever possible. */
823 NEXT_PASS (pass_strip_predict_hints);
824 NEXT_PASS (pass_update_address_taken);
825 NEXT_PASS (pass_rename_ssa_copies);
826 NEXT_PASS (pass_complete_unrolli);
827 NEXT_PASS (pass_ccp);
828 NEXT_PASS (pass_forwprop);
829 NEXT_PASS (pass_call_cdce);
830 /* pass_build_alias is a dummy pass that ensures that we
831 execute TODO_rebuild_alias at this point. Re-building
832 alias information also rewrites no longer addressed
833 locals into SSA form if possible. */
834 NEXT_PASS (pass_build_alias);
835 NEXT_PASS (pass_return_slot);
836 NEXT_PASS (pass_phiprop);
837 NEXT_PASS (pass_fre);
838 NEXT_PASS (pass_copy_prop);
839 NEXT_PASS (pass_merge_phi);
840 NEXT_PASS (pass_vrp);
841 NEXT_PASS (pass_dce);
842 NEXT_PASS (pass_cselim);
843 NEXT_PASS (pass_tree_ifcombine);
844 NEXT_PASS (pass_phiopt);
845 NEXT_PASS (pass_tail_recursion);
846 NEXT_PASS (pass_ch);
847 NEXT_PASS (pass_stdarg);
848 NEXT_PASS (pass_lower_complex);
849 NEXT_PASS (pass_sra);
850 NEXT_PASS (pass_rename_ssa_copies);
851 /* The dom pass will also resolve all __builtin_constant_p calls
852 that are still there to 0. This has to be done after some
853 propagations have already run, but before some more dead code
854 is removed, and this place fits nicely. Remember this when
855 trying to move or duplicate pass_dominator somewhere earlier. */
856 NEXT_PASS (pass_dominator);
857 /* The only const/copy propagation opportunities left after
858 DOM should be due to degenerate PHI nodes. So rather than
859 run the full propagators, run a specialized pass which
860 only examines PHIs to discover const/copy propagation
861 opportunities. */
862 NEXT_PASS (pass_phi_only_cprop);
863 NEXT_PASS (pass_dse);
864 NEXT_PASS (pass_reassoc);
865 NEXT_PASS (pass_dce);
866 NEXT_PASS (pass_forwprop);
867 NEXT_PASS (pass_phiopt);
868 NEXT_PASS (pass_object_sizes);
869 NEXT_PASS (pass_ccp);
870 NEXT_PASS (pass_copy_prop);
871 NEXT_PASS (pass_cse_sincos);
872 NEXT_PASS (pass_optimize_bswap);
873 NEXT_PASS (pass_split_crit_edges);
874 NEXT_PASS (pass_pre);
875 NEXT_PASS (pass_sink_code);
876 NEXT_PASS (pass_tree_loop);
878 struct opt_pass **p = &pass_tree_loop.pass.sub;
879 NEXT_PASS (pass_tree_loop_init);
880 NEXT_PASS (pass_copy_prop);
881 NEXT_PASS (pass_dce_loop);
882 NEXT_PASS (pass_lim);
883 NEXT_PASS (pass_tree_unswitch);
884 NEXT_PASS (pass_scev_cprop);
885 NEXT_PASS (pass_record_bounds);
886 NEXT_PASS (pass_check_data_deps);
887 NEXT_PASS (pass_loop_distribution);
888 NEXT_PASS (pass_linear_transform);
889 NEXT_PASS (pass_graphite_transforms);
891 struct opt_pass **p = &pass_graphite_transforms.pass.sub;
892 NEXT_PASS (pass_dce_loop);
893 NEXT_PASS (pass_lim);
895 NEXT_PASS (pass_iv_canon);
896 NEXT_PASS (pass_if_conversion);
897 NEXT_PASS (pass_vectorize);
899 struct opt_pass **p = &pass_vectorize.pass.sub;
900 NEXT_PASS (pass_lower_vector_ssa);
901 NEXT_PASS (pass_dce_loop);
903 NEXT_PASS (pass_predcom);
904 NEXT_PASS (pass_complete_unroll);
905 NEXT_PASS (pass_slp_vectorize);
906 NEXT_PASS (pass_parallelize_loops);
907 NEXT_PASS (pass_loop_prefetch);
908 NEXT_PASS (pass_iv_optimize);
909 NEXT_PASS (pass_tree_loop_done);
911 NEXT_PASS (pass_cse_reciprocals);
912 NEXT_PASS (pass_reassoc);
913 NEXT_PASS (pass_vrp);
914 NEXT_PASS (pass_dominator);
915 /* The only const/copy propagation opportunities left after
916 DOM should be due to degenerate PHI nodes. So rather than
917 run the full propagators, run a specialized pass which
918 only examines PHIs to discover const/copy propagation
919 opportunities. */
920 NEXT_PASS (pass_phi_only_cprop);
921 NEXT_PASS (pass_cd_dce);
922 NEXT_PASS (pass_tracer);
924 /* FIXME: If DCE is not run before checking for uninitialized uses,
925 we may get false warnings (e.g., testsuite/gcc.dg/uninit-5.c).
926 However, this also causes us to misdiagnose cases that should be
927 real warnings (e.g., testsuite/gcc.dg/pr18501.c).
929 To fix the false positives in uninit-5.c, we would have to
930 account for the predicates protecting the set and the use of each
931 variable. Using a representation like Gated Single Assignment
932 may help. */
933 NEXT_PASS (pass_late_warn_uninitialized);
934 NEXT_PASS (pass_dse);
935 NEXT_PASS (pass_forwprop);
936 NEXT_PASS (pass_phiopt);
937 NEXT_PASS (pass_fold_builtins);
938 NEXT_PASS (pass_tail_calls);
939 NEXT_PASS (pass_rename_ssa_copies);
940 NEXT_PASS (pass_uncprop);
941 NEXT_PASS (pass_local_pure_const);
943 NEXT_PASS (pass_cleanup_eh);
944 NEXT_PASS (pass_lower_resx);
945 NEXT_PASS (pass_nrv);
946 NEXT_PASS (pass_mudflap_2);
947 NEXT_PASS (pass_cleanup_cfg_post_optimizing);
948 NEXT_PASS (pass_warn_function_noreturn);
950 NEXT_PASS (pass_expand);
952 NEXT_PASS (pass_rest_of_compilation);
954 struct opt_pass **p = &pass_rest_of_compilation.pass.sub;
955 NEXT_PASS (pass_init_function);
956 NEXT_PASS (pass_jump);
957 NEXT_PASS (pass_rtl_eh);
958 NEXT_PASS (pass_initial_value_sets);
959 NEXT_PASS (pass_unshare_all_rtl);
960 NEXT_PASS (pass_instantiate_virtual_regs);
961 NEXT_PASS (pass_into_cfg_layout_mode);
962 NEXT_PASS (pass_jump2);
963 NEXT_PASS (pass_lower_subreg);
964 NEXT_PASS (pass_df_initialize_opt);
965 NEXT_PASS (pass_cse);
966 NEXT_PASS (pass_rtl_fwprop);
967 NEXT_PASS (pass_rtl_cprop);
968 NEXT_PASS (pass_rtl_pre);
969 NEXT_PASS (pass_rtl_hoist);
970 NEXT_PASS (pass_rtl_cprop);
971 NEXT_PASS (pass_rtl_store_motion);
972 NEXT_PASS (pass_cse_after_global_opts);
973 NEXT_PASS (pass_rtl_ifcvt);
974 NEXT_PASS (pass_reginfo_init);
975 /* Perform loop optimizations. It might be better to do them a bit
976 sooner, but we want the profile feedback to work more
977 efficiently. */
978 NEXT_PASS (pass_loop2);
980 struct opt_pass **p = &pass_loop2.pass.sub;
981 NEXT_PASS (pass_rtl_loop_init);
982 NEXT_PASS (pass_rtl_move_loop_invariants);
983 NEXT_PASS (pass_rtl_unswitch);
984 NEXT_PASS (pass_rtl_unroll_and_peel_loops);
985 NEXT_PASS (pass_rtl_doloop);
986 NEXT_PASS (pass_rtl_loop_done);
987 *p = NULL;
989 NEXT_PASS (pass_web);
990 NEXT_PASS (pass_rtl_cprop);
991 NEXT_PASS (pass_cse2);
992 NEXT_PASS (pass_rtl_dse1);
993 NEXT_PASS (pass_rtl_fwprop_addr);
994 NEXT_PASS (pass_inc_dec);
995 NEXT_PASS (pass_initialize_regs);
996 NEXT_PASS (pass_ud_rtl_dce);
997 NEXT_PASS (pass_combine);
998 NEXT_PASS (pass_if_after_combine);
999 NEXT_PASS (pass_partition_blocks);
1000 NEXT_PASS (pass_regmove);
1001 NEXT_PASS (pass_outof_cfg_layout_mode);
1002 NEXT_PASS (pass_split_all_insns);
1003 NEXT_PASS (pass_lower_subreg2);
1004 NEXT_PASS (pass_df_initialize_no_opt);
1005 NEXT_PASS (pass_stack_ptr_mod);
1006 NEXT_PASS (pass_mode_switching);
1007 NEXT_PASS (pass_match_asm_constraints);
1008 NEXT_PASS (pass_sms);
1009 NEXT_PASS (pass_sched);
1010 NEXT_PASS (pass_ira);
1011 NEXT_PASS (pass_postreload);
1013 struct opt_pass **p = &pass_postreload.pass.sub;
1014 NEXT_PASS (pass_postreload_cse);
1015 NEXT_PASS (pass_gcse2);
1016 NEXT_PASS (pass_split_after_reload);
1017 NEXT_PASS (pass_branch_target_load_optimize1);
1018 NEXT_PASS (pass_thread_prologue_and_epilogue);
1019 NEXT_PASS (pass_rtl_dse2);
1020 NEXT_PASS (pass_stack_adjustments);
1021 NEXT_PASS (pass_peephole2);
1022 NEXT_PASS (pass_if_after_reload);
1023 NEXT_PASS (pass_regrename);
1024 NEXT_PASS (pass_cprop_hardreg);
1025 NEXT_PASS (pass_fast_rtl_dce);
1026 NEXT_PASS (pass_reorder_blocks);
1027 NEXT_PASS (pass_branch_target_load_optimize2);
1028 NEXT_PASS (pass_leaf_regs);
1029 NEXT_PASS (pass_split_before_sched2);
1030 NEXT_PASS (pass_sched2);
1031 NEXT_PASS (pass_stack_regs);
1033 struct opt_pass **p = &pass_stack_regs.pass.sub;
1034 NEXT_PASS (pass_split_before_regstack);
1035 NEXT_PASS (pass_stack_regs_run);
1037 NEXT_PASS (pass_compute_alignments);
1038 NEXT_PASS (pass_duplicate_computed_gotos);
1039 NEXT_PASS (pass_variable_tracking);
1040 NEXT_PASS (pass_free_cfg);
1041 NEXT_PASS (pass_machine_reorg);
1042 NEXT_PASS (pass_cleanup_barriers);
1043 NEXT_PASS (pass_delay_slots);
1044 NEXT_PASS (pass_split_for_shorten_branches);
1045 NEXT_PASS (pass_convert_to_eh_region_ranges);
1046 NEXT_PASS (pass_shorten_branches);
1047 NEXT_PASS (pass_set_nothrow_function_flags);
1048 NEXT_PASS (pass_final);
1050 NEXT_PASS (pass_df_finish);
1052 NEXT_PASS (pass_clean_state);
1053 *p = NULL;
1055 #undef NEXT_PASS
1057 /* Register the passes with the tree dump code. */
1058 register_dump_files (all_lowering_passes, PROP_gimple_any);
1059 register_dump_files (all_small_ipa_passes,
1060 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1061 | PROP_cfg);
1062 register_dump_files (all_regular_ipa_passes,
1063 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1064 | PROP_cfg);
1065 register_dump_files (all_lto_gen_passes,
1066 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1067 | PROP_cfg);
1068 register_dump_files (all_passes,
1069 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1070 | PROP_cfg);
1073 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1074 function CALLBACK for every function in the call graph. Otherwise,
1075 call CALLBACK on the current function. */
1077 static void
1078 do_per_function (void (*callback) (void *data), void *data)
1080 if (current_function_decl)
1081 callback (data);
1082 else
1084 struct cgraph_node *node;
1085 for (node = cgraph_nodes; node; node = node->next)
1086 if (node->analyzed && gimple_has_body_p (node->decl)
1087 && (!node->clone_of || node->decl != node->clone_of->decl))
1089 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1090 current_function_decl = node->decl;
1091 callback (data);
1092 if (!flag_wpa)
1094 free_dominance_info (CDI_DOMINATORS);
1095 free_dominance_info (CDI_POST_DOMINATORS);
1097 current_function_decl = NULL;
1098 pop_cfun ();
1099 ggc_collect ();
1104 /* Because inlining might remove no-longer reachable nodes, we need to
1105 keep the array visible to garbage collector to avoid reading collected
1106 out nodes. */
1107 static int nnodes;
1108 static GTY ((length ("nnodes"))) struct cgraph_node **order;
1110 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1111 function CALLBACK for every function in the call graph. Otherwise,
1112 call CALLBACK on the current function. */
1114 /* ICI: ipa pass manager needs to walt through cgraph with this function.
1115 static void */
1117 void
1118 do_per_function_toporder (void (*callback) (void *data), void *data)
1120 int i;
1122 if (current_function_decl)
1123 callback (data);
1124 else
1126 gcc_assert (!order);
1127 order = GGC_NEWVEC (struct cgraph_node *, cgraph_n_nodes);
1128 nnodes = cgraph_postorder (order);
1129 for (i = nnodes - 1; i >= 0; i--)
1130 order[i]->process = 1;
1131 for (i = nnodes - 1; i >= 0; i--)
1133 struct cgraph_node *node = order[i];
1135 /* Allow possibly removed nodes to be garbage collected. */
1136 order[i] = NULL;
1137 node->process = 0;
1138 if (node->analyzed)
1140 int *bypass
1141 = (int *) get_event_parameter ("bypass_gimple_in_ipa");
1142 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1143 current_function_decl = node->decl;
1144 callback (data);
1145 /* Reset bypass_gimple_in_ipa to stop recording GIMPLE passes*/
1146 if (bypass)
1147 *bypass = 1;
1148 free_dominance_info (CDI_DOMINATORS);
1149 free_dominance_info (CDI_POST_DOMINATORS);
1150 current_function_decl = NULL;
1151 pop_cfun ();
1152 ggc_collect ();
1156 ggc_free (order);
1157 order = NULL;
1158 nnodes = 0;
1161 /* Perform all TODO actions that ought to be done on each function. */
1163 static void
1164 execute_function_todo (void *data)
1166 unsigned int flags = (size_t)data;
1167 if (cfun->curr_properties & PROP_ssa)
1168 flags |= TODO_verify_ssa;
1169 flags &= ~cfun->last_verified;
1170 if (!flags)
1171 return;
1173 statistics_fini_pass ();
1175 /* Always cleanup the CFG before trying to update SSA. */
1176 if (flags & TODO_cleanup_cfg)
1178 bool cleanup = cleanup_tree_cfg ();
1180 if (cleanup && (cfun->curr_properties & PROP_ssa))
1181 flags |= TODO_remove_unused_locals;
1183 /* When cleanup_tree_cfg merges consecutive blocks, it may
1184 perform some simplistic propagation when removing single
1185 valued PHI nodes. This propagation may, in turn, cause the
1186 SSA form to become out-of-date (see PR 22037). So, even
1187 if the parent pass had not scheduled an SSA update, we may
1188 still need to do one. */
1189 if (!(flags & TODO_update_ssa_any) && need_ssa_update_p (cfun))
1190 flags |= TODO_update_ssa;
1193 if (flags & TODO_update_ssa_any)
1195 unsigned update_flags = flags & TODO_update_ssa_any;
1196 update_ssa (update_flags);
1197 cfun->last_verified &= ~TODO_verify_ssa;
1200 if (flags & TODO_update_address_taken)
1201 execute_update_addresses_taken (true);
1203 if (flags & TODO_rebuild_alias)
1205 if (!(flags & TODO_update_address_taken))
1206 execute_update_addresses_taken (true);
1207 compute_may_aliases ();
1210 if (flags & TODO_remove_unused_locals)
1211 remove_unused_locals ();
1213 if ((flags & TODO_dump_func) && dump_file && current_function_decl)
1215 if (cfun->curr_properties & PROP_trees)
1216 dump_function_to_file (current_function_decl, dump_file, dump_flags);
1217 else
1219 if (dump_flags & TDF_SLIM)
1220 print_rtl_slim_with_bb (dump_file, get_insns (), dump_flags);
1221 else if ((cfun->curr_properties & PROP_cfg)
1222 && (dump_flags & TDF_BLOCKS))
1223 print_rtl_with_bb (dump_file, get_insns ());
1224 else
1225 print_rtl (dump_file, get_insns ());
1227 if ((cfun->curr_properties & PROP_cfg)
1228 && graph_dump_format != no_graph
1229 && (dump_flags & TDF_GRAPH))
1230 print_rtl_graph_with_bb (dump_file_name, get_insns ());
1233 /* Flush the file. If verification fails, we won't be able to
1234 close the file before aborting. */
1235 fflush (dump_file);
1238 if (flags & TODO_rebuild_frequencies)
1240 if (profile_status == PROFILE_GUESSED)
1242 loop_optimizer_init (0);
1243 add_noreturn_fake_exit_edges ();
1244 mark_irreducible_loops ();
1245 connect_infinite_loops_to_exit ();
1246 estimate_bb_frequencies ();
1247 remove_fake_exit_edges ();
1248 loop_optimizer_finalize ();
1250 else if (profile_status == PROFILE_READ)
1251 counts_to_freqs ();
1252 else
1253 gcc_unreachable ();
1256 #if defined ENABLE_CHECKING
1257 if (flags & TODO_verify_ssa)
1258 verify_ssa (true);
1259 if (flags & TODO_verify_flow)
1260 verify_flow_info ();
1261 if (flags & TODO_verify_stmts)
1262 verify_stmts ();
1263 if (flags & TODO_verify_loops)
1264 verify_loop_closed_ssa ();
1265 if (flags & TODO_verify_rtl_sharing)
1266 verify_rtl_sharing ();
1267 #endif
1269 cfun->last_verified = flags & TODO_verify_all;
1272 /* Perform all TODO actions. */
1273 static void
1274 execute_todo (unsigned int flags)
1276 #if defined ENABLE_CHECKING
1277 if (cfun
1278 && need_ssa_update_p (cfun))
1279 gcc_assert (flags & TODO_update_ssa_any);
1280 #endif
1282 /* Inform the pass whether it is the first time it is run. */
1283 first_pass_instance = (flags & TODO_mark_first_instance) != 0;
1285 do_per_function (execute_function_todo, (void *)(size_t) flags);
1287 /* Always remove functions just as before inlining: IPA passes might be
1288 interested to see bodies of extern inline functions that are not inlined
1289 to analyze side effects. The full removal is done just at the end
1290 of IPA pass queue. */
1291 if (flags & TODO_remove_functions)
1293 gcc_assert (!cfun);
1294 cgraph_remove_unreachable_nodes (true, dump_file);
1297 if ((flags & TODO_dump_cgraph) && dump_file && !current_function_decl)
1299 gcc_assert (!cfun);
1300 dump_cgraph (dump_file);
1301 /* Flush the file. If verification fails, we won't be able to
1302 close the file before aborting. */
1303 fflush (dump_file);
1306 if (flags & TODO_ggc_collect)
1307 ggc_collect ();
1309 /* Now that the dumping has been done, we can get rid of the optional
1310 df problems. */
1311 if (flags & TODO_df_finish)
1312 df_finish_pass ((flags & TODO_df_verify) != 0);
1315 /* Verify invariants that should hold between passes. This is a place
1316 to put simple sanity checks. */
1318 static void
1319 verify_interpass_invariants (void)
1321 #ifdef ENABLE_CHECKING
1322 gcc_assert (!fold_deferring_overflow_warnings_p ());
1323 #endif
1326 /* Clear the last verified flag. */
1328 static void
1329 clear_last_verified (void *data ATTRIBUTE_UNUSED)
1331 cfun->last_verified = 0;
1334 /* Helper function. Verify that the properties has been turn into the
1335 properties expected by the pass. */
1337 #ifdef ENABLE_CHECKING
1338 static void
1339 verify_curr_properties (void *data)
1341 unsigned int props = (size_t)data;
1342 gcc_assert ((cfun->curr_properties & props) == props);
1344 #endif
1346 /* Initialize pass dump file. */
1348 static bool
1349 pass_init_dump_file (struct opt_pass *pass)
1351 /* If a dump file name is present, open it if enabled. */
1352 if (pass->static_pass_number != -1)
1354 bool initializing_dump = !dump_initialized_p (pass->static_pass_number);
1355 dump_file_name = get_dump_file_name (pass->static_pass_number);
1356 dump_file = dump_begin (pass->static_pass_number, &dump_flags);
1357 if (dump_file && current_function_decl)
1359 const char *dname, *aname;
1360 dname = lang_hooks.decl_printable_name (current_function_decl, 2);
1361 aname = (IDENTIFIER_POINTER
1362 (DECL_ASSEMBLER_NAME (current_function_decl)));
1363 fprintf (dump_file, "\n;; Function %s (%s)%s\n\n", dname, aname,
1364 cfun->function_frequency == FUNCTION_FREQUENCY_HOT
1365 ? " (hot)"
1366 : cfun->function_frequency == FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
1367 ? " (unlikely executed)"
1368 : "");
1370 return initializing_dump;
1372 else
1373 return false;
1376 /* Flush PASS dump file. */
1378 static void
1379 pass_fini_dump_file (struct opt_pass *pass)
1381 /* Flush and close dump file. */
1382 if (dump_file_name)
1384 free (CONST_CAST (char *, dump_file_name));
1385 dump_file_name = NULL;
1388 if (dump_file)
1390 dump_end (pass->static_pass_number, dump_file);
1391 dump_file = NULL;
1395 /* After executing the pass, apply expected changes to the function
1396 properties. */
1398 static void
1399 update_properties_after_pass (void *data)
1401 struct opt_pass *pass = (struct opt_pass *) data;
1402 cfun->curr_properties = (cfun->curr_properties | pass->properties_provided)
1403 & ~pass->properties_destroyed;
1406 /* Schedule IPA transform pass DATA for CFUN. */
1408 static void
1409 add_ipa_transform_pass (void *data)
1411 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) data;
1412 VEC_safe_push (ipa_opt_pass, heap, cfun->ipa_transforms_to_apply, ipa_pass);
1415 /* Execute summary generation for all of the passes in IPA_PASS. */
1417 void
1418 execute_ipa_summary_passes (struct ipa_opt_pass_d *ipa_pass)
1420 while (ipa_pass)
1422 struct opt_pass *pass = &ipa_pass->pass;
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)
1429 pass_init_dump_file (pass);
1431 /* If a timevar is present, start it. */
1432 if (pass->tv_id)
1433 timevar_push (pass->tv_id);
1435 ipa_pass->generate_summary ();
1437 /* Stop timevar. */
1438 if (pass->tv_id)
1439 timevar_pop (pass->tv_id);
1441 pass_fini_dump_file (pass);
1443 ipa_pass = (struct ipa_opt_pass_d *)ipa_pass->pass.next;
1447 /* Execute IPA_PASS function transform on NODE. */
1449 static void
1450 execute_one_ipa_transform_pass (struct cgraph_node *node,
1451 struct ipa_opt_pass_d *ipa_pass)
1453 struct opt_pass *pass = &ipa_pass->pass;
1454 unsigned int todo_after = 0;
1456 current_pass = pass;
1457 if (!ipa_pass->function_transform)
1458 return;
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;
1464 pass_init_dump_file (pass);
1466 /* Run pre-pass verification. */
1467 execute_todo (ipa_pass->function_transform_todo_flags_start);
1469 /* If a timevar is present, start it. */
1470 if (pass->tv_id != TV_NONE)
1471 timevar_push (pass->tv_id);
1473 /* Do it! */
1474 todo_after = ipa_pass->function_transform (node);
1476 /* Stop timevar. */
1477 if (pass->tv_id != TV_NONE)
1478 timevar_pop (pass->tv_id);
1480 /* Run post-pass cleanup and verification. */
1481 execute_todo (todo_after);
1482 verify_interpass_invariants ();
1484 pass_fini_dump_file (pass);
1486 current_pass = NULL;
1489 /* For the current function, execute all ipa transforms. */
1491 void
1492 execute_all_ipa_transforms (void)
1494 if (cfun && cfun->ipa_transforms_to_apply)
1496 unsigned int i;
1497 struct cgraph_node *node = cgraph_node (current_function_decl);
1499 for (i = 0; i < VEC_length (ipa_opt_pass, cfun->ipa_transforms_to_apply);
1500 i++)
1501 execute_one_ipa_transform_pass (node,
1502 VEC_index (ipa_opt_pass,
1503 cfun->ipa_transforms_to_apply,
1504 i));
1505 VEC_free (ipa_opt_pass, heap, cfun->ipa_transforms_to_apply);
1506 cfun->ipa_transforms_to_apply = NULL;
1510 /* Execute PASS. */
1512 bool
1513 execute_one_pass (struct opt_pass *pass)
1515 bool initializing_dump;
1516 unsigned int todo_after = 0;
1518 /* ICI: FGG: Important to make gate_status static to pass reference to ICI */
1519 static bool gate_status;
1521 /* IPA passes are executed on whole program, so cfun should be NULL.
1522 Other passes need function context set. */
1523 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
1524 gcc_assert (!cfun && !current_function_decl);
1525 else
1526 gcc_assert (cfun && current_function_decl);
1528 current_pass = pass;
1530 /* Check whether gate check should be avoided.
1531 User controls the value of the gate through the parameter "gate_status". */
1532 gate_status = (pass->gate == NULL) ? true : pass->gate();
1534 /* Override gate with plugin. */
1535 invoke_plugin_va_callbacks (PLUGIN_AVOID_GATE,
1536 "gate_status", EP_INT, &gate_status);
1538 if (!gate_status) {
1539 current_pass = NULL;
1540 return false;
1543 /* Pass execution event trigger: useful to identify passes being
1544 executed. Pass name is accessible as a feature (it is a constant object
1545 in GCC.) */
1546 invoke_plugin_va_callbacks (PLUGIN_PASS_EXECUTION,
1547 "_pass_type", EP_INT, &(pass->type));
1549 if (!quiet_flag && !cfun)
1550 fprintf (stderr, " <%s>", pass->name ? pass->name : "");
1552 /* Note that the folders should only create gimple expressions.
1553 This is a hack until the new folder is ready. */
1554 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
1556 initializing_dump = pass_init_dump_file (pass);
1558 /* Run pre-pass verification. */
1559 execute_todo (pass->todo_flags_start);
1561 #ifdef ENABLE_CHECKING
1562 do_per_function (verify_curr_properties,
1563 (void *)(size_t)pass->properties_required);
1564 #endif
1566 /* If a timevar is present, start it. */
1567 if (pass->tv_id != TV_NONE)
1568 timevar_push (pass->tv_id);
1570 /* Do it! */
1571 if (pass->execute)
1573 todo_after = pass->execute ();
1574 do_per_function (clear_last_verified, NULL);
1577 /* Stop timevar. */
1578 if (pass->tv_id != TV_NONE)
1579 timevar_pop (pass->tv_id);
1581 do_per_function (update_properties_after_pass, pass);
1583 if (initializing_dump
1584 && dump_file
1585 && graph_dump_format != no_graph
1586 && cfun
1587 && (cfun->curr_properties & (PROP_cfg | PROP_rtl))
1588 == (PROP_cfg | PROP_rtl))
1590 get_dump_file_info (pass->static_pass_number)->flags |= TDF_GRAPH;
1591 dump_flags |= TDF_GRAPH;
1592 clean_graph_dump_file (dump_file_name);
1595 /* Run post-pass cleanup and verification. */
1596 execute_todo (todo_after | pass->todo_flags_finish);
1597 verify_interpass_invariants ();
1598 if (pass->type == IPA_PASS)
1599 do_per_function (add_ipa_transform_pass, pass);
1601 if (!current_function_decl)
1602 cgraph_process_new_functions ();
1604 pass_fini_dump_file (pass);
1606 if (pass->type != SIMPLE_IPA_PASS && pass->type != IPA_PASS)
1607 gcc_assert (!(cfun->curr_properties & PROP_trees)
1608 || pass->type != RTL_PASS);
1610 current_pass = NULL;
1612 return true;
1615 void
1616 execute_pass_list (struct opt_pass *pass)
1620 gcc_assert (pass->type == GIMPLE_PASS
1621 || pass->type == RTL_PASS);
1622 if (execute_one_pass (pass) && pass->sub)
1623 execute_pass_list (pass->sub);
1624 pass = pass->next;
1626 while (pass);
1629 /* Same as execute_pass_list but assume that subpasses of IPA passes
1630 are local passes. If SET is not NULL, write out summaries of only
1631 those node in SET. */
1633 static void
1634 ipa_write_summaries_2 (struct opt_pass *pass, cgraph_node_set set,
1635 struct lto_out_decl_state *state)
1637 while (pass)
1639 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *)pass;
1640 gcc_assert (!current_function_decl);
1641 gcc_assert (!cfun);
1642 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1643 if (pass->type == IPA_PASS
1644 && ipa_pass->write_summary
1645 && (!pass->gate || pass->gate ()))
1647 /* If a timevar is present, start it. */
1648 if (pass->tv_id)
1649 timevar_push (pass->tv_id);
1651 ipa_pass->write_summary (set);
1653 /* If a timevar is present, start it. */
1654 if (pass->tv_id)
1655 timevar_pop (pass->tv_id);
1658 if (pass->sub && pass->sub->type != GIMPLE_PASS)
1659 ipa_write_summaries_2 (pass->sub, set, state);
1661 pass = pass->next;
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. */
1669 static void
1670 ipa_write_summaries_1 (cgraph_node_set set)
1672 struct lto_out_decl_state *state = lto_new_out_decl_state ();
1673 lto_push_out_decl_state (state);
1675 if (!flag_wpa)
1676 ipa_write_summaries_2 (all_regular_ipa_passes, set, state);
1677 ipa_write_summaries_2 (all_lto_gen_passes, set, state);
1679 gcc_assert (lto_get_out_decl_state () == state);
1680 lto_pop_out_decl_state ();
1681 lto_delete_out_decl_state (state);
1684 /* Write out summaries for all the nodes in the callgraph. */
1686 void
1687 ipa_write_summaries (void)
1689 cgraph_node_set set;
1690 struct cgraph_node **order;
1691 int i, order_pos;
1693 if (!flag_generate_lto || errorcount || sorrycount)
1694 return;
1696 lto_new_extern_inline_states ();
1697 set = cgraph_node_set_new ();
1699 /* Create the callgraph set in the same order used in
1700 cgraph_expand_all_functions. This mostly facilitates debugging,
1701 since it causes the gimple file to be processed in the same order
1702 as the source code. */
1703 order = XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1704 order_pos = cgraph_postorder (order);
1705 gcc_assert (order_pos == cgraph_n_nodes);
1707 for (i = order_pos - 1; i >= 0; i--)
1708 cgraph_node_set_add (set, order[i]);
1710 ipa_write_summaries_1 (set);
1711 lto_delete_extern_inline_states ();
1713 free (order);
1714 ggc_free (set);
1718 /* Write all the summaries for the cgraph nodes in SET. If SET is
1719 NULL, write out all summaries of all nodes. */
1721 void
1722 ipa_write_summaries_of_cgraph_node_set (cgraph_node_set set)
1724 if (flag_generate_lto && !(errorcount || sorrycount))
1725 ipa_write_summaries_1 (set);
1728 /* Same as execute_pass_list but assume that subpasses of IPA passes
1729 are local passes. */
1731 static void
1732 ipa_read_summaries_1 (struct opt_pass *pass)
1734 while (pass)
1736 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
1738 gcc_assert (!current_function_decl);
1739 gcc_assert (!cfun);
1740 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1742 if (pass->gate == NULL || pass->gate ())
1744 if (pass->type == IPA_PASS && ipa_pass->read_summary)
1746 /* If a timevar is present, start it. */
1747 if (pass->tv_id)
1748 timevar_push (pass->tv_id);
1750 ipa_pass->read_summary ();
1752 /* Stop timevar. */
1753 if (pass->tv_id)
1754 timevar_pop (pass->tv_id);
1757 if (pass->sub && pass->sub->type != GIMPLE_PASS)
1758 ipa_read_summaries_1 (pass->sub);
1760 pass = pass->next;
1765 /* Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes. */
1767 void
1768 ipa_read_summaries (void)
1770 if (!flag_ltrans)
1771 ipa_read_summaries_1 (all_regular_ipa_passes);
1772 ipa_read_summaries_1 (all_lto_gen_passes);
1775 /* Same as execute_pass_list but assume that subpasses of IPA passes
1776 are local passes. */
1777 void
1778 execute_ipa_pass_list (struct opt_pass *pass)
1782 gcc_assert (!current_function_decl);
1783 gcc_assert (!cfun);
1784 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1785 if (execute_one_pass (pass) && pass->sub)
1787 if (pass->sub->type == GIMPLE_PASS)
1789 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_START, NULL);
1790 do_per_function_toporder ((void (*)(void *))execute_pass_list,
1791 pass->sub);
1792 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_END, NULL);
1794 else if (pass->sub->type == SIMPLE_IPA_PASS
1795 || pass->sub->type == IPA_PASS)
1796 execute_ipa_pass_list (pass->sub);
1797 else
1798 gcc_unreachable ();
1800 gcc_assert (!current_function_decl);
1801 cgraph_process_new_functions ();
1802 pass = pass->next;
1804 while (pass);
1807 /* ICI: Execute one IPA summary pass */
1808 bool
1809 execute_one_ipa_summary_pass (struct opt_pass *pass)
1811 gcc_assert (!current_function_decl);
1812 gcc_assert (!cfun);
1813 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1814 if (!quiet_flag && !cfun)
1815 fprintf (stderr, " <summary generate>");
1817 /* Generate summary as execute_ipa_summary_passes,
1818 but only for current pass. */
1819 if (pass->type == IPA_PASS
1820 && (!pass->gate || pass->gate ()))
1822 pass_init_dump_file (pass);
1823 ((struct ipa_opt_pass *)pass)->generate_summary ();
1824 pass_fini_dump_file (pass);
1828 extern void debug_properties (unsigned int);
1829 extern void dump_properties (FILE *, unsigned int);
1831 void
1832 dump_properties (FILE *dump, unsigned int props)
1834 fprintf (dump, "Properties:\n");
1835 if (props & PROP_gimple_any)
1836 fprintf (dump, "PROP_gimple_any\n");
1837 if (props & PROP_gimple_lcf)
1838 fprintf (dump, "PROP_gimple_lcf\n");
1839 if (props & PROP_gimple_leh)
1840 fprintf (dump, "PROP_gimple_leh\n");
1841 if (props & PROP_cfg)
1842 fprintf (dump, "PROP_cfg\n");
1843 if (props & PROP_referenced_vars)
1844 fprintf (dump, "PROP_referenced_vars\n");
1845 if (props & PROP_ssa)
1846 fprintf (dump, "PROP_ssa\n");
1847 if (props & PROP_no_crit_edges)
1848 fprintf (dump, "PROP_no_crit_edges\n");
1849 if (props & PROP_rtl)
1850 fprintf (dump, "PROP_rtl\n");
1851 if (props & PROP_gimple_lomp)
1852 fprintf (dump, "PROP_gimple_lomp\n");
1855 void
1856 debug_properties (unsigned int props)
1858 dump_properties (stderr, props);
1861 /* Called by local passes to see if function is called by already processed nodes.
1862 Because we process nodes in topological order, this means that function is
1863 in recursive cycle or we introduced new direct calls. */
1864 bool
1865 function_called_by_processed_nodes_p (void)
1867 struct cgraph_edge *e;
1868 for (e = cgraph_node (current_function_decl)->callers; e; e = e->next_caller)
1870 if (e->caller->decl == current_function_decl)
1871 continue;
1872 if (!e->caller->analyzed)
1873 continue;
1874 if (TREE_ASM_WRITTEN (e->caller->decl))
1875 continue;
1876 if (!e->caller->process && !e->caller->global.inlined_to)
1877 break;
1879 if (dump_file && e)
1881 fprintf (dump_file, "Already processed call to:\n");
1882 dump_cgraph_node (dump_file, e->caller);
1884 return e != NULL;
1887 #include "gt-passes.h"