diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-12 14:18:17 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-12 14:18:17 +0000 |
commit | 525c22c498481eed78b279ca708cf4d60509c90c (patch) | |
tree | 6b171a09f1f0e1fe21c1ad4c5fc567c8569f70fe /gcc/timevar.def | |
parent | b95fdaae1b09febf9c76d7e68e34ee682bc90da9 (diff) | |
download | gcc-525c22c498481eed78b279ca708cf4d60509c90c.tar.gz |
Measure time spent in DD analysis and in code gen.
2009-08-05 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (gloog): Add time to TV_GRAPHITE_CODE_GEN.
* graphite-dependences.c (graphite_legal_transform): Add time to
TV_GRAPHITE_DATA_DEPS.
(dependency_between_pbbs_p): Same.
* timevar.def (TV_GRAPHITE_DATA_DEPS, TV_GRAPHITE_CODE_GEN): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150683 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/timevar.def')
-rw-r--r-- | gcc/timevar.def | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/timevar.def b/gcc/timevar.def index 938447f03b1..0e704cb27b8 100644 --- a/gcc/timevar.def +++ b/gcc/timevar.def @@ -122,7 +122,9 @@ DEFTIMEVAR (TV_COMPLETE_UNROLL , "complete unrolling") DEFTIMEVAR (TV_TREE_PARALLELIZE_LOOPS, "tree parallelize loops") DEFTIMEVAR (TV_TREE_VECTORIZATION , "tree vectorization") DEFTIMEVAR (TV_TREE_SLP_VECTORIZATION, "tree slp vectorization") -DEFTIMEVAR (TV_GRAPHITE_TRANSFORMS , "GRAPHITE loop transforms") +DEFTIMEVAR (TV_GRAPHITE_TRANSFORMS , "Graphite loop transforms") +DEFTIMEVAR (TV_GRAPHITE_DATA_DEPS , "Graphite data dep analysis") +DEFTIMEVAR (TV_GRAPHITE_CODE_GEN , "Graphite code generation") DEFTIMEVAR (TV_TREE_LINEAR_TRANSFORM , "tree loop linear") DEFTIMEVAR (TV_TREE_LOOP_DISTRIBUTION, "tree loop distribution") DEFTIMEVAR (TV_CHECK_DATA_DEPS , "tree check data dependences") |