diff options
author | Sebastian Pop <s.pop@samsung.com> | 2015-08-27 19:06:56 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2015-08-27 19:06:56 +0000 |
commit | a5e5ea0c074caec82857a5f62173e161ee6b1615 (patch) | |
tree | 2f96cff577f230883f6e89429810de3ec56098a2 /gcc/graphite-poly.c | |
parent | e994d230f1a57bcad4aba0e987c60c4db496c7dd (diff) | |
download | gcc-a5e5ea0c074caec82857a5f62173e161ee6b1615.zip gcc-a5e5ea0c074caec82857a5f62173e161ee6b1615.tar.gz gcc-a5e5ea0c074caec82857a5f62173e161ee6b1615.tar.bz2 |
remove -floop-unroll-and-jam
* common.opt (floop-unroll-and-jam): Make alias of floop-nest-optimize.
* doc/invoke.texi (-floop-unroll-and-jam): Document as alias of
-floop-nest-optimize.
* graphite-isl-ast-to-gimple.c (generate_luj_sepclass_opt): Remove.
(generate_luj_sepclass): Remove.
(generate_luj_options): Remove.
(set_options): Remove opt_luj.
(scop_to_isl_ast): Remove opt_luj.
* graphite-optimize-isl.c (getScheduleForBand): Remove check for
flag_loop_unroll_jam.
(getPrevectorMap_full): Remove.
(getScheduleForBandList): Remove map_sepcl.
(getScheduleMap): Same.
(apply_schedule_map_to_scop): Remove sepcl.
(optimize_isl): Same.
* graphite-poly.c (apply_poly_transforms): Remove check for
flag_loop_unroll_jam.
(new_poly_bb): Remove map_sepclass.
* graphite-poly.h (struct poly_bb): Same.
* graphite.c (gate_graphite_transforms): Remove flag_loop_unroll_jam.
* params.def (PARAM_LOOP_UNROLL_JAM_SIZE)
(PARAM_LOOP_UNROLL_JAM_DEPTH): Remove.
* toplev.c (process_options): Remove flag_loop_unroll_jam.
From-SVN: r227275
Diffstat (limited to 'gcc/graphite-poly.c')
-rw-r--r-- | gcc/graphite-poly.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/graphite-poly.c b/gcc/graphite-poly.c index 78b5d12..7ea9389 100644 --- a/gcc/graphite-poly.c +++ b/gcc/graphite-poly.c @@ -258,7 +258,7 @@ apply_poly_transforms (scop_p scop) /* This pass needs to be run at the final stage, as it does not update the lst. */ - if (flag_loop_optimize_isl || flag_loop_unroll_jam) + if (flag_loop_optimize_isl) transform_done |= optimize_isl (scop); return transform_done; @@ -309,7 +309,6 @@ new_poly_bb (scop_p scop, void *black_box) pbb->schedule = NULL; pbb->transformed = NULL; pbb->saved = NULL; - pbb->map_sepclass = NULL; PBB_SCOP (pbb) = scop; pbb_set_black_box (pbb, black_box); PBB_TRANSFORMED (pbb) = NULL; |