diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-16 23:14:02 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-16 23:14:02 +0000 |
commit | 4c27dd459452e4fd7d2821cc60813ba8ed6d3d8c (patch) | |
tree | 33124791d9f4d0376ee20ed1b477125f15b3b1d3 /gcc/tree-eh.c | |
parent | 25c55cb426b20d337f1e7bb5ed83b3ec6b99fdb0 (diff) | |
download | gcc-4c27dd459452e4fd7d2821cc60813ba8ed6d3d8c.tar.gz |
PR tree-opt/21399
* tree-eh.c (maybe_clean_or_replace_eh_stmt): Rename from
maybe_clean_eh_stmt; take old stmt parameter. Update EH
region data structure to match replacement.
* tree-flow.h: Update to match.
* tree-ssa-ccp.c (execute_fold_all_builtins): Likewise.
* tree-ssa-dom.c (optimize_stmt): Likewise.
* tree-ssa-pre.c (eliminate): Likewise.
* tree-ssa-propagate.c (substitute_and_fold): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99801 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-eh.c')
-rw-r--r-- | gcc/tree-eh.c | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/gcc/tree-eh.c b/gcc/tree-eh.c index 7d83746b501..9f641e186d2 100644 --- a/gcc/tree-eh.c +++ b/gcc/tree-eh.c @@ -2034,12 +2034,32 @@ tree_can_throw_external (tree stmt) return can_throw_external_1 (region_nr); } -bool -maybe_clean_eh_stmt (tree stmt) +/* Given a statement OLD_STMT and a new statement NEW_STMT that has replaced + OLD_STMT in the function, remove OLD_STMT from the EH table and put NEW_STMT + in the table if it should be in there. Return TRUE if a replacement was + done that my require an EH edge purge. */ + +bool +maybe_clean_or_replace_eh_stmt (tree old_stmt, tree new_stmt) { - if (!tree_could_throw_p (stmt)) - if (remove_stmt_from_eh_region (stmt)) - return true; + int region_nr = lookup_stmt_eh_region (old_stmt); + + if (region_nr >= 0) + { + bool new_stmt_could_throw = tree_could_throw_p (new_stmt); + + if (new_stmt == old_stmt && new_stmt_could_throw) + return false; + + remove_stmt_from_eh_region (old_stmt); + if (new_stmt_could_throw) + { + add_stmt_to_eh_region (new_stmt, region_nr); + return false; + } + else + return true; + } + return false; } - |