1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987-2016 Free Software Foundation, Inc.
4 This file is part of GCC.
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
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
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/>. */
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. */
27 #include "coretypes.h"
39 #include "lto-streamer.h"
40 #include "fold-const.h"
46 #include "value-prof.h"
48 #include "tree-ssa-loop-manip.h"
49 #include "tree-into-ssa.h"
52 #include "tree-pass.h"
54 #include "ipa-utils.h"
55 #include "tree-pretty-print.h" /* for dump_function_header */
57 #include "pass_manager.h"
59 #include "tree-ssa-live.h" /* For remove_unused_locals. */
60 #include "tree-cfgcleanup.h"
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
;
69 /* Most passes are single-instance (within their context) and thus don't
70 need to implement cloning, but passes that support multiple instances
71 *must* provide their own implementation of the clone method.
73 Handle this by providing a default implemenation, but make it a fatal
79 internal_error ("pass %s does not support cloning", name
);
83 opt_pass::set_pass_param (unsigned int, bool)
85 internal_error ("pass %s needs a set_pass_param implementation to handle the"
86 " extra argument in NEXT_PASS", name
);
90 opt_pass::gate (function
*)
96 opt_pass::execute (function
*)
101 opt_pass::opt_pass (const pass_data
&data
, context
*ctxt
)
105 static_pass_number (0),
112 pass_manager::execute_early_local_passes ()
114 execute_pass_list (cfun
, pass_build_ssa_passes_1
->sub
);
115 if (flag_check_pointer_bounds
)
116 execute_pass_list (cfun
, pass_chkp_instrumentation_passes_1
->sub
);
117 execute_pass_list (cfun
, pass_local_optimization_passes_1
->sub
);
121 pass_manager::execute_pass_mode_switching ()
123 return pass_mode_switching_1
->execute (cfun
);
127 /* Call from anywhere to find out what pass this is. Useful for
128 printing out debugging information deep inside an service
131 print_current_pass (FILE *file
)
134 fprintf (file
, "current pass = %s (%d)\n",
135 current_pass
->name
, current_pass
->static_pass_number
);
137 fprintf (file
, "no current pass.\n");
141 /* Call from the debugger to get the current pass name. */
145 print_current_pass (stderr
);
150 /* Global variables used to communicate with passes. */
154 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
157 This does nothing for local (non-static) variables, unless the
158 variable is a register variable with DECL_ASSEMBLER_NAME set. In
159 that case, or if the variable is not an automatic, it sets up the
160 RTL and outputs any assembler code (label definition, storage
161 allocation and initialization).
163 DECL is the declaration. TOP_LEVEL is nonzero
164 if this declaration is not within a function. */
167 rest_of_decl_compilation (tree decl
,
171 bool finalize
= true;
173 /* We deferred calling assemble_alias so that we could collect
174 other attributes such as visibility. Emit the alias now. */
178 alias
= lookup_attribute ("alias", DECL_ATTRIBUTES (decl
));
181 alias
= TREE_VALUE (TREE_VALUE (alias
));
182 alias
= get_identifier (TREE_STRING_POINTER (alias
));
183 /* A quirk of the initial implementation of aliases required that the
184 user add "extern" to all of them. Which is silly, but now
185 historical. Do note that the symbol is in fact locally defined. */
186 DECL_EXTERNAL (decl
) = 0;
187 TREE_STATIC (decl
) = 1;
188 assemble_alias (decl
, alias
);
193 /* Can't defer this, because it needs to happen before any
194 later function definitions are processed. */
195 if (DECL_ASSEMBLER_NAME_SET_P (decl
) && DECL_REGISTER (decl
))
196 make_decl_rtl (decl
);
198 /* Forward declarations for nested functions are not "external",
199 but we need to treat them as if they were. */
200 if (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)
201 || TREE_CODE (decl
) == FUNCTION_DECL
)
203 timevar_push (TV_VARCONST
);
205 /* Don't output anything when a tentative file-scope definition
206 is seen. But at end of compilation, do output code for them.
208 We do output all variables and rely on
209 callgraph code to defer them except for forward declarations
210 (see gcc.c-torture/compile/920624-1.c) */
212 || !DECL_DEFER_OUTPUT (decl
)
213 || DECL_INITIAL (decl
))
214 && (TREE_CODE (decl
) != VAR_DECL
|| !DECL_HAS_VALUE_EXPR_P (decl
))
215 && !DECL_EXTERNAL (decl
))
217 /* When reading LTO unit, we also read varpool, so do not
219 if (in_lto_p
&& !at_end
)
221 else if (finalize
&& TREE_CODE (decl
) != FUNCTION_DECL
)
222 varpool_node::finalize_decl (decl
);
225 #ifdef ASM_FINISH_DECLARE_OBJECT
226 if (decl
== last_assemble_variable_decl
)
228 ASM_FINISH_DECLARE_OBJECT (asm_out_file
, decl
,
233 /* Now that we have activated any function-specific attributes
234 that might affect function decl, particularly align, relayout it. */
235 if (TREE_CODE (decl
) == FUNCTION_DECL
)
236 targetm
.target_option
.relayout_function (decl
);
238 timevar_pop (TV_VARCONST
);
240 else if (TREE_CODE (decl
) == TYPE_DECL
241 /* Like in rest_of_type_compilation, avoid confusing the debug
242 information machinery when there are errors. */
245 timevar_push (TV_SYMOUT
);
246 debug_hooks
->type_decl (decl
, !top_level
);
247 timevar_pop (TV_SYMOUT
);
250 /* Let cgraph know about the existence of variables. */
251 if (in_lto_p
&& !at_end
)
253 else if (TREE_CODE (decl
) == VAR_DECL
&& !DECL_EXTERNAL (decl
)
254 && TREE_STATIC (decl
))
255 varpool_node::get_create (decl
);
257 /* Generate early debug for global variables. Any local variables will
258 be handled by either handling reachable functions from
259 finalize_compilation_unit (and by consequence, locally scoped
260 symbols), or by rest_of_type_compilation below.
262 Also, pick up function prototypes, which will be mostly ignored
263 by the different early_global_decl() hooks, but will at least be
264 used by Go's hijack of the debug_hooks to implement
267 && (TREE_CODE (decl
) != FUNCTION_DECL
268 /* This will pick up function prototypes with no bodies,
269 which are not visible in finalize_compilation_unit()
270 while iterating with FOR_EACH_*_FUNCTION through the
272 || !DECL_SAVED_TREE (decl
))
274 /* We need to check both decl_function_context and
275 current_function_decl here to make sure local extern
276 declarations end up with the correct context.
278 For local extern declarations, decl_function_context is
279 empty, but current_function_decl is set to the function where
280 the extern was declared . Without the check for
281 !current_function_decl below, the local extern ends up
282 incorrectly with a top-level context.
294 extern int i; // Local extern declaration.
301 && !decl_function_context (decl
)
302 && !current_function_decl
303 && DECL_SOURCE_LOCATION (decl
) != BUILTINS_LOCATION
304 && (!decl_type_context (decl
)
305 /* If we created a varpool node for the decl make sure to
306 call early_global_decl. Otherwise we miss changes
307 introduced by member definitions like
308 struct A { static int staticdatamember; };
309 int A::staticdatamember;
310 and thus have incomplete early debug and late debug
311 called from varpool node removal fails to handle it
314 && TREE_CODE (decl
) == VAR_DECL
315 && TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
)))
316 /* Avoid confusing the debug information machinery when there are
319 (*debug_hooks
->early_global_decl
) (decl
);
322 /* Called after finishing a record, union or enumeral type. */
325 rest_of_type_compilation (tree type
, int toplev
)
327 /* Avoid confusing the debug information machinery when there are
332 timevar_push (TV_SYMOUT
);
333 debug_hooks
->type_decl (TYPE_STUB_DECL (type
), !toplev
);
334 timevar_pop (TV_SYMOUT
);
341 finish_optimization_passes (void)
344 struct dump_file_info
*dfi
;
346 gcc::dump_manager
*dumps
= m_ctxt
->get_dumps ();
348 timevar_push (TV_DUMP
);
349 if (profile_arc_flag
|| flag_test_coverage
|| flag_branch_probabilities
)
351 dumps
->dump_start (pass_profile_1
->static_pass_number
, NULL
);
353 dumps
->dump_finish (pass_profile_1
->static_pass_number
);
358 dumps
->dump_start (pass_profile_1
->static_pass_number
, NULL
);
359 print_combine_total_stats ();
360 dumps
->dump_finish (pass_profile_1
->static_pass_number
);
363 /* Do whatever is necessary to finish printing the graphs. */
364 for (i
= TDI_end
; (dfi
= dumps
->get_dump_file_info (i
)) != NULL
; ++i
)
365 if (dfi
->graph_dump_initialized
)
367 name
= dumps
->get_dump_file_name (dfi
);
368 finish_graph_dump_file (name
);
372 timevar_pop (TV_DUMP
);
376 execute_build_ssa_passes (void)
378 /* Once this pass (and its sub-passes) are complete, all functions
379 will be in SSA form. Technically this state change is happening
380 a tad early, since the sub-passes have not yet run, but since
381 none of the sub-passes are IPA passes and do not create new
382 functions, this is ok. We're setting this value for the benefit
383 of IPA passes that follow. */
384 if (symtab
->state
< IPA_SSA
)
385 symtab
->state
= IPA_SSA
;
391 const pass_data pass_data_build_ssa_passes
=
393 SIMPLE_IPA_PASS
, /* type */
394 "build_ssa_passes", /* name */
395 OPTGROUP_NONE
, /* optinfo_flags */
396 TV_EARLY_LOCAL
, /* tv_id */
397 0, /* properties_required */
398 0, /* properties_provided */
399 0, /* properties_destroyed */
400 0, /* todo_flags_start */
401 /* todo_flags_finish is executed before subpases. For this reason
402 it makes no sense to remove unreachable functions here. */
403 0, /* todo_flags_finish */
406 class pass_build_ssa_passes
: public simple_ipa_opt_pass
409 pass_build_ssa_passes (gcc::context
*ctxt
)
410 : simple_ipa_opt_pass (pass_data_build_ssa_passes
, ctxt
)
413 /* opt_pass methods: */
414 virtual bool gate (function
*)
416 /* Don't bother doing anything if the program has errors. */
417 return (!seen_error () && !in_lto_p
);
420 virtual unsigned int execute (function
*)
422 return execute_build_ssa_passes ();
425 }; // class pass_build_ssa_passes
427 const pass_data pass_data_chkp_instrumentation_passes
=
429 SIMPLE_IPA_PASS
, /* type */
430 "chkp_passes", /* name */
431 OPTGROUP_NONE
, /* optinfo_flags */
433 0, /* properties_required */
434 0, /* properties_provided */
435 0, /* properties_destroyed */
436 0, /* todo_flags_start */
437 0, /* todo_flags_finish */
440 class pass_chkp_instrumentation_passes
: public simple_ipa_opt_pass
443 pass_chkp_instrumentation_passes (gcc::context
*ctxt
)
444 : simple_ipa_opt_pass (pass_data_chkp_instrumentation_passes
, ctxt
)
447 /* opt_pass methods: */
448 virtual bool gate (function
*)
450 /* Don't bother doing anything if the program has errors. */
451 return (flag_check_pointer_bounds
452 && !seen_error () && !in_lto_p
);
455 }; // class pass_chkp_instrumentation_passes
457 const pass_data pass_data_local_optimization_passes
=
459 SIMPLE_IPA_PASS
, /* type */
460 "opt_local_passes", /* name */
461 OPTGROUP_NONE
, /* optinfo_flags */
463 0, /* properties_required */
464 0, /* properties_provided */
465 0, /* properties_destroyed */
466 0, /* todo_flags_start */
467 0, /* todo_flags_finish */
470 class pass_local_optimization_passes
: public simple_ipa_opt_pass
473 pass_local_optimization_passes (gcc::context
*ctxt
)
474 : simple_ipa_opt_pass (pass_data_local_optimization_passes
, ctxt
)
477 /* opt_pass methods: */
478 virtual bool gate (function
*)
480 /* Don't bother doing anything if the program has errors. */
481 return (!seen_error () && !in_lto_p
);
484 }; // class pass_local_optimization_passes
488 simple_ipa_opt_pass
*
489 make_pass_build_ssa_passes (gcc::context
*ctxt
)
491 return new pass_build_ssa_passes (ctxt
);
494 simple_ipa_opt_pass
*
495 make_pass_chkp_instrumentation_passes (gcc::context
*ctxt
)
497 return new pass_chkp_instrumentation_passes (ctxt
);
500 simple_ipa_opt_pass
*
501 make_pass_local_optimization_passes (gcc::context
*ctxt
)
503 return new pass_local_optimization_passes (ctxt
);
508 const pass_data pass_data_all_early_optimizations
=
510 GIMPLE_PASS
, /* type */
511 "early_optimizations", /* name */
512 OPTGROUP_NONE
, /* optinfo_flags */
514 0, /* properties_required */
515 0, /* properties_provided */
516 0, /* properties_destroyed */
517 0, /* todo_flags_start */
518 0, /* todo_flags_finish */
521 class pass_all_early_optimizations
: public gimple_opt_pass
524 pass_all_early_optimizations (gcc::context
*ctxt
)
525 : gimple_opt_pass (pass_data_all_early_optimizations
, ctxt
)
528 /* opt_pass methods: */
529 virtual bool gate (function
*)
531 return (optimize
>= 1
532 /* Don't bother doing anything if the program has errors. */
536 }; // class pass_all_early_optimizations
540 static gimple_opt_pass
*
541 make_pass_all_early_optimizations (gcc::context
*ctxt
)
543 return new pass_all_early_optimizations (ctxt
);
548 const pass_data pass_data_all_optimizations
=
550 GIMPLE_PASS
, /* type */
551 "*all_optimizations", /* name */
552 OPTGROUP_NONE
, /* optinfo_flags */
553 TV_OPTIMIZE
, /* tv_id */
554 0, /* properties_required */
555 0, /* properties_provided */
556 0, /* properties_destroyed */
557 0, /* todo_flags_start */
558 0, /* todo_flags_finish */
561 class pass_all_optimizations
: public gimple_opt_pass
564 pass_all_optimizations (gcc::context
*ctxt
)
565 : gimple_opt_pass (pass_data_all_optimizations
, ctxt
)
568 /* opt_pass methods: */
569 virtual bool gate (function
*) { return optimize
>= 1 && !optimize_debug
; }
571 }; // class pass_all_optimizations
575 static gimple_opt_pass
*
576 make_pass_all_optimizations (gcc::context
*ctxt
)
578 return new pass_all_optimizations (ctxt
);
583 const pass_data pass_data_all_optimizations_g
=
585 GIMPLE_PASS
, /* type */
586 "*all_optimizations_g", /* name */
587 OPTGROUP_NONE
, /* optinfo_flags */
588 TV_OPTIMIZE
, /* tv_id */
589 0, /* properties_required */
590 0, /* properties_provided */
591 0, /* properties_destroyed */
592 0, /* todo_flags_start */
593 0, /* todo_flags_finish */
596 class pass_all_optimizations_g
: public gimple_opt_pass
599 pass_all_optimizations_g (gcc::context
*ctxt
)
600 : gimple_opt_pass (pass_data_all_optimizations_g
, ctxt
)
603 /* opt_pass methods: */
604 virtual bool gate (function
*) { return optimize
>= 1 && optimize_debug
; }
606 }; // class pass_all_optimizations_g
610 static gimple_opt_pass
*
611 make_pass_all_optimizations_g (gcc::context
*ctxt
)
613 return new pass_all_optimizations_g (ctxt
);
618 const pass_data pass_data_rest_of_compilation
=
621 "*rest_of_compilation", /* name */
622 OPTGROUP_NONE
, /* optinfo_flags */
623 TV_REST_OF_COMPILATION
, /* tv_id */
624 PROP_rtl
, /* properties_required */
625 0, /* properties_provided */
626 0, /* properties_destroyed */
627 0, /* todo_flags_start */
628 0, /* todo_flags_finish */
631 class pass_rest_of_compilation
: public rtl_opt_pass
634 pass_rest_of_compilation (gcc::context
*ctxt
)
635 : rtl_opt_pass (pass_data_rest_of_compilation
, ctxt
)
638 /* opt_pass methods: */
639 virtual bool gate (function
*)
641 /* Early return if there were errors. We can run afoul of our
642 consistency checks, and there's not really much point in fixing them. */
643 return !(rtl_dump_and_exit
|| flag_syntax_only
|| seen_error ());
646 }; // class pass_rest_of_compilation
650 static rtl_opt_pass
*
651 make_pass_rest_of_compilation (gcc::context
*ctxt
)
653 return new pass_rest_of_compilation (ctxt
);
658 const pass_data pass_data_postreload
=
661 "*all-postreload", /* name */
662 OPTGROUP_NONE
, /* optinfo_flags */
663 TV_POSTRELOAD
, /* tv_id */
664 PROP_rtl
, /* properties_required */
665 0, /* properties_provided */
666 0, /* properties_destroyed */
667 0, /* todo_flags_start */
668 0, /* todo_flags_finish */
671 class pass_postreload
: public rtl_opt_pass
674 pass_postreload (gcc::context
*ctxt
)
675 : rtl_opt_pass (pass_data_postreload
, ctxt
)
678 /* opt_pass methods: */
679 virtual bool gate (function
*) { return reload_completed
; }
681 }; // class pass_postreload
685 static rtl_opt_pass
*
686 make_pass_postreload (gcc::context
*ctxt
)
688 return new pass_postreload (ctxt
);
693 const pass_data pass_data_late_compilation
=
696 "*all-late_compilation", /* name */
697 OPTGROUP_NONE
, /* optinfo_flags */
698 TV_LATE_COMPILATION
, /* tv_id */
699 PROP_rtl
, /* properties_required */
700 0, /* properties_provided */
701 0, /* properties_destroyed */
702 0, /* todo_flags_start */
703 0, /* todo_flags_finish */
706 class pass_late_compilation
: public rtl_opt_pass
709 pass_late_compilation (gcc::context
*ctxt
)
710 : rtl_opt_pass (pass_data_late_compilation
, ctxt
)
713 /* opt_pass methods: */
714 virtual bool gate (function
*)
716 return reload_completed
|| targetm
.no_register_allocation
;
719 }; // class pass_late_compilation
723 static rtl_opt_pass
*
724 make_pass_late_compilation (gcc::context
*ctxt
)
726 return new pass_late_compilation (ctxt
);
731 /* Set the static pass number of pass PASS to ID and record that
732 in the mapping from static pass number to pass. */
736 set_pass_for_id (int id
, opt_pass
*pass
)
738 pass
->static_pass_number
= id
;
739 if (passes_by_id_size
<= id
)
741 passes_by_id
= XRESIZEVEC (opt_pass
*, passes_by_id
, id
+ 1);
742 memset (passes_by_id
+ passes_by_id_size
, 0,
743 (id
+ 1 - passes_by_id_size
) * sizeof (void *));
744 passes_by_id_size
= id
+ 1;
746 passes_by_id
[id
] = pass
;
749 /* Return the pass with the static pass number ID. */
752 pass_manager::get_pass_for_id (int id
) const
754 if (id
>= passes_by_id_size
)
756 return passes_by_id
[id
];
759 /* Iterate over the pass tree allocating dump file numbers. We want
760 to do this depth first, and independent of whether the pass is
764 register_one_dump_file (opt_pass
*pass
)
766 g
->get_passes ()->register_one_dump_file (pass
);
770 pass_manager::register_one_dump_file (opt_pass
*pass
)
772 char *dot_name
, *flag_name
, *glob_name
;
773 const char *name
, *full_name
, *prefix
;
776 int optgroup_flags
= OPTGROUP_NONE
;
777 gcc::dump_manager
*dumps
= m_ctxt
->get_dumps ();
779 /* See below in next_pass_1. */
781 if (pass
->static_pass_number
!= -1)
782 sprintf (num
, "%d", ((int) pass
->static_pass_number
< 0
783 ? 1 : pass
->static_pass_number
));
785 /* The name is both used to identify the pass for the purposes of plugins,
786 and to specify dump file name and option.
787 The latter two might want something short which is not quite unique; for
788 that reason, we may have a disambiguating prefix, followed by a space
789 to mark the start of the following dump file name / option string. */
790 name
= strchr (pass
->name
, ' ');
791 name
= name
? name
+ 1 : pass
->name
;
792 dot_name
= concat (".", name
, num
, NULL
);
793 if (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
)
797 optgroup_flags
|= OPTGROUP_IPA
;
799 else if (pass
->type
== GIMPLE_PASS
)
810 flag_name
= concat (prefix
, name
, num
, NULL
);
811 glob_name
= concat (prefix
, name
, NULL
);
812 optgroup_flags
|= pass
->optinfo_flags
;
813 /* For any passes that do not have an optgroup set, and which are not
814 IPA passes setup above, set the optgroup to OPTGROUP_OTHER so that
815 any dump messages are emitted properly under -fopt-info(-optall). */
816 if (optgroup_flags
== OPTGROUP_NONE
)
817 optgroup_flags
= OPTGROUP_OTHER
;
818 id
= dumps
->dump_register (dot_name
, flag_name
, glob_name
, flags
,
821 set_pass_for_id (id
, pass
);
822 full_name
= concat (prefix
, pass
->name
, num
, NULL
);
823 register_pass_name (pass
, full_name
);
824 free (CONST_CAST (char *, full_name
));
827 /* Register the dump files for the pass_manager starting at PASS. */
830 pass_manager::register_dump_files (opt_pass
*pass
)
834 if (pass
->name
&& pass
->name
[0] != '*')
835 register_one_dump_file (pass
);
838 register_dump_files (pass
->sub
);
845 /* Register PASS with NAME. */
848 pass_manager::register_pass_name (opt_pass
*pass
, const char *name
)
850 if (!m_name_to_pass_map
)
851 m_name_to_pass_map
= new hash_map
<nofree_string_hash
, opt_pass
*> (256);
853 if (m_name_to_pass_map
->get (name
))
854 return; /* Ignore plugin passes. */
856 const char *unique_name
= xstrdup (name
);
857 m_name_to_pass_map
->put (unique_name
, pass
);
860 /* Map from pass id to canonicalized pass name. */
862 typedef const char *char_ptr
;
863 static vec
<char_ptr
> pass_tab
= vNULL
;
865 /* Callback function for traversing NAME_TO_PASS_MAP. */
868 passes_pass_traverse (const char *const &name
, opt_pass
*const &pass
, void *)
870 gcc_assert (pass
->static_pass_number
> 0);
871 gcc_assert (pass_tab
.exists ());
873 pass_tab
[pass
->static_pass_number
] = name
;
878 /* The function traverses NAME_TO_PASS_MAP and creates a pass info
879 table for dumping purpose. */
882 pass_manager::create_pass_tab (void) const
884 if (!flag_dump_passes
)
887 pass_tab
.safe_grow_cleared (passes_by_id_size
+ 1);
888 m_name_to_pass_map
->traverse
<void *, passes_pass_traverse
> (NULL
);
891 static bool override_gate_status (opt_pass
*, tree
, bool);
893 /* Dump the instantiated name for PASS. IS_ON indicates if PASS
894 is turned on or not. */
897 dump_one_pass (opt_pass
*pass
, int pass_indent
)
899 int indent
= 3 * pass_indent
;
901 bool is_on
, is_really_on
;
903 is_on
= pass
->gate (cfun
);
904 is_really_on
= override_gate_status (pass
, current_function_decl
, is_on
);
906 if (pass
->static_pass_number
<= 0)
909 pn
= pass_tab
[pass
->static_pass_number
];
911 fprintf (stderr
, "%*s%-40s%*s:%s%s\n", indent
, " ", pn
,
912 (15 - indent
< 0 ? 0 : 15 - indent
), " ",
913 is_on
? " ON" : " OFF",
914 ((!is_on
) == (!is_really_on
) ? ""
915 : (is_really_on
? " (FORCED_ON)" : " (FORCED_OFF)")));
918 /* Dump pass list PASS with indentation INDENT. */
921 dump_pass_list (opt_pass
*pass
, int indent
)
925 dump_one_pass (pass
, indent
);
927 dump_pass_list (pass
->sub
, indent
+ 1);
933 /* Dump all optimization passes. */
938 g
->get_passes ()->dump_passes ();
942 pass_manager::dump_passes () const
944 push_dummy_function (true);
948 dump_pass_list (all_lowering_passes
, 1);
949 dump_pass_list (all_small_ipa_passes
, 1);
950 dump_pass_list (all_regular_ipa_passes
, 1);
951 dump_pass_list (all_late_ipa_passes
, 1);
952 dump_pass_list (all_passes
, 1);
954 pop_dummy_function ();
957 /* Returns the pass with NAME. */
960 pass_manager::get_pass_by_name (const char *name
)
962 opt_pass
**p
= m_name_to_pass_map
->get (name
);
970 /* Range [start, last]. */
976 const char *assem_name
;
977 struct uid_range
*next
;
980 typedef struct uid_range
*uid_range_p
;
983 static vec
<uid_range_p
>
984 enabled_pass_uid_range_tab
= vNULL
;
985 static vec
<uid_range_p
>
986 disabled_pass_uid_range_tab
= vNULL
;
989 /* Parse option string for -fdisable- and -fenable-
990 The syntax of the options:
993 -fdisable-<pass_name>
995 -fenable-<pass_name>=s1:e1,s2:e2,...
996 -fdisable-<pass_name>=s1:e1,s2:e2,...
1000 enable_disable_pass (const char *arg
, bool is_enable
)
1003 char *range_str
, *phase_name
;
1004 char *argstr
= xstrdup (arg
);
1005 vec
<uid_range_p
> *tab
= 0;
1007 range_str
= strchr (argstr
,'=');
1014 phase_name
= argstr
;
1018 error ("unrecognized option -fenable");
1020 error ("unrecognized option -fdisable");
1024 pass
= g
->get_passes ()->get_pass_by_name (phase_name
);
1025 if (!pass
|| pass
->static_pass_number
== -1)
1028 error ("unknown pass %s specified in -fenable", phase_name
);
1030 error ("unknown pass %s specified in -fdisable", phase_name
);
1036 tab
= &enabled_pass_uid_range_tab
;
1038 tab
= &disabled_pass_uid_range_tab
;
1040 if ((unsigned) pass
->static_pass_number
>= tab
->length ())
1041 tab
->safe_grow_cleared (pass
->static_pass_number
+ 1);
1046 uid_range_p new_range
= XCNEW (struct uid_range
);
1048 new_range
->start
= 0;
1049 new_range
->last
= (unsigned)-1;
1051 slot
= (*tab
)[pass
->static_pass_number
];
1052 new_range
->next
= slot
;
1053 (*tab
)[pass
->static_pass_number
] = new_range
;
1055 inform (UNKNOWN_LOCATION
, "enable pass %s for functions in the range "
1056 "of [%u, %u]", phase_name
, new_range
->start
, new_range
->last
);
1058 inform (UNKNOWN_LOCATION
, "disable pass %s for functions in the range "
1059 "of [%u, %u]", phase_name
, new_range
->start
, new_range
->last
);
1063 char *next_range
= NULL
;
1064 char *one_range
= range_str
;
1065 char *end_val
= NULL
;
1070 uid_range_p new_range
;
1071 char *invalid
= NULL
;
1073 char *func_name
= NULL
;
1075 next_range
= strchr (one_range
, ',');
1082 end_val
= strchr (one_range
, ':');
1088 start
= strtol (one_range
, &invalid
, 10);
1089 if (*invalid
|| start
< 0)
1091 if (end_val
|| (one_range
[0] >= '0'
1092 && one_range
[0] <= '9'))
1094 error ("Invalid range %s in option %s",
1096 is_enable
? "-fenable" : "-fdisable");
1100 func_name
= one_range
;
1104 new_range
= XCNEW (struct uid_range
);
1107 new_range
->start
= (unsigned) start
;
1108 new_range
->last
= (unsigned) start
;
1112 new_range
->start
= (unsigned) -1;
1113 new_range
->last
= (unsigned) -1;
1114 new_range
->assem_name
= xstrdup (func_name
);
1119 long last
= strtol (end_val
, &invalid
, 10);
1120 if (*invalid
|| last
< start
)
1122 error ("Invalid range %s in option %s",
1124 is_enable
? "-fenable" : "-fdisable");
1128 new_range
= XCNEW (struct uid_range
);
1129 new_range
->start
= (unsigned) start
;
1130 new_range
->last
= (unsigned) last
;
1133 slot
= (*tab
)[pass
->static_pass_number
];
1134 new_range
->next
= slot
;
1135 (*tab
)[pass
->static_pass_number
] = new_range
;
1138 if (new_range
->assem_name
)
1139 inform (UNKNOWN_LOCATION
,
1140 "enable pass %s for function %s",
1141 phase_name
, new_range
->assem_name
);
1143 inform (UNKNOWN_LOCATION
,
1144 "enable pass %s for functions in the range of [%u, %u]",
1145 phase_name
, new_range
->start
, new_range
->last
);
1149 if (new_range
->assem_name
)
1150 inform (UNKNOWN_LOCATION
,
1151 "disable pass %s for function %s",
1152 phase_name
, new_range
->assem_name
);
1154 inform (UNKNOWN_LOCATION
,
1155 "disable pass %s for functions in the range of [%u, %u]",
1156 phase_name
, new_range
->start
, new_range
->last
);
1159 one_range
= next_range
;
1160 } while (next_range
);
1166 /* Enable pass specified by ARG. */
1169 enable_pass (const char *arg
)
1171 enable_disable_pass (arg
, true);
1174 /* Disable pass specified by ARG. */
1177 disable_pass (const char *arg
)
1179 enable_disable_pass (arg
, false);
1182 /* Returns true if PASS is explicitly enabled/disabled for FUNC. */
1185 is_pass_explicitly_enabled_or_disabled (opt_pass
*pass
,
1187 vec
<uid_range_p
> tab
)
1189 uid_range_p slot
, range
;
1191 const char *aname
= NULL
;
1194 || (unsigned) pass
->static_pass_number
>= tab
.length ()
1195 || pass
->static_pass_number
== -1)
1198 slot
= tab
[pass
->static_pass_number
];
1202 cgraph_uid
= func
? cgraph_node::get (func
)->uid
: 0;
1203 if (func
&& DECL_ASSEMBLER_NAME_SET_P (func
))
1204 aname
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (func
));
1209 if ((unsigned) cgraph_uid
>= range
->start
1210 && (unsigned) cgraph_uid
<= range
->last
)
1212 if (range
->assem_name
&& aname
1213 && !strcmp (range
->assem_name
, aname
))
1215 range
= range
->next
;
1222 /* Update static_pass_number for passes (and the flag
1223 TODO_mark_first_instance).
1225 Passes are constructed with static_pass_number preinitialized to 0
1227 This field is used in two different ways: initially as instance numbers
1228 of their kind, and then as ids within the entire pass manager.
1230 Within pass_manager::pass_manager:
1232 * In add_pass_instance(), as called by next_pass_1 in
1233 NEXT_PASS in init_optimization_passes
1235 * When the initial instance of a pass within a pass manager is seen,
1236 it is flagged, and its static_pass_number is set to -1
1238 * On subsequent times that it is seen, the static pass number
1239 is decremented each time, so that if there are e.g. 4 dups,
1240 they have static_pass_number -4, 2, 3, 4 respectively (note
1241 how the initial one is negative and gives the count); these
1242 can be thought of as instance numbers of the specific pass
1244 * Within the register_dump_files () traversal, set_pass_for_id()
1245 is called on each pass, using these instance numbers to create
1246 dumpfile switches, and then overwriting them with a pass id,
1247 which are global to the whole pass manager (based on
1248 (TDI_end + current value of extra_dump_files_in_use) ) */
1251 add_pass_instance (opt_pass
*new_pass
, bool track_duplicates
,
1252 opt_pass
*initial_pass
)
1254 /* Are we dealing with the first pass of its kind, or a clone? */
1255 if (new_pass
!= initial_pass
)
1257 /* We're dealing with a clone. */
1258 new_pass
->todo_flags_start
&= ~TODO_mark_first_instance
;
1260 /* Indicate to register_dump_files that this pass has duplicates,
1261 and so it should rename the dump file. The first instance will
1262 be -1, and be number of duplicates = -static_pass_number - 1.
1263 Subsequent instances will be > 0 and just the duplicate number. */
1264 if ((new_pass
->name
&& new_pass
->name
[0] != '*') || track_duplicates
)
1266 initial_pass
->static_pass_number
-= 1;
1267 new_pass
->static_pass_number
= -initial_pass
->static_pass_number
;
1272 /* We're dealing with the first pass of its kind. */
1273 new_pass
->todo_flags_start
|= TODO_mark_first_instance
;
1274 new_pass
->static_pass_number
= -1;
1276 invoke_plugin_callbacks (PLUGIN_NEW_PASS
, new_pass
);
1280 /* Add a pass to the pass list. Duplicate the pass if it's already
1284 next_pass_1 (opt_pass
**list
, opt_pass
*pass
, opt_pass
*initial_pass
)
1286 /* Every pass should have a name so that plugins can refer to them. */
1287 gcc_assert (pass
->name
!= NULL
);
1289 add_pass_instance (pass
, false, initial_pass
);
1292 return &(*list
)->next
;
1295 /* List node for an inserted pass instance. We need to keep track of all
1296 the newly-added pass instances (with 'added_pass_nodes' defined below)
1297 so that we can register their dump files after pass-positioning is finished.
1298 Registering dumping files needs to be post-processed or the
1299 static_pass_number of the opt_pass object would be modified and mess up
1300 the dump file names of future pass instances to be added. */
1302 struct pass_list_node
1305 struct pass_list_node
*next
;
1308 static struct pass_list_node
*added_pass_nodes
= NULL
;
1309 static struct pass_list_node
*prev_added_pass_node
;
1311 /* Insert the pass at the proper position. Return true if the pass
1312 is successfully added.
1314 NEW_PASS_INFO - new pass to be inserted
1315 PASS_LIST - root of the pass list to insert the new pass to */
1318 position_pass (struct register_pass_info
*new_pass_info
, opt_pass
**pass_list
)
1320 opt_pass
*pass
= *pass_list
, *prev_pass
= NULL
;
1321 bool success
= false;
1323 for ( ; pass
; prev_pass
= pass
, pass
= pass
->next
)
1325 /* Check if the current pass is of the same type as the new pass and
1326 matches the name and the instance number of the reference pass. */
1327 if (pass
->type
== new_pass_info
->pass
->type
1329 && !strcmp (pass
->name
, new_pass_info
->reference_pass_name
)
1330 && ((new_pass_info
->ref_pass_instance_number
== 0)
1331 || (new_pass_info
->ref_pass_instance_number
==
1332 pass
->static_pass_number
)
1333 || (new_pass_info
->ref_pass_instance_number
== 1
1334 && pass
->todo_flags_start
& TODO_mark_first_instance
)))
1337 struct pass_list_node
*new_pass_node
;
1339 if (new_pass_info
->ref_pass_instance_number
== 0)
1341 new_pass
= new_pass_info
->pass
->clone ();
1342 add_pass_instance (new_pass
, true, new_pass_info
->pass
);
1346 new_pass
= new_pass_info
->pass
;
1347 add_pass_instance (new_pass
, true, new_pass
);
1350 /* Insert the new pass instance based on the positioning op. */
1351 switch (new_pass_info
->pos_op
)
1353 case PASS_POS_INSERT_AFTER
:
1354 new_pass
->next
= pass
->next
;
1355 pass
->next
= new_pass
;
1357 /* Skip newly inserted pass to avoid repeated
1358 insertions in the case where the new pass and the
1359 existing one have the same name. */
1362 case PASS_POS_INSERT_BEFORE
:
1363 new_pass
->next
= pass
;
1365 prev_pass
->next
= new_pass
;
1367 *pass_list
= new_pass
;
1369 case PASS_POS_REPLACE
:
1370 new_pass
->next
= pass
->next
;
1372 prev_pass
->next
= new_pass
;
1374 *pass_list
= new_pass
;
1375 new_pass
->sub
= pass
->sub
;
1376 new_pass
->tv_id
= pass
->tv_id
;
1380 error ("invalid pass positioning operation");
1384 /* Save the newly added pass (instance) in the added_pass_nodes
1385 list so that we can register its dump file later. Note that
1386 we cannot register the dump file now because doing so will modify
1387 the static_pass_number of the opt_pass object and therefore
1388 mess up the dump file name of future instances. */
1389 new_pass_node
= XCNEW (struct pass_list_node
);
1390 new_pass_node
->pass
= new_pass
;
1391 if (!added_pass_nodes
)
1392 added_pass_nodes
= new_pass_node
;
1394 prev_added_pass_node
->next
= new_pass_node
;
1395 prev_added_pass_node
= new_pass_node
;
1400 if (pass
->sub
&& position_pass (new_pass_info
, &pass
->sub
))
1407 /* Hooks a new pass into the pass lists.
1409 PASS_INFO - pass information that specifies the opt_pass object,
1410 reference pass, instance number, and how to position
1414 register_pass (struct register_pass_info
*pass_info
)
1416 g
->get_passes ()->register_pass (pass_info
);
1420 register_pass (opt_pass
* pass
, pass_positioning_ops pos
,
1421 const char* ref_pass_name
, int ref_pass_inst_number
)
1423 register_pass_info i
;
1425 i
.reference_pass_name
= ref_pass_name
;
1426 i
.ref_pass_instance_number
= ref_pass_inst_number
;
1429 g
->get_passes ()->register_pass (&i
);
1433 pass_manager::register_pass (struct register_pass_info
*pass_info
)
1435 bool all_instances
, success
;
1436 gcc::dump_manager
*dumps
= m_ctxt
->get_dumps ();
1438 /* The checks below could fail in buggy plugins. Existing GCC
1439 passes should never fail these checks, so we mention plugin in
1441 if (!pass_info
->pass
)
1442 fatal_error (input_location
, "plugin cannot register a missing pass");
1444 if (!pass_info
->pass
->name
)
1445 fatal_error (input_location
, "plugin cannot register an unnamed pass");
1447 if (!pass_info
->reference_pass_name
)
1450 "plugin cannot register pass %qs without reference pass name",
1451 pass_info
->pass
->name
);
1453 /* Try to insert the new pass to the pass lists. We need to check
1454 all five lists as the reference pass could be in one (or all) of
1456 all_instances
= pass_info
->ref_pass_instance_number
== 0;
1457 success
= position_pass (pass_info
, &all_lowering_passes
);
1458 if (!success
|| all_instances
)
1459 success
|= position_pass (pass_info
, &all_small_ipa_passes
);
1460 if (!success
|| all_instances
)
1461 success
|= position_pass (pass_info
, &all_regular_ipa_passes
);
1462 if (!success
|| all_instances
)
1463 success
|= position_pass (pass_info
, &all_late_ipa_passes
);
1464 if (!success
|| all_instances
)
1465 success
|= position_pass (pass_info
, &all_passes
);
1469 "pass %qs not found but is referenced by new pass %qs",
1470 pass_info
->reference_pass_name
, pass_info
->pass
->name
);
1472 /* OK, we have successfully inserted the new pass. We need to register
1473 the dump files for the newly added pass and its duplicates (if any).
1474 Because the registration of plugin/backend passes happens after the
1475 command-line options are parsed, the options that specify single
1476 pass dumping (e.g. -fdump-tree-PASSNAME) cannot be used for new
1477 passes. Therefore we currently can only enable dumping of
1478 new passes when the 'dump-all' flags (e.g. -fdump-tree-all)
1479 are specified. While doing so, we also delete the pass_list_node
1480 objects created during pass positioning. */
1481 while (added_pass_nodes
)
1483 struct pass_list_node
*next_node
= added_pass_nodes
->next
;
1484 enum tree_dump_index tdi
;
1485 register_one_dump_file (added_pass_nodes
->pass
);
1486 if (added_pass_nodes
->pass
->type
== SIMPLE_IPA_PASS
1487 || added_pass_nodes
->pass
->type
== IPA_PASS
)
1489 else if (added_pass_nodes
->pass
->type
== GIMPLE_PASS
)
1493 /* Check if dump-all flag is specified. */
1494 if (dumps
->get_dump_file_info (tdi
)->pstate
)
1496 dumps
->get_dump_file_info (added_pass_nodes
->pass
->static_pass_number
)
1497 ->pstate
= dumps
->get_dump_file_info (tdi
)->pstate
;
1498 dumps
->get_dump_file_info (added_pass_nodes
->pass
->static_pass_number
)
1499 ->pflags
= dumps
->get_dump_file_info (tdi
)->pflags
;
1501 XDELETE (added_pass_nodes
);
1502 added_pass_nodes
= next_node
;
1506 /* Construct the pass tree. The sequencing of passes is driven by
1507 the cgraph routines:
1509 finalize_compilation_unit ()
1510 for each node N in the cgraph
1511 cgraph_analyze_function (N)
1512 cgraph_lower_function (N) -> all_lowering_passes
1514 If we are optimizing, compile is then invoked:
1517 ipa_passes () -> all_small_ipa_passes
1518 -> Analysis of all_regular_ipa_passes
1519 * possible LTO streaming at copmilation time *
1520 -> Execution of all_regular_ipa_passes
1521 * possible LTO streaming at link time *
1522 -> all_late_ipa_passes
1523 expand_all_functions ()
1524 for each node N in the cgraph
1525 expand_function (N) -> Transformation of all_regular_ipa_passes
1530 pass_manager::operator new (size_t sz
)
1532 /* Ensure that all fields of the pass manager are zero-initialized. */
1533 return xcalloc (1, sz
);
1537 pass_manager::operator delete (void *ptr
)
1542 pass_manager::pass_manager (context
*ctxt
)
1543 : all_passes (NULL
), all_small_ipa_passes (NULL
), all_lowering_passes (NULL
),
1544 all_regular_ipa_passes (NULL
),
1545 all_late_ipa_passes (NULL
), passes_by_id (NULL
), passes_by_id_size (0),
1550 /* Initialize the pass_lists array. */
1551 #define DEF_PASS_LIST(LIST) pass_lists[PASS_LIST_NO_##LIST] = &LIST;
1553 #undef DEF_PASS_LIST
1555 /* Build the tree of passes. */
1557 #define INSERT_PASSES_AFTER(PASS) \
1559 opt_pass **p_start; \
1560 p_start = p = &(PASS);
1562 #define TERMINATE_PASS_LIST(PASS) \
1563 gcc_assert (p_start == &PASS); \
1567 #define PUSH_INSERT_PASSES_WITHIN(PASS) \
1569 opt_pass **p = &(PASS ## _1)->sub;
1571 #define POP_INSERT_PASSES() \
1574 #define NEXT_PASS(PASS, NUM) \
1576 gcc_assert (NULL == PASS ## _ ## NUM); \
1578 PASS ## _1 = make_##PASS (m_ctxt); \
1581 gcc_assert (PASS ## _1); \
1582 PASS ## _ ## NUM = PASS ## _1->clone (); \
1584 p = next_pass_1 (p, PASS ## _ ## NUM, PASS ## _1); \
1587 #define NEXT_PASS_WITH_ARG(PASS, NUM, ARG) \
1589 NEXT_PASS (PASS, NUM); \
1590 PASS ## _ ## NUM->set_pass_param (0, ARG); \
1593 #include "pass-instances.def"
1595 #undef INSERT_PASSES_AFTER
1596 #undef PUSH_INSERT_PASSES_WITHIN
1597 #undef POP_INSERT_PASSES
1599 #undef NEXT_PASS_WITH_ARG
1600 #undef TERMINATE_PASS_LIST
1602 /* Register the passes with the tree dump code. */
1603 register_dump_files (all_lowering_passes
);
1604 register_dump_files (all_small_ipa_passes
);
1605 register_dump_files (all_regular_ipa_passes
);
1606 register_dump_files (all_late_ipa_passes
);
1607 register_dump_files (all_passes
);
1611 delete_pass_tree (opt_pass
*pass
)
1615 /* Recurse into child passes. */
1616 delete_pass_tree (pass
->sub
);
1618 opt_pass
*next
= pass
->next
;
1620 /* Delete this pass. */
1623 /* Iterate onto sibling passes. */
1628 pass_manager::~pass_manager ()
1630 XDELETEVEC (passes_by_id
);
1632 /* Call delete_pass_tree on each of the pass_lists. */
1633 #define DEF_PASS_LIST(LIST) \
1634 delete_pass_tree (*pass_lists[PASS_LIST_NO_##LIST]);
1636 #undef DEF_PASS_LIST
1640 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1641 function CALLBACK for every function in the call graph. Otherwise,
1642 call CALLBACK on the current function. */
1645 do_per_function (void (*callback
) (function
*, void *data
), void *data
)
1647 if (current_function_decl
)
1648 callback (cfun
, data
);
1651 struct cgraph_node
*node
;
1652 FOR_EACH_DEFINED_FUNCTION (node
)
1653 if (node
->analyzed
&& (gimple_has_body_p (node
->decl
) && !in_lto_p
)
1654 && (!node
->clone_of
|| node
->decl
!= node
->clone_of
->decl
))
1655 callback (DECL_STRUCT_FUNCTION (node
->decl
), data
);
1659 /* Because inlining might remove no-longer reachable nodes, we need to
1660 keep the array visible to garbage collector to avoid reading collected
1663 static GTY ((length ("nnodes"))) cgraph_node
**order
;
1665 /* Hook called when NODE is removed and therefore should be
1666 excluded from order vector. DATA is an array of integers.
1667 DATA[0] holds max index it may be accessed by. For cgraph
1668 node DATA[node->uid + 1] holds index of this node in order
1671 remove_cgraph_node_from_order (cgraph_node
*node
, void *data
)
1673 int *order_idx
= (int *)data
;
1675 if (node
->uid
>= order_idx
[0])
1678 int idx
= order_idx
[node
->uid
+ 1];
1679 if (idx
>= 0 && idx
< nnodes
&& order
[idx
] == node
)
1683 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1684 function CALLBACK for every function in the call graph. Otherwise,
1685 call CALLBACK on the current function.
1686 This function is global so that plugins can use it. */
1688 do_per_function_toporder (void (*callback
) (function
*, void *data
), void *data
)
1692 if (current_function_decl
)
1693 callback (cfun
, data
);
1696 cgraph_node_hook_list
*hook
;
1698 gcc_assert (!order
);
1699 order
= ggc_vec_alloc
<cgraph_node
*> (symtab
->cgraph_count
);
1701 order_idx
= XALLOCAVEC (int, symtab
->cgraph_max_uid
+ 1);
1702 memset (order_idx
+ 1, -1, sizeof (int) * symtab
->cgraph_max_uid
);
1703 order_idx
[0] = symtab
->cgraph_max_uid
;
1705 nnodes
= ipa_reverse_postorder (order
);
1706 for (i
= nnodes
- 1; i
>= 0; i
--)
1708 order
[i
]->process
= 1;
1709 order_idx
[order
[i
]->uid
+ 1] = i
;
1711 hook
= symtab
->add_cgraph_removal_hook (remove_cgraph_node_from_order
,
1713 for (i
= nnodes
- 1; i
>= 0; i
--)
1715 /* Function could be inlined and removed as unreachable. */
1719 struct cgraph_node
*node
= order
[i
];
1721 /* Allow possibly removed nodes to be garbage collected. */
1724 if (node
->has_gimple_body_p ())
1726 struct function
*fn
= DECL_STRUCT_FUNCTION (node
->decl
);
1728 callback (fn
, data
);
1732 symtab
->remove_cgraph_removal_hook (hook
);
1739 /* Helper function to perform function body dump. */
1742 execute_function_dump (function
*fn
, void *data
)
1744 opt_pass
*pass
= (opt_pass
*)data
;
1750 if (fn
->curr_properties
& PROP_trees
)
1751 dump_function_to_file (fn
->decl
, dump_file
, dump_flags
);
1753 print_rtl_with_bb (dump_file
, get_insns (), dump_flags
);
1755 /* Flush the file. If verification fails, we won't be able to
1756 close the file before aborting. */
1759 if ((fn
->curr_properties
& PROP_cfg
)
1760 && (dump_flags
& TDF_GRAPH
))
1762 gcc::dump_manager
*dumps
= g
->get_dumps ();
1763 struct dump_file_info
*dfi
1764 = dumps
->get_dump_file_info (pass
->static_pass_number
);
1765 if (!dfi
->graph_dump_initialized
)
1767 clean_graph_dump_file (dump_file_name
);
1768 dfi
->graph_dump_initialized
= true;
1770 print_graph_cfg (dump_file_name
, fn
);
1777 static struct profile_record
*profile_record
;
1779 /* Do profile consistency book-keeping for the pass with static number INDEX.
1780 If SUBPASS is zero, we run _before_ the pass, and if SUBPASS is one, then
1781 we run _after_ the pass. RUN is true if the pass really runs, or FALSE
1782 if we are only book-keeping on passes that may have selectively disabled
1783 themselves on a given function. */
1785 check_profile_consistency (int index
, int subpass
, bool run
)
1787 pass_manager
*passes
= g
->get_passes ();
1790 if (!profile_record
)
1791 profile_record
= XCNEWVEC (struct profile_record
,
1792 passes
->passes_by_id_size
);
1793 gcc_assert (index
< passes
->passes_by_id_size
&& index
>= 0);
1794 gcc_assert (subpass
< 2);
1795 profile_record
[index
].run
|= run
;
1796 account_profile_record (&profile_record
[index
], subpass
);
1799 /* Output profile consistency. */
1802 dump_profile_report (void)
1804 g
->get_passes ()->dump_profile_report ();
1808 pass_manager::dump_profile_report () const
1811 int last_freq_in
= 0, last_count_in
= 0, last_freq_out
= 0, last_count_out
= 0;
1812 gcov_type last_time
= 0, last_size
= 0;
1813 double rel_time_change
, rel_size_change
;
1814 int last_reported
= 0;
1816 if (!profile_record
)
1818 fprintf (stderr
, "\nProfile consistency report:\n\n");
1819 fprintf (stderr
, "Pass name |mismatch in |mismated out|Overall\n");
1820 fprintf (stderr
, " |freq count |freq count |size time\n");
1822 for (i
= 0; i
< passes_by_id_size
; i
++)
1823 for (j
= 0 ; j
< 2; j
++)
1824 if (profile_record
[i
].run
)
1827 rel_time_change
= (profile_record
[i
].time
[j
]
1828 - (double)last_time
) * 100 / (double)last_time
;
1830 rel_time_change
= 0;
1832 rel_size_change
= (profile_record
[i
].size
[j
]
1833 - (double)last_size
) * 100 / (double)last_size
;
1835 rel_size_change
= 0;
1837 if (profile_record
[i
].num_mismatched_freq_in
[j
] != last_freq_in
1838 || profile_record
[i
].num_mismatched_freq_out
[j
] != last_freq_out
1839 || profile_record
[i
].num_mismatched_count_in
[j
] != last_count_in
1840 || profile_record
[i
].num_mismatched_count_out
[j
] != last_count_out
1841 || rel_time_change
|| rel_size_change
)
1844 fprintf (stderr
, "%-20s %s",
1845 passes_by_id
[i
]->name
,
1846 j
? "(after TODO)" : " ");
1847 if (profile_record
[i
].num_mismatched_freq_in
[j
] != last_freq_in
)
1848 fprintf (stderr
, "| %+5i",
1849 profile_record
[i
].num_mismatched_freq_in
[j
]
1852 fprintf (stderr
, "| ");
1853 if (profile_record
[i
].num_mismatched_count_in
[j
] != last_count_in
)
1854 fprintf (stderr
, " %+5i",
1855 profile_record
[i
].num_mismatched_count_in
[j
]
1858 fprintf (stderr
, " ");
1859 if (profile_record
[i
].num_mismatched_freq_out
[j
] != last_freq_out
)
1860 fprintf (stderr
, "| %+5i",
1861 profile_record
[i
].num_mismatched_freq_out
[j
]
1864 fprintf (stderr
, "| ");
1865 if (profile_record
[i
].num_mismatched_count_out
[j
] != last_count_out
)
1866 fprintf (stderr
, " %+5i",
1867 profile_record
[i
].num_mismatched_count_out
[j
]
1870 fprintf (stderr
, " ");
1872 /* Size/time units change across gimple and RTL. */
1873 if (i
== pass_expand_1
->static_pass_number
)
1874 fprintf (stderr
, "|----------");
1877 if (rel_size_change
)
1878 fprintf (stderr
, "| %+8.4f%%", rel_size_change
);
1880 fprintf (stderr
, "| ");
1881 if (rel_time_change
)
1882 fprintf (stderr
, " %+8.4f%%", rel_time_change
);
1884 fprintf (stderr
, "\n");
1885 last_freq_in
= profile_record
[i
].num_mismatched_freq_in
[j
];
1886 last_freq_out
= profile_record
[i
].num_mismatched_freq_out
[j
];
1887 last_count_in
= profile_record
[i
].num_mismatched_count_in
[j
];
1888 last_count_out
= profile_record
[i
].num_mismatched_count_out
[j
];
1890 else if (j
&& last_reported
!= i
)
1893 fprintf (stderr
, "%-20s ------------| | |\n",
1894 passes_by_id
[i
]->name
);
1896 last_time
= profile_record
[i
].time
[j
];
1897 last_size
= profile_record
[i
].size
[j
];
1901 /* Perform all TODO actions that ought to be done on each function. */
1904 execute_function_todo (function
*fn
, void *data
)
1906 bool from_ipa_pass
= (cfun
== NULL
);
1907 unsigned int flags
= (size_t)data
;
1908 flags
&= ~fn
->last_verified
;
1914 /* Always cleanup the CFG before trying to update SSA. */
1915 if (flags
& TODO_cleanup_cfg
)
1917 cleanup_tree_cfg ();
1919 /* When cleanup_tree_cfg merges consecutive blocks, it may
1920 perform some simplistic propagation when removing single
1921 valued PHI nodes. This propagation may, in turn, cause the
1922 SSA form to become out-of-date (see PR 22037). So, even
1923 if the parent pass had not scheduled an SSA update, we may
1924 still need to do one. */
1925 if (!(flags
& TODO_update_ssa_any
) && need_ssa_update_p (cfun
))
1926 flags
|= TODO_update_ssa
;
1929 if (flags
& TODO_update_ssa_any
)
1931 unsigned update_flags
= flags
& TODO_update_ssa_any
;
1932 update_ssa (update_flags
);
1935 if (flag_tree_pta
&& (flags
& TODO_rebuild_alias
))
1936 compute_may_aliases ();
1938 if (optimize
&& (flags
& TODO_update_address_taken
))
1939 execute_update_addresses_taken ();
1941 if (flags
& TODO_remove_unused_locals
)
1942 remove_unused_locals ();
1944 if (flags
& TODO_rebuild_frequencies
)
1945 rebuild_frequencies ();
1947 if (flags
& TODO_rebuild_cgraph_edges
)
1948 cgraph_edge::rebuild_edges ();
1950 gcc_assert (dom_info_state (fn
, CDI_POST_DOMINATORS
) == DOM_NONE
);
1951 /* If we've seen errors do not bother running any verifiers. */
1952 if (flag_checking
&& !seen_error ())
1954 dom_state pre_verify_state
= dom_info_state (fn
, CDI_DOMINATORS
);
1955 dom_state pre_verify_pstate
= dom_info_state (fn
, CDI_POST_DOMINATORS
);
1957 if (flags
& TODO_verify_il
)
1959 if (cfun
->curr_properties
& PROP_trees
)
1961 if (cfun
->curr_properties
& PROP_cfg
)
1962 /* IPA passes leave stmts to be fixed up, so make sure to
1963 not verify stmts really throw. */
1964 verify_gimple_in_cfg (cfun
, !from_ipa_pass
);
1966 verify_gimple_in_seq (gimple_body (cfun
->decl
));
1968 if (cfun
->curr_properties
& PROP_ssa
)
1969 /* IPA passes leave stmts to be fixed up, so make sure to
1970 not verify SSA operands whose verifier will choke on that. */
1971 verify_ssa (true, !from_ipa_pass
);
1972 /* IPA passes leave basic-blocks unsplit, so make sure to
1973 not trip on that. */
1974 if ((cfun
->curr_properties
& PROP_cfg
)
1976 verify_flow_info ();
1978 && loops_state_satisfies_p (LOOP_CLOSED_SSA
))
1979 verify_loop_closed_ssa (false);
1980 if (cfun
->curr_properties
& PROP_rtl
)
1981 verify_rtl_sharing ();
1984 /* Make sure verifiers don't change dominator state. */
1985 gcc_assert (dom_info_state (fn
, CDI_DOMINATORS
) == pre_verify_state
);
1986 gcc_assert (dom_info_state (fn
, CDI_POST_DOMINATORS
) == pre_verify_pstate
);
1989 fn
->last_verified
= flags
& TODO_verify_all
;
1993 /* For IPA passes make sure to release dominator info, it can be
1994 computed by non-verifying TODOs. */
1997 free_dominance_info (fn
, CDI_DOMINATORS
);
1998 free_dominance_info (fn
, CDI_POST_DOMINATORS
);
2002 /* Perform all TODO actions. */
2004 execute_todo (unsigned int flags
)
2008 && need_ssa_update_p (cfun
))
2009 gcc_assert (flags
& TODO_update_ssa_any
);
2011 timevar_push (TV_TODO
);
2013 statistics_fini_pass ();
2016 do_per_function (execute_function_todo
, (void *)(size_t) flags
);
2018 /* At this point we should not have any unreachable code in the
2019 CFG, so it is safe to flush the pending freelist for SSA_NAMES. */
2020 if (cfun
&& cfun
->gimple_df
)
2021 flush_ssaname_freelist ();
2023 /* Always remove functions just as before inlining: IPA passes might be
2024 interested to see bodies of extern inline functions that are not inlined
2025 to analyze side effects. The full removal is done just at the end
2026 of IPA pass queue. */
2027 if (flags
& TODO_remove_functions
)
2030 symtab
->remove_unreachable_nodes (dump_file
);
2033 if ((flags
& TODO_dump_symtab
) && dump_file
&& !current_function_decl
)
2036 symtab_node::dump_table (dump_file
);
2037 /* Flush the file. If verification fails, we won't be able to
2038 close the file before aborting. */
2042 /* Now that the dumping has been done, we can get rid of the optional
2044 if (flags
& TODO_df_finish
)
2045 df_finish_pass ((flags
& TODO_df_verify
) != 0);
2047 timevar_pop (TV_TODO
);
2050 /* Verify invariants that should hold between passes. This is a place
2051 to put simple sanity checks. */
2054 verify_interpass_invariants (void)
2056 gcc_checking_assert (!fold_deferring_overflow_warnings_p ());
2059 /* Clear the last verified flag. */
2062 clear_last_verified (function
*fn
, void *data ATTRIBUTE_UNUSED
)
2064 fn
->last_verified
= 0;
2067 /* Helper function. Verify that the properties has been turn into the
2068 properties expected by the pass. */
2071 verify_curr_properties (function
*fn
, void *data
)
2073 unsigned int props
= (size_t)data
;
2074 gcc_assert ((fn
->curr_properties
& props
) == props
);
2077 /* Release dump file name if set. */
2080 release_dump_file_name (void)
2084 free (CONST_CAST (char *, dump_file_name
));
2085 dump_file_name
= NULL
;
2089 /* Initialize pass dump file. */
2090 /* This is non-static so that the plugins can use it. */
2093 pass_init_dump_file (opt_pass
*pass
)
2095 /* If a dump file name is present, open it if enabled. */
2096 if (pass
->static_pass_number
!= -1)
2098 timevar_push (TV_DUMP
);
2099 gcc::dump_manager
*dumps
= g
->get_dumps ();
2100 bool initializing_dump
=
2101 !dumps
->dump_initialized_p (pass
->static_pass_number
);
2102 release_dump_file_name ();
2103 dump_file_name
= dumps
->get_dump_file_name (pass
->static_pass_number
);
2104 dumps
->dump_start (pass
->static_pass_number
, &dump_flags
);
2105 if (dump_file
&& current_function_decl
)
2106 dump_function_header (dump_file
, current_function_decl
, dump_flags
);
2107 if (initializing_dump
2108 && dump_file
&& (dump_flags
& TDF_GRAPH
)
2109 && cfun
&& (cfun
->curr_properties
& PROP_cfg
))
2111 clean_graph_dump_file (dump_file_name
);
2112 struct dump_file_info
*dfi
2113 = dumps
->get_dump_file_info (pass
->static_pass_number
);
2114 dfi
->graph_dump_initialized
= true;
2116 timevar_pop (TV_DUMP
);
2117 return initializing_dump
;
2123 /* Flush PASS dump file. */
2124 /* This is non-static so that plugins can use it. */
2127 pass_fini_dump_file (opt_pass
*pass
)
2129 timevar_push (TV_DUMP
);
2131 /* Flush and close dump file. */
2132 release_dump_file_name ();
2134 g
->get_dumps ()->dump_finish (pass
->static_pass_number
);
2135 timevar_pop (TV_DUMP
);
2138 /* After executing the pass, apply expected changes to the function
2142 update_properties_after_pass (function
*fn
, void *data
)
2144 opt_pass
*pass
= (opt_pass
*) data
;
2145 fn
->curr_properties
= (fn
->curr_properties
| pass
->properties_provided
)
2146 & ~pass
->properties_destroyed
;
2149 /* Execute summary generation for all of the passes in IPA_PASS. */
2152 execute_ipa_summary_passes (ipa_opt_pass_d
*ipa_pass
)
2156 opt_pass
*pass
= ipa_pass
;
2158 /* Execute all of the IPA_PASSes in the list. */
2159 if (ipa_pass
->type
== IPA_PASS
2160 && pass
->gate (cfun
)
2161 && ipa_pass
->generate_summary
)
2163 pass_init_dump_file (pass
);
2165 /* If a timevar is present, start it. */
2167 timevar_push (pass
->tv_id
);
2169 current_pass
= pass
;
2170 ipa_pass
->generate_summary ();
2174 timevar_pop (pass
->tv_id
);
2176 pass_fini_dump_file (pass
);
2178 ipa_pass
= (ipa_opt_pass_d
*)ipa_pass
->next
;
2182 /* Execute IPA_PASS function transform on NODE. */
2185 execute_one_ipa_transform_pass (struct cgraph_node
*node
,
2186 ipa_opt_pass_d
*ipa_pass
)
2188 opt_pass
*pass
= ipa_pass
;
2189 unsigned int todo_after
= 0;
2191 current_pass
= pass
;
2192 if (!ipa_pass
->function_transform
)
2195 /* Note that the folders should only create gimple expressions.
2196 This is a hack until the new folder is ready. */
2197 in_gimple_form
= (cfun
&& (cfun
->curr_properties
& PROP_trees
)) != 0;
2199 pass_init_dump_file (pass
);
2201 /* Run pre-pass verification. */
2202 execute_todo (ipa_pass
->function_transform_todo_flags_start
);
2204 /* If a timevar is present, start it. */
2205 if (pass
->tv_id
!= TV_NONE
)
2206 timevar_push (pass
->tv_id
);
2209 todo_after
= ipa_pass
->function_transform (node
);
2212 if (pass
->tv_id
!= TV_NONE
)
2213 timevar_pop (pass
->tv_id
);
2215 if (profile_report
&& cfun
&& (cfun
->curr_properties
& PROP_cfg
))
2216 check_profile_consistency (pass
->static_pass_number
, 0, true);
2218 /* Run post-pass cleanup and verification. */
2219 execute_todo (todo_after
);
2220 verify_interpass_invariants ();
2221 if (profile_report
&& cfun
&& (cfun
->curr_properties
& PROP_cfg
))
2222 check_profile_consistency (pass
->static_pass_number
, 1, true);
2225 do_per_function (execute_function_dump
, pass
);
2226 pass_fini_dump_file (pass
);
2228 current_pass
= NULL
;
2229 redirect_edge_var_map_empty ();
2231 /* Signal this is a suitable GC collection point. */
2232 if (!(todo_after
& TODO_do_not_ggc_collect
))
2236 /* For the current function, execute all ipa transforms. */
2239 execute_all_ipa_transforms (void)
2241 struct cgraph_node
*node
;
2244 node
= cgraph_node::get (current_function_decl
);
2246 if (node
->ipa_transforms_to_apply
.exists ())
2250 for (i
= 0; i
< node
->ipa_transforms_to_apply
.length (); i
++)
2251 execute_one_ipa_transform_pass (node
, node
->ipa_transforms_to_apply
[i
]);
2252 node
->ipa_transforms_to_apply
.release ();
2256 /* Check if PASS is explicitly disabled or enabled and return
2257 the gate status. FUNC is the function to be processed, and
2258 GATE_STATUS is the gate status determined by pass manager by
2262 override_gate_status (opt_pass
*pass
, tree func
, bool gate_status
)
2264 bool explicitly_enabled
= false;
2265 bool explicitly_disabled
= false;
2268 = is_pass_explicitly_enabled_or_disabled (pass
, func
,
2269 enabled_pass_uid_range_tab
);
2271 = is_pass_explicitly_enabled_or_disabled (pass
, func
,
2272 disabled_pass_uid_range_tab
);
2274 gate_status
= !explicitly_disabled
&& (gate_status
|| explicitly_enabled
);
2283 execute_one_pass (opt_pass
*pass
)
2285 unsigned int todo_after
= 0;
2289 /* IPA passes are executed on whole program, so cfun should be NULL.
2290 Other passes need function context set. */
2291 if (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
)
2292 gcc_assert (!cfun
&& !current_function_decl
);
2294 gcc_assert (cfun
&& current_function_decl
);
2296 current_pass
= pass
;
2298 /* Check whether gate check should be avoided.
2299 User controls the value of the gate through the parameter "gate_status". */
2300 gate_status
= pass
->gate (cfun
);
2301 gate_status
= override_gate_status (pass
, current_function_decl
, gate_status
);
2303 /* Override gate with plugin. */
2304 invoke_plugin_callbacks (PLUGIN_OVERRIDE_GATE
, &gate_status
);
2308 /* Run so passes selectively disabling themselves on a given function
2309 are not miscounted. */
2310 if (profile_report
&& cfun
&& (cfun
->curr_properties
& PROP_cfg
))
2312 check_profile_consistency (pass
->static_pass_number
, 0, false);
2313 check_profile_consistency (pass
->static_pass_number
, 1, false);
2315 current_pass
= NULL
;
2319 /* Pass execution event trigger: useful to identify passes being
2321 invoke_plugin_callbacks (PLUGIN_PASS_EXECUTION
, pass
);
2323 if (!quiet_flag
&& !cfun
)
2324 fprintf (stderr
, " <%s>", pass
->name
? pass
->name
: "");
2326 /* Note that the folders should only create gimple expressions.
2327 This is a hack until the new folder is ready. */
2328 in_gimple_form
= (cfun
&& (cfun
->curr_properties
& PROP_trees
)) != 0;
2330 pass_init_dump_file (pass
);
2332 /* Run pre-pass verification. */
2333 execute_todo (pass
->todo_flags_start
);
2336 do_per_function (verify_curr_properties
,
2337 (void *)(size_t)pass
->properties_required
);
2339 /* If a timevar is present, start it. */
2340 if (pass
->tv_id
!= TV_NONE
)
2341 timevar_push (pass
->tv_id
);
2344 todo_after
= pass
->execute (cfun
);
2346 if (todo_after
& TODO_discard_function
)
2348 pass_fini_dump_file (pass
);
2351 /* As cgraph_node::release_body expects release dominators info,
2352 we have to release it. */
2353 if (dom_info_available_p (CDI_DOMINATORS
))
2354 free_dominance_info (CDI_DOMINATORS
);
2356 if (dom_info_available_p (CDI_POST_DOMINATORS
))
2357 free_dominance_info (CDI_POST_DOMINATORS
);
2359 tree fn
= cfun
->decl
;
2362 cgraph_node::get (fn
)->release_body ();
2364 current_pass
= NULL
;
2365 redirect_edge_var_map_empty ();
2372 do_per_function (clear_last_verified
, NULL
);
2375 if (pass
->tv_id
!= TV_NONE
)
2376 timevar_pop (pass
->tv_id
);
2378 do_per_function (update_properties_after_pass
, pass
);
2380 if (profile_report
&& cfun
&& (cfun
->curr_properties
& PROP_cfg
))
2381 check_profile_consistency (pass
->static_pass_number
, 0, true);
2383 /* Run post-pass cleanup and verification. */
2384 execute_todo (todo_after
| pass
->todo_flags_finish
| TODO_verify_il
);
2385 if (profile_report
&& cfun
&& (cfun
->curr_properties
& PROP_cfg
))
2386 check_profile_consistency (pass
->static_pass_number
, 1, true);
2388 verify_interpass_invariants ();
2389 if (pass
->type
== IPA_PASS
2390 && ((ipa_opt_pass_d
*)pass
)->function_transform
)
2392 struct cgraph_node
*node
;
2393 FOR_EACH_FUNCTION_WITH_GIMPLE_BODY (node
)
2394 node
->ipa_transforms_to_apply
.safe_push ((ipa_opt_pass_d
*)pass
);
2397 do_per_function (execute_function_dump
, pass
);
2399 if (!current_function_decl
)
2400 symtab
->process_new_functions ();
2402 pass_fini_dump_file (pass
);
2404 if (pass
->type
!= SIMPLE_IPA_PASS
&& pass
->type
!= IPA_PASS
)
2405 gcc_assert (!(cfun
->curr_properties
& PROP_trees
)
2406 || pass
->type
!= RTL_PASS
);
2408 current_pass
= NULL
;
2409 redirect_edge_var_map_empty ();
2411 /* Signal this is a suitable GC collection point. */
2412 if (!((todo_after
| pass
->todo_flags_finish
) & TODO_do_not_ggc_collect
))
2419 execute_pass_list_1 (opt_pass
*pass
)
2423 gcc_assert (pass
->type
== GIMPLE_PASS
2424 || pass
->type
== RTL_PASS
);
2428 if (execute_one_pass (pass
) && pass
->sub
)
2429 execute_pass_list_1 (pass
->sub
);
2436 execute_pass_list (function
*fn
, opt_pass
*pass
)
2438 gcc_assert (fn
== cfun
);
2439 execute_pass_list_1 (pass
);
2440 if (cfun
&& fn
->cfg
)
2442 free_dominance_info (CDI_DOMINATORS
);
2443 free_dominance_info (CDI_POST_DOMINATORS
);
2447 /* Write out all LTO data. */
2451 timevar_push (TV_IPA_LTO_GIMPLE_OUT
);
2453 timevar_pop (TV_IPA_LTO_GIMPLE_OUT
);
2454 timevar_push (TV_IPA_LTO_DECL_OUT
);
2455 produce_asm_for_decls ();
2456 timevar_pop (TV_IPA_LTO_DECL_OUT
);
2459 /* Same as execute_pass_list but assume that subpasses of IPA passes
2460 are local passes. If SET is not NULL, write out summaries of only
2461 those node in SET. */
2464 ipa_write_summaries_2 (opt_pass
*pass
, struct lto_out_decl_state
*state
)
2468 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*)pass
;
2469 gcc_assert (!current_function_decl
);
2471 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
2472 if (pass
->type
== IPA_PASS
2473 && ipa_pass
->write_summary
2474 && pass
->gate (cfun
))
2476 /* If a timevar is present, start it. */
2478 timevar_push (pass
->tv_id
);
2480 pass_init_dump_file (pass
);
2482 current_pass
= pass
;
2483 ipa_pass
->write_summary ();
2485 pass_fini_dump_file (pass
);
2487 /* If a timevar is present, start it. */
2489 timevar_pop (pass
->tv_id
);
2492 if (pass
->sub
&& pass
->sub
->type
!= GIMPLE_PASS
)
2493 ipa_write_summaries_2 (pass
->sub
, state
);
2499 /* Helper function of ipa_write_summaries. Creates and destroys the
2500 decl state and calls ipa_write_summaries_2 for all passes that have
2501 summaries. SET is the set of nodes to be written. */
2504 ipa_write_summaries_1 (lto_symtab_encoder_t encoder
)
2506 pass_manager
*passes
= g
->get_passes ();
2507 struct lto_out_decl_state
*state
= lto_new_out_decl_state ();
2508 state
->symtab_node_encoder
= encoder
;
2510 lto_output_init_mode_table ();
2511 lto_push_out_decl_state (state
);
2513 gcc_assert (!flag_wpa
);
2514 ipa_write_summaries_2 (passes
->all_regular_ipa_passes
, state
);
2518 gcc_assert (lto_get_out_decl_state () == state
);
2519 lto_pop_out_decl_state ();
2520 lto_delete_out_decl_state (state
);
2523 /* Write out summaries for all the nodes in the callgraph. */
2526 ipa_write_summaries (void)
2528 lto_symtab_encoder_t encoder
;
2530 varpool_node
*vnode
;
2531 struct cgraph_node
*node
;
2532 struct cgraph_node
**order
;
2534 if ((!flag_generate_lto
&& !flag_generate_offload
) || seen_error ())
2537 select_what_to_stream ();
2539 encoder
= lto_symtab_encoder_new (false);
2541 /* Create the callgraph set in the same order used in
2542 cgraph_expand_all_functions. This mostly facilitates debugging,
2543 since it causes the gimple file to be processed in the same order
2544 as the source code. */
2545 order
= XCNEWVEC (struct cgraph_node
*, symtab
->cgraph_count
);
2546 order_pos
= ipa_reverse_postorder (order
);
2547 gcc_assert (order_pos
== symtab
->cgraph_count
);
2549 for (i
= order_pos
- 1; i
>= 0; i
--)
2551 struct cgraph_node
*node
= order
[i
];
2553 if (node
->has_gimple_body_p ())
2555 /* When streaming out references to statements as part of some IPA
2556 pass summary, the statements need to have uids assigned and the
2557 following does that for all the IPA passes here. Naturally, this
2558 ordering then matches the one IPA-passes get in their stmt_fixup
2561 push_cfun (DECL_STRUCT_FUNCTION (node
->decl
));
2562 renumber_gimple_stmt_uids ();
2565 if (node
->definition
&& node
->need_lto_streaming
)
2566 lto_set_symtab_encoder_in_partition (encoder
, node
);
2569 FOR_EACH_DEFINED_FUNCTION (node
)
2570 if (node
->alias
&& node
->need_lto_streaming
)
2571 lto_set_symtab_encoder_in_partition (encoder
, node
);
2572 FOR_EACH_DEFINED_VARIABLE (vnode
)
2573 if (vnode
->need_lto_streaming
)
2574 lto_set_symtab_encoder_in_partition (encoder
, vnode
);
2576 ipa_write_summaries_1 (compute_ltrans_boundary (encoder
));
2581 /* Same as execute_pass_list but assume that subpasses of IPA passes
2582 are local passes. If SET is not NULL, write out optimization summaries of
2583 only those node in SET. */
2586 ipa_write_optimization_summaries_1 (opt_pass
*pass
,
2587 struct lto_out_decl_state
*state
)
2591 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*)pass
;
2592 gcc_assert (!current_function_decl
);
2594 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
2595 if (pass
->type
== IPA_PASS
2596 && ipa_pass
->write_optimization_summary
2597 && pass
->gate (cfun
))
2599 /* If a timevar is present, start it. */
2601 timevar_push (pass
->tv_id
);
2603 pass_init_dump_file (pass
);
2605 current_pass
= pass
;
2606 ipa_pass
->write_optimization_summary ();
2608 pass_fini_dump_file (pass
);
2610 /* If a timevar is present, start it. */
2612 timevar_pop (pass
->tv_id
);
2615 if (pass
->sub
&& pass
->sub
->type
!= GIMPLE_PASS
)
2616 ipa_write_optimization_summaries_1 (pass
->sub
, state
);
2622 /* Write all the optimization summaries for the cgraph nodes in SET. If SET is
2623 NULL, write out all summaries of all nodes. */
2626 ipa_write_optimization_summaries (lto_symtab_encoder_t encoder
)
2628 struct lto_out_decl_state
*state
= lto_new_out_decl_state ();
2629 lto_symtab_encoder_iterator lsei
;
2630 state
->symtab_node_encoder
= encoder
;
2632 lto_output_init_mode_table ();
2633 lto_push_out_decl_state (state
);
2634 for (lsei
= lsei_start_function_in_partition (encoder
);
2635 !lsei_end_p (lsei
); lsei_next_function_in_partition (&lsei
))
2637 struct cgraph_node
*node
= lsei_cgraph_node (lsei
);
2638 /* When streaming out references to statements as part of some IPA
2639 pass summary, the statements need to have uids assigned.
2641 For functions newly born at WPA stage we need to initialize
2643 if (node
->definition
2644 && gimple_has_body_p (node
->decl
))
2646 push_cfun (DECL_STRUCT_FUNCTION (node
->decl
));
2647 renumber_gimple_stmt_uids ();
2652 gcc_assert (flag_wpa
);
2653 pass_manager
*passes
= g
->get_passes ();
2654 ipa_write_optimization_summaries_1 (passes
->all_regular_ipa_passes
, state
);
2658 gcc_assert (lto_get_out_decl_state () == state
);
2659 lto_pop_out_decl_state ();
2660 lto_delete_out_decl_state (state
);
2663 /* Same as execute_pass_list but assume that subpasses of IPA passes
2664 are local passes. */
2667 ipa_read_summaries_1 (opt_pass
*pass
)
2671 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*) pass
;
2673 gcc_assert (!current_function_decl
);
2675 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
2677 if (pass
->gate (cfun
))
2679 if (pass
->type
== IPA_PASS
&& ipa_pass
->read_summary
)
2681 /* If a timevar is present, start it. */
2683 timevar_push (pass
->tv_id
);
2685 pass_init_dump_file (pass
);
2687 current_pass
= pass
;
2688 ipa_pass
->read_summary ();
2690 pass_fini_dump_file (pass
);
2694 timevar_pop (pass
->tv_id
);
2697 if (pass
->sub
&& pass
->sub
->type
!= GIMPLE_PASS
)
2698 ipa_read_summaries_1 (pass
->sub
);
2705 /* Read all the summaries for all_regular_ipa_passes. */
2708 ipa_read_summaries (void)
2710 pass_manager
*passes
= g
->get_passes ();
2711 ipa_read_summaries_1 (passes
->all_regular_ipa_passes
);
2714 /* Same as execute_pass_list but assume that subpasses of IPA passes
2715 are local passes. */
2718 ipa_read_optimization_summaries_1 (opt_pass
*pass
)
2722 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*) pass
;
2724 gcc_assert (!current_function_decl
);
2726 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
2728 if (pass
->gate (cfun
))
2730 if (pass
->type
== IPA_PASS
&& ipa_pass
->read_optimization_summary
)
2732 /* If a timevar is present, start it. */
2734 timevar_push (pass
->tv_id
);
2736 pass_init_dump_file (pass
);
2738 current_pass
= pass
;
2739 ipa_pass
->read_optimization_summary ();
2741 pass_fini_dump_file (pass
);
2745 timevar_pop (pass
->tv_id
);
2748 if (pass
->sub
&& pass
->sub
->type
!= GIMPLE_PASS
)
2749 ipa_read_optimization_summaries_1 (pass
->sub
);
2755 /* Read all the summaries for all_regular_ipa_passes. */
2758 ipa_read_optimization_summaries (void)
2760 pass_manager
*passes
= g
->get_passes ();
2761 ipa_read_optimization_summaries_1 (passes
->all_regular_ipa_passes
);
2764 /* Same as execute_pass_list but assume that subpasses of IPA passes
2765 are local passes. */
2767 execute_ipa_pass_list (opt_pass
*pass
)
2771 gcc_assert (!current_function_decl
);
2773 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
2774 if (execute_one_pass (pass
) && pass
->sub
)
2776 if (pass
->sub
->type
== GIMPLE_PASS
)
2778 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_START
, NULL
);
2779 do_per_function_toporder ((void (*)(function
*, void *))
2782 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_END
, NULL
);
2784 else if (pass
->sub
->type
== SIMPLE_IPA_PASS
2785 || pass
->sub
->type
== IPA_PASS
)
2786 execute_ipa_pass_list (pass
->sub
);
2790 gcc_assert (!current_function_decl
);
2791 symtab
->process_new_functions ();
2797 /* Execute stmt fixup hooks of all passes in PASS for NODE and STMTS. */
2800 execute_ipa_stmt_fixups (opt_pass
*pass
,
2801 struct cgraph_node
*node
, gimple
**stmts
)
2805 /* Execute all of the IPA_PASSes in the list. */
2806 if (pass
->type
== IPA_PASS
2807 && pass
->gate (cfun
))
2809 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*) pass
;
2811 if (ipa_pass
->stmt_fixup
)
2813 pass_init_dump_file (pass
);
2814 /* If a timevar is present, start it. */
2816 timevar_push (pass
->tv_id
);
2818 current_pass
= pass
;
2819 ipa_pass
->stmt_fixup (node
, stmts
);
2823 timevar_pop (pass
->tv_id
);
2824 pass_fini_dump_file (pass
);
2827 execute_ipa_stmt_fixups (pass
->sub
, node
, stmts
);
2833 /* Execute stmt fixup hooks of all IPA passes for NODE and STMTS. */
2836 execute_all_ipa_stmt_fixups (struct cgraph_node
*node
, gimple
**stmts
)
2838 pass_manager
*passes
= g
->get_passes ();
2839 execute_ipa_stmt_fixups (passes
->all_regular_ipa_passes
, node
, stmts
);
2843 extern void debug_properties (unsigned int);
2844 extern void dump_properties (FILE *, unsigned int);
2847 dump_properties (FILE *dump
, unsigned int props
)
2849 fprintf (dump
, "Properties:\n");
2850 if (props
& PROP_gimple_any
)
2851 fprintf (dump
, "PROP_gimple_any\n");
2852 if (props
& PROP_gimple_lcf
)
2853 fprintf (dump
, "PROP_gimple_lcf\n");
2854 if (props
& PROP_gimple_leh
)
2855 fprintf (dump
, "PROP_gimple_leh\n");
2856 if (props
& PROP_cfg
)
2857 fprintf (dump
, "PROP_cfg\n");
2858 if (props
& PROP_ssa
)
2859 fprintf (dump
, "PROP_ssa\n");
2860 if (props
& PROP_no_crit_edges
)
2861 fprintf (dump
, "PROP_no_crit_edges\n");
2862 if (props
& PROP_rtl
)
2863 fprintf (dump
, "PROP_rtl\n");
2864 if (props
& PROP_gimple_lomp
)
2865 fprintf (dump
, "PROP_gimple_lomp\n");
2866 if (props
& PROP_gimple_lcx
)
2867 fprintf (dump
, "PROP_gimple_lcx\n");
2868 if (props
& PROP_gimple_lvec
)
2869 fprintf (dump
, "PROP_gimple_lvec\n");
2870 if (props
& PROP_cfglayout
)
2871 fprintf (dump
, "PROP_cfglayout\n");
2875 debug_properties (unsigned int props
)
2877 dump_properties (stderr
, props
);
2880 /* Called by local passes to see if function is called by already processed nodes.
2881 Because we process nodes in topological order, this means that function is
2882 in recursive cycle or we introduced new direct calls. */
2884 function_called_by_processed_nodes_p (void)
2886 struct cgraph_edge
*e
;
2887 for (e
= cgraph_node::get (current_function_decl
)->callers
;
2891 if (e
->caller
->decl
== current_function_decl
)
2893 if (!e
->caller
->has_gimple_body_p ())
2895 if (TREE_ASM_WRITTEN (e
->caller
->decl
))
2897 if (!e
->caller
->process
&& !e
->caller
->global
.inlined_to
)
2902 fprintf (dump_file
, "Already processed call to:\n");
2903 e
->caller
->dump (dump_file
);
2908 #include "gt-passes.h"