tree-vectorizer.c (vectorize_loops): Properly guard vectorizer verboseness.
[gcc.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
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 /* A map from static pass id to optimization pass. */
341 struct opt_pass **passes_by_id;
342 int passes_by_id_size;
343
344 /* Set the static pass number of pass PASS to ID and record that
345 in the mapping from static pass number to pass. */
346
347 static void
348 set_pass_for_id (int id, struct opt_pass *pass)
349 {
350 pass->static_pass_number = id;
351 if (passes_by_id_size <= id)
352 {
353 passes_by_id = XRESIZEVEC (struct opt_pass *, passes_by_id, id + 1);
354 memset (passes_by_id + passes_by_id_size, 0,
355 (id + 1 - passes_by_id_size) * sizeof (void *));
356 passes_by_id_size = id + 1;
357 }
358 passes_by_id[id] = pass;
359 }
360
361 /* Return the pass with the static pass number ID. */
362
363 struct opt_pass *
364 get_pass_for_id (int id)
365 {
366 if (id >= passes_by_id_size)
367 return NULL;
368 return passes_by_id[id];
369 }
370
371 /* Iterate over the pass tree allocating dump file numbers. We want
372 to do this depth first, and independent of whether the pass is
373 enabled or not. */
374
375 void
376 register_one_dump_file (struct opt_pass *pass)
377 {
378 char *dot_name, *flag_name, *glob_name;
379 const char *name, *prefix;
380 char num[10];
381 int flags, id;
382
383 /* See below in next_pass_1. */
384 num[0] = '\0';
385 if (pass->static_pass_number != -1)
386 sprintf (num, "%d", ((int) pass->static_pass_number < 0
387 ? 1 : pass->static_pass_number));
388
389 /* The name is both used to identify the pass for the purposes of plugins,
390 and to specify dump file name and option.
391 The latter two might want something short which is not quite unique; for
392 that reason, we may have a disambiguating prefix, followed by a space
393 to mark the start of the following dump file name / option string. */
394 name = strchr (pass->name, ' ');
395 name = name ? name + 1 : pass->name;
396 dot_name = concat (".", name, num, NULL);
397 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
398 prefix = "ipa-", flags = TDF_IPA;
399 else if (pass->type == GIMPLE_PASS)
400 prefix = "tree-", flags = TDF_TREE;
401 else
402 prefix = "rtl-", flags = TDF_RTL;
403
404 flag_name = concat (prefix, name, num, NULL);
405 glob_name = concat (prefix, name, NULL);
406 id = dump_register (dot_name, flag_name, glob_name, flags);
407 set_pass_for_id (id, pass);
408 }
409
410 /* Recursive worker function for register_dump_files. */
411
412 static int
413 register_dump_files_1 (struct opt_pass *pass, int properties)
414 {
415 do
416 {
417 int new_properties = (properties | pass->properties_provided)
418 & ~pass->properties_destroyed;
419
420 if (pass->name && pass->name[0] != '*')
421 register_one_dump_file (pass);
422
423 if (pass->sub)
424 new_properties = register_dump_files_1 (pass->sub, new_properties);
425
426 /* If we have a gate, combine the properties that we could have with
427 and without the pass being examined. */
428 if (pass->gate)
429 properties &= new_properties;
430 else
431 properties = new_properties;
432
433 pass = pass->next;
434 }
435 while (pass);
436
437 return properties;
438 }
439
440 /* Register the dump files for the pipeline starting at PASS.
441 PROPERTIES reflects the properties that are guaranteed to be available at
442 the beginning of the pipeline. */
443
444 static void
445 register_dump_files (struct opt_pass *pass,int properties)
446 {
447 pass->properties_required |= properties;
448 register_dump_files_1 (pass, properties);
449 }
450
451 /* Look at the static_pass_number and duplicate the pass
452 if it is already added to a list. */
453
454 static struct opt_pass *
455 make_pass_instance (struct opt_pass *pass, bool track_duplicates)
456 {
457 /* A nonzero static_pass_number indicates that the
458 pass is already in the list. */
459 if (pass->static_pass_number)
460 {
461 struct opt_pass *new_pass;
462
463 new_pass = XNEW (struct opt_pass);
464 memcpy (new_pass, pass, sizeof (*new_pass));
465 new_pass->next = NULL;
466
467 new_pass->todo_flags_start &= ~TODO_mark_first_instance;
468
469 /* Indicate to register_dump_files that this pass has duplicates,
470 and so it should rename the dump file. The first instance will
471 be -1, and be number of duplicates = -static_pass_number - 1.
472 Subsequent instances will be > 0 and just the duplicate number. */
473 if ((pass->name && pass->name[0] != '*') || track_duplicates)
474 {
475 pass->static_pass_number -= 1;
476 new_pass->static_pass_number = -pass->static_pass_number;
477 }
478 return new_pass;
479 }
480 else
481 {
482 pass->todo_flags_start |= TODO_mark_first_instance;
483 pass->static_pass_number = -1;
484
485 invoke_plugin_callbacks (PLUGIN_NEW_PASS, pass);
486 }
487 return pass;
488 }
489
490 /* Add a pass to the pass list. Duplicate the pass if it's already
491 in the list. */
492
493 static struct opt_pass **
494 next_pass_1 (struct opt_pass **list, struct opt_pass *pass)
495 {
496 /* Every pass should have a name so that plugins can refer to them. */
497 gcc_assert (pass->name != NULL);
498
499 *list = make_pass_instance (pass, false);
500
501 return &(*list)->next;
502 }
503
504 /* List node for an inserted pass instance. We need to keep track of all
505 the newly-added pass instances (with 'added_pass_nodes' defined below)
506 so that we can register their dump files after pass-positioning is finished.
507 Registering dumping files needs to be post-processed or the
508 static_pass_number of the opt_pass object would be modified and mess up
509 the dump file names of future pass instances to be added. */
510
511 struct pass_list_node
512 {
513 struct opt_pass *pass;
514 struct pass_list_node *next;
515 };
516
517 static struct pass_list_node *added_pass_nodes = NULL;
518 static struct pass_list_node *prev_added_pass_node;
519
520 /* Insert the pass at the proper position. Return true if the pass
521 is successfully added.
522
523 NEW_PASS_INFO - new pass to be inserted
524 PASS_LIST - root of the pass list to insert the new pass to */
525
526 static bool
527 position_pass (struct register_pass_info *new_pass_info,
528 struct opt_pass **pass_list)
529 {
530 struct opt_pass *pass = *pass_list, *prev_pass = NULL;
531 bool success = false;
532
533 for ( ; pass; prev_pass = pass, pass = pass->next)
534 {
535 /* Check if the current pass is of the same type as the new pass and
536 matches the name and the instance number of the reference pass. */
537 if (pass->type == new_pass_info->pass->type
538 && pass->name
539 && !strcmp (pass->name, new_pass_info->reference_pass_name)
540 && ((new_pass_info->ref_pass_instance_number == 0)
541 || (new_pass_info->ref_pass_instance_number ==
542 pass->static_pass_number)
543 || (new_pass_info->ref_pass_instance_number == 1
544 && pass->todo_flags_start & TODO_mark_first_instance)))
545 {
546 struct opt_pass *new_pass;
547 struct pass_list_node *new_pass_node;
548
549 new_pass = make_pass_instance (new_pass_info->pass, true);
550
551 /* Insert the new pass instance based on the positioning op. */
552 switch (new_pass_info->pos_op)
553 {
554 case PASS_POS_INSERT_AFTER:
555 new_pass->next = pass->next;
556 pass->next = new_pass;
557
558 /* Skip newly inserted pass to avoid repeated
559 insertions in the case where the new pass and the
560 existing one have the same name. */
561 pass = new_pass;
562 break;
563 case PASS_POS_INSERT_BEFORE:
564 new_pass->next = pass;
565 if (prev_pass)
566 prev_pass->next = new_pass;
567 else
568 *pass_list = new_pass;
569 break;
570 case PASS_POS_REPLACE:
571 new_pass->next = pass->next;
572 if (prev_pass)
573 prev_pass->next = new_pass;
574 else
575 *pass_list = new_pass;
576 new_pass->sub = pass->sub;
577 new_pass->tv_id = pass->tv_id;
578 pass = new_pass;
579 break;
580 default:
581 error ("Invalid pass positioning operation");
582 return false;
583 }
584
585 /* Save the newly added pass (instance) in the added_pass_nodes
586 list so that we can register its dump file later. Note that
587 we cannot register the dump file now because doing so will modify
588 the static_pass_number of the opt_pass object and therefore
589 mess up the dump file name of future instances. */
590 new_pass_node = XCNEW (struct pass_list_node);
591 new_pass_node->pass = new_pass;
592 if (!added_pass_nodes)
593 added_pass_nodes = new_pass_node;
594 else
595 prev_added_pass_node->next = new_pass_node;
596 prev_added_pass_node = new_pass_node;
597
598 success = true;
599 }
600
601 if (pass->sub && position_pass (new_pass_info, &pass->sub))
602 success = true;
603 }
604
605 return success;
606 }
607
608 /* Hooks a new pass into the pass lists.
609
610 PASS_INFO - pass information that specifies the opt_pass object,
611 reference pass, instance number, and how to position
612 the pass */
613
614 void
615 register_pass (struct register_pass_info *pass_info)
616 {
617 /* The checks below could fail in buggy plugins. Existing GCC
618 passes should never fail these checks, so we mention plugin in
619 the messages. */
620 if (!pass_info->pass)
621 fatal_error ("plugin cannot register a missing pass");
622
623 if (!pass_info->pass->name)
624 fatal_error ("plugin cannot register an unnamed pass");
625
626 if (!pass_info->reference_pass_name)
627 fatal_error
628 ("plugin cannot register pass %qs without reference pass name",
629 pass_info->pass->name);
630
631 /* Try to insert the new pass to the pass lists. We need to check
632 all three lists as the reference pass could be in one (or all) of
633 them. */
634 if (!position_pass (pass_info, &all_lowering_passes)
635 && !position_pass (pass_info, &all_small_ipa_passes)
636 && !position_pass (pass_info, &all_regular_ipa_passes)
637 && !position_pass (pass_info, &all_lto_gen_passes)
638 && !position_pass (pass_info, &all_passes))
639 fatal_error
640 ("pass %qs not found but is referenced by new pass %qs",
641 pass_info->reference_pass_name, pass_info->pass->name);
642 else
643 {
644 /* OK, we have successfully inserted the new pass. We need to register
645 the dump files for the newly added pass and its duplicates (if any).
646 Because the registration of plugin/backend passes happens after the
647 command-line options are parsed, the options that specify single
648 pass dumping (e.g. -fdump-tree-PASSNAME) cannot be used for new
649 passes. Therefore we currently can only enable dumping of
650 new passes when the 'dump-all' flags (e.g. -fdump-tree-all)
651 are specified. While doing so, we also delete the pass_list_node
652 objects created during pass positioning. */
653 while (added_pass_nodes)
654 {
655 struct pass_list_node *next_node = added_pass_nodes->next;
656 enum tree_dump_index tdi;
657 register_one_dump_file (added_pass_nodes->pass);
658 if (added_pass_nodes->pass->type == SIMPLE_IPA_PASS
659 || added_pass_nodes->pass->type == IPA_PASS)
660 tdi = TDI_ipa_all;
661 else if (added_pass_nodes->pass->type == GIMPLE_PASS)
662 tdi = TDI_tree_all;
663 else
664 tdi = TDI_rtl_all;
665 /* Check if dump-all flag is specified. */
666 if (get_dump_file_info (tdi)->state)
667 get_dump_file_info (added_pass_nodes->pass->static_pass_number)
668 ->state = get_dump_file_info (tdi)->state;
669 XDELETE (added_pass_nodes);
670 added_pass_nodes = next_node;
671 }
672 }
673 }
674
675 /* Construct the pass tree. The sequencing of passes is driven by
676 the cgraph routines:
677
678 cgraph_finalize_compilation_unit ()
679 for each node N in the cgraph
680 cgraph_analyze_function (N)
681 cgraph_lower_function (N) -> all_lowering_passes
682
683 If we are optimizing, cgraph_optimize is then invoked:
684
685 cgraph_optimize ()
686 ipa_passes () -> all_small_ipa_passes
687 cgraph_expand_all_functions ()
688 for each node N in the cgraph
689 cgraph_expand_function (N)
690 tree_rest_of_compilation (DECL (N)) -> all_passes
691 */
692
693 void
694 init_optimization_passes (void)
695 {
696 struct opt_pass **p;
697
698 #define NEXT_PASS(PASS) (p = next_pass_1 (p, &((PASS).pass)))
699
700 /* All passes needed to lower the function into shape optimizers can
701 operate on. These passes are always run first on the function, but
702 backend might produce already lowered functions that are not processed
703 by these passes. */
704 p = &all_lowering_passes;
705 NEXT_PASS (pass_warn_unused_result);
706 NEXT_PASS (pass_diagnose_omp_blocks);
707 NEXT_PASS (pass_mudflap_1);
708 NEXT_PASS (pass_lower_omp);
709 NEXT_PASS (pass_lower_cf);
710 NEXT_PASS (pass_refactor_eh);
711 NEXT_PASS (pass_lower_eh);
712 NEXT_PASS (pass_build_cfg);
713 NEXT_PASS (pass_lower_complex_O0);
714 NEXT_PASS (pass_lower_vector);
715 NEXT_PASS (pass_warn_function_return);
716 NEXT_PASS (pass_build_cgraph_edges);
717 NEXT_PASS (pass_inline_parameters);
718 *p = NULL;
719
720 /* Interprocedural optimization passes. */
721 p = &all_small_ipa_passes;
722 NEXT_PASS (pass_ipa_function_and_variable_visibility);
723 NEXT_PASS (pass_ipa_early_inline);
724 {
725 struct opt_pass **p = &pass_ipa_early_inline.pass.sub;
726 NEXT_PASS (pass_early_inline);
727 NEXT_PASS (pass_inline_parameters);
728 NEXT_PASS (pass_rebuild_cgraph_edges);
729 }
730 NEXT_PASS (pass_ipa_free_lang_data);
731 NEXT_PASS (pass_early_local_passes);
732 {
733 struct opt_pass **p = &pass_early_local_passes.pass.sub;
734 NEXT_PASS (pass_fixup_cfg);
735 NEXT_PASS (pass_tree_profile);
736 NEXT_PASS (pass_cleanup_cfg);
737 NEXT_PASS (pass_init_datastructures);
738 NEXT_PASS (pass_expand_omp);
739
740 NEXT_PASS (pass_referenced_vars);
741 NEXT_PASS (pass_build_ssa);
742 NEXT_PASS (pass_early_warn_uninitialized);
743 /* Note that it is not strictly necessary to schedule an early
744 inline pass here. However, some test cases (e.g.,
745 g++.dg/other/p334435.C g++.dg/other/i386-1.C) expect extern
746 inline functions to be inlined even at -O0. This does not
747 happen during the first early inline pass. */
748 NEXT_PASS (pass_rebuild_cgraph_edges);
749 NEXT_PASS (pass_early_inline);
750 NEXT_PASS (pass_all_early_optimizations);
751 {
752 struct opt_pass **p = &pass_all_early_optimizations.pass.sub;
753 NEXT_PASS (pass_remove_cgraph_callee_edges);
754 NEXT_PASS (pass_rename_ssa_copies);
755 NEXT_PASS (pass_ccp);
756 NEXT_PASS (pass_forwprop);
757 /* pass_build_ealias is a dummy pass that ensures that we
758 execute TODO_rebuild_alias at this point. Re-building
759 alias information also rewrites no longer addressed
760 locals into SSA form if possible. */
761 NEXT_PASS (pass_build_ealias);
762 NEXT_PASS (pass_sra_early);
763 NEXT_PASS (pass_copy_prop);
764 NEXT_PASS (pass_merge_phi);
765 NEXT_PASS (pass_cd_dce);
766 NEXT_PASS (pass_early_ipa_sra);
767 NEXT_PASS (pass_tail_recursion);
768 NEXT_PASS (pass_convert_switch);
769 NEXT_PASS (pass_cleanup_eh);
770 NEXT_PASS (pass_profile);
771 NEXT_PASS (pass_local_pure_const);
772 }
773 NEXT_PASS (pass_release_ssa_names);
774 NEXT_PASS (pass_rebuild_cgraph_edges);
775 NEXT_PASS (pass_inline_parameters);
776 }
777 NEXT_PASS (pass_ipa_increase_alignment);
778 NEXT_PASS (pass_ipa_matrix_reorg);
779 *p = NULL;
780
781 p = &all_regular_ipa_passes;
782 NEXT_PASS (pass_ipa_whole_program_visibility);
783 NEXT_PASS (pass_ipa_cp);
784 NEXT_PASS (pass_ipa_inline);
785 NEXT_PASS (pass_ipa_reference);
786 NEXT_PASS (pass_ipa_pure_const);
787 NEXT_PASS (pass_ipa_type_escape);
788 NEXT_PASS (pass_ipa_pta);
789 NEXT_PASS (pass_ipa_struct_reorg);
790 *p = NULL;
791
792 p = &all_lto_gen_passes;
793 NEXT_PASS (pass_ipa_lto_gimple_out);
794 NEXT_PASS (pass_ipa_lto_wpa_fixup);
795 NEXT_PASS (pass_ipa_lto_finish_out); /* This must be the last LTO pass. */
796 *p = NULL;
797
798 /* These passes are run after IPA passes on every function that is being
799 output to the assembler file. */
800 p = &all_passes;
801 NEXT_PASS (pass_lower_eh_dispatch);
802 NEXT_PASS (pass_all_optimizations);
803 {
804 struct opt_pass **p = &pass_all_optimizations.pass.sub;
805 NEXT_PASS (pass_remove_cgraph_callee_edges);
806 /* Initial scalar cleanups before alias computation.
807 They ensure memory accesses are not indirect wherever possible. */
808 NEXT_PASS (pass_strip_predict_hints);
809 NEXT_PASS (pass_update_address_taken);
810 NEXT_PASS (pass_rename_ssa_copies);
811 NEXT_PASS (pass_complete_unrolli);
812 NEXT_PASS (pass_ccp);
813 NEXT_PASS (pass_forwprop);
814 NEXT_PASS (pass_call_cdce);
815 /* pass_build_alias is a dummy pass that ensures that we
816 execute TODO_rebuild_alias at this point. Re-building
817 alias information also rewrites no longer addressed
818 locals into SSA form if possible. */
819 NEXT_PASS (pass_build_alias);
820 NEXT_PASS (pass_return_slot);
821 NEXT_PASS (pass_phiprop);
822 NEXT_PASS (pass_fre);
823 NEXT_PASS (pass_copy_prop);
824 NEXT_PASS (pass_merge_phi);
825 NEXT_PASS (pass_vrp);
826 NEXT_PASS (pass_dce);
827 NEXT_PASS (pass_cselim);
828 NEXT_PASS (pass_tree_ifcombine);
829 NEXT_PASS (pass_phiopt);
830 NEXT_PASS (pass_tail_recursion);
831 NEXT_PASS (pass_ch);
832 NEXT_PASS (pass_stdarg);
833 NEXT_PASS (pass_lower_complex);
834 NEXT_PASS (pass_sra);
835 NEXT_PASS (pass_rename_ssa_copies);
836 /* The dom pass will also resolve all __builtin_constant_p calls
837 that are still there to 0. This has to be done after some
838 propagations have already run, but before some more dead code
839 is removed, and this place fits nicely. Remember this when
840 trying to move or duplicate pass_dominator somewhere earlier. */
841 NEXT_PASS (pass_dominator);
842 /* The only const/copy propagation opportunities left after
843 DOM should be due to degenerate PHI nodes. So rather than
844 run the full propagators, run a specialized pass which
845 only examines PHIs to discover const/copy propagation
846 opportunities. */
847 NEXT_PASS (pass_phi_only_cprop);
848 NEXT_PASS (pass_dse);
849 NEXT_PASS (pass_reassoc);
850 NEXT_PASS (pass_dce);
851 NEXT_PASS (pass_forwprop);
852 NEXT_PASS (pass_phiopt);
853 NEXT_PASS (pass_object_sizes);
854 NEXT_PASS (pass_ccp);
855 NEXT_PASS (pass_copy_prop);
856 NEXT_PASS (pass_cse_sincos);
857 NEXT_PASS (pass_optimize_bswap);
858 NEXT_PASS (pass_split_crit_edges);
859 NEXT_PASS (pass_pre);
860 NEXT_PASS (pass_sink_code);
861 NEXT_PASS (pass_tree_loop);
862 {
863 struct opt_pass **p = &pass_tree_loop.pass.sub;
864 NEXT_PASS (pass_tree_loop_init);
865 NEXT_PASS (pass_copy_prop);
866 NEXT_PASS (pass_dce_loop);
867 NEXT_PASS (pass_lim);
868 NEXT_PASS (pass_tree_unswitch);
869 NEXT_PASS (pass_scev_cprop);
870 NEXT_PASS (pass_record_bounds);
871 NEXT_PASS (pass_check_data_deps);
872 NEXT_PASS (pass_loop_distribution);
873 NEXT_PASS (pass_linear_transform);
874 NEXT_PASS (pass_graphite_transforms);
875 {
876 struct opt_pass **p = &pass_graphite_transforms.pass.sub;
877 NEXT_PASS (pass_dce_loop);
878 NEXT_PASS (pass_lim);
879 }
880 NEXT_PASS (pass_iv_canon);
881 NEXT_PASS (pass_if_conversion);
882 NEXT_PASS (pass_vectorize);
883 {
884 struct opt_pass **p = &pass_vectorize.pass.sub;
885 NEXT_PASS (pass_lower_vector_ssa);
886 NEXT_PASS (pass_dce_loop);
887 }
888 NEXT_PASS (pass_predcom);
889 NEXT_PASS (pass_complete_unroll);
890 NEXT_PASS (pass_slp_vectorize);
891 NEXT_PASS (pass_parallelize_loops);
892 NEXT_PASS (pass_loop_prefetch);
893 NEXT_PASS (pass_iv_optimize);
894 NEXT_PASS (pass_tree_loop_done);
895 }
896 NEXT_PASS (pass_cse_reciprocals);
897 NEXT_PASS (pass_reassoc);
898 NEXT_PASS (pass_vrp);
899 NEXT_PASS (pass_dominator);
900 /* The only const/copy propagation opportunities left after
901 DOM should be due to degenerate PHI nodes. So rather than
902 run the full propagators, run a specialized pass which
903 only examines PHIs to discover const/copy propagation
904 opportunities. */
905 NEXT_PASS (pass_phi_only_cprop);
906 NEXT_PASS (pass_cd_dce);
907 NEXT_PASS (pass_tracer);
908
909 /* FIXME: If DCE is not run before checking for uninitialized uses,
910 we may get false warnings (e.g., testsuite/gcc.dg/uninit-5.c).
911 However, this also causes us to misdiagnose cases that should be
912 real warnings (e.g., testsuite/gcc.dg/pr18501.c).
913
914 To fix the false positives in uninit-5.c, we would have to
915 account for the predicates protecting the set and the use of each
916 variable. Using a representation like Gated Single Assignment
917 may help. */
918 NEXT_PASS (pass_late_warn_uninitialized);
919 NEXT_PASS (pass_dse);
920 NEXT_PASS (pass_forwprop);
921 NEXT_PASS (pass_phiopt);
922 NEXT_PASS (pass_fold_builtins);
923 NEXT_PASS (pass_tail_calls);
924 NEXT_PASS (pass_rename_ssa_copies);
925 NEXT_PASS (pass_uncprop);
926 NEXT_PASS (pass_local_pure_const);
927 }
928 NEXT_PASS (pass_cleanup_eh);
929 NEXT_PASS (pass_lower_resx);
930 NEXT_PASS (pass_nrv);
931 NEXT_PASS (pass_mudflap_2);
932 NEXT_PASS (pass_cleanup_cfg_post_optimizing);
933 NEXT_PASS (pass_warn_function_noreturn);
934
935 NEXT_PASS (pass_expand);
936
937 NEXT_PASS (pass_rest_of_compilation);
938 {
939 struct opt_pass **p = &pass_rest_of_compilation.pass.sub;
940 NEXT_PASS (pass_init_function);
941 NEXT_PASS (pass_jump);
942 NEXT_PASS (pass_rtl_eh);
943 NEXT_PASS (pass_initial_value_sets);
944 NEXT_PASS (pass_unshare_all_rtl);
945 NEXT_PASS (pass_instantiate_virtual_regs);
946 NEXT_PASS (pass_into_cfg_layout_mode);
947 NEXT_PASS (pass_jump2);
948 NEXT_PASS (pass_lower_subreg);
949 NEXT_PASS (pass_df_initialize_opt);
950 NEXT_PASS (pass_cse);
951 NEXT_PASS (pass_rtl_fwprop);
952 NEXT_PASS (pass_rtl_cprop);
953 NEXT_PASS (pass_rtl_pre);
954 NEXT_PASS (pass_rtl_hoist);
955 NEXT_PASS (pass_rtl_cprop);
956 NEXT_PASS (pass_rtl_store_motion);
957 NEXT_PASS (pass_cse_after_global_opts);
958 NEXT_PASS (pass_rtl_ifcvt);
959 NEXT_PASS (pass_reginfo_init);
960 /* Perform loop optimizations. It might be better to do them a bit
961 sooner, but we want the profile feedback to work more
962 efficiently. */
963 NEXT_PASS (pass_loop2);
964 {
965 struct opt_pass **p = &pass_loop2.pass.sub;
966 NEXT_PASS (pass_rtl_loop_init);
967 NEXT_PASS (pass_rtl_move_loop_invariants);
968 NEXT_PASS (pass_rtl_unswitch);
969 NEXT_PASS (pass_rtl_unroll_and_peel_loops);
970 NEXT_PASS (pass_rtl_doloop);
971 NEXT_PASS (pass_rtl_loop_done);
972 *p = NULL;
973 }
974 NEXT_PASS (pass_web);
975 NEXT_PASS (pass_rtl_cprop);
976 NEXT_PASS (pass_cse2);
977 NEXT_PASS (pass_rtl_dse1);
978 NEXT_PASS (pass_rtl_fwprop_addr);
979 NEXT_PASS (pass_inc_dec);
980 NEXT_PASS (pass_initialize_regs);
981 NEXT_PASS (pass_ud_rtl_dce);
982 NEXT_PASS (pass_combine);
983 NEXT_PASS (pass_if_after_combine);
984 NEXT_PASS (pass_partition_blocks);
985 NEXT_PASS (pass_regmove);
986 NEXT_PASS (pass_outof_cfg_layout_mode);
987 NEXT_PASS (pass_split_all_insns);
988 NEXT_PASS (pass_lower_subreg2);
989 NEXT_PASS (pass_df_initialize_no_opt);
990 NEXT_PASS (pass_stack_ptr_mod);
991 NEXT_PASS (pass_mode_switching);
992 NEXT_PASS (pass_match_asm_constraints);
993 NEXT_PASS (pass_sms);
994 NEXT_PASS (pass_sched);
995 NEXT_PASS (pass_ira);
996 NEXT_PASS (pass_postreload);
997 {
998 struct opt_pass **p = &pass_postreload.pass.sub;
999 NEXT_PASS (pass_postreload_cse);
1000 NEXT_PASS (pass_gcse2);
1001 NEXT_PASS (pass_split_after_reload);
1002 NEXT_PASS (pass_branch_target_load_optimize1);
1003 NEXT_PASS (pass_thread_prologue_and_epilogue);
1004 NEXT_PASS (pass_rtl_dse2);
1005 NEXT_PASS (pass_stack_adjustments);
1006 NEXT_PASS (pass_peephole2);
1007 NEXT_PASS (pass_if_after_reload);
1008 NEXT_PASS (pass_regrename);
1009 NEXT_PASS (pass_cprop_hardreg);
1010 NEXT_PASS (pass_fast_rtl_dce);
1011 NEXT_PASS (pass_reorder_blocks);
1012 NEXT_PASS (pass_branch_target_load_optimize2);
1013 NEXT_PASS (pass_leaf_regs);
1014 NEXT_PASS (pass_split_before_sched2);
1015 NEXT_PASS (pass_sched2);
1016 NEXT_PASS (pass_stack_regs);
1017 {
1018 struct opt_pass **p = &pass_stack_regs.pass.sub;
1019 NEXT_PASS (pass_split_before_regstack);
1020 NEXT_PASS (pass_stack_regs_run);
1021 }
1022 NEXT_PASS (pass_compute_alignments);
1023 NEXT_PASS (pass_duplicate_computed_gotos);
1024 NEXT_PASS (pass_variable_tracking);
1025 NEXT_PASS (pass_free_cfg);
1026 NEXT_PASS (pass_machine_reorg);
1027 NEXT_PASS (pass_cleanup_barriers);
1028 NEXT_PASS (pass_delay_slots);
1029 NEXT_PASS (pass_split_for_shorten_branches);
1030 NEXT_PASS (pass_convert_to_eh_region_ranges);
1031 NEXT_PASS (pass_shorten_branches);
1032 NEXT_PASS (pass_set_nothrow_function_flags);
1033 NEXT_PASS (pass_final);
1034 }
1035 NEXT_PASS (pass_df_finish);
1036 }
1037 NEXT_PASS (pass_clean_state);
1038 *p = NULL;
1039
1040 #undef NEXT_PASS
1041
1042 /* Register the passes with the tree dump code. */
1043 register_dump_files (all_lowering_passes, PROP_gimple_any);
1044 register_dump_files (all_small_ipa_passes,
1045 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1046 | PROP_cfg);
1047 register_dump_files (all_regular_ipa_passes,
1048 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1049 | PROP_cfg);
1050 register_dump_files (all_lto_gen_passes,
1051 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1052 | PROP_cfg);
1053 register_dump_files (all_passes,
1054 PROP_gimple_any | PROP_gimple_lcf | PROP_gimple_leh
1055 | PROP_cfg);
1056 }
1057
1058 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1059 function CALLBACK for every function in the call graph. Otherwise,
1060 call CALLBACK on the current function. */
1061
1062 static void
1063 do_per_function (void (*callback) (void *data), void *data)
1064 {
1065 if (current_function_decl)
1066 callback (data);
1067 else
1068 {
1069 struct cgraph_node *node;
1070 for (node = cgraph_nodes; node; node = node->next)
1071 if (node->analyzed && gimple_has_body_p (node->decl)
1072 && (!node->clone_of || node->decl != node->clone_of->decl))
1073 {
1074 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1075 current_function_decl = node->decl;
1076 callback (data);
1077 if (!flag_wpa)
1078 {
1079 free_dominance_info (CDI_DOMINATORS);
1080 free_dominance_info (CDI_POST_DOMINATORS);
1081 }
1082 current_function_decl = NULL;
1083 pop_cfun ();
1084 ggc_collect ();
1085 }
1086 }
1087 }
1088
1089 /* Because inlining might remove no-longer reachable nodes, we need to
1090 keep the array visible to garbage collector to avoid reading collected
1091 out nodes. */
1092 static int nnodes;
1093 static GTY ((length ("nnodes"))) struct cgraph_node **order;
1094
1095 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1096 function CALLBACK for every function in the call graph. Otherwise,
1097 call CALLBACK on the current function.
1098 This function is global so that plugins can use it. */
1099 void
1100 do_per_function_toporder (void (*callback) (void *data), void *data)
1101 {
1102 int i;
1103
1104 if (current_function_decl)
1105 callback (data);
1106 else
1107 {
1108 gcc_assert (!order);
1109 order = GGC_NEWVEC (struct cgraph_node *, cgraph_n_nodes);
1110 nnodes = cgraph_postorder (order);
1111 for (i = nnodes - 1; i >= 0; i--)
1112 order[i]->process = 1;
1113 for (i = nnodes - 1; i >= 0; i--)
1114 {
1115 struct cgraph_node *node = order[i];
1116
1117 /* Allow possibly removed nodes to be garbage collected. */
1118 order[i] = NULL;
1119 node->process = 0;
1120 if (node->analyzed)
1121 {
1122 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1123 current_function_decl = node->decl;
1124 callback (data);
1125 free_dominance_info (CDI_DOMINATORS);
1126 free_dominance_info (CDI_POST_DOMINATORS);
1127 current_function_decl = NULL;
1128 pop_cfun ();
1129 ggc_collect ();
1130 }
1131 }
1132 }
1133 ggc_free (order);
1134 order = NULL;
1135 nnodes = 0;
1136 }
1137
1138 /* Perform all TODO actions that ought to be done on each function. */
1139
1140 static void
1141 execute_function_todo (void *data)
1142 {
1143 unsigned int flags = (size_t)data;
1144 if (cfun->curr_properties & PROP_ssa)
1145 flags |= TODO_verify_ssa;
1146 flags &= ~cfun->last_verified;
1147 if (!flags)
1148 return;
1149
1150 statistics_fini_pass ();
1151
1152 /* Always cleanup the CFG before trying to update SSA. */
1153 if (flags & TODO_cleanup_cfg)
1154 {
1155 bool cleanup = cleanup_tree_cfg ();
1156
1157 if (cleanup && (cfun->curr_properties & PROP_ssa))
1158 flags |= TODO_remove_unused_locals;
1159
1160 /* When cleanup_tree_cfg merges consecutive blocks, it may
1161 perform some simplistic propagation when removing single
1162 valued PHI nodes. This propagation may, in turn, cause the
1163 SSA form to become out-of-date (see PR 22037). So, even
1164 if the parent pass had not scheduled an SSA update, we may
1165 still need to do one. */
1166 if (!(flags & TODO_update_ssa_any) && need_ssa_update_p (cfun))
1167 flags |= TODO_update_ssa;
1168 }
1169
1170 if (flags & TODO_update_ssa_any)
1171 {
1172 unsigned update_flags = flags & TODO_update_ssa_any;
1173 update_ssa (update_flags);
1174 cfun->last_verified &= ~TODO_verify_ssa;
1175 }
1176
1177 if (flags & TODO_update_address_taken)
1178 execute_update_addresses_taken (true);
1179
1180 if (flags & TODO_rebuild_alias)
1181 {
1182 if (!(flags & TODO_update_address_taken))
1183 execute_update_addresses_taken (true);
1184 compute_may_aliases ();
1185 }
1186
1187 if (flags & TODO_remove_unused_locals)
1188 remove_unused_locals ();
1189
1190 if ((flags & TODO_dump_func) && dump_file && current_function_decl)
1191 {
1192 if (cfun->curr_properties & PROP_trees)
1193 dump_function_to_file (current_function_decl, dump_file, dump_flags);
1194 else
1195 {
1196 if (dump_flags & TDF_SLIM)
1197 print_rtl_slim_with_bb (dump_file, get_insns (), dump_flags);
1198 else if ((cfun->curr_properties & PROP_cfg)
1199 && (dump_flags & TDF_BLOCKS))
1200 print_rtl_with_bb (dump_file, get_insns ());
1201 else
1202 print_rtl (dump_file, get_insns ());
1203
1204 if ((cfun->curr_properties & PROP_cfg)
1205 && graph_dump_format != no_graph
1206 && (dump_flags & TDF_GRAPH))
1207 print_rtl_graph_with_bb (dump_file_name, get_insns ());
1208 }
1209
1210 /* Flush the file. If verification fails, we won't be able to
1211 close the file before aborting. */
1212 fflush (dump_file);
1213 }
1214
1215 if (flags & TODO_rebuild_frequencies)
1216 {
1217 if (profile_status == PROFILE_GUESSED)
1218 {
1219 loop_optimizer_init (0);
1220 add_noreturn_fake_exit_edges ();
1221 mark_irreducible_loops ();
1222 connect_infinite_loops_to_exit ();
1223 estimate_bb_frequencies ();
1224 remove_fake_exit_edges ();
1225 loop_optimizer_finalize ();
1226 }
1227 else if (profile_status == PROFILE_READ)
1228 counts_to_freqs ();
1229 else
1230 gcc_unreachable ();
1231 }
1232
1233 #if defined ENABLE_CHECKING
1234 if (flags & TODO_verify_ssa)
1235 verify_ssa (true);
1236 if (flags & TODO_verify_flow)
1237 verify_flow_info ();
1238 if (flags & TODO_verify_stmts)
1239 verify_stmts ();
1240 if (flags & TODO_verify_loops)
1241 verify_loop_closed_ssa ();
1242 if (flags & TODO_verify_rtl_sharing)
1243 verify_rtl_sharing ();
1244 #endif
1245
1246 cfun->last_verified = flags & TODO_verify_all;
1247 }
1248
1249 /* Perform all TODO actions. */
1250 static void
1251 execute_todo (unsigned int flags)
1252 {
1253 #if defined ENABLE_CHECKING
1254 if (cfun
1255 && need_ssa_update_p (cfun))
1256 gcc_assert (flags & TODO_update_ssa_any);
1257 #endif
1258
1259 /* Inform the pass whether it is the first time it is run. */
1260 first_pass_instance = (flags & TODO_mark_first_instance) != 0;
1261
1262 do_per_function (execute_function_todo, (void *)(size_t) flags);
1263
1264 /* Always remove functions just as before inlining: IPA passes might be
1265 interested to see bodies of extern inline functions that are not inlined
1266 to analyze side effects. The full removal is done just at the end
1267 of IPA pass queue. */
1268 if (flags & TODO_remove_functions)
1269 {
1270 gcc_assert (!cfun);
1271 cgraph_remove_unreachable_nodes (true, dump_file);
1272 }
1273
1274 if ((flags & TODO_dump_cgraph) && dump_file && !current_function_decl)
1275 {
1276 gcc_assert (!cfun);
1277 dump_cgraph (dump_file);
1278 /* Flush the file. If verification fails, we won't be able to
1279 close the file before aborting. */
1280 fflush (dump_file);
1281 }
1282
1283 if (flags & TODO_ggc_collect)
1284 ggc_collect ();
1285
1286 /* Now that the dumping has been done, we can get rid of the optional
1287 df problems. */
1288 if (flags & TODO_df_finish)
1289 df_finish_pass ((flags & TODO_df_verify) != 0);
1290 }
1291
1292 /* Verify invariants that should hold between passes. This is a place
1293 to put simple sanity checks. */
1294
1295 static void
1296 verify_interpass_invariants (void)
1297 {
1298 #ifdef ENABLE_CHECKING
1299 gcc_assert (!fold_deferring_overflow_warnings_p ());
1300 #endif
1301 }
1302
1303 /* Clear the last verified flag. */
1304
1305 static void
1306 clear_last_verified (void *data ATTRIBUTE_UNUSED)
1307 {
1308 cfun->last_verified = 0;
1309 }
1310
1311 /* Helper function. Verify that the properties has been turn into the
1312 properties expected by the pass. */
1313
1314 #ifdef ENABLE_CHECKING
1315 static void
1316 verify_curr_properties (void *data)
1317 {
1318 unsigned int props = (size_t)data;
1319 gcc_assert ((cfun->curr_properties & props) == props);
1320 }
1321 #endif
1322
1323 /* Initialize pass dump file. */
1324 /* This is non-static so that the plugins can use it. */
1325
1326 bool
1327 pass_init_dump_file (struct opt_pass *pass)
1328 {
1329 /* If a dump file name is present, open it if enabled. */
1330 if (pass->static_pass_number != -1)
1331 {
1332 bool initializing_dump = !dump_initialized_p (pass->static_pass_number);
1333 dump_file_name = get_dump_file_name (pass->static_pass_number);
1334 dump_file = dump_begin (pass->static_pass_number, &dump_flags);
1335 if (dump_file && current_function_decl)
1336 {
1337 const char *dname, *aname;
1338 dname = lang_hooks.decl_printable_name (current_function_decl, 2);
1339 aname = (IDENTIFIER_POINTER
1340 (DECL_ASSEMBLER_NAME (current_function_decl)));
1341 fprintf (dump_file, "\n;; Function %s (%s)%s\n\n", dname, aname,
1342 cfun->function_frequency == FUNCTION_FREQUENCY_HOT
1343 ? " (hot)"
1344 : cfun->function_frequency == FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
1345 ? " (unlikely executed)"
1346 : "");
1347 }
1348 return initializing_dump;
1349 }
1350 else
1351 return false;
1352 }
1353
1354 /* Flush PASS dump file. */
1355 /* This is non-static so that plugins can use it. */
1356
1357 void
1358 pass_fini_dump_file (struct opt_pass *pass)
1359 {
1360 /* Flush and close dump file. */
1361 if (dump_file_name)
1362 {
1363 free (CONST_CAST (char *, dump_file_name));
1364 dump_file_name = NULL;
1365 }
1366
1367 if (dump_file)
1368 {
1369 dump_end (pass->static_pass_number, dump_file);
1370 dump_file = NULL;
1371 }
1372 }
1373
1374 /* After executing the pass, apply expected changes to the function
1375 properties. */
1376
1377 static void
1378 update_properties_after_pass (void *data)
1379 {
1380 struct opt_pass *pass = (struct opt_pass *) data;
1381 cfun->curr_properties = (cfun->curr_properties | pass->properties_provided)
1382 & ~pass->properties_destroyed;
1383 }
1384
1385 /* Execute summary generation for all of the passes in IPA_PASS. */
1386
1387 void
1388 execute_ipa_summary_passes (struct ipa_opt_pass_d *ipa_pass)
1389 {
1390 while (ipa_pass)
1391 {
1392 struct opt_pass *pass = &ipa_pass->pass;
1393
1394 /* Execute all of the IPA_PASSes in the list. */
1395 if (ipa_pass->pass.type == IPA_PASS
1396 && (!pass->gate || pass->gate ())
1397 && ipa_pass->generate_summary)
1398 {
1399 pass_init_dump_file (pass);
1400
1401 /* If a timevar is present, start it. */
1402 if (pass->tv_id)
1403 timevar_push (pass->tv_id);
1404
1405 ipa_pass->generate_summary ();
1406
1407 /* Stop timevar. */
1408 if (pass->tv_id)
1409 timevar_pop (pass->tv_id);
1410
1411 pass_fini_dump_file (pass);
1412 }
1413 ipa_pass = (struct ipa_opt_pass_d *)ipa_pass->pass.next;
1414 }
1415 }
1416
1417 /* Execute IPA_PASS function transform on NODE. */
1418
1419 static void
1420 execute_one_ipa_transform_pass (struct cgraph_node *node,
1421 struct ipa_opt_pass_d *ipa_pass)
1422 {
1423 struct opt_pass *pass = &ipa_pass->pass;
1424 unsigned int todo_after = 0;
1425
1426 current_pass = pass;
1427 if (!ipa_pass->function_transform)
1428 return;
1429
1430 /* Note that the folders should only create gimple expressions.
1431 This is a hack until the new folder is ready. */
1432 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
1433
1434 pass_init_dump_file (pass);
1435
1436 /* Run pre-pass verification. */
1437 execute_todo (ipa_pass->function_transform_todo_flags_start);
1438
1439 /* If a timevar is present, start it. */
1440 if (pass->tv_id != TV_NONE)
1441 timevar_push (pass->tv_id);
1442
1443 /* Do it! */
1444 todo_after = ipa_pass->function_transform (node);
1445
1446 /* Stop timevar. */
1447 if (pass->tv_id != TV_NONE)
1448 timevar_pop (pass->tv_id);
1449
1450 /* Run post-pass cleanup and verification. */
1451 execute_todo (todo_after);
1452 verify_interpass_invariants ();
1453
1454 pass_fini_dump_file (pass);
1455
1456 current_pass = NULL;
1457 }
1458
1459 /* For the current function, execute all ipa transforms. */
1460
1461 void
1462 execute_all_ipa_transforms (void)
1463 {
1464 struct cgraph_node *node;
1465 if (!cfun)
1466 return;
1467 node = cgraph_node (current_function_decl);
1468 if (node->ipa_transforms_to_apply)
1469 {
1470 unsigned int i;
1471
1472 for (i = 0; i < VEC_length (ipa_opt_pass, node->ipa_transforms_to_apply);
1473 i++)
1474 execute_one_ipa_transform_pass (node,
1475 VEC_index (ipa_opt_pass,
1476 node->ipa_transforms_to_apply,
1477 i));
1478 VEC_free (ipa_opt_pass, heap, node->ipa_transforms_to_apply);
1479 node->ipa_transforms_to_apply = NULL;
1480 }
1481 }
1482
1483 /* Execute PASS. */
1484
1485 bool
1486 execute_one_pass (struct opt_pass *pass)
1487 {
1488 bool initializing_dump;
1489 unsigned int todo_after = 0;
1490
1491 bool gate_status;
1492
1493 /* IPA passes are executed on whole program, so cfun should be NULL.
1494 Other passes need function context set. */
1495 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
1496 gcc_assert (!cfun && !current_function_decl);
1497 else
1498 gcc_assert (cfun && current_function_decl);
1499
1500 current_pass = pass;
1501
1502 /* Check whether gate check should be avoided.
1503 User controls the value of the gate through the parameter "gate_status". */
1504 gate_status = (pass->gate == NULL) ? true : pass->gate();
1505
1506 /* Override gate with plugin. */
1507 invoke_plugin_callbacks (PLUGIN_OVERRIDE_GATE, &gate_status);
1508
1509 if (!gate_status)
1510 {
1511 current_pass = NULL;
1512 return false;
1513 }
1514
1515 /* Pass execution event trigger: useful to identify passes being
1516 executed. */
1517 invoke_plugin_callbacks (PLUGIN_PASS_EXECUTION, pass);
1518
1519 if (!quiet_flag && !cfun)
1520 fprintf (stderr, " <%s>", pass->name ? pass->name : "");
1521
1522 /* Note that the folders should only create gimple expressions.
1523 This is a hack until the new folder is ready. */
1524 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
1525
1526 initializing_dump = pass_init_dump_file (pass);
1527
1528 /* Run pre-pass verification. */
1529 execute_todo (pass->todo_flags_start);
1530
1531 #ifdef ENABLE_CHECKING
1532 do_per_function (verify_curr_properties,
1533 (void *)(size_t)pass->properties_required);
1534 #endif
1535
1536 /* If a timevar is present, start it. */
1537 if (pass->tv_id != TV_NONE)
1538 timevar_push (pass->tv_id);
1539
1540 /* Do it! */
1541 if (pass->execute)
1542 {
1543 todo_after = pass->execute ();
1544 do_per_function (clear_last_verified, NULL);
1545 }
1546
1547 /* Stop timevar. */
1548 if (pass->tv_id != TV_NONE)
1549 timevar_pop (pass->tv_id);
1550
1551 do_per_function (update_properties_after_pass, pass);
1552
1553 if (initializing_dump
1554 && dump_file
1555 && graph_dump_format != no_graph
1556 && cfun
1557 && (cfun->curr_properties & (PROP_cfg | PROP_rtl))
1558 == (PROP_cfg | PROP_rtl))
1559 {
1560 get_dump_file_info (pass->static_pass_number)->flags |= TDF_GRAPH;
1561 dump_flags |= TDF_GRAPH;
1562 clean_graph_dump_file (dump_file_name);
1563 }
1564
1565 /* Run post-pass cleanup and verification. */
1566 execute_todo (todo_after | pass->todo_flags_finish);
1567 verify_interpass_invariants ();
1568 if (pass->type == IPA_PASS)
1569 {
1570 struct cgraph_node *node;
1571 for (node = cgraph_nodes; node; node = node->next)
1572 if (node->analyzed)
1573 VEC_safe_push (ipa_opt_pass, heap, node->ipa_transforms_to_apply,
1574 (struct ipa_opt_pass_d *)pass);
1575 }
1576
1577 if (!current_function_decl)
1578 cgraph_process_new_functions ();
1579
1580 pass_fini_dump_file (pass);
1581
1582 if (pass->type != SIMPLE_IPA_PASS && pass->type != IPA_PASS)
1583 gcc_assert (!(cfun->curr_properties & PROP_trees)
1584 || pass->type != RTL_PASS);
1585
1586 current_pass = NULL;
1587
1588 return true;
1589 }
1590
1591 void
1592 execute_pass_list (struct opt_pass *pass)
1593 {
1594 do
1595 {
1596 gcc_assert (pass->type == GIMPLE_PASS
1597 || pass->type == RTL_PASS);
1598 if (execute_one_pass (pass) && pass->sub)
1599 execute_pass_list (pass->sub);
1600 pass = pass->next;
1601 }
1602 while (pass);
1603 }
1604
1605 /* Same as execute_pass_list but assume that subpasses of IPA passes
1606 are local passes. If SET is not NULL, write out summaries of only
1607 those node in SET. */
1608
1609 static void
1610 ipa_write_summaries_2 (struct opt_pass *pass, cgraph_node_set set,
1611 struct lto_out_decl_state *state)
1612 {
1613 while (pass)
1614 {
1615 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *)pass;
1616 gcc_assert (!current_function_decl);
1617 gcc_assert (!cfun);
1618 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1619 if (pass->type == IPA_PASS
1620 && ipa_pass->write_summary
1621 && (!pass->gate || pass->gate ()))
1622 {
1623 /* If a timevar is present, start it. */
1624 if (pass->tv_id)
1625 timevar_push (pass->tv_id);
1626
1627 ipa_pass->write_summary (set);
1628
1629 /* If a timevar is present, start it. */
1630 if (pass->tv_id)
1631 timevar_pop (pass->tv_id);
1632 }
1633
1634 if (pass->sub && pass->sub->type != GIMPLE_PASS)
1635 ipa_write_summaries_2 (pass->sub, set, state);
1636
1637 pass = pass->next;
1638 }
1639 }
1640
1641 /* Helper function of ipa_write_summaries. Creates and destroys the
1642 decl state and calls ipa_write_summaries_2 for all passes that have
1643 summaries. SET is the set of nodes to be written. */
1644
1645 static void
1646 ipa_write_summaries_1 (cgraph_node_set set)
1647 {
1648 struct lto_out_decl_state *state = lto_new_out_decl_state ();
1649 lto_push_out_decl_state (state);
1650
1651 if (!flag_wpa)
1652 ipa_write_summaries_2 (all_regular_ipa_passes, set, state);
1653 ipa_write_summaries_2 (all_lto_gen_passes, set, state);
1654
1655 gcc_assert (lto_get_out_decl_state () == state);
1656 lto_pop_out_decl_state ();
1657 lto_delete_out_decl_state (state);
1658 }
1659
1660 /* Write out summaries for all the nodes in the callgraph. */
1661
1662 void
1663 ipa_write_summaries (void)
1664 {
1665 cgraph_node_set set;
1666 struct cgraph_node **order;
1667 int i, order_pos;
1668
1669 if (!flag_generate_lto || errorcount || sorrycount)
1670 return;
1671
1672 lto_new_extern_inline_states ();
1673 set = cgraph_node_set_new ();
1674
1675 /* Create the callgraph set in the same order used in
1676 cgraph_expand_all_functions. This mostly facilitates debugging,
1677 since it causes the gimple file to be processed in the same order
1678 as the source code. */
1679 order = XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
1680 order_pos = cgraph_postorder (order);
1681 gcc_assert (order_pos == cgraph_n_nodes);
1682
1683 for (i = order_pos - 1; i >= 0; i--)
1684 {
1685 struct cgraph_node *node = order[i];
1686
1687 if (node->analyzed)
1688 {
1689 /* When streaming out references to statements as part of some IPA
1690 pass summary, the statements need to have uids assigned and the
1691 following does that for all the IPA passes here. Naturally, this
1692 ordering then matches the one IPA-passes get in their stmt_fixup
1693 hooks. */
1694
1695 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1696 renumber_gimple_stmt_uids ();
1697 pop_cfun ();
1698 }
1699 cgraph_node_set_add (set, node);
1700 }
1701
1702 ipa_write_summaries_1 (set);
1703 lto_delete_extern_inline_states ();
1704
1705 free (order);
1706 ggc_free (set);
1707 }
1708
1709
1710 /* Write all the summaries for the cgraph nodes in SET. If SET is
1711 NULL, write out all summaries of all nodes. */
1712
1713 void
1714 ipa_write_summaries_of_cgraph_node_set (cgraph_node_set set)
1715 {
1716 if (flag_generate_lto && !(errorcount || sorrycount))
1717 ipa_write_summaries_1 (set);
1718 }
1719
1720 /* Same as execute_pass_list but assume that subpasses of IPA passes
1721 are local passes. */
1722
1723 static void
1724 ipa_read_summaries_1 (struct opt_pass *pass)
1725 {
1726 while (pass)
1727 {
1728 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
1729
1730 gcc_assert (!current_function_decl);
1731 gcc_assert (!cfun);
1732 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1733
1734 if (pass->gate == NULL || pass->gate ())
1735 {
1736 if (pass->type == IPA_PASS && ipa_pass->read_summary)
1737 {
1738 /* If a timevar is present, start it. */
1739 if (pass->tv_id)
1740 timevar_push (pass->tv_id);
1741
1742 ipa_pass->read_summary ();
1743
1744 /* Stop timevar. */
1745 if (pass->tv_id)
1746 timevar_pop (pass->tv_id);
1747 }
1748
1749 if (pass->sub && pass->sub->type != GIMPLE_PASS)
1750 ipa_read_summaries_1 (pass->sub);
1751 }
1752 pass = pass->next;
1753 }
1754 }
1755
1756
1757 /* Read all the summaries for all_regular_ipa_passes and all_lto_gen_passes. */
1758
1759 void
1760 ipa_read_summaries (void)
1761 {
1762 if (!flag_ltrans)
1763 ipa_read_summaries_1 (all_regular_ipa_passes);
1764 ipa_read_summaries_1 (all_lto_gen_passes);
1765 }
1766
1767 /* Same as execute_pass_list but assume that subpasses of IPA passes
1768 are local passes. */
1769 void
1770 execute_ipa_pass_list (struct opt_pass *pass)
1771 {
1772 do
1773 {
1774 gcc_assert (!current_function_decl);
1775 gcc_assert (!cfun);
1776 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
1777 if (execute_one_pass (pass) && pass->sub)
1778 {
1779 if (pass->sub->type == GIMPLE_PASS)
1780 {
1781 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_START, NULL);
1782 do_per_function_toporder ((void (*)(void *))execute_pass_list,
1783 pass->sub);
1784 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_END, NULL);
1785 }
1786 else if (pass->sub->type == SIMPLE_IPA_PASS
1787 || pass->sub->type == IPA_PASS)
1788 execute_ipa_pass_list (pass->sub);
1789 else
1790 gcc_unreachable ();
1791 }
1792 gcc_assert (!current_function_decl);
1793 cgraph_process_new_functions ();
1794 pass = pass->next;
1795 }
1796 while (pass);
1797 }
1798
1799 /* Execute stmt fixup hooks of all passes in PASS for NODE and STMTS. */
1800
1801 static void
1802 execute_ipa_stmt_fixups (struct opt_pass *pass,
1803 struct cgraph_node *node, gimple *stmts)
1804 {
1805 while (pass)
1806 {
1807 /* Execute all of the IPA_PASSes in the list. */
1808 if (pass->type == IPA_PASS
1809 && (!pass->gate || pass->gate ()))
1810 {
1811 struct ipa_opt_pass_d *ipa_pass = (struct ipa_opt_pass_d *) pass;
1812
1813 if (ipa_pass->stmt_fixup)
1814 {
1815 pass_init_dump_file (pass);
1816 /* If a timevar is present, start it. */
1817 if (pass->tv_id)
1818 timevar_push (pass->tv_id);
1819
1820 ipa_pass->stmt_fixup (node, stmts);
1821
1822 /* Stop timevar. */
1823 if (pass->tv_id)
1824 timevar_pop (pass->tv_id);
1825 pass_fini_dump_file (pass);
1826 }
1827 if (pass->sub)
1828 execute_ipa_stmt_fixups (pass->sub, node, stmts);
1829 }
1830 pass = pass->next;
1831 }
1832 }
1833
1834 /* Execute stmt fixup hooks of all IPA passes for NODE and STMTS. */
1835
1836 void
1837 execute_all_ipa_stmt_fixups (struct cgraph_node *node, gimple *stmts)
1838 {
1839 execute_ipa_stmt_fixups (all_regular_ipa_passes, node, stmts);
1840 }
1841
1842
1843 extern void debug_properties (unsigned int);
1844 extern void dump_properties (FILE *, unsigned int);
1845
1846 void
1847 dump_properties (FILE *dump, unsigned int props)
1848 {
1849 fprintf (dump, "Properties:\n");
1850 if (props & PROP_gimple_any)
1851 fprintf (dump, "PROP_gimple_any\n");
1852 if (props & PROP_gimple_lcf)
1853 fprintf (dump, "PROP_gimple_lcf\n");
1854 if (props & PROP_gimple_leh)
1855 fprintf (dump, "PROP_gimple_leh\n");
1856 if (props & PROP_cfg)
1857 fprintf (dump, "PROP_cfg\n");
1858 if (props & PROP_referenced_vars)
1859 fprintf (dump, "PROP_referenced_vars\n");
1860 if (props & PROP_ssa)
1861 fprintf (dump, "PROP_ssa\n");
1862 if (props & PROP_no_crit_edges)
1863 fprintf (dump, "PROP_no_crit_edges\n");
1864 if (props & PROP_rtl)
1865 fprintf (dump, "PROP_rtl\n");
1866 if (props & PROP_gimple_lomp)
1867 fprintf (dump, "PROP_gimple_lomp\n");
1868 }
1869
1870 void
1871 debug_properties (unsigned int props)
1872 {
1873 dump_properties (stderr, props);
1874 }
1875
1876 /* Called by local passes to see if function is called by already processed nodes.
1877 Because we process nodes in topological order, this means that function is
1878 in recursive cycle or we introduced new direct calls. */
1879 bool
1880 function_called_by_processed_nodes_p (void)
1881 {
1882 struct cgraph_edge *e;
1883 for (e = cgraph_node (current_function_decl)->callers; e; e = e->next_caller)
1884 {
1885 if (e->caller->decl == current_function_decl)
1886 continue;
1887 if (!e->caller->analyzed)
1888 continue;
1889 if (TREE_ASM_WRITTEN (e->caller->decl))
1890 continue;
1891 if (!e->caller->process && !e->caller->global.inlined_to)
1892 break;
1893 }
1894 if (dump_file && e)
1895 {
1896 fprintf (dump_file, "Already processed call to:\n");
1897 dump_cgraph_node (dump_file, e->caller);
1898 }
1899 return e != NULL;
1900 }
1901
1902 #include "gt-passes.h"