diff options
author | Seongbae Park <seongbae.park@gmail.com> | 2008-05-28 20:15:10 +0000 |
---|---|---|
committer | Seongbae Park <spark@gcc.gnu.org> | 2008-05-28 20:15:10 +0000 |
commit | b608a1bc71edb6b778407dd9bfdf0cbd6bcb4c1b (patch) | |
tree | eec1f0a98236b0cc50a93f03ae95201e815b992a /gcc/value-prof.c | |
parent | 77da4248a98f179e1a5be88050ea7fd294e5618e (diff) | |
download | gcc-b608a1bc71edb6b778407dd9bfdf0cbd6bcb4c1b.zip gcc-b608a1bc71edb6b778407dd9bfdf0cbd6bcb4c1b.tar.gz gcc-b608a1bc71edb6b778407dd9bfdf0cbd6bcb4c1b.tar.bz2 |
tree-ssa-propagate.c (set_rhs): Preserve the histogram and the eh region information.
2008-05-28 Seongbae Park <seongbae.park@gmail.com>
* tree-ssa-propagate.c (set_rhs): Preserve the histogram
and the eh region information.
* value-prof.c (gimple_move_stmt_histograms): New function.
* value-prof.h (gimple_move_stmt_histograms): New function declaration.
From-SVN: r136124
Diffstat (limited to 'gcc/value-prof.c')
-rw-r--r-- | gcc/value-prof.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/value-prof.c b/gcc/value-prof.c index 8b0087a..61b0a07 100644 --- a/gcc/value-prof.c +++ b/gcc/value-prof.c @@ -336,6 +336,25 @@ gimple_duplicate_stmt_histograms (struct function *fun, tree stmt, } } + +/* Move all histograms associated with OSTMT to STMT. */ + +void +gimple_move_stmt_histograms (struct function *fun, tree stmt, tree ostmt) +{ + histogram_value val = gimple_histogram_value (fun, ostmt); + if (val) + { + /* The following three statements can't be reordered, + because histogram hashtab relies on stmt field value + for finding the exact slot. */ + set_histogram_value (fun, ostmt, NULL); + for (; val != NULL; val = val->hvalue.next) + val->hvalue.stmt = stmt; + set_histogram_value (fun, stmt, val); + } +} + static bool error_found = false; /* Helper function for verify_histograms. For each histogram reachable via htab |