diff options
author | Kenneth Zadeck <zadeck@naturalbridge.com> | 2008-01-22 13:57:01 +0000 |
---|---|---|
committer | Kenneth Zadeck <zadeck@gcc.gnu.org> | 2008-01-22 13:57:01 +0000 |
commit | 963acd6f89ae458cfbddcba67bd0d7530a71feec (patch) | |
tree | ebfe2c3b0f60689e131c3a7a378e9b4a90660f8e /gcc/loop-invariant.c | |
parent | 115e6e5572d2fe0fddf7ed3bba2fa692461e8a0a (diff) | |
download | gcc-963acd6f89ae458cfbddcba67bd0d7530a71feec.zip gcc-963acd6f89ae458cfbddcba67bd0d7530a71feec.tar.gz gcc-963acd6f89ae458cfbddcba67bd0d7530a71feec.tar.bz2 |
re PR tree-optimization/26854 (Inordinate compile times on large routines)
2008-01-22 Kenneth Zadeck <zadeck@naturalbridge.com>
PR rtl-optimization/26854
PR rtl-optimization/34400
PR rtl-optimization/34884
* ddg.c (create_ddg_dep_from_intra_loop_link): Use
DF_RD->gen.
* df.h (df_changeable_flags.DF_RD_NO_TRIM): Deleted
(df_rd_bb_info.expanded_lr_out): Deleted
* loop_invariant.c (find_defs): Deleted DF_RD_NO_TRIM flag.
* loop_iv.c (iv_analysis_loop_init): Ditto. * df-problems.c
(df_rd_free_bb_info, df_rd_alloc, df_rd_confluence_n,
df_rd_bb_local_compute, df_rd_transfer_function, df_rd_free):
Removed code to allocate, initialize or free expanded_lr_out.
(df_rd_bb_local_compute_process_def): Restructured to make more
understandable.
(df_rd_confluence_n): Removed code to no apply invalidate_by_call
sets if the sets are being trimmed.
From-SVN: r131719
Diffstat (limited to 'gcc/loop-invariant.c')
-rw-r--r-- | gcc/loop-invariant.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/loop-invariant.c b/gcc/loop-invariant.c index f056a77..ba1f288 100644 --- a/gcc/loop-invariant.c +++ b/gcc/loop-invariant.c @@ -639,7 +639,6 @@ find_defs (struct loop *loop, basic_block *body) df_remove_problem (df_chain); df_process_deferred_rescans (); df_chain_add_problem (DF_UD_CHAIN); - df_set_flags (DF_RD_NO_TRIM); df_set_blocks (blocks); df_analyze (); |