aboutsummaryrefslogtreecommitdiff
path: root/gcc/timevar.def
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2004-09-08 15:28:56 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2004-09-08 15:28:56 +0000
commit599eabdb42d10c1404f13d21137c85946d7fbd92 (patch)
tree23362687866b29177d4928c3a31cb6b30a4946d9 /gcc/timevar.def
parent6e45f57bf38ac4ca36f085a27729ebc25856333e (diff)
downloadgcc-599eabdb42d10c1404f13d21137c85946d7fbd92.zip
gcc-599eabdb42d10c1404f13d21137c85946d7fbd92.tar.gz
gcc-599eabdb42d10c1404f13d21137c85946d7fbd92.tar.bz2
Makefile.in (tree-loop-linear.o): Added.
2004-09-08 Daniel Berlin <dberlin@dberlin.org> * Makefile.in (tree-loop-linear.o): Added. (OBJS-common): Add tree-loop-linear.o * common.opt: New flag, ftree-loop-linear. * timevar.def: New timevar, TV_TREE_LOOP_LINEAR. * tree-flow.h: Add prototype for linear_transform_loops. * tree-optimize.c: Add linear transform after vectorization. * tree-pass.h: Add struct pass_linear_transform. * tree-ssa-loop.c: Add pass_linear_transform. * tree-loop-linear.c: New file. * lambda-code.c: gcc_assertify. (gcc_loop_to_lambda_loop): Handle all exit tests. Handle case where we have (invariant >= induction var). (find_induction_var_from_exit_cond): Ditto. From-SVN: r87190
Diffstat (limited to 'gcc/timevar.def')
-rw-r--r--gcc/timevar.def1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/timevar.def b/gcc/timevar.def
index 4dbaa6a..87108b8 100644
--- a/gcc/timevar.def
+++ b/gcc/timevar.def
@@ -86,6 +86,7 @@ DEFTIMEVAR (TV_LIM , "loop invariant motion")
DEFTIMEVAR (TV_TREE_LOOP_IVCANON , "tree canonical iv creation")
DEFTIMEVAR (TV_COMPLETE_UNROLL , "complete unrolling")
DEFTIMEVAR (TV_TREE_VECTORIZATION , "tree loop vectorization")
+DEFTIMEVAR (TV_TREE_LINEAR_TRANSFORM , "tree loop linear transforms")
DEFTIMEVAR (TV_TREE_LOOP_IVOPTS , "tree iv optimization")
DEFTIMEVAR (TV_TREE_CH , "tree copy headers")
DEFTIMEVAR (TV_TREE_SSA_TO_NORMAL , "tree SSA to normal")