1 /* This file contains the definitions for timing variables used to
2 measure run
-time performance of the compiler.
3 Copyright (C
) 2000 Free Software Foundation
, Inc.
4 Contributed by Alex Samuel
<samuel@codesourcery.com
>
6 This file is part of GNU CC.
8 GNU CC is free software
; you can redistribute it and
/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation
; either version
2, or (at your option
)
13 GNU CC is distributed in the hope that it will be useful
,
14 but WITHOUT ANY WARRANTY
; without even the implied warranty of
15 MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC
; see the file COPYING. If not
, write to
20 the Free Software Foundation
, 59 Temple Place
- Suite
330,
21 Boston
, MA
02111-1307, USA.
*/
23 /* This file contains timing variable definitions
, used by timevar.h
30 where ID is the enumeral value used to identify the timing
31 variable
, and NAME is a character string describing its purpose.
*/
33 /* The total execution time.
*/
34 DEFTIMEVAR (TV_TOTAL
, "total time")
36 /* Time spent garbage
-collecting.
*/
37 DEFTIMEVAR (TV_GC
, "garbage collection")
39 /* Time spent generating dump files.
*/
40 DEFTIMEVAR (TV_DUMP
, "dump files")
42 /* Timing in various stages of the compiler.
*/
43 DEFTIMEVAR (TV_PARSE
, "parser")
44 DEFTIMEVAR (TV_EXPAND
, "expand")
45 DEFTIMEVAR (TV_VARCONST
, "varconst")
46 DEFTIMEVAR (TV_INTEGRATION
, "integration")
47 DEFTIMEVAR (TV_JUMP
, "jump")
48 DEFTIMEVAR (TV_CSE
, "CSE")
49 DEFTIMEVAR (TV_GCSE
, "global CSE")
50 DEFTIMEVAR (TV_LOOP
, "loop analysis")
51 DEFTIMEVAR (TV_CSE2
, "CSE 2")
52 DEFTIMEVAR (TV_BRANCH_PROB
, "branch prediction")
53 DEFTIMEVAR (TV_FLOW
, "flow analysis")
54 DEFTIMEVAR (TV_COMBINE
, "combiner")
55 DEFTIMEVAR (TV_IFCVT
, "if-conversion")
56 DEFTIMEVAR (TV_REGMOVE
, "regmove")
57 DEFTIMEVAR (TV_SCHED
, "scheduling")
58 DEFTIMEVAR (TV_LOCAL_ALLOC
, "local alloc")
59 DEFTIMEVAR (TV_GLOBAL_ALLOC
, "global alloc")
60 DEFTIMEVAR (TV_RELOAD_CSE_REGS
, "reload CSE regs")
61 DEFTIMEVAR (TV_FLOW2
, "flow 2")
62 DEFTIMEVAR (TV_IFCVT2
, "if-conversion 2")
63 DEFTIMEVAR (TV_PEEPHOLE2
, "peephole 2")
64 DEFTIMEVAR (TV_RENAME_REGISTERS
, "rename registers")
65 DEFTIMEVAR (TV_SCHED2
, "scheduling 2")
66 DEFTIMEVAR (TV_DBR_SCHED
, "delay branch sched")
67 DEFTIMEVAR (TV_REORDER_BLOCKS
, "reorder blocks")
68 DEFTIMEVAR (TV_SHORTEN_BRANCH
, "shorten branches")
69 DEFTIMEVAR (TV_REG_STACK
, "reg stack")
70 DEFTIMEVAR (TV_TO_SSA
, "convert to SSA")
71 DEFTIMEVAR (TV_DEAD_CODE_ELIM
, "eliminate dead code")
72 DEFTIMEVAR (TV_FROM_SSA
, "convert from SSA")
73 DEFTIMEVAR (TV_FINAL
, "final")
74 DEFTIMEVAR (TV_SYMOUT
, "symout")
76 /* Everything else in rest_of_compilation not included above.
*/
77 DEFTIMEVAR (TV_REST_OF_COMPILATION
, "rest of compilation")