diff options
| author | Martin Liska <marxin.liska@gmail.com> | 2013-12-17 22:20:12 +0000 |
|---|---|---|
| committer | Martin Liska <marxin@gcc.gnu.org> | 2013-12-17 22:20:12 +0000 |
| commit | 9cec31f43afbdb326fddbc144e9aea63986828e4 (patch) | |
| tree | 3ad29a01dabd9e49f49f9ebdc04f7655721d6300 /gcc/ipa-split.c | |
| parent | 14407011d62da724e88ac0cb30390d3f8fda2b9f (diff) | |
| download | gcc-9cec31f43afbdb326fddbc144e9aea63986828e4.zip gcc-9cec31f43afbdb326fddbc144e9aea63986828e4.tar.gz gcc-9cec31f43afbdb326fddbc144e9aea63986828e4.tar.bz2 | |
Time profile-based function reordering (phase 2).
Co-Authored-By: Jan Hubicka <jh@suse.cz>
From-SVN: r206070
Diffstat (limited to 'gcc/ipa-split.c')
| -rw-r--r-- | gcc/ipa-split.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ipa-split.c b/gcc/ipa-split.c index 6d93348..43758b6 100644 --- a/gcc/ipa-split.c +++ b/gcc/ipa-split.c @@ -1234,6 +1234,10 @@ split_function (struct split_point *split_point) !split_part_return_p, split_point->split_bbs, split_point->entry_bb, "part"); + + /* Let's take a time profile for splitted function. */ + node->tp_first_run = cur_node->tp_first_run + 1; + /* For usual cloning it is enough to clear builtin only when signature changes. For partial inlining we however can not expect the part of builtin implementation to have same semantic as the whole. */ |
