diff options
author | Jan Hubicka <jh@suse.cz> | 2010-04-27 16:56:33 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2010-04-27 14:56:33 +0000 |
commit | e65bb9be499d2cea82fdfad49d7cf901167f9562 (patch) | |
tree | ba01f849174d822c82ea0fcae6a53e429d1ab377 /gcc/tree-pass.h | |
parent | 38e3d8681f2e6773b44afc6beee57630e9b20b8e (diff) | |
download | gcc-e65bb9be499d2cea82fdfad49d7cf901167f9562.zip gcc-e65bb9be499d2cea82fdfad49d7cf901167f9562.tar.gz gcc-e65bb9be499d2cea82fdfad49d7cf901167f9562.tar.bz2 |
invoke.texi (-fipa-profile): Document.
* doc/invoke.texi (-fipa-profile): Document.
* opts.c (decode_options): Enable ipa-profile at -O1.
* timevar.def (TV_IPA_PROFILE): Define.
* common.opt (fipa-profile): Add.
* cgraph.c (cgraph_clone_node): Set local flag and clear vtable method flag
for clones.
(cgraph_propagate_frequency): Handle only local ones.
* tree-pass.h (pass_ipa_profile): Declare.
* ipa-profile.c (gate_profile): Use flag_ipa_profile.
(pass_ipa_profile): Use TV_IPA_PROFILE.
* ipa.c (ipa_profile): New function.
(gate_ipa_profile): Likewise.
(pass_ipa_profile): New global variable.
* passes.c (pass_ipa_profile): New.
From-SVN: r158788
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index 3d7798e..a82dc83 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -459,6 +459,7 @@ extern struct simple_ipa_opt_pass pass_ipa_pta; extern struct simple_ipa_opt_pass pass_ipa_struct_reorg; extern struct ipa_opt_pass_d pass_ipa_lto_wpa_fixup; extern struct ipa_opt_pass_d pass_ipa_lto_finish_out; +extern struct ipa_opt_pass_d pass_ipa_profile; extern struct gimple_opt_pass pass_all_optimizations; extern struct gimple_opt_pass pass_cleanup_cfg_post_optimizing; |