1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987-2021 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"
40 #include "lto-streamer.h"
41 #include "fold-const.h"
47 #include "value-prof.h"
49 #include "tree-ssa-loop-manip.h"
50 #include "tree-into-ssa.h"
53 #include "tree-pass.h"
55 #include "ipa-utils.h"
56 #include "tree-pretty-print.h" /* for dump_function_header */
58 #include "pass_manager.h"
60 #include "tree-ssa-live.h" /* For remove_unused_locals. */
61 #include "tree-cfgcleanup.h"
62 #include "insn-addr.h" /* for INSN_ADDRESSES_ALLOC. */
63 #include "diagnostic-core.h" /* for fnotice */
64 #include "stringpool.h"
69 /* This is used for debugging. It allows the current pass to printed
70 from anywhere in compilation.
71 The variable current_pass is also used for statistics and plugins. */
72 opt_pass
*current_pass
;
74 /* Most passes are single-instance (within their context) and thus don't
75 need to implement cloning, but passes that support multiple instances
76 *must* provide their own implementation of the clone method.
78 Handle this by providing a default implemenation, but make it a fatal
84 internal_error ("pass %s does not support cloning", name
);
88 opt_pass::set_pass_param (unsigned int, bool)
90 internal_error ("pass %s needs a %<set_pass_param%> implementation "
91 "to handle the extra argument in %<NEXT_PASS%>", name
);
95 opt_pass::gate (function
*)
101 opt_pass::execute (function
*)
106 opt_pass::opt_pass (const pass_data
&data
, context
*ctxt
)
110 static_pass_number (0),
117 pass_manager::execute_early_local_passes ()
119 execute_pass_list (cfun
, pass_build_ssa_passes_1
->sub
);
120 execute_pass_list (cfun
, pass_local_optimization_passes_1
->sub
);
124 pass_manager::execute_pass_mode_switching ()
126 return pass_mode_switching_1
->execute (cfun
);
130 /* Call from anywhere to find out what pass this is. Useful for
131 printing out debugging information deep inside an service
134 print_current_pass (FILE *file
)
137 fprintf (file
, "current pass = %s (%d)\n",
138 current_pass
->name
, current_pass
->static_pass_number
);
140 fprintf (file
, "no current pass.\n");
144 /* Call from the debugger to get the current pass name. */
148 print_current_pass (stderr
);
153 /* Global variables used to communicate with passes. */
157 /* This is called from various places for FUNCTION_DECL, VAR_DECL,
160 This does nothing for local (non-static) variables, unless the
161 variable is a register variable with DECL_ASSEMBLER_NAME set. In
162 that case, or if the variable is not an automatic, it sets up the
163 RTL and outputs any assembler code (label definition, storage
164 allocation and initialization).
166 DECL is the declaration. TOP_LEVEL is nonzero
167 if this declaration is not within a function. */
170 rest_of_decl_compilation (tree decl
,
174 bool finalize
= true;
176 /* We deferred calling assemble_alias so that we could collect
177 other attributes such as visibility. Emit the alias now. */
181 alias
= lookup_attribute ("alias", DECL_ATTRIBUTES (decl
));
184 alias
= TREE_VALUE (TREE_VALUE (alias
));
185 alias
= get_identifier (TREE_STRING_POINTER (alias
));
186 /* A quirk of the initial implementation of aliases required that the
187 user add "extern" to all of them. Which is silly, but now
188 historical. Do note that the symbol is in fact locally defined. */
189 DECL_EXTERNAL (decl
) = 0;
190 TREE_STATIC (decl
) = 1;
191 assemble_alias (decl
, alias
);
196 /* Can't defer this, because it needs to happen before any
197 later function definitions are processed. */
198 if (HAS_DECL_ASSEMBLER_NAME_P (decl
)
199 && DECL_ASSEMBLER_NAME_SET_P (decl
)
200 && DECL_REGISTER (decl
))
201 make_decl_rtl (decl
);
203 /* Forward declarations for nested functions are not "external",
204 but we need to treat them as if they were. */
205 if (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)
206 || TREE_CODE (decl
) == FUNCTION_DECL
)
208 timevar_push (TV_VARCONST
);
210 /* Don't output anything when a tentative file-scope definition
211 is seen. But at end of compilation, do output code for them.
213 We do output all variables and rely on
214 callgraph code to defer them except for forward declarations
215 (see gcc.c-torture/compile/920624-1.c) */
217 || !DECL_DEFER_OUTPUT (decl
)
218 || DECL_INITIAL (decl
))
219 && (!VAR_P (decl
) || !DECL_HAS_VALUE_EXPR_P (decl
))
220 && !DECL_EXTERNAL (decl
))
222 /* When reading LTO unit, we also read varpool, so do not
224 if (in_lto_p
&& !at_end
)
226 else if (finalize
&& TREE_CODE (decl
) != FUNCTION_DECL
)
227 varpool_node::finalize_decl (decl
);
230 #ifdef ASM_FINISH_DECLARE_OBJECT
231 if (decl
== last_assemble_variable_decl
)
233 ASM_FINISH_DECLARE_OBJECT (asm_out_file
, decl
,
238 /* Now that we have activated any function-specific attributes
239 that might affect function decl, particularly align, relayout it. */
240 if (TREE_CODE (decl
) == FUNCTION_DECL
)
241 targetm
.target_option
.relayout_function (decl
);
243 timevar_pop (TV_VARCONST
);
245 else if (TREE_CODE (decl
) == TYPE_DECL
246 /* Like in rest_of_type_compilation, avoid confusing the debug
247 information machinery when there are errors. */
250 timevar_push (TV_SYMOUT
);
251 debug_hooks
->type_decl (decl
, !top_level
);
252 timevar_pop (TV_SYMOUT
);
255 /* Let cgraph know about the existence of variables. */
256 if (in_lto_p
&& !at_end
)
258 else if (VAR_P (decl
) && !DECL_EXTERNAL (decl
)
259 && TREE_STATIC (decl
))
260 varpool_node::get_create (decl
);
262 /* Generate early debug for global variables. Any local variables will
263 be handled by either handling reachable functions from
264 finalize_compilation_unit (and by consequence, locally scoped
265 symbols), or by rest_of_type_compilation below.
267 For Go's hijack of the debug_hooks to implement -fdump-go-spec, pick up
268 function prototypes. Go's debug_hooks will not forward them to the
271 && (TREE_CODE (decl
) != FUNCTION_DECL
272 /* This will pick up function prototypes with no bodies,
273 which are not visible in finalize_compilation_unit()
274 while iterating with FOR_EACH_*_FUNCTION through the
276 || (flag_dump_go_spec
!= NULL
277 && !DECL_SAVED_TREE (decl
)
278 && DECL_STRUCT_FUNCTION (decl
) == NULL
))
280 /* We need to check both decl_function_context and
281 current_function_decl here to make sure local extern
282 declarations end up with the correct context.
284 For local extern declarations, decl_function_context is
285 empty, but current_function_decl is set to the function where
286 the extern was declared . Without the check for
287 !current_function_decl below, the local extern ends up
288 incorrectly with a top-level context.
300 extern int i; // Local extern declaration.
307 && !decl_function_context (decl
)
308 && !current_function_decl
309 && DECL_SOURCE_LOCATION (decl
) != BUILTINS_LOCATION
310 && (!decl_type_context (decl
)
311 /* If we created a varpool node for the decl make sure to
312 call early_global_decl. Otherwise we miss changes
313 introduced by member definitions like
314 struct A { static int staticdatamember; };
315 int A::staticdatamember;
316 and thus have incomplete early debug and late debug
317 called from varpool node removal fails to handle it
321 && TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
)))
322 /* Avoid confusing the debug information machinery when there are
325 (*debug_hooks
->early_global_decl
) (decl
);
328 /* Called after finishing a record, union or enumeral type. */
331 rest_of_type_compilation (tree type
, int toplev
)
333 /* Avoid confusing the debug information machinery when there are
338 timevar_push (TV_SYMOUT
);
339 debug_hooks
->type_decl (TYPE_STUB_DECL (type
), !toplev
);
340 timevar_pop (TV_SYMOUT
);
347 finish_optimization_passes (void)
350 struct dump_file_info
*dfi
;
352 gcc::dump_manager
*dumps
= m_ctxt
->get_dumps ();
354 timevar_push (TV_DUMP
);
355 if (profile_arc_flag
|| flag_test_coverage
|| flag_branch_probabilities
)
357 dumps
->dump_start (pass_profile_1
->static_pass_number
, NULL
);
359 dumps
->dump_finish (pass_profile_1
->static_pass_number
);
364 dumps
->dump_start (pass_combine_1
->static_pass_number
, NULL
);
365 print_combine_total_stats ();
366 dumps
->dump_finish (pass_combine_1
->static_pass_number
);
369 /* Do whatever is necessary to finish printing the graphs. */
370 for (i
= TDI_end
; (dfi
= dumps
->get_dump_file_info (i
)) != NULL
; ++i
)
371 if (dfi
->graph_dump_initialized
)
373 name
= dumps
->get_dump_file_name (dfi
);
374 finish_graph_dump_file (name
);
378 timevar_pop (TV_DUMP
);
382 execute_build_ssa_passes (void)
384 /* Once this pass (and its sub-passes) are complete, all functions
385 will be in SSA form. Technically this state change is happening
386 a tad early, since the sub-passes have not yet run, but since
387 none of the sub-passes are IPA passes and do not create new
388 functions, this is ok. We're setting this value for the benefit
389 of IPA passes that follow. */
390 if (symtab
->state
< IPA_SSA
)
391 symtab
->state
= IPA_SSA
;
397 const pass_data pass_data_build_ssa_passes
=
399 SIMPLE_IPA_PASS
, /* type */
400 "build_ssa_passes", /* name */
401 OPTGROUP_NONE
, /* optinfo_flags */
402 TV_EARLY_LOCAL
, /* tv_id */
403 0, /* properties_required */
404 0, /* properties_provided */
405 0, /* properties_destroyed */
406 0, /* todo_flags_start */
407 /* todo_flags_finish is executed before subpases. For this reason
408 it makes no sense to remove unreachable functions here. */
409 0, /* todo_flags_finish */
412 class pass_build_ssa_passes
: public simple_ipa_opt_pass
415 pass_build_ssa_passes (gcc::context
*ctxt
)
416 : simple_ipa_opt_pass (pass_data_build_ssa_passes
, ctxt
)
419 /* opt_pass methods: */
420 virtual bool gate (function
*)
422 /* Don't bother doing anything if the program has errors. */
423 return (!seen_error () && !in_lto_p
);
426 virtual unsigned int execute (function
*)
428 return execute_build_ssa_passes ();
431 }; // class pass_build_ssa_passes
433 const pass_data pass_data_local_optimization_passes
=
435 SIMPLE_IPA_PASS
, /* type */
436 "opt_local_passes", /* name */
437 OPTGROUP_NONE
, /* optinfo_flags */
439 0, /* properties_required */
440 0, /* properties_provided */
441 0, /* properties_destroyed */
442 0, /* todo_flags_start */
443 0, /* todo_flags_finish */
446 class pass_local_optimization_passes
: public simple_ipa_opt_pass
449 pass_local_optimization_passes (gcc::context
*ctxt
)
450 : simple_ipa_opt_pass (pass_data_local_optimization_passes
, ctxt
)
453 /* opt_pass methods: */
454 virtual bool gate (function
*)
456 /* Don't bother doing anything if the program has errors. */
457 return (!seen_error () && !in_lto_p
);
460 }; // class pass_local_optimization_passes
462 const pass_data pass_data_ipa_remove_symbols
=
464 SIMPLE_IPA_PASS
, /* type */
465 "remove_symbols", /* name */
466 OPTGROUP_NONE
, /* optinfo_flags */
468 0, /* properties_required */
469 0, /* properties_provided */
470 0, /* properties_destroyed */
471 0, /* todo_flags_start */
472 TODO_remove_functions
| TODO_dump_symtab
, /* todo_flags_finish */
475 class pass_ipa_remove_symbols
: public simple_ipa_opt_pass
478 pass_ipa_remove_symbols (gcc::context
*ctxt
)
479 : simple_ipa_opt_pass (pass_data_ipa_remove_symbols
, ctxt
)
482 /* opt_pass methods: */
483 virtual bool gate (function
*)
485 /* Don't bother doing anything if the program has errors. */
486 return (!seen_error () && !in_lto_p
);
489 }; // class pass_local_optimization_passes
493 simple_ipa_opt_pass
*
494 make_pass_build_ssa_passes (gcc::context
*ctxt
)
496 return new pass_build_ssa_passes (ctxt
);
499 simple_ipa_opt_pass
*
500 make_pass_local_optimization_passes (gcc::context
*ctxt
)
502 return new pass_local_optimization_passes (ctxt
);
505 simple_ipa_opt_pass
*
506 make_pass_ipa_remove_symbols (gcc::context
*ctxt
)
508 return new pass_ipa_remove_symbols (ctxt
);
513 const pass_data pass_data_all_early_optimizations
=
515 GIMPLE_PASS
, /* type */
516 "early_optimizations", /* name */
517 OPTGROUP_NONE
, /* optinfo_flags */
519 0, /* properties_required */
520 0, /* properties_provided */
521 0, /* properties_destroyed */
522 0, /* todo_flags_start */
523 0, /* todo_flags_finish */
526 class pass_all_early_optimizations
: public gimple_opt_pass
529 pass_all_early_optimizations (gcc::context
*ctxt
)
530 : gimple_opt_pass (pass_data_all_early_optimizations
, ctxt
)
533 /* opt_pass methods: */
534 virtual bool gate (function
*)
536 return (optimize
>= 1
537 /* Don't bother doing anything if the program has errors. */
541 }; // class pass_all_early_optimizations
545 static gimple_opt_pass
*
546 make_pass_all_early_optimizations (gcc::context
*ctxt
)
548 return new pass_all_early_optimizations (ctxt
);
553 const pass_data pass_data_all_optimizations
=
555 GIMPLE_PASS
, /* type */
556 "*all_optimizations", /* name */
557 OPTGROUP_NONE
, /* optinfo_flags */
558 TV_OPTIMIZE
, /* tv_id */
559 0, /* properties_required */
560 0, /* properties_provided */
561 0, /* properties_destroyed */
562 0, /* todo_flags_start */
563 0, /* todo_flags_finish */
566 class pass_all_optimizations
: public gimple_opt_pass
569 pass_all_optimizations (gcc::context
*ctxt
)
570 : gimple_opt_pass (pass_data_all_optimizations
, ctxt
)
573 /* opt_pass methods: */
574 virtual bool gate (function
*) { return optimize
>= 1 && !optimize_debug
; }
576 }; // class pass_all_optimizations
580 static gimple_opt_pass
*
581 make_pass_all_optimizations (gcc::context
*ctxt
)
583 return new pass_all_optimizations (ctxt
);
588 const pass_data pass_data_all_optimizations_g
=
590 GIMPLE_PASS
, /* type */
591 "*all_optimizations_g", /* name */
592 OPTGROUP_NONE
, /* optinfo_flags */
593 TV_OPTIMIZE
, /* tv_id */
594 0, /* properties_required */
595 0, /* properties_provided */
596 0, /* properties_destroyed */
597 0, /* todo_flags_start */
598 0, /* todo_flags_finish */
601 class pass_all_optimizations_g
: public gimple_opt_pass
604 pass_all_optimizations_g (gcc::context
*ctxt
)
605 : gimple_opt_pass (pass_data_all_optimizations_g
, ctxt
)
608 /* opt_pass methods: */
609 virtual bool gate (function
*) { return optimize
>= 1 && optimize_debug
; }
611 }; // class pass_all_optimizations_g
615 static gimple_opt_pass
*
616 make_pass_all_optimizations_g (gcc::context
*ctxt
)
618 return new pass_all_optimizations_g (ctxt
);
623 const pass_data pass_data_rest_of_compilation
=
626 "*rest_of_compilation", /* name */
627 OPTGROUP_NONE
, /* optinfo_flags */
628 TV_REST_OF_COMPILATION
, /* tv_id */
629 PROP_rtl
, /* properties_required */
630 0, /* properties_provided */
631 0, /* properties_destroyed */
632 0, /* todo_flags_start */
633 0, /* todo_flags_finish */
636 class pass_rest_of_compilation
: public rtl_opt_pass
639 pass_rest_of_compilation (gcc::context
*ctxt
)
640 : rtl_opt_pass (pass_data_rest_of_compilation
, ctxt
)
643 /* opt_pass methods: */
644 virtual bool gate (function
*)
646 /* Early return if there were errors. We can run afoul of our
647 consistency checks, and there's not really much point in fixing them. */
648 return !(rtl_dump_and_exit
|| flag_syntax_only
|| seen_error ());
651 }; // class pass_rest_of_compilation
655 static rtl_opt_pass
*
656 make_pass_rest_of_compilation (gcc::context
*ctxt
)
658 return new pass_rest_of_compilation (ctxt
);
663 const pass_data pass_data_postreload
=
666 "*all-postreload", /* name */
667 OPTGROUP_NONE
, /* optinfo_flags */
668 TV_POSTRELOAD
, /* tv_id */
669 PROP_rtl
, /* properties_required */
670 0, /* properties_provided */
671 0, /* properties_destroyed */
672 0, /* todo_flags_start */
673 0, /* todo_flags_finish */
676 class pass_postreload
: public rtl_opt_pass
679 pass_postreload (gcc::context
*ctxt
)
680 : rtl_opt_pass (pass_data_postreload
, ctxt
)
683 /* opt_pass methods: */
684 virtual bool gate (function
*) { return reload_completed
; }
686 }; // class pass_postreload
690 static rtl_opt_pass
*
691 make_pass_postreload (gcc::context
*ctxt
)
693 return new pass_postreload (ctxt
);
698 const pass_data pass_data_late_compilation
=
701 "*all-late_compilation", /* name */
702 OPTGROUP_NONE
, /* optinfo_flags */
703 TV_LATE_COMPILATION
, /* tv_id */
704 PROP_rtl
, /* properties_required */
705 0, /* properties_provided */
706 0, /* properties_destroyed */
707 0, /* todo_flags_start */
708 0, /* todo_flags_finish */
711 class pass_late_compilation
: public rtl_opt_pass
714 pass_late_compilation (gcc::context
*ctxt
)
715 : rtl_opt_pass (pass_data_late_compilation
, ctxt
)
718 /* opt_pass methods: */
719 virtual bool gate (function
*)
721 return reload_completed
|| targetm
.no_register_allocation
;
724 }; // class pass_late_compilation
728 static rtl_opt_pass
*
729 make_pass_late_compilation (gcc::context
*ctxt
)
731 return new pass_late_compilation (ctxt
);
734 /* Pre-SLP scalar cleanup, it has several cleanup passes like FRE, DSE. */
738 const pass_data pass_data_pre_slp_scalar_cleanup
=
740 GIMPLE_PASS
, /* type */
741 "*pre_slp_scalar_cleanup", /* name */
742 OPTGROUP_LOOP
, /* optinfo_flags */
743 TV_SCALAR_CLEANUP
, /* tv_id */
744 ( PROP_cfg
| PROP_ssa
), /* properties_required */
745 0, /* properties_provided */
746 0, /* properties_destroyed */
747 0, /* todo_flags_start */
748 0, /* todo_flags_finish */
751 class pass_pre_slp_scalar_cleanup
: public gimple_opt_pass
754 pass_pre_slp_scalar_cleanup (gcc::context
*ctxt
)
755 : gimple_opt_pass (pass_data_pre_slp_scalar_cleanup
, ctxt
)
762 return flag_tree_slp_vectorize
763 && (fun
->pending_TODOs
& PENDING_TODO_force_next_scalar_cleanup
);
767 execute (function
*fun
)
769 fun
->pending_TODOs
&= ~PENDING_TODO_force_next_scalar_cleanup
;
773 }; // class pass_pre_slp_scalar_cleanup
778 make_pass_pre_slp_scalar_cleanup (gcc::context
*ctxt
)
780 return new pass_pre_slp_scalar_cleanup (ctxt
);
783 /* Set the static pass number of pass PASS to ID and record that
784 in the mapping from static pass number to pass. */
788 set_pass_for_id (int id
, opt_pass
*pass
)
790 pass
->static_pass_number
= id
;
791 if (passes_by_id_size
<= id
)
793 passes_by_id
= XRESIZEVEC (opt_pass
*, passes_by_id
, id
+ 1);
794 memset (passes_by_id
+ passes_by_id_size
, 0,
795 (id
+ 1 - passes_by_id_size
) * sizeof (void *));
796 passes_by_id_size
= id
+ 1;
798 passes_by_id
[id
] = pass
;
801 /* Return the pass with the static pass number ID. */
804 pass_manager::get_pass_for_id (int id
) const
806 if (id
>= passes_by_id_size
)
808 return passes_by_id
[id
];
811 /* Iterate over the pass tree allocating dump file numbers. We want
812 to do this depth first, and independent of whether the pass is
816 register_one_dump_file (opt_pass
*pass
)
818 g
->get_passes ()->register_one_dump_file (pass
);
822 pass_manager::register_one_dump_file (opt_pass
*pass
)
824 char *dot_name
, *flag_name
, *glob_name
;
825 const char *name
, *full_name
, *prefix
;
827 /* Buffer big enough to format a 32-bit UINT_MAX into. */
831 optgroup_flags_t optgroup_flags
= OPTGROUP_NONE
;
832 gcc::dump_manager
*dumps
= m_ctxt
->get_dumps ();
834 /* See below in next_pass_1. */
836 if (pass
->static_pass_number
!= -1)
837 sprintf (num
, "%u", ((int) pass
->static_pass_number
< 0
838 ? 1 : pass
->static_pass_number
));
840 /* The name is both used to identify the pass for the purposes of plugins,
841 and to specify dump file name and option.
842 The latter two might want something short which is not quite unique; for
843 that reason, we may have a disambiguating prefix, followed by a space
844 to mark the start of the following dump file name / option string. */
845 name
= strchr (pass
->name
, ' ');
846 name
= name
? name
+ 1 : pass
->name
;
847 dot_name
= concat (".", name
, num
, NULL
);
848 if (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
)
852 optgroup_flags
|= OPTGROUP_IPA
;
854 else if (pass
->type
== GIMPLE_PASS
)
865 flag_name
= concat (prefix
, name
, num
, NULL
);
866 glob_name
= concat (prefix
, name
, NULL
);
867 optgroup_flags
|= pass
->optinfo_flags
;
868 /* For any passes that do not have an optgroup set, and which are not
869 IPA passes setup above, set the optgroup to OPTGROUP_OTHER so that
870 any dump messages are emitted properly under -fopt-info(-optall). */
871 if (optgroup_flags
== OPTGROUP_NONE
)
872 optgroup_flags
= OPTGROUP_OTHER
;
873 id
= dumps
->dump_register (dot_name
, flag_name
, glob_name
, dkind
,
876 set_pass_for_id (id
, pass
);
877 full_name
= concat (prefix
, pass
->name
, num
, NULL
);
878 register_pass_name (pass
, full_name
);
879 free (CONST_CAST (char *, full_name
));
882 /* Register the dump files for the pass_manager starting at PASS. */
885 pass_manager::register_dump_files (opt_pass
*pass
)
889 if (pass
->name
&& pass
->name
[0] != '*')
890 register_one_dump_file (pass
);
893 register_dump_files (pass
->sub
);
900 /* Register PASS with NAME. */
903 pass_manager::register_pass_name (opt_pass
*pass
, const char *name
)
905 if (!m_name_to_pass_map
)
906 m_name_to_pass_map
= new hash_map
<nofree_string_hash
, opt_pass
*> (256);
908 if (m_name_to_pass_map
->get (name
))
909 return; /* Ignore plugin passes. */
911 const char *unique_name
= xstrdup (name
);
912 m_name_to_pass_map
->put (unique_name
, pass
);
915 /* Map from pass id to canonicalized pass name. */
917 typedef const char *char_ptr
;
918 static vec
<char_ptr
> pass_tab
;
920 /* Callback function for traversing NAME_TO_PASS_MAP. */
923 passes_pass_traverse (const char *const &name
, opt_pass
*const &pass
, void *)
925 gcc_assert (pass
->static_pass_number
> 0);
926 gcc_assert (pass_tab
.exists ());
928 pass_tab
[pass
->static_pass_number
] = name
;
933 /* The function traverses NAME_TO_PASS_MAP and creates a pass info
934 table for dumping purpose. */
937 pass_manager::create_pass_tab (void) const
939 if (!flag_dump_passes
)
942 pass_tab
.safe_grow_cleared (passes_by_id_size
+ 1, true);
943 m_name_to_pass_map
->traverse
<void *, passes_pass_traverse
> (NULL
);
946 static bool override_gate_status (opt_pass
*, tree
, bool);
948 /* Dump the instantiated name for PASS. IS_ON indicates if PASS
949 is turned on or not. */
952 dump_one_pass (opt_pass
*pass
, int pass_indent
)
954 int indent
= 3 * pass_indent
;
956 bool is_on
, is_really_on
;
958 is_on
= pass
->gate (cfun
);
959 is_really_on
= override_gate_status (pass
, current_function_decl
, is_on
);
961 if (pass
->static_pass_number
<= 0)
964 pn
= pass_tab
[pass
->static_pass_number
];
966 fprintf (stderr
, "%*s%-40s%*s:%s%s\n", indent
, " ", pn
,
967 (15 - indent
< 0 ? 0 : 15 - indent
), " ",
968 is_on
? " ON" : " OFF",
969 ((!is_on
) == (!is_really_on
) ? ""
970 : (is_really_on
? " (FORCED_ON)" : " (FORCED_OFF)")));
973 /* Dump pass list PASS with indentation INDENT. */
976 dump_pass_list (opt_pass
*pass
, int indent
)
980 dump_one_pass (pass
, indent
);
982 dump_pass_list (pass
->sub
, indent
+ 1);
988 /* Dump all optimization passes. */
993 g
->get_passes ()->dump_passes ();
997 pass_manager::dump_passes () const
999 push_dummy_function (true);
1000 cgraph_node
*node
= cgraph_node::get_create (current_function_decl
);
1004 dump_pass_list (all_lowering_passes
, 1);
1005 dump_pass_list (all_small_ipa_passes
, 1);
1006 dump_pass_list (all_regular_ipa_passes
, 1);
1007 dump_pass_list (all_late_ipa_passes
, 1);
1008 dump_pass_list (all_passes
, 1);
1011 pop_dummy_function ();
1014 /* Returns the pass with NAME. */
1017 pass_manager::get_pass_by_name (const char *name
)
1019 opt_pass
**p
= m_name_to_pass_map
->get (name
);
1027 /* Range [start, last]. */
1033 const char *assem_name
;
1034 struct uid_range
*next
;
1037 typedef struct uid_range
*uid_range_p
;
1040 static vec
<uid_range_p
> enabled_pass_uid_range_tab
;
1041 static vec
<uid_range_p
> disabled_pass_uid_range_tab
;
1044 /* Parse option string for -fdisable- and -fenable-
1045 The syntax of the options:
1047 -fenable-<pass_name>
1048 -fdisable-<pass_name>
1050 -fenable-<pass_name>=s1:e1,s2:e2,...
1051 -fdisable-<pass_name>=s1:e1,s2:e2,...
1055 enable_disable_pass (const char *arg
, bool is_enable
)
1058 char *range_str
, *phase_name
;
1059 char *argstr
= xstrdup (arg
);
1060 vec
<uid_range_p
> *tab
= 0;
1062 range_str
= strchr (argstr
,'=');
1069 phase_name
= argstr
;
1073 error ("unrecognized option %<-fenable%>");
1075 error ("unrecognized option %<-fdisable%>");
1079 pass
= g
->get_passes ()->get_pass_by_name (phase_name
);
1080 if (!pass
|| pass
->static_pass_number
== -1)
1083 error ("unknown pass %s specified in %<-fenable%>", phase_name
);
1085 error ("unknown pass %s specified in %<-fdisable%>", phase_name
);
1091 tab
= &enabled_pass_uid_range_tab
;
1093 tab
= &disabled_pass_uid_range_tab
;
1095 if ((unsigned) pass
->static_pass_number
>= tab
->length ())
1096 tab
->safe_grow_cleared (pass
->static_pass_number
+ 1, true);
1101 uid_range_p new_range
= XCNEW (struct uid_range
);
1103 new_range
->start
= 0;
1104 new_range
->last
= (unsigned)-1;
1106 slot
= (*tab
)[pass
->static_pass_number
];
1107 new_range
->next
= slot
;
1108 (*tab
)[pass
->static_pass_number
] = new_range
;
1110 inform (UNKNOWN_LOCATION
, "enable pass %s for functions in the range "
1111 "of [%u, %u]", phase_name
, new_range
->start
, new_range
->last
);
1113 inform (UNKNOWN_LOCATION
, "disable pass %s for functions in the range "
1114 "of [%u, %u]", phase_name
, new_range
->start
, new_range
->last
);
1118 char *next_range
= NULL
;
1119 char *one_range
= range_str
;
1120 char *end_val
= NULL
;
1125 uid_range_p new_range
;
1126 char *invalid
= NULL
;
1128 char *func_name
= NULL
;
1130 next_range
= strchr (one_range
, ',');
1137 end_val
= strchr (one_range
, ':');
1143 start
= strtol (one_range
, &invalid
, 10);
1144 if (*invalid
|| start
< 0)
1146 if (end_val
|| (one_range
[0] >= '0'
1147 && one_range
[0] <= '9'))
1149 error ("Invalid range %s in option %s",
1151 is_enable
? "-fenable" : "-fdisable");
1155 func_name
= one_range
;
1159 new_range
= XCNEW (struct uid_range
);
1162 new_range
->start
= (unsigned) start
;
1163 new_range
->last
= (unsigned) start
;
1167 new_range
->start
= (unsigned) -1;
1168 new_range
->last
= (unsigned) -1;
1169 new_range
->assem_name
= xstrdup (func_name
);
1174 long last
= strtol (end_val
, &invalid
, 10);
1175 if (*invalid
|| last
< start
)
1177 error ("Invalid range %s in option %s",
1179 is_enable
? "-fenable" : "-fdisable");
1183 new_range
= XCNEW (struct uid_range
);
1184 new_range
->start
= (unsigned) start
;
1185 new_range
->last
= (unsigned) last
;
1188 slot
= (*tab
)[pass
->static_pass_number
];
1189 new_range
->next
= slot
;
1190 (*tab
)[pass
->static_pass_number
] = new_range
;
1193 if (new_range
->assem_name
)
1194 inform (UNKNOWN_LOCATION
,
1195 "enable pass %s for function %s",
1196 phase_name
, new_range
->assem_name
);
1198 inform (UNKNOWN_LOCATION
,
1199 "enable pass %s for functions in the range of [%u, %u]",
1200 phase_name
, new_range
->start
, new_range
->last
);
1204 if (new_range
->assem_name
)
1205 inform (UNKNOWN_LOCATION
,
1206 "disable pass %s for function %s",
1207 phase_name
, new_range
->assem_name
);
1209 inform (UNKNOWN_LOCATION
,
1210 "disable pass %s for functions in the range of [%u, %u]",
1211 phase_name
, new_range
->start
, new_range
->last
);
1214 one_range
= next_range
;
1215 } while (next_range
);
1221 /* Enable pass specified by ARG. */
1224 enable_pass (const char *arg
)
1226 enable_disable_pass (arg
, true);
1229 /* Disable pass specified by ARG. */
1232 disable_pass (const char *arg
)
1234 enable_disable_pass (arg
, false);
1237 /* Returns true if PASS is explicitly enabled/disabled for FUNC. */
1240 is_pass_explicitly_enabled_or_disabled (opt_pass
*pass
,
1242 vec
<uid_range_p
> tab
)
1244 uid_range_p slot
, range
;
1246 const char *aname
= NULL
;
1249 || (unsigned) pass
->static_pass_number
>= tab
.length ()
1250 || pass
->static_pass_number
== -1)
1253 slot
= tab
[pass
->static_pass_number
];
1257 cgraph_uid
= func
? cgraph_node::get (func
)->get_uid () : 0;
1258 if (func
&& DECL_ASSEMBLER_NAME_SET_P (func
))
1259 aname
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (func
));
1264 if ((unsigned) cgraph_uid
>= range
->start
1265 && (unsigned) cgraph_uid
<= range
->last
)
1267 if (range
->assem_name
&& aname
1268 && !strcmp (range
->assem_name
, aname
))
1270 range
= range
->next
;
1277 /* Update static_pass_number for passes (and the flag
1278 TODO_mark_first_instance).
1280 Passes are constructed with static_pass_number preinitialized to 0
1282 This field is used in two different ways: initially as instance numbers
1283 of their kind, and then as ids within the entire pass manager.
1285 Within pass_manager::pass_manager:
1287 * In add_pass_instance(), as called by next_pass_1 in
1288 NEXT_PASS in init_optimization_passes
1290 * When the initial instance of a pass within a pass manager is seen,
1291 it is flagged, and its static_pass_number is set to -1
1293 * On subsequent times that it is seen, the static pass number
1294 is decremented each time, so that if there are e.g. 4 dups,
1295 they have static_pass_number -4, 2, 3, 4 respectively (note
1296 how the initial one is negative and gives the count); these
1297 can be thought of as instance numbers of the specific pass
1299 * Within the register_dump_files () traversal, set_pass_for_id()
1300 is called on each pass, using these instance numbers to create
1301 dumpfile switches, and then overwriting them with a pass id,
1302 which are global to the whole pass manager (based on
1303 (TDI_end + current value of extra_dump_files_in_use) ) */
1306 add_pass_instance (opt_pass
*new_pass
, bool track_duplicates
,
1307 opt_pass
*initial_pass
)
1309 /* Are we dealing with the first pass of its kind, or a clone? */
1310 if (new_pass
!= initial_pass
)
1312 /* We're dealing with a clone. */
1313 new_pass
->todo_flags_start
&= ~TODO_mark_first_instance
;
1315 /* Indicate to register_dump_files that this pass has duplicates,
1316 and so it should rename the dump file. The first instance will
1317 be -1, and be number of duplicates = -static_pass_number - 1.
1318 Subsequent instances will be > 0 and just the duplicate number. */
1319 if ((new_pass
->name
&& new_pass
->name
[0] != '*') || track_duplicates
)
1321 initial_pass
->static_pass_number
-= 1;
1322 new_pass
->static_pass_number
= -initial_pass
->static_pass_number
;
1327 /* We're dealing with the first pass of its kind. */
1328 new_pass
->todo_flags_start
|= TODO_mark_first_instance
;
1329 new_pass
->static_pass_number
= -1;
1331 invoke_plugin_callbacks (PLUGIN_NEW_PASS
, new_pass
);
1335 /* Add a pass to the pass list. Duplicate the pass if it's already
1339 next_pass_1 (opt_pass
**list
, opt_pass
*pass
, opt_pass
*initial_pass
)
1341 /* Every pass should have a name so that plugins can refer to them. */
1342 gcc_assert (pass
->name
!= NULL
);
1344 add_pass_instance (pass
, false, initial_pass
);
1347 return &(*list
)->next
;
1350 /* List node for an inserted pass instance. We need to keep track of all
1351 the newly-added pass instances (with 'added_pass_nodes' defined below)
1352 so that we can register their dump files after pass-positioning is finished.
1353 Registering dumping files needs to be post-processed or the
1354 static_pass_number of the opt_pass object would be modified and mess up
1355 the dump file names of future pass instances to be added. */
1357 struct pass_list_node
1360 struct pass_list_node
*next
;
1363 static struct pass_list_node
*added_pass_nodes
= NULL
;
1364 static struct pass_list_node
*prev_added_pass_node
;
1366 /* Insert the pass at the proper position. Return true if the pass
1367 is successfully added.
1369 NEW_PASS_INFO - new pass to be inserted
1370 PASS_LIST - root of the pass list to insert the new pass to */
1373 position_pass (struct register_pass_info
*new_pass_info
, opt_pass
**pass_list
)
1375 opt_pass
*pass
= *pass_list
, *prev_pass
= NULL
;
1376 bool success
= false;
1378 for ( ; pass
; prev_pass
= pass
, pass
= pass
->next
)
1380 /* Check if the current pass is of the same type as the new pass and
1381 matches the name and the instance number of the reference pass. */
1382 if (pass
->type
== new_pass_info
->pass
->type
1384 && !strcmp (pass
->name
, new_pass_info
->reference_pass_name
)
1385 && ((new_pass_info
->ref_pass_instance_number
== 0)
1386 || (new_pass_info
->ref_pass_instance_number
==
1387 pass
->static_pass_number
)
1388 || (new_pass_info
->ref_pass_instance_number
== 1
1389 && pass
->todo_flags_start
& TODO_mark_first_instance
)))
1392 struct pass_list_node
*new_pass_node
;
1394 if (new_pass_info
->ref_pass_instance_number
== 0)
1396 new_pass
= new_pass_info
->pass
->clone ();
1397 add_pass_instance (new_pass
, true, new_pass_info
->pass
);
1401 new_pass
= new_pass_info
->pass
;
1402 add_pass_instance (new_pass
, true, new_pass
);
1405 /* Insert the new pass instance based on the positioning op. */
1406 switch (new_pass_info
->pos_op
)
1408 case PASS_POS_INSERT_AFTER
:
1409 new_pass
->next
= pass
->next
;
1410 pass
->next
= new_pass
;
1412 /* Skip newly inserted pass to avoid repeated
1413 insertions in the case where the new pass and the
1414 existing one have the same name. */
1417 case PASS_POS_INSERT_BEFORE
:
1418 new_pass
->next
= pass
;
1420 prev_pass
->next
= new_pass
;
1422 *pass_list
= new_pass
;
1424 case PASS_POS_REPLACE
:
1425 new_pass
->next
= pass
->next
;
1427 prev_pass
->next
= new_pass
;
1429 *pass_list
= new_pass
;
1430 new_pass
->sub
= pass
->sub
;
1431 new_pass
->tv_id
= pass
->tv_id
;
1435 error ("invalid pass positioning operation");
1439 /* Save the newly added pass (instance) in the added_pass_nodes
1440 list so that we can register its dump file later. Note that
1441 we cannot register the dump file now because doing so will modify
1442 the static_pass_number of the opt_pass object and therefore
1443 mess up the dump file name of future instances. */
1444 new_pass_node
= XCNEW (struct pass_list_node
);
1445 new_pass_node
->pass
= new_pass
;
1446 if (!added_pass_nodes
)
1447 added_pass_nodes
= new_pass_node
;
1449 prev_added_pass_node
->next
= new_pass_node
;
1450 prev_added_pass_node
= new_pass_node
;
1455 if (pass
->sub
&& position_pass (new_pass_info
, &pass
->sub
))
1462 /* Hooks a new pass into the pass lists.
1464 PASS_INFO - pass information that specifies the opt_pass object,
1465 reference pass, instance number, and how to position
1469 register_pass (struct register_pass_info
*pass_info
)
1471 g
->get_passes ()->register_pass (pass_info
);
1475 register_pass (opt_pass
* pass
, pass_positioning_ops pos
,
1476 const char* ref_pass_name
, int ref_pass_inst_number
)
1478 register_pass_info i
;
1480 i
.reference_pass_name
= ref_pass_name
;
1481 i
.ref_pass_instance_number
= ref_pass_inst_number
;
1484 g
->get_passes ()->register_pass (&i
);
1488 pass_manager::register_pass (struct register_pass_info
*pass_info
)
1490 bool all_instances
, success
;
1492 /* The checks below could fail in buggy plugins. Existing GCC
1493 passes should never fail these checks, so we mention plugin in
1495 if (!pass_info
->pass
)
1496 fatal_error (input_location
, "plugin cannot register a missing pass");
1498 if (!pass_info
->pass
->name
)
1499 fatal_error (input_location
, "plugin cannot register an unnamed pass");
1501 if (!pass_info
->reference_pass_name
)
1504 "plugin cannot register pass %qs without reference pass name",
1505 pass_info
->pass
->name
);
1507 /* Try to insert the new pass to the pass lists. We need to check
1508 all five lists as the reference pass could be in one (or all) of
1510 all_instances
= pass_info
->ref_pass_instance_number
== 0;
1511 success
= position_pass (pass_info
, &all_lowering_passes
);
1512 if (!success
|| all_instances
)
1513 success
|= position_pass (pass_info
, &all_small_ipa_passes
);
1514 if (!success
|| all_instances
)
1515 success
|= position_pass (pass_info
, &all_regular_ipa_passes
);
1516 if (!success
|| all_instances
)
1517 success
|= position_pass (pass_info
, &all_late_ipa_passes
);
1518 if (!success
|| all_instances
)
1519 success
|= position_pass (pass_info
, &all_passes
);
1523 "pass %qs not found but is referenced by new pass %qs",
1524 pass_info
->reference_pass_name
, pass_info
->pass
->name
);
1526 /* OK, we have successfully inserted the new pass. We need to register
1527 the dump files for the newly added pass and its duplicates (if any).
1528 While doing so, we also delete the pass_list_node
1529 objects created during pass positioning. */
1530 gcc::dump_manager
*dumps
= m_ctxt
->get_dumps ();
1531 while (added_pass_nodes
)
1533 struct pass_list_node
*next_node
= added_pass_nodes
->next
;
1535 /* Handle -fdump-* and -fopt-info. */
1536 dumps
->register_pass (added_pass_nodes
->pass
);
1538 XDELETE (added_pass_nodes
);
1539 added_pass_nodes
= next_node
;
1543 /* Construct the pass tree. The sequencing of passes is driven by
1544 the cgraph routines:
1546 finalize_compilation_unit ()
1547 for each node N in the cgraph
1548 cgraph_analyze_function (N)
1549 cgraph_lower_function (N) -> all_lowering_passes
1551 If we are optimizing, compile is then invoked:
1554 ipa_passes () -> all_small_ipa_passes
1555 -> Analysis of all_regular_ipa_passes
1556 * possible LTO streaming at copmilation time *
1557 -> Execution of all_regular_ipa_passes
1558 * possible LTO streaming at link time *
1559 -> all_late_ipa_passes
1560 expand_all_functions ()
1561 for each node N in the cgraph
1562 expand_function (N) -> Transformation of all_regular_ipa_passes
1566 pass_manager::pass_manager (context
*ctxt
)
1567 : all_passes (NULL
), all_small_ipa_passes (NULL
), all_lowering_passes (NULL
),
1568 all_regular_ipa_passes (NULL
),
1569 all_late_ipa_passes (NULL
), passes_by_id (NULL
), passes_by_id_size (0),
1570 m_ctxt (ctxt
), m_name_to_pass_map (NULL
)
1574 /* Zero-initialize pass members. */
1575 #define INSERT_PASSES_AFTER(PASS)
1576 #define PUSH_INSERT_PASSES_WITHIN(PASS)
1577 #define POP_INSERT_PASSES()
1578 #define NEXT_PASS(PASS, NUM) PASS ## _ ## NUM = NULL
1579 #define NEXT_PASS_WITH_ARG(PASS, NUM, ARG) NEXT_PASS (PASS, NUM)
1580 #define TERMINATE_PASS_LIST(PASS)
1581 #include "pass-instances.def"
1582 #undef INSERT_PASSES_AFTER
1583 #undef PUSH_INSERT_PASSES_WITHIN
1584 #undef POP_INSERT_PASSES
1586 #undef NEXT_PASS_WITH_ARG
1587 #undef TERMINATE_PASS_LIST
1589 /* Initialize the pass_lists array. */
1590 #define DEF_PASS_LIST(LIST) pass_lists[PASS_LIST_NO_##LIST] = &LIST;
1592 #undef DEF_PASS_LIST
1594 /* Build the tree of passes. */
1596 #define INSERT_PASSES_AFTER(PASS) \
1598 opt_pass **p_start; \
1599 p_start = p = &(PASS);
1601 #define TERMINATE_PASS_LIST(PASS) \
1602 gcc_assert (p_start == &PASS); \
1606 #define PUSH_INSERT_PASSES_WITHIN(PASS) \
1608 opt_pass **p = &(PASS ## _1)->sub;
1610 #define POP_INSERT_PASSES() \
1613 #define NEXT_PASS(PASS, NUM) \
1615 gcc_assert (PASS ## _ ## NUM == NULL); \
1617 PASS ## _1 = make_##PASS (m_ctxt); \
1620 gcc_assert (PASS ## _1); \
1621 PASS ## _ ## NUM = PASS ## _1->clone (); \
1623 p = next_pass_1 (p, PASS ## _ ## NUM, PASS ## _1); \
1626 #define NEXT_PASS_WITH_ARG(PASS, NUM, ARG) \
1628 NEXT_PASS (PASS, NUM); \
1629 PASS ## _ ## NUM->set_pass_param (0, ARG); \
1632 #include "pass-instances.def"
1634 #undef INSERT_PASSES_AFTER
1635 #undef PUSH_INSERT_PASSES_WITHIN
1636 #undef POP_INSERT_PASSES
1638 #undef NEXT_PASS_WITH_ARG
1639 #undef TERMINATE_PASS_LIST
1641 /* Register the passes with the tree dump code. */
1642 register_dump_files (all_lowering_passes
);
1643 register_dump_files (all_small_ipa_passes
);
1644 register_dump_files (all_regular_ipa_passes
);
1645 register_dump_files (all_late_ipa_passes
);
1646 register_dump_files (all_passes
);
1650 delete_pass_tree (opt_pass
*pass
)
1654 /* Recurse into child passes. */
1655 delete_pass_tree (pass
->sub
);
1657 opt_pass
*next
= pass
->next
;
1659 /* Delete this pass. */
1662 /* Iterate onto sibling passes. */
1667 pass_manager::~pass_manager ()
1669 XDELETEVEC (passes_by_id
);
1671 /* Call delete_pass_tree on each of the pass_lists. */
1672 #define DEF_PASS_LIST(LIST) \
1673 delete_pass_tree (*pass_lists[PASS_LIST_NO_##LIST]);
1675 #undef DEF_PASS_LIST
1679 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1680 function CALLBACK for every function in the call graph. Otherwise,
1681 call CALLBACK on the current function. */
1684 do_per_function (void (*callback
) (function
*, void *data
), void *data
)
1686 if (current_function_decl
)
1687 callback (cfun
, data
);
1690 struct cgraph_node
*node
;
1691 FOR_EACH_DEFINED_FUNCTION (node
)
1692 if (node
->analyzed
&& (gimple_has_body_p (node
->decl
) && !in_lto_p
)
1693 && (!node
->clone_of
|| node
->decl
!= node
->clone_of
->decl
))
1694 callback (DECL_STRUCT_FUNCTION (node
->decl
), data
);
1698 /* Hook called when NODE is removed and therefore should be
1699 excluded from order vector. DATA is a hash set with removed nodes. */
1702 remove_cgraph_node_from_order (cgraph_node
*node
, void *data
)
1704 hash_set
<cgraph_node
*> *removed_nodes
= (hash_set
<cgraph_node
*> *)data
;
1705 removed_nodes
->add (node
);
1708 /* Hook called when NODE is insert and therefore should be
1709 excluded from removed_nodes. DATA is a hash set with removed nodes. */
1712 insert_cgraph_node_to_order (cgraph_node
*node
, void *data
)
1714 hash_set
<cgraph_node
*> *removed_nodes
= (hash_set
<cgraph_node
*> *)data
;
1715 removed_nodes
->remove (node
);
1718 /* Hook called when NODE is duplicated and therefore should be
1719 excluded from removed_nodes. DATA is a hash set with removed nodes. */
1722 duplicate_cgraph_node_to_order (cgraph_node
*node
, cgraph_node
*node2
,
1725 hash_set
<cgraph_node
*> *removed_nodes
= (hash_set
<cgraph_node
*> *)data
;
1726 gcc_checking_assert (!removed_nodes
->contains (node
));
1727 removed_nodes
->remove (node2
);
1731 /* If we are in IPA mode (i.e., current_function_decl is NULL), call
1732 function CALLBACK for every function in the call graph. Otherwise,
1733 call CALLBACK on the current function.
1734 This function is global so that plugins can use it. */
1736 do_per_function_toporder (void (*callback
) (function
*, void *data
), void *data
)
1740 if (current_function_decl
)
1741 callback (cfun
, data
);
1744 hash_set
<cgraph_node
*> removed_nodes
;
1745 unsigned nnodes
= symtab
->cgraph_count
;
1746 cgraph_node
**order
= XNEWVEC (cgraph_node
*, nnodes
);
1748 nnodes
= ipa_reverse_postorder (order
);
1749 for (i
= nnodes
- 1; i
>= 0; i
--)
1750 order
[i
]->process
= 1;
1751 cgraph_node_hook_list
*removal_hook
1752 = symtab
->add_cgraph_removal_hook (remove_cgraph_node_from_order
,
1754 cgraph_node_hook_list
*insertion_hook
1755 = symtab
->add_cgraph_insertion_hook (insert_cgraph_node_to_order
,
1757 cgraph_2node_hook_list
*duplication_hook
1758 = symtab
->add_cgraph_duplication_hook (duplicate_cgraph_node_to_order
,
1760 for (i
= nnodes
- 1; i
>= 0; i
--)
1762 cgraph_node
*node
= order
[i
];
1764 /* Function could be inlined and removed as unreachable. */
1765 if (node
== NULL
|| removed_nodes
.contains (node
))
1769 if (node
->has_gimple_body_p ())
1771 struct function
*fn
= DECL_STRUCT_FUNCTION (node
->decl
);
1773 callback (fn
, data
);
1777 symtab
->remove_cgraph_removal_hook (removal_hook
);
1778 symtab
->remove_cgraph_insertion_hook (insertion_hook
);
1779 symtab
->remove_cgraph_duplication_hook (duplication_hook
);
1785 /* Helper function to perform function body dump. */
1788 execute_function_dump (function
*fn
, void *data
)
1790 opt_pass
*pass
= (opt_pass
*)data
;
1796 if (fn
->curr_properties
& PROP_gimple
)
1797 dump_function_to_file (fn
->decl
, dump_file
, dump_flags
);
1799 print_rtl_with_bb (dump_file
, get_insns (), dump_flags
);
1801 /* Flush the file. If verification fails, we won't be able to
1802 close the file before aborting. */
1805 if ((fn
->curr_properties
& PROP_cfg
)
1806 && (dump_flags
& TDF_GRAPH
))
1808 gcc::dump_manager
*dumps
= g
->get_dumps ();
1809 struct dump_file_info
*dfi
1810 = dumps
->get_dump_file_info (pass
->static_pass_number
);
1811 if (!dfi
->graph_dump_initialized
)
1813 clean_graph_dump_file (dump_file_name
);
1814 dfi
->graph_dump_initialized
= true;
1816 print_graph_cfg (dump_file_name
, fn
);
1823 /* This function is called when an internal compiler error is encountered.
1824 Ensure that function dump is made available before compiler is aborted. */
1827 emergency_dump_function ()
1831 enum opt_pass_type pt
= current_pass
->type
;
1832 fnotice (stderr
, "during %s pass: %s\n",
1833 pt
== GIMPLE_PASS
? "GIMPLE" : pt
== RTL_PASS
? "RTL" : "IPA",
1834 current_pass
->name
);
1835 if (!dump_file
|| !cfun
)
1837 fnotice (stderr
, "dump file: %s\n", dump_file_name
);
1838 fprintf (dump_file
, "\n\n\nEMERGENCY DUMP:\n\n");
1839 execute_function_dump (cfun
, current_pass
);
1841 if (symtab
&& current_pass
->type
== IPA_PASS
)
1842 symtab
->dump (dump_file
);
1845 static struct profile_record
*profile_record
;
1847 /* Do profile consistency book-keeping for the pass with static number INDEX.
1848 RUN is true if the pass really runs, or FALSE
1849 if we are only book-keeping on passes that may have selectively disabled
1850 themselves on a given function. */
1853 check_profile_consistency (int index
, bool run
)
1855 pass_manager
*passes
= g
->get_passes ();
1858 if (!profile_record
)
1859 profile_record
= XCNEWVEC (struct profile_record
,
1860 passes
->passes_by_id_size
);
1861 gcc_assert (index
< passes
->passes_by_id_size
&& index
>= 0);
1862 profile_record
[index
].run
|= run
;
1863 profile_record_check_consistency (&profile_record
[index
]);
1866 /* Account profile the pass with static number INDEX.
1867 RUN is true if the pass really runs, or FALSE
1868 if we are only book-keeping on passes that may have selectively disabled
1869 themselves on a given function. */
1872 account_profile (int index
, bool run
)
1874 pass_manager
*passes
= g
->get_passes ();
1877 if (!profile_record
)
1878 profile_record
= XCNEWVEC (struct profile_record
,
1879 passes
->passes_by_id_size
);
1880 gcc_assert (index
< passes
->passes_by_id_size
&& index
>= 0);
1881 profile_record
[index
].run
|= run
;
1882 profile_record_account_profile (&profile_record
[index
]);
1885 /* Account profile for IPA pass. Callback for do_per_function. */
1888 account_profile_1 (function
*fn
, void *data
)
1890 opt_pass
*pass
= (opt_pass
*)data
;
1893 check_profile_consistency (pass
->static_pass_number
, true);
1894 account_profile (pass
->static_pass_number
, true);
1898 /* Account profile chnages to all passes in list starting in SUB. */
1901 account_profile_in_list (opt_pass
*sub
)
1903 for (; sub
; sub
= sub
->next
)
1905 check_profile_consistency (sub
->static_pass_number
, false);
1906 account_profile (sub
->static_pass_number
, false);
1908 account_profile_in_list (sub
->sub
);
1912 /* Output profile consistency. */
1915 dump_profile_report (void)
1917 g
->get_passes ()->dump_profile_report ();
1921 pass_manager::dump_profile_report () const
1923 int last_count_in
= 0, last_prob_out
= 0;
1924 double last_dyn_count_in
= 0, last_dyn_prob_out
= 0;
1925 double last_time
= 0;
1927 double rel_time_change
, rel_size_change
;
1928 gcc::dump_manager
*dumps
= m_ctxt
->get_dumps ();
1930 if (!profile_record
)
1933 FILE *dump_file
= dump_begin (TDI_profile_report
, NULL
);
1934 if (dump_file
== NULL
)
1937 fprintf (dump_file
, "Profile consistency report:\n\n");
1939 "Pass dump id and name |static mismatch "
1940 "|dynamic mismatch "
1943 " |in count |out prob "
1944 "|in count |out prob "
1947 for (int i
= 1; i
< passes_by_id_size
; i
++)
1948 if (profile_record
[i
].run
)
1951 rel_time_change
= (profile_record
[i
].time
1952 - last_time
) * 100 / last_time
;
1954 rel_time_change
= 0;
1956 rel_size_change
= (profile_record
[i
].size
1957 - (double)last_size
) * 100 / (double)last_size
;
1959 rel_size_change
= 0;
1961 dump_file_info
*dfi
= dumps
->get_dump_file_info (i
);
1963 fprintf (dump_file
, "%3i%c %-28s| %6i",
1965 passes_by_id
[i
]->type
== GIMPLE_PASS
? 't'
1966 : passes_by_id
[i
]->type
== RTL_PASS
? 'r'
1968 passes_by_id
[i
]->name
,
1969 profile_record
[i
].num_mismatched_count_in
);
1970 if (profile_record
[i
].num_mismatched_count_in
!= last_count_in
)
1971 fprintf (dump_file
, " %+5i",
1972 profile_record
[i
].num_mismatched_count_in
1975 fprintf (dump_file
, " ");
1976 fprintf (dump_file
, "| %6i",
1977 profile_record
[i
].num_mismatched_prob_out
);
1978 if (profile_record
[i
].num_mismatched_prob_out
!= last_prob_out
)
1979 fprintf (dump_file
, " %+5i",
1980 profile_record
[i
].num_mismatched_prob_out
1983 fprintf (dump_file
, " ");
1985 fprintf (dump_file
, "| %12.0f",
1986 profile_record
[i
].dyn_mismatched_count_in
);
1987 if (profile_record
[i
].dyn_mismatched_count_in
!= last_dyn_count_in
)
1988 fprintf (dump_file
, " %+12.0f",
1989 profile_record
[i
].dyn_mismatched_count_in
1990 - last_dyn_count_in
);
1992 fprintf (dump_file
, " ");
1993 fprintf (dump_file
, "| %12.0f",
1994 profile_record
[i
].dyn_mismatched_prob_out
);
1995 if (profile_record
[i
].dyn_mismatched_prob_out
!= last_dyn_prob_out
)
1996 fprintf (dump_file
, " %+12.0f",
1997 profile_record
[i
].dyn_mismatched_prob_out
1998 - last_dyn_prob_out
);
2000 fprintf (dump_file
, " ");
2002 /* Size/time units change across gimple and RTL. */
2003 if (i
== pass_expand_1
->static_pass_number
)
2005 "|-------------------|--------------------------");
2008 fprintf (dump_file
, "| %8i", profile_record
[i
].size
);
2009 if (rel_size_change
)
2010 fprintf (dump_file
, " %+8.1f%%", rel_size_change
);
2012 fprintf (dump_file
, " ");
2013 fprintf (dump_file
, "| %12.0f", profile_record
[i
].time
);
2014 /* Time units changes with profile estimate and feedback. */
2015 if (i
== pass_profile_1
->static_pass_number
2016 || i
== pass_ipa_tree_profile_1
->static_pass_number
)
2017 fprintf (dump_file
, "-------------");
2018 else if (rel_time_change
)
2019 fprintf (dump_file
, " %+11.1f%%", rel_time_change
);
2021 fprintf (dump_file
, " ");
2023 fprintf (dump_file
, "|\n");
2024 last_prob_out
= profile_record
[i
].num_mismatched_prob_out
;
2025 last_count_in
= profile_record
[i
].num_mismatched_count_in
;
2026 last_dyn_prob_out
= profile_record
[i
].dyn_mismatched_prob_out
;
2027 last_dyn_count_in
= profile_record
[i
].dyn_mismatched_count_in
;
2028 last_time
= profile_record
[i
].time
;
2029 last_size
= profile_record
[i
].size
;
2032 dump_end (TDI_profile_report
, dump_file
);
2035 /* Perform all TODO actions that ought to be done on each function. */
2038 execute_function_todo (function
*fn
, void *data
)
2040 bool from_ipa_pass
= (cfun
== NULL
);
2041 unsigned int flags
= (size_t)data
;
2042 flags
&= ~fn
->last_verified
;
2048 /* If we need to cleanup the CFG let it perform a needed SSA update. */
2049 if (flags
& TODO_cleanup_cfg
)
2050 cleanup_tree_cfg (flags
& TODO_update_ssa_any
);
2051 else if (flags
& TODO_update_ssa_any
)
2052 update_ssa (flags
& TODO_update_ssa_any
);
2053 gcc_assert (!need_ssa_update_p (fn
));
2055 if (flag_tree_pta
&& (flags
& TODO_rebuild_alias
))
2056 compute_may_aliases ();
2058 if (optimize
&& (flags
& TODO_update_address_taken
))
2059 execute_update_addresses_taken ();
2061 if (flags
& TODO_remove_unused_locals
)
2062 remove_unused_locals ();
2064 if (flags
& TODO_rebuild_frequencies
)
2065 rebuild_frequencies ();
2067 if (flags
& TODO_rebuild_cgraph_edges
)
2068 cgraph_edge::rebuild_edges ();
2070 gcc_assert (dom_info_state (fn
, CDI_POST_DOMINATORS
) == DOM_NONE
);
2071 /* If we've seen errors do not bother running any verifiers. */
2072 if (flag_checking
&& !seen_error ())
2074 dom_state pre_verify_state
= dom_info_state (fn
, CDI_DOMINATORS
);
2075 dom_state pre_verify_pstate
= dom_info_state (fn
, CDI_POST_DOMINATORS
);
2077 if (flags
& TODO_verify_il
)
2079 if (cfun
->curr_properties
& PROP_gimple
)
2081 if (cfun
->curr_properties
& PROP_cfg
)
2082 /* IPA passes leave stmts to be fixed up, so make sure to
2083 not verify stmts really throw. */
2084 verify_gimple_in_cfg (cfun
, !from_ipa_pass
);
2086 verify_gimple_in_seq (gimple_body (cfun
->decl
));
2088 if (cfun
->curr_properties
& PROP_ssa
)
2089 /* IPA passes leave stmts to be fixed up, so make sure to
2090 not verify SSA operands whose verifier will choke on that. */
2091 verify_ssa (true, !from_ipa_pass
);
2092 /* IPA passes leave basic-blocks unsplit, so make sure to
2093 not trip on that. */
2094 if ((cfun
->curr_properties
& PROP_cfg
)
2096 verify_flow_info ();
2098 && ! loops_state_satisfies_p (LOOPS_NEED_FIXUP
))
2100 verify_loop_structure ();
2101 if (loops_state_satisfies_p (LOOP_CLOSED_SSA
))
2102 verify_loop_closed_ssa (false);
2104 if (cfun
->curr_properties
& PROP_rtl
)
2105 verify_rtl_sharing ();
2108 /* Make sure verifiers don't change dominator state. */
2109 gcc_assert (dom_info_state (fn
, CDI_DOMINATORS
) == pre_verify_state
);
2110 gcc_assert (dom_info_state (fn
, CDI_POST_DOMINATORS
) == pre_verify_pstate
);
2113 fn
->last_verified
= flags
& TODO_verify_all
;
2117 /* For IPA passes make sure to release dominator info, it can be
2118 computed by non-verifying TODOs. */
2121 free_dominance_info (fn
, CDI_DOMINATORS
);
2122 free_dominance_info (fn
, CDI_POST_DOMINATORS
);
2126 /* Perform all TODO actions. */
2128 execute_todo (unsigned int flags
)
2132 && need_ssa_update_p (cfun
))
2133 gcc_assert (flags
& TODO_update_ssa_any
);
2135 statistics_fini_pass ();
2138 do_per_function (execute_function_todo
, (void *)(size_t) flags
);
2140 /* At this point we should not have any unreachable code in the
2141 CFG, so it is safe to flush the pending freelist for SSA_NAMES. */
2142 if (cfun
&& cfun
->gimple_df
)
2143 flush_ssaname_freelist ();
2145 /* Always remove functions just as before inlining: IPA passes might be
2146 interested to see bodies of extern inline functions that are not inlined
2147 to analyze side effects. The full removal is done just at the end
2148 of IPA pass queue. */
2149 if (flags
& TODO_remove_functions
)
2152 symtab
->remove_unreachable_nodes (dump_file
);
2155 if ((flags
& TODO_dump_symtab
) && dump_file
&& !current_function_decl
)
2158 symtab
->dump (dump_file
);
2159 /* Flush the file. If verification fails, we won't be able to
2160 close the file before aborting. */
2164 /* Now that the dumping has been done, we can get rid of the optional
2166 if (flags
& TODO_df_finish
)
2167 df_finish_pass ((flags
& TODO_df_verify
) != 0);
2170 /* Verify invariants that should hold between passes. This is a place
2171 to put simple sanity checks. */
2174 verify_interpass_invariants (void)
2176 gcc_checking_assert (!fold_deferring_overflow_warnings_p ());
2179 /* Clear the last verified flag. */
2182 clear_last_verified (function
*fn
, void *data ATTRIBUTE_UNUSED
)
2184 fn
->last_verified
= 0;
2187 /* Helper function. Verify that the properties has been turn into the
2188 properties expected by the pass. */
2191 verify_curr_properties (function
*fn
, void *data
)
2193 unsigned int props
= (size_t)data
;
2194 gcc_assert ((fn
->curr_properties
& props
) == props
);
2197 /* Release dump file name if set. */
2200 release_dump_file_name (void)
2204 free (CONST_CAST (char *, dump_file_name
));
2205 dump_file_name
= NULL
;
2209 /* Initialize pass dump file. */
2210 /* This is non-static so that the plugins can use it. */
2213 pass_init_dump_file (opt_pass
*pass
)
2215 /* If a dump file name is present, open it if enabled. */
2216 if (pass
->static_pass_number
!= -1)
2218 timevar_push (TV_DUMP
);
2219 gcc::dump_manager
*dumps
= g
->get_dumps ();
2220 bool initializing_dump
=
2221 !dumps
->dump_initialized_p (pass
->static_pass_number
);
2222 release_dump_file_name ();
2223 dump_file_name
= dumps
->get_dump_file_name (pass
->static_pass_number
);
2224 dumps
->dump_start (pass
->static_pass_number
, &dump_flags
);
2225 if (dump_file
&& current_function_decl
&& ! (dump_flags
& TDF_GIMPLE
))
2226 dump_function_header (dump_file
, current_function_decl
, dump_flags
);
2227 if (initializing_dump
2228 && dump_file
&& (dump_flags
& TDF_GRAPH
)
2229 && cfun
&& (cfun
->curr_properties
& PROP_cfg
))
2231 clean_graph_dump_file (dump_file_name
);
2232 struct dump_file_info
*dfi
2233 = dumps
->get_dump_file_info (pass
->static_pass_number
);
2234 dfi
->graph_dump_initialized
= true;
2236 timevar_pop (TV_DUMP
);
2237 return initializing_dump
;
2243 /* Flush PASS dump file. */
2244 /* This is non-static so that plugins can use it. */
2247 pass_fini_dump_file (opt_pass
*pass
)
2249 timevar_push (TV_DUMP
);
2251 /* Flush and close dump file. */
2252 release_dump_file_name ();
2254 g
->get_dumps ()->dump_finish (pass
->static_pass_number
);
2255 timevar_pop (TV_DUMP
);
2258 /* After executing the pass, apply expected changes to the function
2262 update_properties_after_pass (function
*fn
, void *data
)
2264 opt_pass
*pass
= (opt_pass
*) data
;
2265 fn
->curr_properties
= (fn
->curr_properties
| pass
->properties_provided
)
2266 & ~pass
->properties_destroyed
;
2269 /* Execute summary generation for all of the passes in IPA_PASS. */
2272 execute_ipa_summary_passes (ipa_opt_pass_d
*ipa_pass
)
2276 opt_pass
*pass
= ipa_pass
;
2278 /* Execute all of the IPA_PASSes in the list. */
2279 if (ipa_pass
->type
== IPA_PASS
2280 && pass
->gate (cfun
)
2281 && ipa_pass
->generate_summary
)
2283 pass_init_dump_file (pass
);
2285 /* If a timevar is present, start it. */
2287 timevar_push (pass
->tv_id
);
2289 current_pass
= pass
;
2290 ipa_pass
->generate_summary ();
2294 timevar_pop (pass
->tv_id
);
2296 pass_fini_dump_file (pass
);
2298 ipa_pass
= (ipa_opt_pass_d
*)ipa_pass
->next
;
2302 /* Execute IPA_PASS function transform on NODE. */
2305 execute_one_ipa_transform_pass (struct cgraph_node
*node
,
2306 ipa_opt_pass_d
*ipa_pass
, bool do_not_collect
)
2308 opt_pass
*pass
= ipa_pass
;
2309 unsigned int todo_after
= 0;
2311 current_pass
= pass
;
2312 if (!ipa_pass
->function_transform
)
2315 /* Note that the folders should only create gimple expressions.
2316 This is a hack until the new folder is ready. */
2317 in_gimple_form
= (cfun
&& (cfun
->curr_properties
& PROP_gimple
)) != 0;
2319 pass_init_dump_file (pass
);
2321 /* If a timevar is present, start it. */
2322 if (pass
->tv_id
!= TV_NONE
)
2323 timevar_push (pass
->tv_id
);
2325 /* Run pre-pass verification. */
2326 execute_todo (ipa_pass
->function_transform_todo_flags_start
);
2329 todo_after
= ipa_pass
->function_transform (node
);
2331 /* Run post-pass cleanup and verification. */
2332 execute_todo (todo_after
);
2333 verify_interpass_invariants ();
2336 if (pass
->tv_id
!= TV_NONE
)
2337 timevar_pop (pass
->tv_id
);
2340 do_per_function (execute_function_dump
, pass
);
2341 pass_fini_dump_file (pass
);
2343 current_pass
= NULL
;
2344 redirect_edge_var_map_empty ();
2346 /* Signal this is a suitable GC collection point. */
2347 if (!do_not_collect
&& !(todo_after
& TODO_do_not_ggc_collect
))
2351 /* For the current function, execute all ipa transforms. */
2354 execute_all_ipa_transforms (bool do_not_collect
)
2356 struct cgraph_node
*node
;
2357 node
= cgraph_node::get (current_function_decl
);
2360 cgraph_node
*next_clone
;
2361 for (cgraph_node
*n
= node
->clones
; n
; n
= next_clone
)
2363 next_clone
= n
->next_sibling_clone
;
2364 if (n
->decl
!= node
->decl
)
2365 n
->materialize_clone ();
2369 gcc::pass_manager
*passes
= g
->get_passes ();
2370 bool report
= profile_report
&& (cfun
->curr_properties
& PROP_gimple
) != 0;
2373 push_cfun (DECL_STRUCT_FUNCTION (node
->decl
));
2375 for (auto p
: node
->ipa_transforms_to_apply
)
2377 /* To get consistent statistics, we need to account each functio
2378 to each IPA pass. */
2381 for (;j
< p
->static_pass_number
; j
++)
2382 if (passes
->get_pass_for_id (j
)
2383 && passes
->get_pass_for_id (j
)->type
== IPA_PASS
2384 && ((ipa_opt_pass_d
*)passes
->get_pass_for_id (j
))
2385 ->function_transform
)
2387 check_profile_consistency (j
, true);
2388 account_profile (j
, true);
2390 gcc_checking_assert (passes
->get_pass_for_id (j
) == p
);
2392 execute_one_ipa_transform_pass (node
, p
, do_not_collect
);
2394 /* Account remaining IPA passes. */
2397 for (;!passes
->get_pass_for_id (j
)
2398 || passes
->get_pass_for_id (j
)->type
!= RTL_PASS
; j
++)
2399 if (passes
->get_pass_for_id (j
)
2400 && passes
->get_pass_for_id (j
)->type
== IPA_PASS
2401 && ((ipa_opt_pass_d
*)passes
->get_pass_for_id (j
))
2402 ->function_transform
)
2404 check_profile_consistency (j
, true);
2405 account_profile (j
, true);
2409 node
->ipa_transforms_to_apply
.release ();
2412 /* Check if PASS is explicitly disabled or enabled and return
2413 the gate status. FUNC is the function to be processed, and
2414 GATE_STATUS is the gate status determined by pass manager by
2418 override_gate_status (opt_pass
*pass
, tree func
, bool gate_status
)
2420 bool explicitly_enabled
= false;
2421 bool explicitly_disabled
= false;
2424 = is_pass_explicitly_enabled_or_disabled (pass
, func
,
2425 enabled_pass_uid_range_tab
);
2427 = is_pass_explicitly_enabled_or_disabled (pass
, func
,
2428 disabled_pass_uid_range_tab
);
2430 gate_status
= !explicitly_disabled
&& (gate_status
|| explicitly_enabled
);
2435 /* Determine if PASS_NAME matches CRITERION.
2436 Not a pure predicate, since it can update CRITERION, to support
2437 matching the Nth invocation of a pass.
2438 Subroutine of should_skip_pass_p. */
2441 determine_pass_name_match (const char *pass_name
, char *criterion
)
2443 size_t namelen
= strlen (pass_name
);
2444 if (! strncmp (pass_name
, criterion
, namelen
))
2446 /* The following supports starting with the Nth invocation
2447 of a pass (where N does not necessarily is equal to the
2448 dump file suffix). */
2449 if (criterion
[namelen
] == '\0'
2450 || (criterion
[namelen
] == '1'
2451 && criterion
[namelen
+ 1] == '\0'))
2455 if (criterion
[namelen
+ 1] == '\0')
2456 --criterion
[namelen
];
2464 /* For skipping passes until "startwith" pass.
2465 Return true iff PASS should be skipped.
2466 Clear cfun->pass_startwith when encountering the "startwith" pass,
2467 so that all subsequent passes are run. */
2470 should_skip_pass_p (opt_pass
*pass
)
2474 if (!cfun
->pass_startwith
)
2477 /* For __GIMPLE functions, we have to at least start when we leave
2478 SSA. Hence, we need to detect the "expand" pass, and stop skipping
2479 when we encounter it. A cheap way to identify "expand" is it to
2480 detect the destruction of PROP_ssa.
2481 For __RTL functions, we invoke "rest_of_compilation" directly, which
2482 is after "expand", and hence we don't reach this conditional. */
2483 if (pass
->properties_destroyed
& PROP_ssa
)
2486 fprintf (stderr
, "starting anyway when leaving SSA: %s\n", pass
->name
);
2487 cfun
->pass_startwith
= NULL
;
2491 if (determine_pass_name_match (pass
->name
, cfun
->pass_startwith
))
2494 fprintf (stderr
, "found starting pass: %s\n", pass
->name
);
2495 cfun
->pass_startwith
= NULL
;
2499 /* For GIMPLE passes, run any property provider (but continue skipping
2501 We don't want to force running RTL passes that are property providers:
2502 "expand" is covered above, and the only pass other than "expand" that
2503 provides a property is "into_cfglayout" (PROP_cfglayout), which does
2504 too much for a dumped __RTL function. */
2505 if (pass
->type
== GIMPLE_PASS
2506 && pass
->properties_provided
!= 0)
2509 /* We need to (re-)build cgraph edges as needed. */
2510 if (strstr (pass
->name
, "build_cgraph_edges") != NULL
)
2513 /* Don't skip df init; later RTL passes need it. */
2514 if (strstr (pass
->name
, "dfinit") != NULL
2515 || strstr (pass
->name
, "dfinish") != NULL
)
2519 fprintf (stderr
, "skipping pass: %s\n", pass
->name
);
2521 /* If we get here, then we have a "startwith" that we haven't seen yet;
2526 /* Skip the given pass, for handling passes before "startwith"
2527 in __GIMPLE and__RTL-marked functions.
2528 In theory, this ought to be a no-op, but some of the RTL passes
2529 need additional processing here. */
2532 skip_pass (opt_pass
*pass
)
2534 /* Pass "reload" sets the global "reload_completed", and many
2535 things depend on this (e.g. instructions in .md files). */
2536 if (strcmp (pass
->name
, "reload") == 0)
2537 reload_completed
= 1;
2539 /* Similar for pass "pro_and_epilogue" and the "epilogue_completed" global
2541 if (strcmp (pass
->name
, "pro_and_epilogue") == 0)
2542 epilogue_completed
= 1;
2544 /* The INSN_ADDRESSES vec is normally set up by
2545 shorten_branches; set it up for the benefit of passes that
2547 if (strcmp (pass
->name
, "shorten") == 0)
2548 INSN_ADDRESSES_ALLOC (get_max_uid ());
2550 /* Update the cfg hooks as appropriate. */
2551 if (strcmp (pass
->name
, "into_cfglayout") == 0)
2553 cfg_layout_rtl_register_cfg_hooks ();
2554 cfun
->curr_properties
|= PROP_cfglayout
;
2556 if (strcmp (pass
->name
, "outof_cfglayout") == 0)
2558 rtl_register_cfg_hooks ();
2559 cfun
->curr_properties
&= ~PROP_cfglayout
;
2566 execute_one_pass (opt_pass
*pass
)
2568 unsigned int todo_after
= 0;
2572 /* IPA passes are executed on whole program, so cfun should be NULL.
2573 Other passes need function context set. */
2574 if (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
)
2575 gcc_assert (!cfun
&& !current_function_decl
);
2577 gcc_assert (cfun
&& current_function_decl
);
2579 current_pass
= pass
;
2581 /* Check whether gate check should be avoided.
2582 User controls the value of the gate through the parameter "gate_status". */
2583 gate_status
= pass
->gate (cfun
);
2584 gate_status
= override_gate_status (pass
, current_function_decl
, gate_status
);
2586 /* Override gate with plugin. */
2587 invoke_plugin_callbacks (PLUGIN_OVERRIDE_GATE
, &gate_status
);
2591 /* Run so passes selectively disabling themselves on a given function
2592 are not miscounted. */
2593 if (profile_report
&& cfun
&& (cfun
->curr_properties
& PROP_cfg
)
2594 && pass
->type
!= IPA_PASS
&& pass
->type
!= SIMPLE_IPA_PASS
)
2596 check_profile_consistency (pass
->static_pass_number
, false);
2597 account_profile (pass
->static_pass_number
, false);
2599 account_profile_in_list (pass
->sub
);
2601 current_pass
= NULL
;
2605 if (should_skip_pass_p (pass
))
2611 /* Pass execution event trigger: useful to identify passes being
2613 invoke_plugin_callbacks (PLUGIN_PASS_EXECUTION
, pass
);
2615 if (!quiet_flag
&& !cfun
)
2616 fprintf (stderr
, " <%s>", pass
->name
? pass
->name
: "");
2618 /* Note that the folders should only create gimple expressions.
2619 This is a hack until the new folder is ready. */
2620 in_gimple_form
= (cfun
&& (cfun
->curr_properties
& PROP_gimple
)) != 0;
2622 pass_init_dump_file (pass
);
2624 /* If a timevar is present, start it. */
2625 if (pass
->tv_id
!= TV_NONE
)
2626 timevar_push (pass
->tv_id
);
2629 /* Run pre-pass verification. */
2630 execute_todo (pass
->todo_flags_start
);
2633 do_per_function (verify_curr_properties
,
2634 (void *)(size_t)pass
->properties_required
);
2637 todo_after
= pass
->execute (cfun
);
2639 if (todo_after
& TODO_discard_function
)
2642 if (pass
->tv_id
!= TV_NONE
)
2643 timevar_pop (pass
->tv_id
);
2645 pass_fini_dump_file (pass
);
2648 /* As cgraph_node::release_body expects release dominators info,
2649 we have to release it. */
2650 if (dom_info_available_p (CDI_DOMINATORS
))
2651 free_dominance_info (CDI_DOMINATORS
);
2653 if (dom_info_available_p (CDI_POST_DOMINATORS
))
2654 free_dominance_info (CDI_POST_DOMINATORS
);
2656 tree fn
= cfun
->decl
;
2659 cgraph_node::get (fn
)->release_body ();
2661 current_pass
= NULL
;
2662 redirect_edge_var_map_empty ();
2669 do_per_function (clear_last_verified
, NULL
);
2671 do_per_function (update_properties_after_pass
, pass
);
2673 /* Run post-pass cleanup and verification. */
2674 execute_todo (todo_after
| pass
->todo_flags_finish
| TODO_verify_il
);
2677 /* IPA passes are accounted at transform time. */
2678 if (pass
->type
== IPA_PASS
)
2680 else if (pass
->type
== SIMPLE_IPA_PASS
)
2681 do_per_function (account_profile_1
, pass
);
2682 else if (cfun
&& (cfun
->curr_properties
& PROP_cfg
))
2684 check_profile_consistency (pass
->static_pass_number
, true);
2685 account_profile (pass
->static_pass_number
, true);
2689 verify_interpass_invariants ();
2692 if (pass
->tv_id
!= TV_NONE
)
2693 timevar_pop (pass
->tv_id
);
2695 if (pass
->type
== IPA_PASS
2696 && ((ipa_opt_pass_d
*)pass
)->function_transform
)
2698 struct cgraph_node
*node
;
2699 FOR_EACH_FUNCTION_WITH_GIMPLE_BODY (node
)
2700 if (!node
->inlined_to
)
2701 node
->ipa_transforms_to_apply
.safe_push ((ipa_opt_pass_d
*)pass
);
2704 do_per_function (execute_function_dump
, pass
);
2706 if (!current_function_decl
)
2707 symtab
->process_new_functions ();
2709 pass_fini_dump_file (pass
);
2711 if (pass
->type
!= SIMPLE_IPA_PASS
&& pass
->type
!= IPA_PASS
)
2712 gcc_assert (!(cfun
->curr_properties
& PROP_gimple
)
2713 || pass
->type
!= RTL_PASS
);
2715 current_pass
= NULL
;
2716 redirect_edge_var_map_empty ();
2718 /* Signal this is a suitable GC collection point. */
2719 if (!((todo_after
| pass
->todo_flags_finish
) & TODO_do_not_ggc_collect
))
2722 if (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
)
2723 report_heap_memory_use ();
2728 execute_pass_list_1 (opt_pass
*pass
)
2732 gcc_assert (pass
->type
== GIMPLE_PASS
2733 || pass
->type
== RTL_PASS
);
2737 if (execute_one_pass (pass
) && pass
->sub
)
2738 execute_pass_list_1 (pass
->sub
);
2745 execute_pass_list (function
*fn
, opt_pass
*pass
)
2747 gcc_assert (fn
== cfun
);
2748 execute_pass_list_1 (pass
);
2749 if (cfun
&& fn
->cfg
)
2751 free_dominance_info (CDI_DOMINATORS
);
2752 free_dominance_info (CDI_POST_DOMINATORS
);
2756 /* Write out all LTO data. */
2760 timevar_push (TV_IPA_LTO_GIMPLE_OUT
);
2762 timevar_pop (TV_IPA_LTO_GIMPLE_OUT
);
2763 timevar_push (TV_IPA_LTO_DECL_OUT
);
2764 produce_asm_for_decls ();
2765 timevar_pop (TV_IPA_LTO_DECL_OUT
);
2768 /* Same as execute_pass_list but assume that subpasses of IPA passes
2769 are local passes. If SET is not NULL, write out summaries of only
2770 those node in SET. */
2773 ipa_write_summaries_2 (opt_pass
*pass
, struct lto_out_decl_state
*state
)
2777 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*)pass
;
2778 gcc_assert (!current_function_decl
);
2780 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
2781 if (pass
->type
== IPA_PASS
2782 && ipa_pass
->write_summary
2783 && pass
->gate (cfun
))
2785 /* If a timevar is present, start it. */
2787 timevar_push (pass
->tv_id
);
2789 pass_init_dump_file (pass
);
2791 current_pass
= pass
;
2792 ipa_pass
->write_summary ();
2794 pass_fini_dump_file (pass
);
2796 /* If a timevar is present, start it. */
2798 timevar_pop (pass
->tv_id
);
2801 if (pass
->sub
&& pass
->sub
->type
!= GIMPLE_PASS
)
2802 ipa_write_summaries_2 (pass
->sub
, state
);
2808 /* Helper function of ipa_write_summaries. Creates and destroys the
2809 decl state and calls ipa_write_summaries_2 for all passes that have
2810 summaries. SET is the set of nodes to be written. */
2813 ipa_write_summaries_1 (lto_symtab_encoder_t encoder
)
2815 pass_manager
*passes
= g
->get_passes ();
2816 struct lto_out_decl_state
*state
= lto_new_out_decl_state ();
2817 state
->symtab_node_encoder
= encoder
;
2819 lto_output_init_mode_table ();
2820 lto_push_out_decl_state (state
);
2822 gcc_assert (!flag_wpa
);
2823 ipa_write_summaries_2 (passes
->all_regular_ipa_passes
, state
);
2827 gcc_assert (lto_get_out_decl_state () == state
);
2828 lto_pop_out_decl_state ();
2829 lto_delete_out_decl_state (state
);
2832 /* Write out summaries for all the nodes in the callgraph. */
2835 ipa_write_summaries (void)
2837 lto_symtab_encoder_t encoder
;
2839 varpool_node
*vnode
;
2840 struct cgraph_node
*node
;
2841 struct cgraph_node
**order
;
2843 if ((!flag_generate_lto
&& !flag_generate_offload
) || seen_error ())
2846 gcc_assert (!dump_file
);
2847 streamer_dump_file
= dump_begin (TDI_lto_stream_out
, NULL
);
2849 select_what_to_stream ();
2851 encoder
= lto_symtab_encoder_new (false);
2853 /* Create the callgraph set in the same order used in
2854 cgraph_expand_all_functions. This mostly facilitates debugging,
2855 since it causes the gimple file to be processed in the same order
2856 as the source code. */
2857 order
= XCNEWVEC (struct cgraph_node
*, symtab
->cgraph_count
);
2858 order_pos
= ipa_reverse_postorder (order
);
2859 gcc_assert (order_pos
== symtab
->cgraph_count
);
2861 for (i
= order_pos
- 1; i
>= 0; i
--)
2863 struct cgraph_node
*node
= order
[i
];
2865 if ((node
->definition
|| node
->declare_variant_alt
)
2866 && node
->need_lto_streaming
)
2868 if (gimple_has_body_p (node
->decl
))
2869 lto_prepare_function_for_streaming (node
);
2870 lto_set_symtab_encoder_in_partition (encoder
, node
);
2874 FOR_EACH_DEFINED_FUNCTION (node
)
2875 if (node
->alias
&& node
->need_lto_streaming
)
2876 lto_set_symtab_encoder_in_partition (encoder
, node
);
2877 FOR_EACH_DEFINED_VARIABLE (vnode
)
2878 if (vnode
->need_lto_streaming
)
2879 lto_set_symtab_encoder_in_partition (encoder
, vnode
);
2881 ipa_write_summaries_1 (compute_ltrans_boundary (encoder
));
2884 if (streamer_dump_file
)
2886 dump_end (TDI_lto_stream_out
, streamer_dump_file
);
2887 streamer_dump_file
= NULL
;
2891 /* Same as execute_pass_list but assume that subpasses of IPA passes
2892 are local passes. If SET is not NULL, write out optimization summaries of
2893 only those node in SET. */
2896 ipa_write_optimization_summaries_1 (opt_pass
*pass
,
2897 struct lto_out_decl_state
*state
)
2901 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*)pass
;
2902 gcc_assert (!current_function_decl
);
2904 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
2905 if (pass
->type
== IPA_PASS
2906 && ipa_pass
->write_optimization_summary
2907 && pass
->gate (cfun
))
2909 /* If a timevar is present, start it. */
2911 timevar_push (pass
->tv_id
);
2913 pass_init_dump_file (pass
);
2915 current_pass
= pass
;
2916 ipa_pass
->write_optimization_summary ();
2918 pass_fini_dump_file (pass
);
2920 /* If a timevar is present, start it. */
2922 timevar_pop (pass
->tv_id
);
2925 if (pass
->sub
&& pass
->sub
->type
!= GIMPLE_PASS
)
2926 ipa_write_optimization_summaries_1 (pass
->sub
, state
);
2932 /* Write all the optimization summaries for the cgraph nodes in SET. If SET is
2933 NULL, write out all summaries of all nodes. */
2936 ipa_write_optimization_summaries (lto_symtab_encoder_t encoder
)
2938 struct lto_out_decl_state
*state
= lto_new_out_decl_state ();
2939 state
->symtab_node_encoder
= encoder
;
2941 lto_output_init_mode_table ();
2942 lto_push_out_decl_state (state
);
2944 /* Be sure that we did not forget to renumber stmt uids. */
2945 gcc_checking_assert (flag_wpa
);
2947 gcc_assert (flag_wpa
);
2948 pass_manager
*passes
= g
->get_passes ();
2949 ipa_write_optimization_summaries_1 (passes
->all_regular_ipa_passes
, state
);
2953 gcc_assert (lto_get_out_decl_state () == state
);
2954 lto_pop_out_decl_state ();
2955 lto_delete_out_decl_state (state
);
2958 /* Same as execute_pass_list but assume that subpasses of IPA passes
2959 are local passes. */
2962 ipa_read_summaries_1 (opt_pass
*pass
)
2966 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*) pass
;
2968 gcc_assert (!current_function_decl
);
2970 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
2972 if (pass
->gate (cfun
))
2974 if (pass
->type
== IPA_PASS
&& ipa_pass
->read_summary
)
2976 /* If a timevar is present, start it. */
2978 timevar_push (pass
->tv_id
);
2980 fprintf (stderr
, " <%s>", pass
->name
? pass
->name
: "");
2982 pass_init_dump_file (pass
);
2984 current_pass
= pass
;
2985 ipa_pass
->read_summary ();
2987 pass_fini_dump_file (pass
);
2991 timevar_pop (pass
->tv_id
);
2993 report_heap_memory_use ();
2996 if (pass
->sub
&& pass
->sub
->type
!= GIMPLE_PASS
)
2997 ipa_read_summaries_1 (pass
->sub
);
3004 /* Read all the summaries for all_regular_ipa_passes. */
3007 ipa_read_summaries (void)
3009 pass_manager
*passes
= g
->get_passes ();
3010 ipa_read_summaries_1 (passes
->all_regular_ipa_passes
);
3013 /* Same as execute_pass_list but assume that subpasses of IPA passes
3014 are local passes. */
3017 ipa_read_optimization_summaries_1 (opt_pass
*pass
)
3021 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*) pass
;
3023 gcc_assert (!current_function_decl
);
3025 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
3027 if (pass
->gate (cfun
))
3029 if (pass
->type
== IPA_PASS
&& ipa_pass
->read_optimization_summary
)
3031 /* If a timevar is present, start it. */
3033 timevar_push (pass
->tv_id
);
3035 fprintf (stderr
, " <%s>", pass
->name
? pass
->name
: "");
3037 pass_init_dump_file (pass
);
3039 current_pass
= pass
;
3040 ipa_pass
->read_optimization_summary ();
3042 pass_fini_dump_file (pass
);
3046 timevar_pop (pass
->tv_id
);
3049 if (pass
->sub
&& pass
->sub
->type
!= GIMPLE_PASS
)
3050 ipa_read_optimization_summaries_1 (pass
->sub
);
3052 report_heap_memory_use ();
3058 /* Read all the summaries for all_regular_ipa_passes. */
3061 ipa_read_optimization_summaries (void)
3063 pass_manager
*passes
= g
->get_passes ();
3064 ipa_read_optimization_summaries_1 (passes
->all_regular_ipa_passes
);
3067 /* Same as execute_pass_list but assume that subpasses of IPA passes
3068 are local passes. */
3070 execute_ipa_pass_list (opt_pass
*pass
)
3074 gcc_assert (!current_function_decl
);
3076 gcc_assert (pass
->type
== SIMPLE_IPA_PASS
|| pass
->type
== IPA_PASS
);
3077 if (execute_one_pass (pass
) && pass
->sub
)
3079 if (pass
->sub
->type
== GIMPLE_PASS
)
3081 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_START
, NULL
);
3082 do_per_function_toporder ((void (*)(function
*, void *))
3085 invoke_plugin_callbacks (PLUGIN_EARLY_GIMPLE_PASSES_END
, NULL
);
3087 else if (pass
->sub
->type
== SIMPLE_IPA_PASS
3088 || pass
->sub
->type
== IPA_PASS
)
3089 execute_ipa_pass_list (pass
->sub
);
3093 gcc_assert (!current_function_decl
);
3094 symtab
->process_new_functions ();
3100 /* Execute stmt fixup hooks of all passes in PASS for NODE and STMTS. */
3103 execute_ipa_stmt_fixups (opt_pass
*pass
,
3104 struct cgraph_node
*node
, gimple
**stmts
)
3108 /* Execute all of the IPA_PASSes in the list. */
3109 if (pass
->type
== IPA_PASS
3110 && pass
->gate (cfun
))
3112 ipa_opt_pass_d
*ipa_pass
= (ipa_opt_pass_d
*) pass
;
3114 if (ipa_pass
->stmt_fixup
)
3116 pass_init_dump_file (pass
);
3117 /* If a timevar is present, start it. */
3119 timevar_push (pass
->tv_id
);
3121 current_pass
= pass
;
3122 ipa_pass
->stmt_fixup (node
, stmts
);
3126 timevar_pop (pass
->tv_id
);
3127 pass_fini_dump_file (pass
);
3130 execute_ipa_stmt_fixups (pass
->sub
, node
, stmts
);
3136 /* Execute stmt fixup hooks of all IPA passes for NODE and STMTS. */
3139 execute_all_ipa_stmt_fixups (struct cgraph_node
*node
, gimple
**stmts
)
3141 pass_manager
*passes
= g
->get_passes ();
3142 execute_ipa_stmt_fixups (passes
->all_regular_ipa_passes
, node
, stmts
);
3146 extern void debug_properties (unsigned int);
3147 extern void dump_properties (FILE *, unsigned int);
3150 dump_properties (FILE *dump
, unsigned int props
)
3152 fprintf (dump
, "Properties:\n");
3153 if (props
& PROP_gimple_any
)
3154 fprintf (dump
, "PROP_gimple_any\n");
3155 if (props
& PROP_gimple_lcf
)
3156 fprintf (dump
, "PROP_gimple_lcf\n");
3157 if (props
& PROP_gimple_leh
)
3158 fprintf (dump
, "PROP_gimple_leh\n");
3159 if (props
& PROP_cfg
)
3160 fprintf (dump
, "PROP_cfg\n");
3161 if (props
& PROP_ssa
)
3162 fprintf (dump
, "PROP_ssa\n");
3163 if (props
& PROP_no_crit_edges
)
3164 fprintf (dump
, "PROP_no_crit_edges\n");
3165 if (props
& PROP_rtl
)
3166 fprintf (dump
, "PROP_rtl\n");
3167 if (props
& PROP_gimple_lomp
)
3168 fprintf (dump
, "PROP_gimple_lomp\n");
3169 if (props
& PROP_gimple_lomp_dev
)
3170 fprintf (dump
, "PROP_gimple_lomp_dev\n");
3171 if (props
& PROP_gimple_lcx
)
3172 fprintf (dump
, "PROP_gimple_lcx\n");
3173 if (props
& PROP_gimple_lvec
)
3174 fprintf (dump
, "PROP_gimple_lvec\n");
3175 if (props
& PROP_cfglayout
)
3176 fprintf (dump
, "PROP_cfglayout\n");
3180 debug_properties (unsigned int props
)
3182 dump_properties (stderr
, props
);
3185 /* Called by local passes to see if function is called by already processed nodes.
3186 Because we process nodes in topological order, this means that function is
3187 in recursive cycle or we introduced new direct calls. */
3189 function_called_by_processed_nodes_p (void)
3191 struct cgraph_edge
*e
;
3192 for (e
= cgraph_node::get (current_function_decl
)->callers
;
3196 if (e
->caller
->decl
== current_function_decl
)
3198 if (!e
->caller
->has_gimple_body_p ())
3200 if (TREE_ASM_WRITTEN (e
->caller
->decl
))
3202 if (!e
->caller
->process
&& !e
->caller
->inlined_to
)
3207 fprintf (dump_file
, "Already processed call to:\n");
3208 e
->caller
->dump (dump_file
);