diff options
author | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-26 10:48:36 +0000 |
---|---|---|
committer | rakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-26 10:48:36 +0000 |
commit | ce32fe651e3e727188452fa6e1eebb7d2c27e356 (patch) | |
tree | 0eb271bb5e907e017194e3ff3b24e129090bdcf6 /gcc/toplev.c | |
parent | 7df58c71754e16e6249e238b64b7c572783511f2 (diff) | |
download | gcc-ce32fe651e3e727188452fa6e1eebb7d2c27e356.tar.gz |
* cse.c (count_reg_usage): Fix handling of REG_EQUAL notes.
* Makefile.in (loop-unroll.o): New.
* cfgloop.h (UAP_PEEL, UAP_UNROLL, UAP_UNROLL_ALL): New.
(unroll_and_peel_loops): Declare.
* alias.c (init_alias_analysis): Flag_unroll_loops renamed to
flag_old_unroll_loops.
* loop.c (loop_invariant_p): Ditto.
* unroll.c (unroll_loop): Flag_unroll_all_loops renamed to
flag_old_unroll_all_loops.
* flags.h (flag_unroll_loops): Renamed to flag_old_unroll_loops.
(flag_unroll_all_loops): Renamed to flag_old_unroll_all_loops.
* params.def (PARAM_MAX_UNROLLED_INSNS): Default value changed.
(PARAM_MAX_AVERAGE_UNROLLED_INSNS, PARAM_MAX_UNROLL_TIMES,
PARAM_MAX_PEELED_INSNS, PARAM_MAX_PEEL_TIMES,
PARAM_MAX_COMPLETELY_PEELED_INSNS, PARAM_MAX_COMPLETELY_PEEL_TIMES,
PARAM_MAX_ONCE_PEELED_INSNS): New.
* toplev.h (flag_old_unroll_loops, flag_old_unroll_all_loops): New.
(flag_unroll_loops, flag_unroll_all_loops): Used for new unroller
instead of old one.
(flag_peel_loops): New.
(lang_independent_options): The new flags added.
(rest_of_compilation): Call new unroller.
(process_options): Setup flags for coexistence of old and new unroller.
* doc/invoke.texi: Document new options.
* doc/passes.texi: Document new unroller pass.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63462 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 48 |
1 files changed, 43 insertions, 5 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 89324090f61..ae068d43472 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -515,13 +515,22 @@ int flag_strength_reduce = 0; UNROLL_MODULO) or at run-time (preconditioned to be UNROLL_MODULO) are unrolled. */ -int flag_unroll_loops; +int flag_old_unroll_loops; /* Nonzero enables loop unrolling in unroll.c. All loops are unrolled. This is generally not a win. */ +int flag_old_unroll_all_loops; + +/* Enables unrolling of simple loops in loop-unroll.c. */ +int flag_unroll_loops; + +/* Enables unrolling of all loops in loop-unroll.c. */ int flag_unroll_all_loops; +/* Nonzero enables loop peeling. */ +int flag_peel_loops; + /* Nonzero enables loop unswitching. */ int flag_unswitch_loops; @@ -1016,6 +1025,12 @@ static const lang_independent_options f_options[] = N_("Perform loop unrolling when iteration count is known") }, {"unroll-all-loops", &flag_unroll_all_loops, 1, N_("Perform loop unrolling for all loops") }, + {"old-unroll-loops", &flag_old_unroll_loops, 1, + N_("Perform loop unrolling when iteration count is known") }, + {"old-unroll-all-loops", &flag_old_unroll_all_loops, 1, + N_("Perform loop unrolling for all loops") }, + {"peel-loops", &flag_peel_loops, 1, + N_("Perform loop peeling") }, {"unswitch-loops", &flag_unswitch_loops, 1, N_("Perform loop unswitching") }, {"prefetch-loop-arrays", &flag_prefetch_loop_arrays, 1, @@ -2950,7 +2965,10 @@ rest_of_compilation (decl) /* CFG is no longer maintained up-to-date. */ free_bb_for_insn (); - do_unroll = flag_unroll_loops ? LOOP_UNROLL : LOOP_AUTO_UNROLL; + if (flag_unroll_loops) + do_unroll = 0; /* Having two unrollers is useless. */ + else + do_unroll = flag_old_unroll_loops ? LOOP_UNROLL : LOOP_AUTO_UNROLL; do_prefetch = flag_prefetch_loop_arrays ? LOOP_PREFETCH : 0; if (flag_rerun_loop_opt) { @@ -3090,7 +3108,9 @@ rest_of_compilation (decl) /* Perform loop optimalizations. It might be better to do them a bit sooner, but we want the profile feedback to work more efficiently. */ if (optimize > 0 - && flag_unswitch_loops) + && (flag_unswitch_loops + || flag_peel_loops + || flag_unroll_loops)) { struct loops *loops; timevar_push (TV_LOOP); @@ -3106,6 +3126,12 @@ rest_of_compilation (decl) if (flag_unswitch_loops) unswitch_loops (loops); + if (flag_peel_loops || flag_unroll_loops) + unroll_and_peel_loops (loops, + (flag_peel_loops ? UAP_PEEL : 0) | + (flag_unroll_loops ? UAP_UNROLL : 0) | + (flag_unroll_all_loops ? UAP_UNROLL_ALL : 0)); + loop_optimizer_finalize (loops, rtl_dump_file); } @@ -5134,15 +5160,27 @@ process_options () be done. */ if (flag_unroll_all_loops) flag_unroll_loops = 1; - /* Loop unrolling requires that strength_reduction be on also. Silently + + if (flag_unroll_loops) + { + flag_old_unroll_loops = 0; + flag_old_unroll_all_loops = 0; + } + + if (flag_old_unroll_all_loops) + flag_old_unroll_loops = 1; + + /* Old loop unrolling requires that strength_reduction be on also. Silently turn on strength reduction here if it isn't already on. Also, the loop unrolling code assumes that cse will be run after loop, so that must be turned on also. */ - if (flag_unroll_loops) + if (flag_old_unroll_loops) { flag_strength_reduce = 1; flag_rerun_cse_after_loop = 1; } + if (flag_unroll_loops || flag_peel_loops) + flag_rerun_cse_after_loop = 1; if (flag_non_call_exceptions) flag_asynchronous_unwind_tables = 1; |