[PATCH][ARM]Fix addsi3_compare_op2 pattern.
[gcc.git] / gcc / passes.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 /* This is the top level of cc1/c++.
21 It parses command args, opens files, invokes the various passes
22 in the proper order, and counts the time used by each.
23 Error messages and low-level interface to malloc also handled here. */
24
25 #include "config.h"
26 #include "system.h"
27 #include "coretypes.h"
28 #include "backend.h"
29 #include "target.h"
30 #include "rtl.h"
31 #include "tree.h"
32 #include "gimple.h"
33 #include "cfghooks.h"
34 #include "df.h"
35 #include "tm_p.h"
36 #include "ssa.h"
37 #include "emit-rtl.h"
38 #include "cgraph.h"
39 #include "lto-streamer.h"
40 #include "fold-const.h"
41 #include "varasm.h"
42 #include "output.h"
43 #include "graph.h"
44 #include "debug.h"
45 #include "cfgloop.h"
46 #include "value-prof.h"
47 #include "tree-cfg.h"
48 #include "tree-ssa-loop-manip.h"
49 #include "tree-into-ssa.h"
50 #include "tree-dfa.h"
51 #include "tree-ssa.h"
52 #include "tree-pass.h"
53 #include "plugin.h"
54 #include "ipa-utils.h"
55 #include "tree-pretty-print.h" /* for dump_function_header */
56 #include "context.h"
57 #include "pass_manager.h"
58 #include "cfgrtl.h"
59 #include "tree-ssa-live.h" /* For remove_unused_locals. */
60 #include "tree-cfgcleanup.h"
61
62 using namespace gcc;
63
64 /* This is used for debugging. It allows the current pass to printed
65 from anywhere in compilation.
66 The variable current_pass is also used for statistics and plugins. */
67 opt_pass *current_pass;
68
69 static void register_pass_name (opt_pass *, const char *);
70
71 /* Most passes are single-instance (within their context) and thus don't
72 need to implement cloning, but passes that support multiple instances
73 *must* provide their own implementation of the clone method.
74
75 Handle this by providing a default implemenation, but make it a fatal
76 error to call it. */
77
78 opt_pass *
79 opt_pass::clone ()
80 {
81 internal_error ("pass %s does not support cloning", name);
82 }
83
84 bool
85 opt_pass::gate (function *)
86 {
87 return true;
88 }
89
90 unsigned int
91 opt_pass::execute (function *)
92 {
93 return 0;
94 }
95
96 opt_pass::opt_pass (const pass_data &data, context *ctxt)
97 : pass_data (data),
98 sub (NULL),
99 next (NULL),
100 static_pass_number (0),
101 m_ctxt (ctxt)
102 {
103 }
104
105
106 void
107 pass_manager::execute_early_local_passes ()
108 {
109 execute_pass_list (cfun, pass_build_ssa_passes_1->sub);
110 if (flag_check_pointer_bounds)
111 execute_pass_list (cfun, pass_chkp_instrumentation_passes_1->sub);
112 execute_pass_list (cfun, pass_local_optimization_passes_1->sub);
113 }
114
115 unsigned int
116 pass_manager::execute_pass_mode_switching ()
117 {
118 return pass_mode_switching_1->execute (cfun);
119 }
120
121
122 /* Call from anywhere to find out what pass this is. Useful for
123 printing out debugging information deep inside an service
124 routine. */
125 void
126 print_current_pass (FILE *file)
127 {
128 if (current_pass)
129 fprintf (file, "current pass = %s (%d)\n",
130 current_pass->name, current_pass->static_pass_number);
131 else
132 fprintf (file, "no current pass.\n");
133 }
134
135
136 /* Call from the debugger to get the current pass name. */
137 DEBUG_FUNCTION void
138 debug_pass (void)
139 {
140 print_current_pass (stderr);
141 }
142
143
144
145 /* Global variables used to communicate with passes. */
146 bool in_gimple_form;
147 bool first_pass_instance;
148
149
150 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
151 and TYPE_DECL nodes.
152
153 This does nothing for local (non-static) variables, unless the
154 variable is a register variable with DECL_ASSEMBLER_NAME set. In
155 that case, or if the variable is not an automatic, it sets up the
156 RTL and outputs any assembler code (label definition, storage
157 allocation and initialization).
158
159 DECL is the declaration. TOP_LEVEL is nonzero
160 if this declaration is not within a function. */
161
162 void
163 rest_of_decl_compilation (tree decl,
164 int top_level,
165 int at_end)
166 {
167 bool finalize = true;
168
169 /* We deferred calling assemble_alias so that we could collect
170 other attributes such as visibility. Emit the alias now. */
171 if (!in_lto_p)
172 {
173 tree alias;
174 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
175 if (alias)
176 {
177 alias = TREE_VALUE (TREE_VALUE (alias));
178 alias = get_identifier (TREE_STRING_POINTER (alias));
179 /* A quirk of the initial implementation of aliases required that the
180 user add "extern" to all of them. Which is silly, but now
181 historical. Do note that the symbol is in fact locally defined. */
182 DECL_EXTERNAL (decl) = 0;
183 TREE_STATIC (decl) = 1;
184 assemble_alias (decl, alias);
185 finalize = false;
186 }
187 }
188
189 /* Can't defer this, because it needs to happen before any
190 later function definitions are processed. */
191 if (DECL_ASSEMBLER_NAME_SET_P (decl) && DECL_REGISTER (decl))
192 make_decl_rtl (decl);
193
194 /* Forward declarations for nested functions are not "external",
195 but we need to treat them as if they were. */
196 if (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
197 || TREE_CODE (decl) == FUNCTION_DECL)
198 {
199 timevar_push (TV_VARCONST);
200
201 /* Don't output anything when a tentative file-scope definition
202 is seen. But at end of compilation, do output code for them.
203
204 We do output all variables and rely on
205 callgraph code to defer them except for forward declarations
206 (see gcc.c-torture/compile/920624-1.c) */
207 if ((at_end
208 || !DECL_DEFER_OUTPUT (decl)
209 || DECL_INITIAL (decl))
210 && (TREE_CODE (decl) != VAR_DECL || !DECL_HAS_VALUE_EXPR_P (decl))
211 && !DECL_EXTERNAL (decl))
212 {
213 /* When reading LTO unit, we also read varpool, so do not
214 rebuild it. */
215 if (in_lto_p && !at_end)
216 ;
217 else if (finalize && TREE_CODE (decl) != FUNCTION_DECL)
218 varpool_node::finalize_decl (decl);
219 }
220
221 #ifdef ASM_FINISH_DECLARE_OBJECT
222 if (decl == last_assemble_variable_decl)
223 {
224 ASM_FINISH_DECLARE_OBJECT (asm_out_file, decl,
225 top_level, at_end);
226 }
227 #endif
228
229 /* Now that we have activated any function-specific attributes
230 that might affect function decl, particularly align, relayout it. */
231 if (TREE_CODE (decl) == FUNCTION_DECL)
232 targetm.target_option.relayout_function (decl);
233
234 timevar_pop (TV_VARCONST);
235 }
236 else if (TREE_CODE (decl) == TYPE_DECL
237 /* Like in rest_of_type_compilation, avoid confusing the debug
238 information machinery when there are errors. */
239 && !seen_error ())
240 {
241 timevar_push (TV_SYMOUT);
242 debug_hooks->type_decl (decl, !top_level);
243 timevar_pop (TV_SYMOUT);
244 }
245
246 /* Let cgraph know about the existence of variables. */
247 if (in_lto_p && !at_end)
248 ;
249 else if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl)
250 && TREE_STATIC (decl))
251 varpool_node::get_create (decl);
252
253 /* Generate early debug for global variables. Any local variables will
254 be handled by either handling reachable functions from
255 finalize_compilation_unit (and by consequence, locally scoped
256 symbols), or by rest_of_type_compilation below.
257
258 Also, pick up function prototypes, which will be mostly ignored
259 by the different early_global_decl() hooks, but will at least be
260 used by Go's hijack of the debug_hooks to implement
261 -fdump-go-spec. */
262 if (!in_lto_p
263 && (TREE_CODE (decl) != FUNCTION_DECL
264 /* This will pick up function prototypes with no bodies,
265 which are not visible in finalize_compilation_unit()
266 while iterating with FOR_EACH_*_FUNCTION through the
267 symbol table. */
268 || !DECL_SAVED_TREE (decl))
269
270 /* We need to check both decl_function_context and
271 current_function_decl here to make sure local extern
272 declarations end up with the correct context.
273
274 For local extern declarations, decl_function_context is
275 empty, but current_function_decl is set to the function where
276 the extern was declared . Without the check for
277 !current_function_decl below, the local extern ends up
278 incorrectly with a top-level context.
279
280 For example:
281
282 namespace S
283 {
284 int
285 f()
286 {
287 {
288 int i = 42;
289 {
290 extern int i; // Local extern declaration.
291 return i;
292 }
293 }
294 }
295 }
296 */
297 && !decl_function_context (decl)
298 && !current_function_decl
299 && DECL_SOURCE_LOCATION (decl) != BUILTINS_LOCATION
300 && (!decl_type_context (decl)
301 /* If we created a varpool node for the decl make sure to
302 call early_global_decl. Otherwise we miss changes
303 introduced by member definitions like
304 struct A { static int staticdatamember; };
305 int A::staticdatamember;
306 and thus have incomplete early debug and late debug
307 called from varpool node removal fails to handle it
308 properly. */
309 || (finalize
310 && TREE_CODE (decl) == VAR_DECL
311 && TREE_STATIC (decl) && !DECL_EXTERNAL (decl)))
312 /* Avoid confusing the debug information machinery when there are
313 errors. */
314 && !seen_error ())
315 (*debug_hooks->early_global_decl) (decl);
316 }
317
318 /* Called after finishing a record, union or enumeral type. */
319
320 void
321 rest_of_type_compilation (tree type, int toplev)
322 {
323 /* Avoid confusing the debug information machinery when there are
324 errors. */
325 if (seen_error ())
326 return;
327
328 timevar_push (TV_SYMOUT);
329 debug_hooks->type_decl (TYPE_STUB_DECL (type), !toplev);
330 timevar_pop (TV_SYMOUT);
331 }
332
333 \f
334
335 void
336 pass_manager::
337 finish_optimization_passes (void)
338 {
339 int i;
340 struct dump_file_info *dfi;
341 char *name;
342 gcc::dump_manager *dumps = m_ctxt->get_dumps ();
343
344 timevar_push (TV_DUMP);
345 if (profile_arc_flag || flag_test_coverage || flag_branch_probabilities)
346 {
347 dumps->dump_start (pass_profile_1->static_pass_number, NULL);
348 end_branch_prob ();
349 dumps->dump_finish (pass_profile_1->static_pass_number);
350 }
351
352 if (optimize > 0)
353 {
354 dumps->dump_start (pass_profile_1->static_pass_number, NULL);
355 print_combine_total_stats ();
356 dumps->dump_finish (pass_profile_1->static_pass_number);
357 }
358
359 /* Do whatever is necessary to finish printing the graphs. */
360 for (i = TDI_end; (dfi = dumps->get_dump_file_info (i)) != NULL; ++i)
361 if (dumps->dump_initialized_p (i)
362 && (dfi->pflags & TDF_GRAPH) != 0
363 && (name = dumps->get_dump_file_name (i)) != NULL)
364 {
365 finish_graph_dump_file (name);
366 free (name);
367 }
368
369 timevar_pop (TV_DUMP);
370 }
371
372 static unsigned int
373 execute_build_ssa_passes (void)
374 {
375 /* Once this pass (and its sub-passes) are complete, all functions
376 will be in SSA form. Technically this state change is happening
377 a tad early, since the sub-passes have not yet run, but since
378 none of the sub-passes are IPA passes and do not create new
379 functions, this is ok. We're setting this value for the benefit
380 of IPA passes that follow. */
381 if (symtab->state < IPA_SSA)
382 symtab->state = IPA_SSA;
383 return 0;
384 }
385
386 namespace {
387
388 const pass_data pass_data_build_ssa_passes =
389 {
390 SIMPLE_IPA_PASS, /* type */
391 "build_ssa_passes", /* name */
392 OPTGROUP_NONE, /* optinfo_flags */
393 TV_EARLY_LOCAL, /* tv_id */
394 0, /* properties_required */
395 0, /* properties_provided */
396 0, /* properties_destroyed */
397 0, /* todo_flags_start */
398 /* todo_flags_finish is executed before subpases. For this reason
399 it makes no sense to remove unreachable functions here. */
400 0, /* todo_flags_finish */
401 };
402
403 class pass_build_ssa_passes : public simple_ipa_opt_pass
404 {
405 public:
406 pass_build_ssa_passes (gcc::context *ctxt)
407 : simple_ipa_opt_pass (pass_data_build_ssa_passes, ctxt)
408 {}
409
410 /* opt_pass methods: */
411 virtual bool gate (function *)
412 {
413 /* Don't bother doing anything if the program has errors. */
414 return (!seen_error () && !in_lto_p);
415 }
416
417 virtual unsigned int execute (function *)
418 {
419 return execute_build_ssa_passes ();
420 }
421
422 }; // class pass_build_ssa_passes
423
424 const pass_data pass_data_chkp_instrumentation_passes =
425 {
426 SIMPLE_IPA_PASS, /* type */
427 "chkp_passes", /* name */
428 OPTGROUP_NONE, /* optinfo_flags */
429 TV_NONE, /* tv_id */
430 0, /* properties_required */
431 0, /* properties_provided */
432 0, /* properties_destroyed */
433 0, /* todo_flags_start */
434 0, /* todo_flags_finish */
435 };
436
437 class pass_chkp_instrumentation_passes : public simple_ipa_opt_pass
438 {
439 public:
440 pass_chkp_instrumentation_passes (gcc::context *ctxt)
441 : simple_ipa_opt_pass (pass_data_chkp_instrumentation_passes, ctxt)
442 {}
443
444 /* opt_pass methods: */
445 virtual bool gate (function *)
446 {
447 /* Don't bother doing anything if the program has errors. */
448 return (flag_check_pointer_bounds
449 && !seen_error () && !in_lto_p);
450 }
451
452 }; // class pass_chkp_instrumentation_passes
453
454 const pass_data pass_data_local_optimization_passes =
455 {
456 SIMPLE_IPA_PASS, /* type */
457 "opt_local_passes", /* name */
458 OPTGROUP_NONE, /* optinfo_flags */
459 TV_NONE, /* tv_id */
460 0, /* properties_required */
461 0, /* properties_provided */
462 0, /* properties_destroyed */
463 0, /* todo_flags_start */
464 0, /* todo_flags_finish */
465 };
466
467 class pass_local_optimization_passes : public simple_ipa_opt_pass
468 {
469 public:
470 pass_local_optimization_passes (gcc::context *ctxt)
471 : simple_ipa_opt_pass (pass_data_local_optimization_passes, ctxt)
472 {}
473
474 /* opt_pass methods: */
475 virtual bool gate (function *)
476 {
477 /* Don't bother doing anything if the program has errors. */
478 return (!seen_error () && !in_lto_p);
479 }
480
481 }; // class pass_local_optimization_passes
482
483 } // anon namespace
484
485 simple_ipa_opt_pass *
486 make_pass_build_ssa_passes (gcc::context *ctxt)
487 {
488 return new pass_build_ssa_passes (ctxt);
489 }
490
491 simple_ipa_opt_pass *
492 make_pass_chkp_instrumentation_passes (gcc::context *ctxt)
493 {
494 return new pass_chkp_instrumentation_passes (ctxt);
495 }
496
497 simple_ipa_opt_pass *
498 make_pass_local_optimization_passes (gcc::context *ctxt)
499 {
500 return new pass_local_optimization_passes (ctxt);
501 }
502
503 namespace {
504
505 const pass_data pass_data_all_early_optimizations =
506 {
507 GIMPLE_PASS, /* type */
508 "early_optimizations", /* name */
509 OPTGROUP_NONE, /* optinfo_flags */
510 TV_NONE, /* tv_id */
511 0, /* properties_required */
512 0, /* properties_provided */
513 0, /* properties_destroyed */
514 0, /* todo_flags_start */
515 0, /* todo_flags_finish */
516 };
517
518 class pass_all_early_optimizations : public gimple_opt_pass
519 {
520 public:
521 pass_all_early_optimizations (gcc::context *ctxt)
522 : gimple_opt_pass (pass_data_all_early_optimizations, ctxt)
523 {}
524
525 /* opt_pass methods: */
526 virtual bool gate (function *)
527 {
528 return (optimize >= 1
529 /* Don't bother doing anything if the program has errors. */
530 && !seen_error ());
531 }
532
533 }; // class pass_all_early_optimizations
534
535 } // anon namespace
536
537 static gimple_opt_pass *
538 make_pass_all_early_optimizations (gcc::context *ctxt)
539 {
540 return new pass_all_early_optimizations (ctxt);
541 }
542
543 namespace {
544
545 const pass_data pass_data_all_optimizations =
546 {
547 GIMPLE_PASS, /* type */
548 "*all_optimizations", /* name */
549 OPTGROUP_NONE, /* optinfo_flags */
550 TV_OPTIMIZE, /* tv_id */
551 0, /* properties_required */
552 0, /* properties_provided */
553 0, /* properties_destroyed */
554 0, /* todo_flags_start */
555 0, /* todo_flags_finish */
556 };
557
558 class pass_all_optimizations : public gimple_opt_pass
559 {
560 public:
561 pass_all_optimizations (gcc::context *ctxt)
562 : gimple_opt_pass (pass_data_all_optimizations, ctxt)
563 {}
564
565 /* opt_pass methods: */
566 virtual bool gate (function *) { return optimize >= 1 && !optimize_debug; }
567
568 }; // class pass_all_optimizations
569
570 } // anon namespace
571
572 static gimple_opt_pass *
573 make_pass_all_optimizations (gcc::context *ctxt)
574 {
575 return new pass_all_optimizations (ctxt);
576 }
577
578 namespace {
579
580 const pass_data pass_data_all_optimizations_g =
581 {
582 GIMPLE_PASS, /* type */
583 "*all_optimizations_g", /* name */
584 OPTGROUP_NONE, /* optinfo_flags */
585 TV_OPTIMIZE, /* tv_id */
586 0, /* properties_required */
587 0, /* properties_provided */
588 0, /* properties_destroyed */
589 0, /* todo_flags_start */
590 0, /* todo_flags_finish */
591 };
592
593 class pass_all_optimizations_g : public gimple_opt_pass
594 {
595 public:
596 pass_all_optimizations_g (gcc::context *ctxt)
597 : gimple_opt_pass (pass_data_all_optimizations_g, ctxt)
598 {}
599
600 /* opt_pass methods: */
601 virtual bool gate (function *) { return optimize >= 1 && optimize_debug; }
602
603 }; // class pass_all_optimizations_g
604
605 } // anon namespace
606
607 static gimple_opt_pass *
608 make_pass_all_optimizations_g (gcc::context *ctxt)
609 {
610 return new pass_all_optimizations_g (ctxt);
611 }
612
613 namespace {
614
615 const pass_data pass_data_rest_of_compilation =
616 {
617 RTL_PASS, /* type */
618 "*rest_of_compilation", /* name */
619 OPTGROUP_NONE, /* optinfo_flags */
620 TV_REST_OF_COMPILATION, /* tv_id */
621 PROP_rtl, /* properties_required */
622 0, /* properties_provided */
623 0, /* properties_destroyed */
624 0, /* todo_flags_start */
625 0, /* todo_flags_finish */
626 };
627
628 class pass_rest_of_compilation : public rtl_opt_pass
629 {
630 public:
631 pass_rest_of_compilation (gcc::context *ctxt)
632 : rtl_opt_pass (pass_data_rest_of_compilation, ctxt)
633 {}
634
635 /* opt_pass methods: */
636 virtual bool gate (function *)
637 {
638 /* Early return if there were errors. We can run afoul of our
639 consistency checks, and there's not really much point in fixing them. */
640 return !(rtl_dump_and_exit || flag_syntax_only || seen_error ());
641 }
642
643 }; // class pass_rest_of_compilation
644
645 } // anon namespace
646
647 static rtl_opt_pass *
648 make_pass_rest_of_compilation (gcc::context *ctxt)
649 {
650 return new pass_rest_of_compilation (ctxt);
651 }
652
653 namespace {
654
655 const pass_data pass_data_postreload =
656 {
657 RTL_PASS, /* type */
658 "*all-postreload", /* name */
659 OPTGROUP_NONE, /* optinfo_flags */
660 TV_POSTRELOAD, /* tv_id */
661 PROP_rtl, /* properties_required */
662 0, /* properties_provided */
663 0, /* properties_destroyed */
664 0, /* todo_flags_start */
665 0, /* todo_flags_finish */
666 };
667
668 class pass_postreload : public rtl_opt_pass
669 {
670 public:
671 pass_postreload (gcc::context *ctxt)
672 : rtl_opt_pass (pass_data_postreload, ctxt)
673 {}
674
675 /* opt_pass methods: */
676 virtual bool gate (function *) { return reload_completed; }
677
678 }; // class pass_postreload
679
680 } // anon namespace
681
682 static rtl_opt_pass *
683 make_pass_postreload (gcc::context *ctxt)
684 {
685 return new pass_postreload (ctxt);
686 }
687
688 namespace {
689
690 const pass_data pass_data_late_compilation =
691 {
692 RTL_PASS, /* type */
693 "*all-late_compilation", /* name */
694 OPTGROUP_NONE, /* optinfo_flags */
695 TV_LATE_COMPILATION, /* tv_id */
696 PROP_rtl, /* properties_required */
697 0, /* properties_provided */
698 0, /* properties_destroyed */
699 0, /* todo_flags_start */
700 0, /* todo_flags_finish */
701 };
702
703 class pass_late_compilation : public rtl_opt_pass
704 {
705 public:
706 pass_late_compilation (gcc::context *ctxt)
707 : rtl_opt_pass (pass_data_late_compilation, ctxt)
708 {}
709
710 /* opt_pass methods: */
711 virtual bool gate (function *)
712 {
713 return reload_completed || targetm.no_register_allocation;
714 }
715
716 }; // class pass_late_compilation
717
718 } // anon namespace
719
720 static rtl_opt_pass *
721 make_pass_late_compilation (gcc::context *ctxt)
722 {
723 return new pass_late_compilation (ctxt);
724 }
725
726
727
728 /* Set the static pass number of pass PASS to ID and record that
729 in the mapping from static pass number to pass. */
730
731 void
732 pass_manager::
733 set_pass_for_id (int id, opt_pass *pass)
734 {
735 pass->static_pass_number = id;
736 if (passes_by_id_size <= id)
737 {
738 passes_by_id = XRESIZEVEC (opt_pass *, passes_by_id, id + 1);
739 memset (passes_by_id + passes_by_id_size, 0,
740 (id + 1 - passes_by_id_size) * sizeof (void *));
741 passes_by_id_size = id + 1;
742 }
743 passes_by_id[id] = pass;
744 }
745
746 /* Return the pass with the static pass number ID. */
747
748 opt_pass *
749 pass_manager::get_pass_for_id (int id) const
750 {
751 if (id >= passes_by_id_size)
752 return NULL;
753 return passes_by_id[id];
754 }
755
756 /* Iterate over the pass tree allocating dump file numbers. We want
757 to do this depth first, and independent of whether the pass is
758 enabled or not. */
759
760 void
761 register_one_dump_file (opt_pass *pass)
762 {
763 g->get_passes ()->register_one_dump_file (pass);
764 }
765
766 void
767 pass_manager::register_one_dump_file (opt_pass *pass)
768 {
769 char *dot_name, *flag_name, *glob_name;
770 const char *name, *full_name, *prefix;
771 char num[10];
772 int flags, id;
773 int optgroup_flags = OPTGROUP_NONE;
774 gcc::dump_manager *dumps = m_ctxt->get_dumps ();
775
776 /* See below in next_pass_1. */
777 num[0] = '\0';
778 if (pass->static_pass_number != -1)
779 sprintf (num, "%d", ((int) pass->static_pass_number < 0
780 ? 1 : pass->static_pass_number));
781
782 /* The name is both used to identify the pass for the purposes of plugins,
783 and to specify dump file name and option.
784 The latter two might want something short which is not quite unique; for
785 that reason, we may have a disambiguating prefix, followed by a space
786 to mark the start of the following dump file name / option string. */
787 name = strchr (pass->name, ' ');
788 name = name ? name + 1 : pass->name;
789 dot_name = concat (".", name, num, NULL);
790 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
791 {
792 prefix = "ipa-";
793 flags = TDF_IPA;
794 optgroup_flags |= OPTGROUP_IPA;
795 }
796 else if (pass->type == GIMPLE_PASS)
797 {
798 prefix = "tree-";
799 flags = TDF_TREE;
800 }
801 else
802 {
803 prefix = "rtl-";
804 flags = TDF_RTL;
805 }
806
807 flag_name = concat (prefix, name, num, NULL);
808 glob_name = concat (prefix, name, NULL);
809 optgroup_flags |= pass->optinfo_flags;
810 /* For any passes that do not have an optgroup set, and which are not
811 IPA passes setup above, set the optgroup to OPTGROUP_OTHER so that
812 any dump messages are emitted properly under -fopt-info(-optall). */
813 if (optgroup_flags == OPTGROUP_NONE)
814 optgroup_flags = OPTGROUP_OTHER;
815 id = dumps->dump_register (dot_name, flag_name, glob_name, flags,
816 optgroup_flags,
817 true);
818 set_pass_for_id (id, pass);
819 full_name = concat (prefix, pass->name, num, NULL);
820 register_pass_name (pass, full_name);
821 free (CONST_CAST (char *, full_name));
822 }
823
824 /* Register the dump files for the pass_manager starting at PASS. */
825
826 void
827 pass_manager::register_dump_files (opt_pass *pass)
828 {
829 do
830 {
831 if (pass->name && pass->name[0] != '*')
832 register_one_dump_file (pass);
833
834 if (pass->sub)
835 register_dump_files (pass->sub);
836
837 pass = pass->next;
838 }
839 while (pass);
840 }
841
842 static hash_map<nofree_string_hash, opt_pass *> *name_to_pass_map;
843
844 /* Register PASS with NAME. */
845
846 static void
847 register_pass_name (opt_pass *pass, const char *name)
848 {
849 if (!name_to_pass_map)
850 name_to_pass_map = new hash_map<nofree_string_hash, opt_pass *> (256);
851
852 if (name_to_pass_map->get (name))
853 return; /* Ignore plugin passes. */
854
855 const char *unique_name = xstrdup (name);
856 name_to_pass_map->put (unique_name, pass);
857 }
858
859 /* Map from pass id to canonicalized pass name. */
860
861 typedef const char *char_ptr;
862 static vec<char_ptr> pass_tab = vNULL;
863
864 /* Callback function for traversing NAME_TO_PASS_MAP. */
865
866 bool
867 passes_pass_traverse (const char *const &name, opt_pass *const &pass, void *)
868 {
869 gcc_assert (pass->static_pass_number > 0);
870 gcc_assert (pass_tab.exists ());
871
872 pass_tab[pass->static_pass_number] = name;
873
874 return 1;
875 }
876
877 /* The function traverses NAME_TO_PASS_MAP and creates a pass info
878 table for dumping purpose. */
879
880 static void
881 create_pass_tab (void)
882 {
883 if (!flag_dump_passes)
884 return;
885
886 pass_tab.safe_grow_cleared (g->get_passes ()->passes_by_id_size + 1);
887 name_to_pass_map->traverse <void *, passes_pass_traverse> (NULL);
888 }
889
890 static bool override_gate_status (opt_pass *, tree, bool);
891
892 /* Dump the instantiated name for PASS. IS_ON indicates if PASS
893 is turned on or not. */
894
895 static void
896 dump_one_pass (opt_pass *pass, int pass_indent)
897 {
898 int indent = 3 * pass_indent;
899 const char *pn;
900 bool is_on, is_really_on;
901
902 is_on = pass->gate (cfun);
903 is_really_on = override_gate_status (pass, current_function_decl, is_on);
904
905 if (pass->static_pass_number <= 0)
906 pn = pass->name;
907 else
908 pn = pass_tab[pass->static_pass_number];
909
910 fprintf (stderr, "%*s%-40s%*s:%s%s\n", indent, " ", pn,
911 (15 - indent < 0 ? 0 : 15 - indent), " ",
912 is_on ? " ON" : " OFF",
913 ((!is_on) == (!is_really_on) ? ""
914 : (is_really_on ? " (FORCED_ON)" : " (FORCED_OFF)")));
915 }
916
917 /* Dump pass list PASS with indentation INDENT. */
918
919 static void
920 dump_pass_list (opt_pass *pass, int indent)
921 {
922 do
923 {
924 dump_one_pass (pass, indent);
925 if (pass->sub)
926 dump_pass_list (pass->sub, indent + 1);
927 pass = pass->next;
928 }
929 while (pass);
930 }
931
932 /* Dump all optimization passes. */
933
934 void
935 dump_passes (void)
936 {
937 g->get_passes ()->dump_passes ();
938 }
939
940 void
941 pass_manager::dump_passes () const
942 {
943 push_dummy_function (true);
944
945 create_pass_tab ();
946
947 dump_pass_list (all_lowering_passes, 1);
948 dump_pass_list (all_small_ipa_passes, 1);
949 dump_pass_list (all_regular_ipa_passes, 1);
950 dump_pass_list (all_late_ipa_passes, 1);
951 dump_pass_list (all_passes, 1);
952
953 pop_dummy_function ();
954 }
955
956 /* Returns the pass with NAME. */
957
958 static opt_pass *
959 get_pass_by_name (const char *name)
960 {
961 opt_pass **p = name_to_pass_map->get (name);
962 if (p)
963 return *p;
964
965 return NULL;
966 }
967
968
969 /* Range [start, last]. */
970
971 struct uid_range
972 {
973 unsigned int start;
974 unsigned int last;
975 const char *assem_name;
976 struct uid_range *next;
977 };
978
979 typedef struct uid_range *uid_range_p;
980
981
982 static vec<uid_range_p>
983 enabled_pass_uid_range_tab = vNULL;
984 static vec<uid_range_p>
985 disabled_pass_uid_range_tab = vNULL;
986
987
988 /* Parse option string for -fdisable- and -fenable-
989 The syntax of the options:
990
991 -fenable-<pass_name>
992 -fdisable-<pass_name>
993
994 -fenable-<pass_name>=s1:e1,s2:e2,...
995 -fdisable-<pass_name>=s1:e1,s2:e2,...
996 */
997
998 static void
999 enable_disable_pass (const char *arg, bool is_enable)
1000 {
1001 opt_pass *pass;
1002 char *range_str, *phase_name;
1003 char *argstr = xstrdup (arg);
1004 vec<uid_range_p> *tab = 0;
1005
1006 range_str = strchr (argstr,'=');
1007 if (range_str)
1008 {
1009 *range_str = '\0';
1010 range_str++;
1011 }
1012
1013 phase_name = argstr;
1014 if (!*phase_name)
1015 {
1016 if (is_enable)
1017 error ("unrecognized option -fenable");
1018 else
1019 error ("unrecognized option -fdisable");
1020 free (argstr);
1021 return;
1022 }
1023 pass = get_pass_by_name (phase_name);
1024 if (!pass || pass->static_pass_number == -1)
1025 {
1026 if (is_enable)
1027 error ("unknown pass %s specified in -fenable", phase_name);
1028 else
1029 error ("unknown pass %s specified in -fdisable", phase_name);
1030 free (argstr);
1031 return;
1032 }
1033
1034 if (is_enable)
1035 tab = &enabled_pass_uid_range_tab;
1036 else
1037 tab = &disabled_pass_uid_range_tab;
1038
1039 if ((unsigned) pass->static_pass_number >= tab->length ())
1040 tab->safe_grow_cleared (pass->static_pass_number + 1);
1041
1042 if (!range_str)
1043 {
1044 uid_range_p slot;
1045 uid_range_p new_range = XCNEW (struct uid_range);
1046
1047 new_range->start = 0;
1048 new_range->last = (unsigned)-1;
1049
1050 slot = (*tab)[pass->static_pass_number];
1051 new_range->next = slot;
1052 (*tab)[pass->static_pass_number] = new_range;
1053 if (is_enable)
1054 inform (UNKNOWN_LOCATION, "enable pass %s for functions in the range "
1055 "of [%u, %u]", phase_name, new_range->start, new_range->last);
1056 else
1057 inform (UNKNOWN_LOCATION, "disable pass %s for functions in the range "
1058 "of [%u, %u]", phase_name, new_range->start, new_range->last);
1059 }
1060 else
1061 {
1062 char *next_range = NULL;
1063 char *one_range = range_str;
1064 char *end_val = NULL;
1065
1066 do
1067 {
1068 uid_range_p slot;
1069 uid_range_p new_range;
1070 char *invalid = NULL;
1071 long start;
1072 char *func_name = NULL;
1073
1074 next_range = strchr (one_range, ',');
1075 if (next_range)
1076 {
1077 *next_range = '\0';
1078 next_range++;
1079 }
1080
1081 end_val = strchr (one_range, ':');
1082 if (end_val)
1083 {
1084 *end_val = '\0';
1085 end_val++;
1086 }
1087 start = strtol (one_range, &invalid, 10);
1088 if (*invalid || start < 0)
1089 {
1090 if (end_val || (one_range[0] >= '0'
1091 && one_range[0] <= '9'))
1092 {
1093 error ("Invalid range %s in option %s",
1094 one_range,
1095 is_enable ? "-fenable" : "-fdisable");
1096 free (argstr);
1097 return;
1098 }
1099 func_name = one_range;
1100 }
1101 if (!end_val)
1102 {
1103 new_range = XCNEW (struct uid_range);
1104 if (!func_name)
1105 {
1106 new_range->start = (unsigned) start;
1107 new_range->last = (unsigned) start;
1108 }
1109 else
1110 {
1111 new_range->start = (unsigned) -1;
1112 new_range->last = (unsigned) -1;
1113 new_range->assem_name = xstrdup (func_name);
1114 }
1115 }
1116 else
1117 {
1118 long last = strtol (end_val, &invalid, 10);
1119 if (*invalid || last < start)
1120 {
1121 error ("Invalid range %s in option %s",
1122 end_val,
1123 is_enable ? "-fenable" : "-fdisable");
1124 free (argstr);
1125 return;
1126 }
1127 new_range = XCNEW (struct uid_range);
1128 new_range->start = (unsigned) start;
1129 new_range->last = (unsigned) last;
1130 }
1131
1132 slot = (*tab)[pass->static_pass_number];
1133 new_range->next = slot;
1134 (*tab)[pass->static_pass_number] = new_range;
1135 if (is_enable)
1136 {
1137 if (new_range->assem_name)
1138 inform (UNKNOWN_LOCATION,
1139 "enable pass %s for function %s",
1140 phase_name, new_range->assem_name);
1141 else
1142 inform (UNKNOWN_LOCATION,
1143 "enable pass %s for functions in the range of [%u, %u]",
1144 phase_name, new_range->start, new_range->last);
1145 }
1146 else
1147 {
1148 if (new_range->assem_name)
1149 inform (UNKNOWN_LOCATION,
1150 "disable pass %s for function %s",
1151 phase_name, new_range->assem_name);
1152 else
1153 inform (UNKNOWN_LOCATION,
1154 "disable pass %s for functions in the range of [%u, %u]",
1155 phase_name, new_range->start, new_range->last);
1156 }
1157
1158 one_range = next_range;
1159 } while (next_range);
1160 }
1161
1162 free (argstr);
1163 }
1164
1165 /* Enable pass specified by ARG. */
1166
1167 void
1168 enable_pass (const char *arg)
1169 {
1170 enable_disable_pass (arg, true);
1171 }
1172
1173 /* Disable pass specified by ARG. */
1174
1175 void
1176 disable_pass (const char *arg)
1177 {
1178 enable_disable_pass (arg, false);
1179 }
1180
1181 /* Returns true if PASS is explicitly enabled/disabled for FUNC. */
1182
1183 static bool
1184 is_pass_explicitly_enabled_or_disabled (opt_pass *pass,
1185 tree func,
1186 vec<uid_range_p> tab)
1187 {
1188 uid_range_p slot, range;
1189 int cgraph_uid;
1190 const char *aname = NULL;
1191
1192 if (!tab.exists ()
1193 || (unsigned) pass->static_pass_number >= tab.length ()
1194 || pass->static_pass_number == -1)
1195 return false;
1196
1197 slot = tab[pass->static_pass_number];
1198 if (!slot)
1199 return false;
1200
1201 cgraph_uid = func ? cgraph_node::get (func)->uid : 0;
1202 if (func && DECL_ASSEMBLER_NAME_SET_P (func))
1203 aname = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (func));
1204
1205 range = slot;
1206 while (range)
1207 {
1208 if ((unsigned) cgraph_uid >= range->start
1209 && (unsigned) cgraph_uid <= range->last)
1210 return true;
1211 if (range->assem_name && aname
1212 && !strcmp (range->assem_name, aname))
1213 return true;
1214 range = range->next;
1215 }
1216
1217 return false;
1218 }
1219
1220
1221 /* Update static_pass_number for passes (and the flag
1222 TODO_mark_first_instance).
1223
1224 Passes are constructed with static_pass_number preinitialized to 0
1225
1226 This field is used in two different ways: initially as instance numbers
1227 of their kind, and then as ids within the entire pass manager.
1228
1229 Within pass_manager::pass_manager:
1230
1231 * In add_pass_instance(), as called by next_pass_1 in
1232 NEXT_PASS in init_optimization_passes
1233
1234 * When the initial instance of a pass within a pass manager is seen,
1235 it is flagged, and its static_pass_number is set to -1
1236
1237 * On subsequent times that it is seen, the static pass number
1238 is decremented each time, so that if there are e.g. 4 dups,
1239 they have static_pass_number -4, 2, 3, 4 respectively (note
1240 how the initial one is negative and gives the count); these
1241 can be thought of as instance numbers of the specific pass
1242
1243 * Within the register_dump_files () traversal, set_pass_for_id()
1244 is called on each pass, using these instance numbers to create
1245 dumpfile switches, and then overwriting them with a pass id,
1246 which are global to the whole pass manager (based on
1247 (TDI_end + current value of extra_dump_files_in_use) ) */
1248
1249 static void
1250 add_pass_instance (opt_pass *new_pass, bool track_duplicates,
1251 opt_pass *initial_pass)
1252 {
1253 /* Are we dealing with the first pass of its kind, or a clone? */
1254 if (new_pass != initial_pass)
1255 {
1256 /* We're dealing with a clone. */
1257 new_pass->todo_flags_start &= ~TODO_mark_first_instance;
1258
1259 /* Indicate to register_dump_files that this pass has duplicates,
1260 and so it should rename the dump file. The first instance will
1261 be -1, and be number of duplicates = -static_pass_number - 1.
1262 Subsequent instances will be > 0 and just the duplicate number. */
1263 if ((new_pass->name && new_pass->name[0] != '*') || track_duplicates)
1264 {
1265 initial_pass->static_pass_number -= 1;
1266 new_pass->static_pass_number = -initial_pass->static_pass_number;
1267 }
1268 }
1269 else
1270 {
1271 /* We're dealing with the first pass of its kind. */
1272 new_pass->todo_flags_start |= TODO_mark_first_instance;
1273 new_pass->static_pass_number = -1;
1274
1275 invoke_plugin_callbacks (PLUGIN_NEW_PASS, new_pass);
1276 }
1277 }
1278
1279 /* Add a pass to the pass list. Duplicate the pass if it's already
1280 in the list. */
1281
1282 static opt_pass **
1283 next_pass_1 (opt_pass **list, opt_pass *pass, opt_pass *initial_pass)
1284 {
1285 /* Every pass should have a name so that plugins can refer to them. */
1286 gcc_assert (pass->name != NULL);
1287
1288 add_pass_instance (pass, false, initial_pass);
1289 *list = pass;
1290
1291 return &(*list)->next;
1292 }
1293
1294 /* List node for an inserted pass instance. We need to keep track of all
1295 the newly-added pass instances (with 'added_pass_nodes' defined below)
1296 so that we can register their dump files after pass-positioning is finished.
1297 Registering dumping files needs to be post-processed or the
1298 static_pass_number of the opt_pass object would be modified and mess up
1299 the dump file names of future pass instances to be added. */
1300
1301 struct pass_list_node
1302 {
1303 opt_pass *pass;
1304 struct pass_list_node *next;
1305 };
1306
1307 static struct pass_list_node *added_pass_nodes = NULL;
1308 static struct pass_list_node *prev_added_pass_node;
1309
1310 /* Insert the pass at the proper position. Return true if the pass
1311 is successfully added.
1312
1313 NEW_PASS_INFO - new pass to be inserted
1314 PASS_LIST - root of the pass list to insert the new pass to */
1315
1316 static bool
1317 position_pass (struct register_pass_info *new_pass_info, opt_pass **pass_list)
1318 {
1319 opt_pass *pass = *pass_list, *prev_pass = NULL;
1320 bool success = false;
1321
1322 for ( ; pass; prev_pass = pass, pass = pass->next)
1323 {
1324 /* Check if the current pass is of the same type as the new pass and
1325 matches the name and the instance number of the reference pass. */
1326 if (pass->type == new_pass_info->pass->type
1327 && pass->name
1328 && !strcmp (pass->name, new_pass_info->reference_pass_name)
1329 && ((new_pass_info->ref_pass_instance_number == 0)
1330 || (new_pass_info->ref_pass_instance_number ==
1331 pass->static_pass_number)
1332 || (new_pass_info->ref_pass_instance_number == 1
1333 && pass->todo_flags_start & TODO_mark_first_instance)))
1334 {
1335 opt_pass *new_pass;
1336 struct pass_list_node *new_pass_node;
1337
1338 if (new_pass_info->ref_pass_instance_number == 0)
1339 {
1340 new_pass = new_pass_info->pass->clone ();
1341 add_pass_instance (new_pass, true, new_pass_info->pass);
1342 }
1343 else
1344 {
1345 new_pass = new_pass_info->pass;
1346 add_pass_instance (new_pass, true, new_pass);
1347 }
1348
1349 /* Insert the new pass instance based on the positioning op. */
1350 switch (new_pass_info->pos_op)
1351 {
1352 case PASS_POS_INSERT_AFTER:
1353 new_pass->next = pass->next;
1354 pass->next = new_pass;
1355
1356 /* Skip newly inserted pass to avoid repeated
1357 insertions in the case where the new pass and the
1358 existing one have the same name. */
1359 pass = new_pass;
1360 break;
1361 case PASS_POS_INSERT_BEFORE:
1362 new_pass->next = pass;
1363 if (prev_pass)
1364 prev_pass->next = new_pass;
1365 else
1366 *pass_list = new_pass;
1367 break;
1368 case PASS_POS_REPLACE:
1369 new_pass->next = pass->next;
1370 if (prev_pass)
1371 prev_pass->next = new_pass;
1372 else
1373 *pass_list = new_pass;
1374 new_pass->sub = pass->sub;
1375 new_pass->tv_id = pass->tv_id;
1376 pass = new_pass;
1377 break;
1378 default:
1379 error ("invalid pass positioning operation");
1380 return false;
1381 }
1382
1383 /* Save the newly added pass (instance) in the added_pass_nodes
1384 list so that we can register its dump file later. Note that
1385 we cannot register the dump file now because doing so will modify
1386 the static_pass_number of the opt_pass object and therefore
1387 mess up the dump file name of future instances. */
1388 new_pass_node = XCNEW (struct pass_list_node);
1389 new_pass_node->pass = new_pass;
1390 if (!added_pass_nodes)
1391 added_pass_nodes = new_pass_node;
1392 else
1393 prev_added_pass_node->next = new_pass_node;
1394 prev_added_pass_node = new_pass_node;
1395
1396 success = true;
1397 }
1398
1399 if (pass->sub && position_pass (new_pass_info, &pass->sub))
1400 success = true;
1401 }
1402
1403 return success;
1404 }
1405
1406 /* Hooks a new pass into the pass lists.
1407
1408 PASS_INFO - pass information that specifies the opt_pass object,
1409 reference pass, instance number, and how to position
1410 the pass */
1411
1412 void
1413 register_pass (struct register_pass_info *pass_info)
1414 {
1415 g->get_passes ()->register_pass (pass_info);
1416 }
1417
1418 void
1419 register_pass (opt_pass* pass, pass_positioning_ops pos,
1420 const char* ref_pass_name, int ref_pass_inst_number)
1421 {
1422 register_pass_info i;
1423 i.pass = pass;
1424 i.reference_pass_name = ref_pass_name;
1425 i.ref_pass_instance_number = ref_pass_inst_number;
1426 i.pos_op = pos;
1427
1428 g->get_passes ()->register_pass (&i);
1429 }
1430
1431 void
1432 pass_manager::register_pass (struct register_pass_info *pass_info)
1433 {
1434 bool all_instances, success;
1435 gcc::dump_manager *dumps = m_ctxt->get_dumps ();
1436
1437 /* The checks below could fail in buggy plugins. Existing GCC
1438 passes should never fail these checks, so we mention plugin in
1439 the messages. */
1440 if (!pass_info->pass)
1441 fatal_error (input_location, "plugin cannot register a missing pass");
1442
1443 if (!pass_info->pass->name)
1444 fatal_error (input_location, "plugin cannot register an unnamed pass");
1445
1446 if (!pass_info->reference_pass_name)
1447 fatal_error
1448 (input_location,
1449 "plugin cannot register pass %qs without reference pass name",
1450 pass_info->pass->name);
1451
1452 /* Try to insert the new pass to the pass lists. We need to check
1453 all five lists as the reference pass could be in one (or all) of
1454 them. */
1455 all_instances = pass_info->ref_pass_instance_number == 0;
1456 success = position_pass (pass_info, &all_lowering_passes);
1457 if (!success || all_instances)
1458 success |= position_pass (pass_info, &all_small_ipa_passes);
1459 if (!success || all_instances)
1460 success |= position_pass (pass_info, &all_regular_ipa_passes);
1461 if (!success || all_instances)
1462 success |= position_pass (pass_info, &all_late_ipa_passes);
1463 if (!success || all_instances)
1464 success |= position_pass (pass_info, &all_passes);
1465 if (!success)
1466 fatal_error
1467 (input_location,
1468 "pass %qs not found but is referenced by new pass %qs",
1469 pass_info->reference_pass_name, pass_info->pass->name);
1470
1471 /* OK, we have successfully inserted the new pass. We need to register
1472 the dump files for the newly added pass and its duplicates (if any).
1473 Because the registration of plugin/backend passes happens after the
1474 command-line options are parsed, the options that specify single
1475 pass dumping (e.g. -fdump-tree-PASSNAME) cannot be used for new
1476 passes. Therefore we currently can only enable dumping of
1477 new passes when the 'dump-all' flags (e.g. -fdump-tree-all)
1478 are specified. While doing so, we also delete the pass_list_node
1479 objects created during pass positioning. */
1480 while (added_pass_nodes)
1481 {
1482 struct pass_list_node *next_node = added_pass_nodes->next;
1483 enum tree_dump_index tdi;
1484 register_one_dump_file (added_pass_nodes->pass);
1485 if (added_pass_nodes->pass->type == SIMPLE_IPA_PASS
1486 || added_pass_nodes->pass->type == IPA_PASS)
1487 tdi = TDI_ipa_all;
1488 else if (added_pass_nodes->pass->type == GIMPLE_PASS)
1489 tdi = TDI_tree_all;
1490 else
1491 tdi = TDI_rtl_all;
1492 /* Check if dump-all flag is specified. */
1493 if (dumps->get_dump_file_info (tdi)->pstate)
1494 dumps->get_dump_file_info (added_pass_nodes->pass->static_pass_number)
1495 ->pstate = dumps->get_dump_file_info (tdi)->pstate;
1496 XDELETE (added_pass_nodes);
1497 added_pass_nodes = next_node;
1498 }
1499 }
1500
1501 /* Construct the pass tree. The sequencing of passes is driven by
1502 the cgraph routines:
1503
1504 finalize_compilation_unit ()
1505 for each node N in the cgraph
1506 cgraph_analyze_function (N)
1507 cgraph_lower_function (N) -> all_lowering_passes
1508
1509 If we are optimizing, compile is then invoked:
1510
1511 compile ()
1512 ipa_passes () -> all_small_ipa_passes
1513 -> Analysis of all_regular_ipa_passes
1514 * possible LTO streaming at copmilation time *
1515 -> Execution of all_regular_ipa_passes
1516 * possible LTO streaming at link time *
1517 -> all_late_ipa_passes
1518 expand_all_functions ()
1519 for each node N in the cgraph
1520 expand_function (N) -> Transformation of all_regular_ipa_passes
1521 -> all_passes
1522 */
1523
1524 void *
1525 pass_manager::operator new (size_t sz)
1526 {
1527 /* Ensure that all fields of the pass manager are zero-initialized. */
1528 return xcalloc (1, sz);
1529 }
1530
1531 void
1532 pass_manager::operator delete (void *ptr)
1533 {
1534 free (ptr);
1535 }
1536
1537 pass_manager::pass_manager (context *ctxt)
1538 : all_passes (NULL), all_small_ipa_passes (NULL), all_lowering_passes (NULL),
1539 all_regular_ipa_passes (NULL),
1540 all_late_ipa_passes (NULL), passes_by_id (NULL), passes_by_id_size (0),
1541 m_ctxt (ctxt)
1542 {
1543 opt_pass **p;
1544
1545 /* Initialize the pass_lists array. */
1546 #define DEF_PASS_LIST(LIST) pass_lists[PASS_LIST_NO_##LIST] = &LIST;
1547 GCC_PASS_LISTS
1548 #undef DEF_PASS_LIST
1549
1550 /* Build the tree of passes. */
1551
1552 #define INSERT_PASSES_AFTER(PASS) \
1553 p = &(PASS);
1554
1555 #define PUSH_INSERT_PASSES_WITHIN(PASS) \
1556 { \
1557 opt_pass **p = &(PASS ## _1)->sub;
1558
1559 #define POP_INSERT_PASSES() \
1560 }
1561
1562 #define NEXT_PASS(PASS, NUM) \
1563 do { \
1564 gcc_assert (NULL == PASS ## _ ## NUM); \
1565 if ((NUM) == 1) \
1566 PASS ## _1 = make_##PASS (m_ctxt); \
1567 else \
1568 { \
1569 gcc_assert (PASS ## _1); \
1570 PASS ## _ ## NUM = PASS ## _1->clone (); \
1571 } \
1572 p = next_pass_1 (p, PASS ## _ ## NUM, PASS ## _1); \
1573 } while (0)
1574
1575 #define TERMINATE_PASS_LIST() \
1576 *p = NULL;
1577
1578 #include "pass-instances.def"
1579
1580 #undef INSERT_PASSES_AFTER
1581 #undef PUSH_INSERT_PASSES_WITHIN
1582 #undef POP_INSERT_PASSES
1583 #undef NEXT_PASS
1584 #undef TERMINATE_PASS_LIST
1585
1586 /* Register the passes with the tree dump code. */
1587 register_dump_files (all_lowering_passes);
1588 register_dump_files (all_small_ipa_passes);
1589 register_dump_files (all_regular_ipa_passes);
1590 register_dump_files (all_late_ipa_passes);
1591 register_dump_files (all_passes);
1592 }
1593
1594 static void
1595 delete_pass_tree (opt_pass *pass)
1596 {
1597 while (pass)
1598 {
1599 /* Recurse into child passes. */
1600 delete_pass_tree (pass->sub);
1601
1602 opt_pass *next = pass->next;
1603
1604 /* Delete this pass. */
1605 delete pass;
1606
1607 /* Iterate onto sibling passes. */
1608 pass = next;
1609 }
1610 }
1611
1612 pass_manager::~pass_manager ()
1613 {
1614 XDELETEVEC (passes_by_id);
1615
1616 /* Call delete_pass_tree on each of the pass_lists. */
1617 #define DEF_PASS_LIST(LIST) \
1618 delete_pass_tree (*pass_lists[PASS_LIST_NO_##LIST]);
1619 GCC_PASS_LISTS
1620 #undef DEF_PASS_LIST
1621
1622 }
1623
1624 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1625 function CALLBACK for every function in the call graph. Otherwise,
1626 call CALLBACK on the current function. */
1627
1628 static void
1629 do_per_function (void (*callback) (function *, void *data), void *data)
1630 {
1631 if (current_function_decl)
1632 callback (cfun, data);
1633 else
1634 {
1635 struct cgraph_node *node;
1636 FOR_EACH_DEFINED_FUNCTION (node)
1637 if (node->analyzed && (gimple_has_body_p (node->decl) && !in_lto_p)
1638 && (!node->clone_of || node->decl != node->clone_of->decl))
1639 callback (DECL_STRUCT_FUNCTION (node->decl), data);
1640 }
1641 }
1642
1643 /* Because inlining might remove no-longer reachable nodes, we need to
1644 keep the array visible to garbage collector to avoid reading collected
1645 out nodes. */
1646 static int nnodes;
1647 static GTY ((length ("nnodes"))) cgraph_node **order;
1648
1649 /* Hook called when NODE is removed and therefore should be
1650 excluded from order vector. DATA is an array of integers.
1651 DATA[0] holds max index it may be accessed by. For cgraph
1652 node DATA[node->uid + 1] holds index of this node in order
1653 vector. */
1654 static void
1655 remove_cgraph_node_from_order (cgraph_node *node, void *data)
1656 {
1657 int *order_idx = (int *)data;
1658
1659 if (node->uid >= order_idx[0])
1660 return;
1661
1662 int idx = order_idx[node->uid + 1];
1663 if (idx >= 0 && idx < nnodes && order[idx] == node)
1664 order[idx] = NULL;
1665 }
1666
1667 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1668 function CALLBACK for every function in the call graph. Otherwise,
1669 call CALLBACK on the current function.
1670 This function is global so that plugins can use it. */
1671 void
1672 do_per_function_toporder (void (*callback) (function *, void *data), void *data)
1673 {
1674 int i;
1675
1676 if (current_function_decl)
1677 callback (cfun, data);
1678 else
1679 {
1680 cgraph_node_hook_list *hook;
1681 int *order_idx;
1682 gcc_assert (!order);
1683 order = ggc_vec_alloc<cgraph_node *> (symtab->cgraph_count);
1684
1685 order_idx = XALLOCAVEC (int, symtab->cgraph_max_uid + 1);
1686 memset (order_idx + 1, -1, sizeof (int) * symtab->cgraph_max_uid);
1687 order_idx[0] = symtab->cgraph_max_uid;
1688
1689 nnodes = ipa_reverse_postorder (order);
1690 for (i = nnodes - 1; i >= 0; i--)
1691 {
1692 order[i]->process = 1;
1693 order_idx[order[i]->uid + 1] = i;
1694 }
1695 hook = symtab->add_cgraph_removal_hook (remove_cgraph_node_from_order,
1696 order_idx);
1697 for (i = nnodes - 1; i >= 0; i--)
1698 {
1699 /* Function could be inlined and removed as unreachable. */
1700 if (!order[i])
1701 continue;
1702
1703 struct cgraph_node *node = order[i];
1704
1705 /* Allow possibly removed nodes to be garbage collected. */
1706 order[i] = NULL;
1707 node->process = 0;
1708 if (node->has_gimple_body_p ())
1709 {
1710 struct function *fn = DECL_STRUCT_FUNCTION (node->decl);
1711 push_cfun (fn);
1712 callback (fn, data);
1713 pop_cfun ();
1714 }
1715 }
1716 symtab->remove_cgraph_removal_hook (hook);
1717 }
1718 ggc_free (order);
1719 order = NULL;
1720 nnodes = 0;
1721 }
1722
1723 /* Helper function to perform function body dump. */
1724
1725 static void
1726 execute_function_dump (function *fn, void *data)
1727 {
1728 opt_pass *pass = (opt_pass *)data;
1729
1730 if (dump_file)
1731 {
1732 push_cfun (fn);
1733
1734 if (fn->curr_properties & PROP_trees)
1735 dump_function_to_file (fn->decl, dump_file, dump_flags);
1736 else
1737 print_rtl_with_bb (dump_file, get_insns (), dump_flags);
1738
1739 /* Flush the file. If verification fails, we won't be able to
1740 close the file before aborting. */
1741 fflush (dump_file);
1742
1743 if ((fn->curr_properties & PROP_cfg)
1744 && (dump_flags & TDF_GRAPH))
1745 {
1746 if (!pass->graph_dump_initialized)
1747 {
1748 clean_graph_dump_file (dump_file_name);
1749 pass->graph_dump_initialized = true;
1750 }
1751 print_graph_cfg (dump_file_name, fn);
1752 }
1753
1754 pop_cfun ();
1755 }
1756 }
1757
1758 static struct profile_record *profile_record;
1759
1760 /* Do profile consistency book-keeping for the pass with static number INDEX.
1761 If SUBPASS is zero, we run _before_ the pass, and if SUBPASS is one, then
1762 we run _after_ the pass. RUN is true if the pass really runs, or FALSE
1763 if we are only book-keeping on passes that may have selectively disabled
1764 themselves on a given function. */
1765 static void
1766 check_profile_consistency (int index, int subpass, bool run)
1767 {
1768 pass_manager *passes = g->get_passes ();
1769 if (index == -1)
1770 return;
1771 if (!profile_record)
1772 profile_record = XCNEWVEC (struct profile_record,
1773 passes->passes_by_id_size);
1774 gcc_assert (index < passes->passes_by_id_size && index >= 0);
1775 gcc_assert (subpass < 2);
1776 profile_record[index].run |= run;
1777 account_profile_record (&profile_record[index], subpass);
1778 }
1779
1780 /* Output profile consistency. */
1781
1782 void
1783 dump_profile_report (void)
1784 {
1785 g->get_passes ()->dump_profile_report ();
1786 }
1787
1788 void
1789 pass_manager::dump_profile_report () const
1790 {
1791 int i, j;
1792 int last_freq_in = 0, last_count_in = 0, last_freq_out = 0, last_count_out = 0;
1793 gcov_type last_time = 0, last_size = 0;
1794 double rel_time_change, rel_size_change;
1795 int last_reported = 0;
1796
1797 if (!profile_record)
1798 return;
1799 fprintf (stderr, "\nProfile consistency report:\n\n");
1800 fprintf (stderr, "Pass name |mismatch in |mismated out|Overall\n");
1801 fprintf (stderr, " |freq count |freq count |size time\n");
1802
1803 for (i = 0; i < passes_by_id_size; i++)
1804 for (j = 0 ; j < 2; j++)
1805 if (profile_record[i].run)
1806 {
1807 if (last_time)
1808 rel_time_change = (profile_record[i].time[j]
1809 - (double)last_time) * 100 / (double)last_time;
1810 else
1811 rel_time_change = 0;
1812 if (last_size)
1813 rel_size_change = (profile_record[i].size[j]
1814 - (double)last_size) * 100 / (double)last_size;
1815 else
1816 rel_size_change = 0;
1817
1818 if (profile_record[i].num_mismatched_freq_in[j] != last_freq_in
1819 || profile_record[i].num_mismatched_freq_out[j] != last_freq_out
1820 || profile_record[i].num_mismatched_count_in[j] != last_count_in
1821 || profile_record[i].num_mismatched_count_out[j] != last_count_out
1822 || rel_time_change || rel_size_change)
1823 {
1824 last_reported = i;
1825 fprintf (stderr, "%-20s %s",
1826 passes_by_id [i]->name,
1827 j ? "(after TODO)" : " ");
1828 if (profile_record[i].num_mismatched_freq_in[j] != last_freq_in)
1829 fprintf (stderr, "| %+5i",
1830 profile_record[i].num_mismatched_freq_in[j]
1831 - last_freq_in);
1832 else
1833 fprintf (stderr, "| ");
1834 if (profile_record[i].num_mismatched_count_in[j] != last_count_in)
1835 fprintf (stderr, " %+5i",
1836 profile_record[i].num_mismatched_count_in[j]
1837 - last_count_in);
1838 else
1839 fprintf (stderr, " ");
1840 if (profile_record[i].num_mismatched_freq_out[j] != last_freq_out)
1841 fprintf (stderr, "| %+5i",
1842 profile_record[i].num_mismatched_freq_out[j]
1843 - last_freq_out);
1844 else
1845 fprintf (stderr, "| ");
1846 if (profile_record[i].num_mismatched_count_out[j] != last_count_out)
1847 fprintf (stderr, " %+5i",
1848 profile_record[i].num_mismatched_count_out[j]
1849 - last_count_out);
1850 else
1851 fprintf (stderr, " ");
1852
1853 /* Size/time units change across gimple and RTL. */
1854 if (i == pass_expand_1->static_pass_number)
1855 fprintf (stderr, "|----------");
1856 else
1857 {
1858 if (rel_size_change)
1859 fprintf (stderr, "| %+8.4f%%", rel_size_change);
1860 else
1861 fprintf (stderr, "| ");
1862 if (rel_time_change)
1863 fprintf (stderr, " %+8.4f%%", rel_time_change);
1864 }
1865 fprintf (stderr, "\n");
1866 last_freq_in = profile_record[i].num_mismatched_freq_in[j];
1867 last_freq_out = profile_record[i].num_mismatched_freq_out[j];
1868 last_count_in = profile_record[i].num_mismatched_count_in[j];
1869 last_count_out = profile_record[i].num_mismatched_count_out[j];
1870 }
1871 else if (j && last_reported != i)
1872 {
1873 last_reported = i;
1874 fprintf (stderr, "%-20s ------------| | |\n",
1875 passes_by_id [i]->name);
1876 }
1877 last_time = profile_record[i].time[j];
1878 last_size = profile_record[i].size[j];
1879 }
1880 }
1881
1882 /* Perform all TODO actions that ought to be done on each function. */
1883
1884 static void
1885 execute_function_todo (function *fn, void *data)
1886 {
1887 bool from_ipa_pass = (cfun == NULL);
1888 unsigned int flags = (size_t)data;
1889 flags &= ~fn->last_verified;
1890 if (!flags)
1891 return;
1892
1893 push_cfun (fn);
1894
1895 /* Always cleanup the CFG before trying to update SSA. */
1896 if (flags & TODO_cleanup_cfg)
1897 {
1898 cleanup_tree_cfg ();
1899
1900 /* When cleanup_tree_cfg merges consecutive blocks, it may
1901 perform some simplistic propagation when removing single
1902 valued PHI nodes. This propagation may, in turn, cause the
1903 SSA form to become out-of-date (see PR 22037). So, even
1904 if the parent pass had not scheduled an SSA update, we may
1905 still need to do one. */
1906 if (!(flags & TODO_update_ssa_any) && need_ssa_update_p (cfun))
1907 flags |= TODO_update_ssa;
1908 }
1909
1910 if (flags & TODO_update_ssa_any)
1911 {
1912 unsigned update_flags = flags & TODO_update_ssa_any;
1913 update_ssa (update_flags);
1914 }
1915
1916 if (flag_tree_pta && (flags & TODO_rebuild_alias))
1917 compute_may_aliases ();
1918
1919 if (optimize && (flags & TODO_update_address_taken))
1920 execute_update_addresses_taken ();
1921
1922 if (flags & TODO_remove_unused_locals)
1923 remove_unused_locals ();
1924
1925 if (flags & TODO_rebuild_frequencies)
1926 rebuild_frequencies ();
1927
1928 if (flags & TODO_rebuild_cgraph_edges)
1929 cgraph_edge::rebuild_edges ();
1930
1931 gcc_assert (dom_info_state (fn, CDI_POST_DOMINATORS) == DOM_NONE);
1932 /* If we've seen errors do not bother running any verifiers. */
1933 if (flag_checking && !seen_error ())
1934 {
1935 dom_state pre_verify_state = dom_info_state (fn, CDI_DOMINATORS);
1936 dom_state pre_verify_pstate = dom_info_state (fn, CDI_POST_DOMINATORS);
1937
1938 if (flags & TODO_verify_il)
1939 {
1940 if (cfun->curr_properties & PROP_trees)
1941 {
1942 if (cfun->curr_properties & PROP_cfg)
1943 /* IPA passes leave stmts to be fixed up, so make sure to
1944 not verify stmts really throw. */
1945 verify_gimple_in_cfg (cfun, !from_ipa_pass);
1946 else
1947 verify_gimple_in_seq (gimple_body (cfun->decl));
1948 }
1949 if (cfun->curr_properties & PROP_ssa)
1950 /* IPA passes leave stmts to be fixed up, so make sure to
1951 not verify SSA operands whose verifier will choke on that. */
1952 verify_ssa (true, !from_ipa_pass);
1953 /* IPA passes leave basic-blocks unsplit, so make sure to
1954 not trip on that. */
1955 if ((cfun->curr_properties & PROP_cfg)
1956 && !from_ipa_pass)
1957 verify_flow_info ();
1958 if (current_loops
1959 && loops_state_satisfies_p (LOOP_CLOSED_SSA))
1960 verify_loop_closed_ssa (false);
1961 if (cfun->curr_properties & PROP_rtl)
1962 verify_rtl_sharing ();
1963 }
1964
1965 /* Make sure verifiers don't change dominator state. */
1966 gcc_assert (dom_info_state (fn, CDI_DOMINATORS) == pre_verify_state);
1967 gcc_assert (dom_info_state (fn, CDI_POST_DOMINATORS) == pre_verify_pstate);
1968 }
1969
1970 fn->last_verified = flags & TODO_verify_all;
1971
1972 pop_cfun ();
1973
1974 /* For IPA passes make sure to release dominator info, it can be
1975 computed by non-verifying TODOs. */
1976 if (from_ipa_pass)
1977 {
1978 free_dominance_info (fn, CDI_DOMINATORS);
1979 free_dominance_info (fn, CDI_POST_DOMINATORS);
1980 }
1981 }
1982
1983 /* Perform all TODO actions. */
1984 static void
1985 execute_todo (unsigned int flags)
1986 {
1987 if (flag_checking
1988 && cfun
1989 && need_ssa_update_p (cfun))
1990 gcc_assert (flags & TODO_update_ssa_any);
1991
1992 timevar_push (TV_TODO);
1993
1994 /* Inform the pass whether it is the first time it is run. */
1995 first_pass_instance = (flags & TODO_mark_first_instance) != 0;
1996
1997 statistics_fini_pass ();
1998
1999 if (flags)
2000 do_per_function (execute_function_todo, (void *)(size_t) flags);
2001
2002 /* At this point we should not have any unreachable code in the
2003 CFG, so it is safe to flush the pending freelist for SSA_NAMES. */
2004 if (cfun && cfun->gimple_df)
2005 flush_ssaname_freelist ();
2006
2007 /* Always remove functions just as before inlining: IPA passes might be
2008 interested to see bodies of extern inline functions that are not inlined
2009 to analyze side effects. The full removal is done just at the end
2010 of IPA pass queue. */
2011 if (flags & TODO_remove_functions)
2012 {
2013 gcc_assert (!cfun);
2014 symtab->remove_unreachable_nodes (dump_file);
2015 }
2016
2017 if ((flags & TODO_dump_symtab) && dump_file && !current_function_decl)
2018 {
2019 gcc_assert (!cfun);
2020 symtab_node::dump_table (dump_file);
2021 /* Flush the file. If verification fails, we won't be able to
2022 close the file before aborting. */
2023 fflush (dump_file);
2024 }
2025
2026 /* Now that the dumping has been done, we can get rid of the optional
2027 df problems. */
2028 if (flags & TODO_df_finish)
2029 df_finish_pass ((flags & TODO_df_verify) != 0);
2030
2031 timevar_pop (TV_TODO);
2032 }
2033
2034 /* Verify invariants that should hold between passes. This is a place
2035 to put simple sanity checks. */
2036
2037 static void
2038 verify_interpass_invariants (void)
2039 {
2040 gcc_checking_assert (!fold_deferring_overflow_warnings_p ());
2041 }
2042
2043 /* Clear the last verified flag. */
2044
2045 static void
2046 clear_last_verified (function *fn, void *data ATTRIBUTE_UNUSED)
2047 {
2048 fn->last_verified = 0;
2049 }
2050
2051 /* Helper function. Verify that the properties has been turn into the
2052 properties expected by the pass. */
2053
2054 static void
2055 verify_curr_properties (function *fn, void *data)
2056 {
2057 unsigned int props = (size_t)data;
2058 gcc_assert ((fn->curr_properties & props) == props);
2059 }
2060
2061 /* Release dump file name if set. */
2062
2063 static void
2064 release_dump_file_name (void)
2065 {
2066 if (dump_file_name)
2067 {
2068 free (CONST_CAST (char *, dump_file_name));
2069 dump_file_name = NULL;
2070 }
2071 }
2072
2073 /* Initialize pass dump file. */
2074 /* This is non-static so that the plugins can use it. */
2075
2076 bool
2077 pass_init_dump_file (opt_pass *pass)
2078 {
2079 /* If a dump file name is present, open it if enabled. */
2080 if (pass->static_pass_number != -1)
2081 {
2082 timevar_push (TV_DUMP);
2083 gcc::dump_manager *dumps = g->get_dumps ();
2084 bool initializing_dump =
2085 !dumps->dump_initialized_p (pass->static_pass_number);
2086 release_dump_file_name ();
2087 dump_file_name = dumps->get_dump_file_name (pass->static_pass_number);
2088 dumps->dump_start (pass->static_pass_number, &dump_flags);
2089 if (dump_file && current_function_decl)
2090 dump_function_header (dump_file, current_function_decl, dump_flags);
2091 if (initializing_dump
2092 && dump_file && (dump_flags & TDF_GRAPH)
2093 && cfun && (cfun->curr_properties & PROP_cfg))
2094 {
2095 clean_graph_dump_file (dump_file_name);
2096 pass->graph_dump_initialized = true;
2097 }
2098 timevar_pop (TV_DUMP);
2099 return initializing_dump;
2100 }
2101 else
2102 return false;
2103 }
2104
2105 /* Flush PASS dump file. */
2106 /* This is non-static so that plugins can use it. */
2107
2108 void
2109 pass_fini_dump_file (opt_pass *pass)
2110 {
2111 timevar_push (TV_DUMP);
2112
2113 /* Flush and close dump file. */
2114 release_dump_file_name ();
2115
2116 g->get_dumps ()->dump_finish (pass->static_pass_number);
2117 timevar_pop (TV_DUMP);
2118 }
2119
2120 /* After executing the pass, apply expected changes to the function
2121 properties. */
2122
2123 static void
2124 update_properties_after_pass (function *fn, void *data)
2125 {
2126 opt_pass *pass = (opt_pass *) data;
2127 fn->curr_properties = (fn->curr_properties | pass->properties_provided)
2128 & ~pass->properties_destroyed;
2129 }
2130
2131 /* Execute summary generation for all of the passes in IPA_PASS. */
2132
2133 void
2134 execute_ipa_summary_passes (ipa_opt_pass_d *ipa_pass)
2135 {
2136 while (ipa_pass)
2137 {
2138 opt_pass *pass = ipa_pass;
2139
2140 /* Execute all of the IPA_PASSes in the list. */
2141 if (ipa_pass->type == IPA_PASS
2142 && pass->gate (cfun)
2143 && ipa_pass->generate_summary)
2144 {
2145 pass_init_dump_file (pass);
2146
2147 /* If a timevar is present, start it. */
2148 if (pass->tv_id)
2149 timevar_push (pass->tv_id);
2150
2151 current_pass = pass;
2152 ipa_pass->generate_summary ();
2153
2154 /* Stop timevar. */
2155 if (pass->tv_id)
2156 timevar_pop (pass->tv_id);
2157
2158 pass_fini_dump_file (pass);
2159 }
2160 ipa_pass = (ipa_opt_pass_d *)ipa_pass->next;
2161 }
2162 }
2163
2164 /* Execute IPA_PASS function transform on NODE. */
2165
2166 static void
2167 execute_one_ipa_transform_pass (struct cgraph_node *node,
2168 ipa_opt_pass_d *ipa_pass)
2169 {
2170 opt_pass *pass = ipa_pass;
2171 unsigned int todo_after = 0;
2172
2173 current_pass = pass;
2174 if (!ipa_pass->function_transform)
2175 return;
2176
2177 /* Note that the folders should only create gimple expressions.
2178 This is a hack until the new folder is ready. */
2179 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
2180
2181 pass_init_dump_file (pass);
2182
2183 /* Run pre-pass verification. */
2184 execute_todo (ipa_pass->function_transform_todo_flags_start);
2185
2186 /* If a timevar is present, start it. */
2187 if (pass->tv_id != TV_NONE)
2188 timevar_push (pass->tv_id);
2189
2190 /* Do it! */
2191 todo_after = ipa_pass->function_transform (node);
2192
2193 /* Stop timevar. */
2194 if (pass->tv_id != TV_NONE)
2195 timevar_pop (pass->tv_id);
2196
2197 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2198 check_profile_consistency (pass->static_pass_number, 0, true);
2199
2200 /* Run post-pass cleanup and verification. */
2201 execute_todo (todo_after);
2202 verify_interpass_invariants ();
2203 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2204 check_profile_consistency (pass->static_pass_number, 1, true);
2205
2206 if (dump_file)
2207 do_per_function (execute_function_dump, NULL);
2208 pass_fini_dump_file (pass);
2209
2210 current_pass = NULL;
2211
2212 /* Signal this is a suitable GC collection point. */
2213 if (!(todo_after & TODO_do_not_ggc_collect))
2214 ggc_collect ();
2215 }
2216
2217 /* For the current function, execute all ipa transforms. */
2218
2219 void
2220 execute_all_ipa_transforms (void)
2221 {
2222 struct cgraph_node *node;
2223 if (!cfun)
2224 return;
2225 node = cgraph_node::get (current_function_decl);
2226
2227 if (node->ipa_transforms_to_apply.exists ())
2228 {
2229 unsigned int i;
2230
2231 for (i = 0; i < node->ipa_transforms_to_apply.length (); i++)
2232 execute_one_ipa_transform_pass (node, node->ipa_transforms_to_apply[i]);
2233 node->ipa_transforms_to_apply.release ();
2234 }
2235 }
2236
2237 /* Check if PASS is explicitly disabled or enabled and return
2238 the gate status. FUNC is the function to be processed, and
2239 GATE_STATUS is the gate status determined by pass manager by
2240 default. */
2241
2242 static bool
2243 override_gate_status (opt_pass *pass, tree func, bool gate_status)
2244 {
2245 bool explicitly_enabled = false;
2246 bool explicitly_disabled = false;
2247
2248 explicitly_enabled
2249 = is_pass_explicitly_enabled_or_disabled (pass, func,
2250 enabled_pass_uid_range_tab);
2251 explicitly_disabled
2252 = is_pass_explicitly_enabled_or_disabled (pass, func,
2253 disabled_pass_uid_range_tab);
2254
2255 gate_status = !explicitly_disabled && (gate_status || explicitly_enabled);
2256
2257 return gate_status;
2258 }
2259
2260
2261 /* Execute PASS. */
2262
2263 bool
2264 execute_one_pass (opt_pass *pass)
2265 {
2266 unsigned int todo_after = 0;
2267
2268 bool gate_status;
2269
2270 /* IPA passes are executed on whole program, so cfun should be NULL.
2271 Other passes need function context set. */
2272 if (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS)
2273 gcc_assert (!cfun && !current_function_decl);
2274 else
2275 gcc_assert (cfun && current_function_decl);
2276
2277 current_pass = pass;
2278
2279 /* Check whether gate check should be avoided.
2280 User controls the value of the gate through the parameter "gate_status". */
2281 gate_status = pass->gate (cfun);
2282 gate_status = override_gate_status (pass, current_function_decl, gate_status);
2283
2284 /* Override gate with plugin. */
2285 invoke_plugin_callbacks (PLUGIN_OVERRIDE_GATE, &gate_status);
2286
2287 if (!gate_status)
2288 {
2289 /* Run so passes selectively disabling themselves on a given function
2290 are not miscounted. */
2291 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2292 {
2293 check_profile_consistency (pass->static_pass_number, 0, false);
2294 check_profile_consistency (pass->static_pass_number, 1, false);
2295 }
2296 current_pass = NULL;
2297 return false;
2298 }
2299
2300 /* Pass execution event trigger: useful to identify passes being
2301 executed. */
2302 invoke_plugin_callbacks (PLUGIN_PASS_EXECUTION, pass);
2303
2304 if (!quiet_flag && !cfun)
2305 fprintf (stderr, " <%s>", pass->name ? pass->name : "");
2306
2307 /* Note that the folders should only create gimple expressions.
2308 This is a hack until the new folder is ready. */
2309 in_gimple_form = (cfun && (cfun->curr_properties & PROP_trees)) != 0;
2310
2311 pass_init_dump_file (pass);
2312
2313 /* Run pre-pass verification. */
2314 execute_todo (pass->todo_flags_start);
2315
2316 if (flag_checking)
2317 do_per_function (verify_curr_properties,
2318 (void *)(size_t)pass->properties_required);
2319
2320 /* If a timevar is present, start it. */
2321 if (pass->tv_id != TV_NONE)
2322 timevar_push (pass->tv_id);
2323
2324 /* Do it! */
2325 todo_after = pass->execute (cfun);
2326 do_per_function (clear_last_verified, NULL);
2327
2328 /* Stop timevar. */
2329 if (pass->tv_id != TV_NONE)
2330 timevar_pop (pass->tv_id);
2331
2332 do_per_function (update_properties_after_pass, pass);
2333
2334 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2335 check_profile_consistency (pass->static_pass_number, 0, true);
2336
2337 /* Run post-pass cleanup and verification. */
2338 execute_todo (todo_after | pass->todo_flags_finish | TODO_verify_il);
2339 if (profile_report && cfun && (cfun->curr_properties & PROP_cfg))
2340 check_profile_consistency (pass->static_pass_number, 1, true);
2341
2342 verify_interpass_invariants ();
2343 if (dump_file)
2344 do_per_function (execute_function_dump, pass);
2345 if (pass->type == IPA_PASS)
2346 {
2347 struct cgraph_node *node;
2348 if (((ipa_opt_pass_d *)pass)->function_transform)
2349 FOR_EACH_FUNCTION_WITH_GIMPLE_BODY (node)
2350 node->ipa_transforms_to_apply.safe_push ((ipa_opt_pass_d *)pass);
2351 }
2352
2353 if (!current_function_decl)
2354 symtab->process_new_functions ();
2355
2356 pass_fini_dump_file (pass);
2357
2358 if (pass->type != SIMPLE_IPA_PASS && pass->type != IPA_PASS)
2359 gcc_assert (!(cfun->curr_properties & PROP_trees)
2360 || pass->type != RTL_PASS);
2361
2362 current_pass = NULL;
2363
2364 if (todo_after & TODO_discard_function)
2365 {
2366 gcc_assert (cfun);
2367 /* As cgraph_node::release_body expects release dominators info,
2368 we have to release it. */
2369 if (dom_info_available_p (CDI_DOMINATORS))
2370 free_dominance_info (CDI_DOMINATORS);
2371
2372 if (dom_info_available_p (CDI_POST_DOMINATORS))
2373 free_dominance_info (CDI_POST_DOMINATORS);
2374
2375 tree fn = cfun->decl;
2376 pop_cfun ();
2377 gcc_assert (!cfun);
2378 cgraph_node::get (fn)->release_body ();
2379 }
2380
2381 /* Signal this is a suitable GC collection point. */
2382 if (!((todo_after | pass->todo_flags_finish) & TODO_do_not_ggc_collect))
2383 ggc_collect ();
2384
2385 return true;
2386 }
2387
2388 static void
2389 execute_pass_list_1 (opt_pass *pass)
2390 {
2391 do
2392 {
2393 gcc_assert (pass->type == GIMPLE_PASS
2394 || pass->type == RTL_PASS);
2395
2396 if (cfun == NULL)
2397 return;
2398 if (execute_one_pass (pass) && pass->sub)
2399 execute_pass_list_1 (pass->sub);
2400 pass = pass->next;
2401 }
2402 while (pass);
2403 }
2404
2405 void
2406 execute_pass_list (function *fn, opt_pass *pass)
2407 {
2408 gcc_assert (fn == cfun);
2409 execute_pass_list_1 (pass);
2410 if (cfun && fn->cfg)
2411 {
2412 free_dominance_info (CDI_DOMINATORS);
2413 free_dominance_info (CDI_POST_DOMINATORS);
2414 }
2415 }
2416
2417 /* Write out all LTO data. */
2418 static void
2419 write_lto (void)
2420 {
2421 timevar_push (TV_IPA_LTO_GIMPLE_OUT);
2422 lto_output ();
2423 timevar_pop (TV_IPA_LTO_GIMPLE_OUT);
2424 timevar_push (TV_IPA_LTO_DECL_OUT);
2425 produce_asm_for_decls ();
2426 timevar_pop (TV_IPA_LTO_DECL_OUT);
2427 }
2428
2429 /* Same as execute_pass_list but assume that subpasses of IPA passes
2430 are local passes. If SET is not NULL, write out summaries of only
2431 those node in SET. */
2432
2433 static void
2434 ipa_write_summaries_2 (opt_pass *pass, struct lto_out_decl_state *state)
2435 {
2436 while (pass)
2437 {
2438 ipa_opt_pass_d *ipa_pass = (ipa_opt_pass_d *)pass;
2439 gcc_assert (!current_function_decl);
2440 gcc_assert (!cfun);
2441 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2442 if (pass->type == IPA_PASS
2443 && ipa_pass->write_summary
2444 && pass->gate (cfun))
2445 {
2446 /* If a timevar is present, start it. */
2447 if (pass->tv_id)
2448 timevar_push (pass->tv_id);
2449
2450 pass_init_dump_file (pass);
2451
2452 current_pass = pass;
2453 ipa_pass->write_summary ();
2454
2455 pass_fini_dump_file (pass);
2456
2457 /* If a timevar is present, start it. */
2458 if (pass->tv_id)
2459 timevar_pop (pass->tv_id);
2460 }
2461
2462 if (pass->sub && pass->sub->type != GIMPLE_PASS)
2463 ipa_write_summaries_2 (pass->sub, state);
2464
2465 pass = pass->next;
2466 }
2467 }
2468
2469 /* Helper function of ipa_write_summaries. Creates and destroys the
2470 decl state and calls ipa_write_summaries_2 for all passes that have
2471 summaries. SET is the set of nodes to be written. */
2472
2473 static void
2474 ipa_write_summaries_1 (lto_symtab_encoder_t encoder)
2475 {
2476 pass_manager *passes = g->get_passes ();
2477 struct lto_out_decl_state *state = lto_new_out_decl_state ();
2478 state->symtab_node_encoder = encoder;
2479
2480 lto_output_init_mode_table ();
2481 lto_push_out_decl_state (state);
2482
2483 gcc_assert (!flag_wpa);
2484 ipa_write_summaries_2 (passes->all_regular_ipa_passes, state);
2485
2486 write_lto ();
2487
2488 gcc_assert (lto_get_out_decl_state () == state);
2489 lto_pop_out_decl_state ();
2490 lto_delete_out_decl_state (state);
2491 }
2492
2493 /* Write out summaries for all the nodes in the callgraph. */
2494
2495 void
2496 ipa_write_summaries (void)
2497 {
2498 lto_symtab_encoder_t encoder;
2499 int i, order_pos;
2500 varpool_node *vnode;
2501 struct cgraph_node *node;
2502 struct cgraph_node **order;
2503
2504 if ((!flag_generate_lto && !flag_generate_offload) || seen_error ())
2505 return;
2506
2507 select_what_to_stream ();
2508
2509 encoder = lto_symtab_encoder_new (false);
2510
2511 /* Create the callgraph set in the same order used in
2512 cgraph_expand_all_functions. This mostly facilitates debugging,
2513 since it causes the gimple file to be processed in the same order
2514 as the source code. */
2515 order = XCNEWVEC (struct cgraph_node *, symtab->cgraph_count);
2516 order_pos = ipa_reverse_postorder (order);
2517 gcc_assert (order_pos == symtab->cgraph_count);
2518
2519 for (i = order_pos - 1; i >= 0; i--)
2520 {
2521 struct cgraph_node *node = order[i];
2522
2523 if (node->has_gimple_body_p ())
2524 {
2525 /* When streaming out references to statements as part of some IPA
2526 pass summary, the statements need to have uids assigned and the
2527 following does that for all the IPA passes here. Naturally, this
2528 ordering then matches the one IPA-passes get in their stmt_fixup
2529 hooks. */
2530
2531 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
2532 renumber_gimple_stmt_uids ();
2533 pop_cfun ();
2534 }
2535 if (node->definition && node->need_lto_streaming)
2536 lto_set_symtab_encoder_in_partition (encoder, node);
2537 }
2538
2539 FOR_EACH_DEFINED_FUNCTION (node)
2540 if (node->alias && node->need_lto_streaming)
2541 lto_set_symtab_encoder_in_partition (encoder, node);
2542 FOR_EACH_DEFINED_VARIABLE (vnode)
2543 if (vnode->need_lto_streaming)
2544 lto_set_symtab_encoder_in_partition (encoder, vnode);
2545
2546 ipa_write_summaries_1 (compute_ltrans_boundary (encoder));
2547
2548 free (order);
2549 }
2550
2551 /* Same as execute_pass_list but assume that subpasses of IPA passes
2552 are local passes. If SET is not NULL, write out optimization summaries of
2553 only those node in SET. */
2554
2555 static void
2556 ipa_write_optimization_summaries_1 (opt_pass *pass,
2557 struct lto_out_decl_state *state)
2558 {
2559 while (pass)
2560 {
2561 ipa_opt_pass_d *ipa_pass = (ipa_opt_pass_d *)pass;
2562 gcc_assert (!current_function_decl);
2563 gcc_assert (!cfun);
2564 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2565 if (pass->type == IPA_PASS
2566 && ipa_pass->write_optimization_summary
2567 && pass->gate (cfun))
2568 {
2569 /* If a timevar is present, start it. */
2570 if (pass->tv_id)
2571 timevar_push (pass->tv_id);
2572
2573 pass_init_dump_file (pass);
2574
2575 current_pass = pass;
2576 ipa_pass->write_optimization_summary ();
2577
2578 pass_fini_dump_file (pass);
2579
2580 /* If a timevar is present, start it. */
2581 if (pass->tv_id)
2582 timevar_pop (pass->tv_id);
2583 }
2584
2585 if (pass->sub && pass->sub->type != GIMPLE_PASS)
2586 ipa_write_optimization_summaries_1 (pass->sub, state);
2587
2588 pass = pass->next;
2589 }
2590 }
2591
2592 /* Write all the optimization summaries for the cgraph nodes in SET. If SET is
2593 NULL, write out all summaries of all nodes. */
2594
2595 void
2596 ipa_write_optimization_summaries (lto_symtab_encoder_t encoder)
2597 {
2598 struct lto_out_decl_state *state = lto_new_out_decl_state ();
2599 lto_symtab_encoder_iterator lsei;
2600 state->symtab_node_encoder = encoder;
2601
2602 lto_output_init_mode_table ();
2603 lto_push_out_decl_state (state);
2604 for (lsei = lsei_start_function_in_partition (encoder);
2605 !lsei_end_p (lsei); lsei_next_function_in_partition (&lsei))
2606 {
2607 struct cgraph_node *node = lsei_cgraph_node (lsei);
2608 /* When streaming out references to statements as part of some IPA
2609 pass summary, the statements need to have uids assigned.
2610
2611 For functions newly born at WPA stage we need to initialize
2612 the uids here. */
2613 if (node->definition
2614 && gimple_has_body_p (node->decl))
2615 {
2616 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
2617 renumber_gimple_stmt_uids ();
2618 pop_cfun ();
2619 }
2620 }
2621
2622 gcc_assert (flag_wpa);
2623 pass_manager *passes = g->get_passes ();
2624 ipa_write_optimization_summaries_1 (passes->all_regular_ipa_passes, state);
2625
2626 write_lto ();
2627
2628 gcc_assert (lto_get_out_decl_state () == state);
2629 lto_pop_out_decl_state ();
2630 lto_delete_out_decl_state (state);
2631 }
2632
2633 /* Same as execute_pass_list but assume that subpasses of IPA passes
2634 are local passes. */
2635
2636 static void
2637 ipa_read_summaries_1 (opt_pass *pass)
2638 {
2639 while (pass)
2640 {
2641 ipa_opt_pass_d *ipa_pass = (ipa_opt_pass_d *) pass;
2642
2643 gcc_assert (!current_function_decl);
2644 gcc_assert (!cfun);
2645 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2646
2647 if (pass->gate (cfun))
2648 {
2649 if (pass->type == IPA_PASS && ipa_pass->read_summary)
2650 {
2651 /* If a timevar is present, start it. */
2652 if (pass->tv_id)
2653 timevar_push (pass->tv_id);
2654
2655 pass_init_dump_file (pass);
2656
2657 current_pass = pass;
2658 ipa_pass->read_summary ();
2659
2660 pass_fini_dump_file (pass);
2661
2662 /* Stop timevar. */
2663 if (pass->tv_id)
2664 timevar_pop (pass->tv_id);
2665 }
2666
2667 if (pass->sub && pass->sub->type != GIMPLE_PASS)
2668 ipa_read_summaries_1 (pass->sub);
2669 }
2670 pass = pass->next;
2671 }
2672 }
2673
2674
2675 /* Read all the summaries for all_regular_ipa_passes. */
2676
2677 void
2678 ipa_read_summaries (void)
2679 {
2680 pass_manager *passes = g->get_passes ();
2681 ipa_read_summaries_1 (passes->all_regular_ipa_passes);
2682 }
2683
2684 /* Same as execute_pass_list but assume that subpasses of IPA passes
2685 are local passes. */
2686
2687 static void
2688 ipa_read_optimization_summaries_1 (opt_pass *pass)
2689 {
2690 while (pass)
2691 {
2692 ipa_opt_pass_d *ipa_pass = (ipa_opt_pass_d *) pass;
2693
2694 gcc_assert (!current_function_decl);
2695 gcc_assert (!cfun);
2696 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2697
2698 if (pass->gate (cfun))
2699 {
2700 if (pass->type == IPA_PASS && ipa_pass->read_optimization_summary)
2701 {
2702 /* If a timevar is present, start it. */
2703 if (pass->tv_id)
2704 timevar_push (pass->tv_id);
2705
2706 pass_init_dump_file (pass);
2707
2708 current_pass = pass;
2709 ipa_pass->read_optimization_summary ();
2710
2711 pass_fini_dump_file (pass);
2712
2713 /* Stop timevar. */
2714 if (pass->tv_id)
2715 timevar_pop (pass->tv_id);
2716 }
2717
2718 if (pass->sub && pass->sub->type != GIMPLE_PASS)
2719 ipa_read_optimization_summaries_1 (pass->sub);
2720 }
2721 pass = pass->next;
2722 }
2723 }
2724
2725 /* Read all the summaries for all_regular_ipa_passes. */
2726
2727 void
2728 ipa_read_optimization_summaries (void)
2729 {
2730 pass_manager *passes = g->get_passes ();
2731 ipa_read_optimization_summaries_1 (passes->all_regular_ipa_passes);
2732 }
2733
2734 /* Same as execute_pass_list but assume that subpasses of IPA passes
2735 are local passes. */
2736 void
2737 execute_ipa_pass_list (opt_pass *pass)
2738 {
2739 do
2740 {
2741 gcc_assert (!current_function_decl);
2742 gcc_assert (!cfun);
2743 gcc_assert (pass->type == SIMPLE_IPA_PASS || pass->type == IPA_PASS);
2744 if (execute_one_pass (pass) && pass->sub)
2745 {
2746 if (pass->sub->type == GIMPLE_PASS)
2747 {
2748 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_START, NULL);
2749 do_per_function_toporder ((void (*)(function *, void *))
2750 execute_pass_list,
2751 pass->sub);
2752 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_END, NULL);
2753 }
2754 else if (pass->sub->type == SIMPLE_IPA_PASS
2755 || pass->sub->type == IPA_PASS)
2756 execute_ipa_pass_list (pass->sub);
2757 else
2758 gcc_unreachable ();
2759 }
2760 gcc_assert (!current_function_decl);
2761 symtab->process_new_functions ();
2762 pass = pass->next;
2763 }
2764 while (pass);
2765 }
2766
2767 /* Execute stmt fixup hooks of all passes in PASS for NODE and STMTS. */
2768
2769 static void
2770 execute_ipa_stmt_fixups (opt_pass *pass,
2771 struct cgraph_node *node, gimple **stmts)
2772 {
2773 while (pass)
2774 {
2775 /* Execute all of the IPA_PASSes in the list. */
2776 if (pass->type == IPA_PASS
2777 && pass->gate (cfun))
2778 {
2779 ipa_opt_pass_d *ipa_pass = (ipa_opt_pass_d *) pass;
2780
2781 if (ipa_pass->stmt_fixup)
2782 {
2783 pass_init_dump_file (pass);
2784 /* If a timevar is present, start it. */
2785 if (pass->tv_id)
2786 timevar_push (pass->tv_id);
2787
2788 current_pass = pass;
2789 ipa_pass->stmt_fixup (node, stmts);
2790
2791 /* Stop timevar. */
2792 if (pass->tv_id)
2793 timevar_pop (pass->tv_id);
2794 pass_fini_dump_file (pass);
2795 }
2796 if (pass->sub)
2797 execute_ipa_stmt_fixups (pass->sub, node, stmts);
2798 }
2799 pass = pass->next;
2800 }
2801 }
2802
2803 /* Execute stmt fixup hooks of all IPA passes for NODE and STMTS. */
2804
2805 void
2806 execute_all_ipa_stmt_fixups (struct cgraph_node *node, gimple **stmts)
2807 {
2808 pass_manager *passes = g->get_passes ();
2809 execute_ipa_stmt_fixups (passes->all_regular_ipa_passes, node, stmts);
2810 }
2811
2812
2813 extern void debug_properties (unsigned int);
2814 extern void dump_properties (FILE *, unsigned int);
2815
2816 DEBUG_FUNCTION void
2817 dump_properties (FILE *dump, unsigned int props)
2818 {
2819 fprintf (dump, "Properties:\n");
2820 if (props & PROP_gimple_any)
2821 fprintf (dump, "PROP_gimple_any\n");
2822 if (props & PROP_gimple_lcf)
2823 fprintf (dump, "PROP_gimple_lcf\n");
2824 if (props & PROP_gimple_leh)
2825 fprintf (dump, "PROP_gimple_leh\n");
2826 if (props & PROP_cfg)
2827 fprintf (dump, "PROP_cfg\n");
2828 if (props & PROP_ssa)
2829 fprintf (dump, "PROP_ssa\n");
2830 if (props & PROP_no_crit_edges)
2831 fprintf (dump, "PROP_no_crit_edges\n");
2832 if (props & PROP_rtl)
2833 fprintf (dump, "PROP_rtl\n");
2834 if (props & PROP_gimple_lomp)
2835 fprintf (dump, "PROP_gimple_lomp\n");
2836 if (props & PROP_gimple_lcx)
2837 fprintf (dump, "PROP_gimple_lcx\n");
2838 if (props & PROP_gimple_lvec)
2839 fprintf (dump, "PROP_gimple_lvec\n");
2840 if (props & PROP_cfglayout)
2841 fprintf (dump, "PROP_cfglayout\n");
2842 }
2843
2844 DEBUG_FUNCTION void
2845 debug_properties (unsigned int props)
2846 {
2847 dump_properties (stderr, props);
2848 }
2849
2850 /* Called by local passes to see if function is called by already processed nodes.
2851 Because we process nodes in topological order, this means that function is
2852 in recursive cycle or we introduced new direct calls. */
2853 bool
2854 function_called_by_processed_nodes_p (void)
2855 {
2856 struct cgraph_edge *e;
2857 for (e = cgraph_node::get (current_function_decl)->callers;
2858 e;
2859 e = e->next_caller)
2860 {
2861 if (e->caller->decl == current_function_decl)
2862 continue;
2863 if (!e->caller->has_gimple_body_p ())
2864 continue;
2865 if (TREE_ASM_WRITTEN (e->caller->decl))
2866 continue;
2867 if (!e->caller->process && !e->caller->global.inlined_to)
2868 break;
2869 }
2870 if (dump_file && e)
2871 {
2872 fprintf (dump_file, "Already processed call to:\n");
2873 e->caller->dump (dump_file);
2874 }
2875 return e != NULL;
2876 }
2877
2878 #include "gt-passes.h"