diff options
Diffstat (limited to 'gcc/timevar.def')
-rw-r--r-- | gcc/timevar.def | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/timevar.def b/gcc/timevar.def index 7f62497d7f9..353a942bf71 100644 --- a/gcc/timevar.def +++ b/gcc/timevar.def @@ -43,6 +43,9 @@ DEFTIMEVAR (TV_DUMP , "dump files") DEFTIMEVAR (TV_CFG , "cfg construction") /* Time spent by cleaning up CFG. */ DEFTIMEVAR (TV_CLEANUP_CFG , "cfg cleanup") +/* Time spent by life analysis. */ +DEFTIMEVAR (TV_LIFE , "life analysis") +DEFTIMEVAR (TV_LIFE_UPDATE , "life info update") /* Timing in various stages of the compiler. */ DEFTIMEVAR (TV_CPP , "preprocessing") DEFTIMEVAR (TV_LEX , "lexical analysis") @@ -60,6 +63,7 @@ DEFTIMEVAR (TV_FLOW , "flow analysis") DEFTIMEVAR (TV_COMBINE , "combiner") DEFTIMEVAR (TV_IFCVT , "if-conversion") DEFTIMEVAR (TV_REGMOVE , "regmove") +DEFTIMEVAR (TV_MODE_SWITCH , "mode switching") DEFTIMEVAR (TV_SCHED , "scheduling") DEFTIMEVAR (TV_LOCAL_ALLOC , "local alloc") DEFTIMEVAR (TV_GLOBAL_ALLOC , "global alloc") |