0
|
1 /* This file contains the definitions for timing variables used to
|
|
2 measure run-time performance of the compiler.
|
|
3 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
|
4 Free Software Foundation, Inc.
|
|
5 Contributed by Alex Samuel <samuel@codesourcery.com>
|
|
6
|
|
7 This file is part of GCC.
|
|
8
|
|
9 GCC is free software; you can redistribute it and/or modify
|
|
10 it under the terms of the GNU General Public License as published by
|
|
11 the Free Software Foundation; either version 3, or (at your option)
|
|
12 any later version.
|
|
13
|
|
14 GCC is distributed in the hope that it will be useful,
|
|
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
17 GNU General Public License for more details.
|
|
18
|
|
19 You should have received a copy of the GNU General Public License
|
|
20 along with GCC; see the file COPYING3. If not see
|
|
21 <http://www.gnu.org/licenses/>. */
|
|
22
|
|
23 /* This file contains timing variable definitions, used by timevar.h
|
|
24 and timevar.c.
|
|
25
|
|
26 Syntax:
|
|
27
|
|
28 DEFTIMEVAR (id, name)
|
|
29
|
|
30 where ID is the enumeral value used to identify the timing
|
|
31 variable, and NAME is a character string describing its purpose. */
|
|
32
|
|
33 /* The total execution time. */
|
|
34 DEFTIMEVAR (TV_TOTAL , "total time")
|
|
35
|
|
36 /* Time spent garbage-collecting. */
|
|
37 DEFTIMEVAR (TV_GC , "garbage collection")
|
|
38
|
|
39 /* Time spent generating dump files. */
|
|
40 DEFTIMEVAR (TV_DUMP , "dump files")
|
|
41
|
|
42 DEFTIMEVAR (TV_CGRAPH , "callgraph construction")
|
|
43 DEFTIMEVAR (TV_CGRAPHOPT , "callgraph optimization")
|
|
44 DEFTIMEVAR (TV_IPA_CONSTANT_PROP , "ipa cp")
|
|
45 DEFTIMEVAR (TV_IPA_REFERENCE , "ipa reference")
|
|
46 DEFTIMEVAR (TV_IPA_PURE_CONST , "ipa pure const")
|
|
47 DEFTIMEVAR (TV_IPA_TYPE_ESCAPE , "ipa type escape")
|
|
48 DEFTIMEVAR (TV_IPA_PTA , "ipa points-to")
|
|
49 /* Time spent by constructing CFG. */
|
|
50 DEFTIMEVAR (TV_CFG , "cfg construction")
|
|
51 /* Time spent by cleaning up CFG. */
|
|
52 DEFTIMEVAR (TV_CLEANUP_CFG , "cfg cleanup")
|
|
53 DEFTIMEVAR (TV_CFG_VERIFY , "CFG verifier")
|
|
54 DEFTIMEVAR (TV_DELETE_TRIVIALLY_DEAD , "trivially dead code")
|
|
55 /* Time spent by life analysis. */
|
|
56 DEFTIMEVAR (TV_LIFE , "life analysis")
|
|
57 DEFTIMEVAR (TV_LIFE_UPDATE , "life info update")
|
|
58
|
|
59 /* Time spent in dataflow problems. */
|
|
60 DEFTIMEVAR (TV_DF_SCAN , "df scan insns")
|
|
61 DEFTIMEVAR (TV_DF_RU , "df reaching uses")
|
|
62 DEFTIMEVAR (TV_DF_RD , "df reaching defs")
|
|
63 DEFTIMEVAR (TV_DF_LR , "df live regs")
|
|
64 DEFTIMEVAR (TV_DF_LIVE , "df live&initialized regs")
|
|
65 DEFTIMEVAR (TV_DF_UREC , "df uninitialized regs 2")
|
|
66 DEFTIMEVAR (TV_DF_CHAIN , "df use-def / def-use chains")
|
|
67 DEFTIMEVAR (TV_DF_BYTE_LR , "df live byte regs")
|
|
68 DEFTIMEVAR (TV_DF_NOTE , "df reg dead/unused notes")
|
|
69 DEFTIMEVAR (TV_REG_STATS , "register information")
|
|
70
|
|
71 DEFTIMEVAR (TV_ALIAS_ANALYSIS , "alias analysis")
|
|
72 DEFTIMEVAR (TV_REG_SCAN , "register scan")
|
|
73 DEFTIMEVAR (TV_REBUILD_JUMP , "rebuild jump labels")
|
|
74 /* Timing in various stages of the compiler. */
|
|
75 DEFTIMEVAR (TV_CPP , "preprocessing")
|
|
76 DEFTIMEVAR (TV_LEX , "lexical analysis")
|
|
77 DEFTIMEVAR (TV_PARSE , "parser")
|
|
78 DEFTIMEVAR (TV_NAME_LOOKUP , "name lookup")
|
|
79 DEFTIMEVAR (TV_INLINE_HEURISTICS , "inline heuristics")
|
|
80 DEFTIMEVAR (TV_INTEGRATION , "integration")
|
|
81 DEFTIMEVAR (TV_TREE_GIMPLIFY , "tree gimplify")
|
|
82 DEFTIMEVAR (TV_TREE_EH , "tree eh")
|
|
83 DEFTIMEVAR (TV_TREE_CFG , "tree CFG construction")
|
|
84 DEFTIMEVAR (TV_TREE_CLEANUP_CFG , "tree CFG cleanup")
|
|
85 DEFTIMEVAR (TV_TREE_VRP , "tree VRP")
|
|
86 DEFTIMEVAR (TV_TREE_COPY_PROP , "tree copy propagation")
|
|
87 DEFTIMEVAR (TV_TREE_STORE_COPY_PROP , "tree store copy prop")
|
|
88 DEFTIMEVAR (TV_FIND_REFERENCED_VARS , "tree find ref. vars")
|
|
89 DEFTIMEVAR (TV_TREE_PTA , "tree PTA")
|
|
90 DEFTIMEVAR (TV_TREE_MAY_ALIAS , "tree alias analysis")
|
|
91 DEFTIMEVAR (TV_CALL_CLOBBER , "tree call clobbering")
|
|
92 DEFTIMEVAR (TV_FLOW_SENSITIVE , "tree flow sensitive alias")
|
|
93 DEFTIMEVAR (TV_FLOW_INSENSITIVE , "tree flow insensitive alias")
|
|
94 DEFTIMEVAR (TV_MEMORY_PARTITIONING , "tree memory partitioning")
|
|
95 DEFTIMEVAR (TV_TREE_INSERT_PHI_NODES , "tree PHI insertion")
|
|
96 DEFTIMEVAR (TV_TREE_SSA_REWRITE_BLOCKS, "tree SSA rewrite")
|
|
97 DEFTIMEVAR (TV_TREE_SSA_OTHER , "tree SSA other")
|
|
98 DEFTIMEVAR (TV_TREE_SSA_INCREMENTAL , "tree SSA incremental")
|
|
99 DEFTIMEVAR (TV_TREE_OPS , "tree operand scan")
|
|
100 DEFTIMEVAR (TV_TREE_SSA_DOMINATOR_OPTS , "dominator optimization")
|
|
101 DEFTIMEVAR (TV_TREE_SRA , "tree SRA")
|
|
102 DEFTIMEVAR (TV_TREE_STORE_CCP , "tree STORE-CCP")
|
|
103 DEFTIMEVAR (TV_TREE_CCP , "tree CCP")
|
|
104 DEFTIMEVAR (TV_TREE_PHI_CPROP , "tree PHI const/copy prop")
|
|
105 DEFTIMEVAR (TV_TREE_SPLIT_EDGES , "tree split crit edges")
|
|
106 DEFTIMEVAR (TV_TREE_REASSOC , "tree reassociation")
|
|
107 DEFTIMEVAR (TV_TREE_PRE , "tree PRE")
|
|
108 DEFTIMEVAR (TV_TREE_REDPHI , "tree redundant PHIs")
|
|
109 DEFTIMEVAR (TV_TREE_FRE , "tree FRE")
|
|
110 DEFTIMEVAR (TV_TREE_SINK , "tree code sinking")
|
|
111 DEFTIMEVAR (TV_TREE_PHIOPT , "tree linearize phis")
|
|
112 DEFTIMEVAR (TV_TREE_FORWPROP , "tree forward propagate")
|
|
113 DEFTIMEVAR (TV_TREE_PHIPROP , "tree phiprop")
|
|
114 DEFTIMEVAR (TV_TREE_DCE , "tree conservative DCE")
|
|
115 DEFTIMEVAR (TV_TREE_CD_DCE , "tree aggressive DCE")
|
|
116 DEFTIMEVAR (TV_TREE_CALL_CDCE , "tree buildin call DCE")
|
|
117 DEFTIMEVAR (TV_TREE_DSE , "tree DSE")
|
|
118 DEFTIMEVAR (TV_TREE_MERGE_PHI , "PHI merge")
|
|
119 DEFTIMEVAR (TV_TREE_LOOP , "tree loop optimization")
|
|
120 DEFTIMEVAR (TV_TREE_LOOP_BOUNDS , "tree loop bounds")
|
|
121 DEFTIMEVAR (TV_LIM , "loop invariant motion")
|
|
122 DEFTIMEVAR (TV_TREE_LOOP_IVCANON , "tree canonical iv")
|
|
123 DEFTIMEVAR (TV_SCEV_CONST , "scev constant prop")
|
|
124 DEFTIMEVAR (TV_TREE_LOOP_UNSWITCH , "tree loop unswitching")
|
|
125 DEFTIMEVAR (TV_COMPLETE_UNROLL , "complete unrolling")
|
|
126 DEFTIMEVAR (TV_TREE_PARALLELIZE_LOOPS, "tree parallelize loops")
|
|
127 DEFTIMEVAR (TV_TREE_VECTORIZATION , "tree vectorization")
|
|
128 DEFTIMEVAR (TV_GRAPHITE_TRANSFORMS , "GRAPHITE loop transforms")
|
|
129 DEFTIMEVAR (TV_TREE_LINEAR_TRANSFORM , "tree loop linear")
|
|
130 DEFTIMEVAR (TV_TREE_LOOP_DISTRIBUTION, "tree loop distribution")
|
|
131 DEFTIMEVAR (TV_CHECK_DATA_DEPS , "tree check data dependences")
|
|
132 DEFTIMEVAR (TV_TREE_PREFETCH , "tree prefetching")
|
|
133 DEFTIMEVAR (TV_TREE_LOOP_IVOPTS , "tree iv optimization")
|
|
134 DEFTIMEVAR (TV_PREDCOM , "predictive commoning")
|
|
135 DEFTIMEVAR (TV_TREE_LOOP_INIT , "tree loop init")
|
|
136 DEFTIMEVAR (TV_TREE_LOOP_FINI , "tree loop fini")
|
|
137 DEFTIMEVAR (TV_TREE_CH , "tree copy headers")
|
|
138 DEFTIMEVAR (TV_TREE_SSA_UNCPROP , "tree SSA uncprop")
|
|
139 DEFTIMEVAR (TV_TREE_SSA_TO_NORMAL , "tree SSA to normal")
|
|
140 DEFTIMEVAR (TV_TREE_NRV , "tree NRV optimization")
|
|
141 DEFTIMEVAR (TV_TREE_COPY_RENAME , "tree rename SSA copies")
|
|
142 DEFTIMEVAR (TV_TREE_SSA_VERIFY , "tree SSA verifier")
|
|
143 DEFTIMEVAR (TV_TREE_STMT_VERIFY , "tree STMT verifier")
|
|
144 DEFTIMEVAR (TV_TREE_SWITCH_CONVERSION, "tree switch initialization conversion")
|
|
145 DEFTIMEVAR (TV_CGRAPH_VERIFY , "callgraph verifier")
|
|
146 DEFTIMEVAR (TV_DOM_FRONTIERS , "dominance frontiers")
|
|
147 DEFTIMEVAR (TV_DOMINANCE , "dominance computation")
|
|
148 DEFTIMEVAR (TV_CONTROL_DEPENDENCES , "control dependences")
|
|
149 DEFTIMEVAR (TV_OVERLOAD , "overload resolution")
|
|
150 DEFTIMEVAR (TV_TEMPLATE_INSTANTIATION, "template instantiation")
|
|
151 DEFTIMEVAR (TV_EXPAND , "expand")
|
|
152 DEFTIMEVAR (TV_VARCONST , "varconst")
|
|
153 DEFTIMEVAR (TV_LOWER_SUBREG , "lower subreg")
|
|
154 DEFTIMEVAR (TV_JUMP , "jump")
|
|
155 DEFTIMEVAR (TV_FWPROP , "forward prop")
|
|
156 DEFTIMEVAR (TV_CSE , "CSE")
|
|
157 DEFTIMEVAR (TV_DCE , "dead code elimination")
|
|
158 DEFTIMEVAR (TV_DSE1 , "dead store elim1")
|
|
159 DEFTIMEVAR (TV_DSE2 , "dead store elim2")
|
|
160 DEFTIMEVAR (TV_LOOP , "loop analysis")
|
|
161 DEFTIMEVAR (TV_GCSE , "global CSE")
|
|
162 DEFTIMEVAR (TV_CPROP1 , "CPROP 1")
|
|
163 DEFTIMEVAR (TV_PRE , "PRE")
|
|
164 DEFTIMEVAR (TV_HOIST , "code hoisting")
|
|
165 DEFTIMEVAR (TV_CPROP2 , "CPROP 2")
|
|
166 DEFTIMEVAR (TV_LSM , "LSM")
|
|
167 DEFTIMEVAR (TV_BYPASS , "bypass jumps")
|
|
168 DEFTIMEVAR (TV_TRACER , "tracer")
|
|
169 DEFTIMEVAR (TV_WEB , "web")
|
|
170 DEFTIMEVAR (TV_AUTO_INC_DEC , "auto inc dec")
|
|
171 DEFTIMEVAR (TV_CSE2 , "CSE 2")
|
|
172 DEFTIMEVAR (TV_BRANCH_PROB , "branch prediction")
|
|
173 DEFTIMEVAR (TV_VPT , "value profile opts")
|
|
174 DEFTIMEVAR (TV_COMBINE , "combiner")
|
|
175 DEFTIMEVAR (TV_IFCVT , "if-conversion")
|
|
176 DEFTIMEVAR (TV_SEE , "see")
|
|
177 DEFTIMEVAR (TV_REGMOVE , "regmove")
|
|
178 DEFTIMEVAR (TV_MODE_SWITCH , "mode switching")
|
|
179 DEFTIMEVAR (TV_SMS , "sms modulo scheduling")
|
|
180 DEFTIMEVAR (TV_SCHED , "scheduling")
|
|
181 DEFTIMEVAR (TV_LOCAL_ALLOC , "local alloc")
|
|
182 DEFTIMEVAR (TV_GLOBAL_ALLOC , "global alloc")
|
|
183 DEFTIMEVAR (TV_IRA , "integrated RA")
|
|
184 DEFTIMEVAR (TV_RELOAD , "reload")
|
|
185 DEFTIMEVAR (TV_RELOAD_CSE_REGS , "reload CSE regs")
|
|
186 DEFTIMEVAR (TV_SEQABSTR , "sequence abstraction")
|
|
187 DEFTIMEVAR (TV_GCSE_AFTER_RELOAD , "load CSE after reload")
|
|
188 DEFTIMEVAR (TV_THREAD_PROLOGUE_AND_EPILOGUE, "thread pro- & epilogue")
|
|
189 DEFTIMEVAR (TV_IFCVT2 , "if-conversion 2")
|
|
190 DEFTIMEVAR (TV_PEEPHOLE2 , "peephole 2")
|
|
191 DEFTIMEVAR (TV_RENAME_REGISTERS , "rename registers")
|
|
192 DEFTIMEVAR (TV_SCHED2 , "scheduling 2")
|
|
193 DEFTIMEVAR (TV_MACH_DEP , "machine dep reorg")
|
|
194 DEFTIMEVAR (TV_DBR_SCHED , "delay branch sched")
|
|
195 DEFTIMEVAR (TV_REORDER_BLOCKS , "reorder blocks")
|
|
196 DEFTIMEVAR (TV_SHORTEN_BRANCH , "shorten branches")
|
|
197 DEFTIMEVAR (TV_REG_STACK , "reg stack")
|
|
198 DEFTIMEVAR (TV_FINAL , "final")
|
|
199 DEFTIMEVAR (TV_SYMOUT , "symout")
|
|
200 DEFTIMEVAR (TV_VAR_TRACKING , "variable tracking")
|
|
201 DEFTIMEVAR (TV_TREE_IFCOMBINE , "tree if-combine")
|
|
202
|
|
203 /* Everything else in rest_of_compilation not included above. */
|
|
204 DEFTIMEVAR (TV_REST_OF_COMPILATION , "rest of compilation")
|