author | iveresov |
Thu, 22 Jan 2015 11:25:23 -0800 | |
changeset 28723 | 0a36120cb225 |
parent 28648 | 102bdbb42723 |
child 34503 | 57d1a0e76091 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
22234
da823d78ad65
8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents:
17383
diff
changeset
|
2 |
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3676
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3676
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3676
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "code/nmethod.hpp" |
|
27 |
#include "compiler/compileBroker.hpp" |
|
28 |
#include "opto/compile.hpp" |
|
22844
90f76a40ed8a
8003854: PPC64 (part 115): Introduce PostallocExpand that expands nodes after register allocation
goetz
parents:
17383
diff
changeset
|
29 |
#include "opto/matcher.hpp" |
7397 | 30 |
#include "opto/node.hpp" |
31 |
#include "opto/phase.hpp" |
|
1 | 32 |
|
33 |
int Phase::_total_bytes_compiled = 0; |
|
34 |
||
35 |
elapsedTimer Phase::_t_totalCompilation; |
|
36 |
elapsedTimer Phase::_t_methodCompilation; |
|
37 |
elapsedTimer Phase::_t_stubCompilation; |
|
38 |
||
26913 | 39 |
// The counters to use for LogCompilation |
40 |
elapsedTimer Phase::timers[max_phase_timers]; |
|
1 | 41 |
|
42 |
//------------------------------Phase------------------------------------------ |
|
43 |
Phase::Phase( PhaseNumber pnum ) : _pnum(pnum), C( pnum == Compiler ? NULL : Compile::current()) { |
|
2131 | 44 |
// Poll for requests from shutdown mechanism to quiesce compiler (4448539, 4448544). |
1 | 45 |
// This is an effective place to poll, since the compiler is full of phases. |
46 |
// In particular, every inlining site uses a recursively created Parse phase. |
|
47 |
CompileBroker::maybe_block(); |
|
48 |
} |
|
49 |
||
26913 | 50 |
void Phase::print_timers() { |
51 |
tty->print_cr (" C2 Compile Time: %7.3f s", Phase::_t_totalCompilation.seconds()); |
|
52 |
tty->print_cr (" Parse: %7.3f s", timers[_t_parser].seconds()); |
|
1 | 53 |
|
26913 | 54 |
{ |
55 |
tty->print_cr (" Optimize: %7.3f s", timers[_t_optimizer].seconds()); |
|
8319 | 56 |
if (DoEscapeAnalysis) { |
57 |
// EA is part of Optimizer. |
|
26913 | 58 |
tty->print_cr (" Escape Analysis: %7.3f s", timers[_t_escapeAnalysis].seconds()); |
59 |
tty->print_cr (" Conn Graph: %7.3f s", timers[_t_connectionGraph].seconds()); |
|
60 |
tty->print_cr (" Macro Eliminate: %7.3f s", timers[_t_macroEliminate].seconds()); |
|
8319 | 61 |
} |
26913 | 62 |
tty->print_cr (" GVN 1: %7.3f s", timers[_t_iterGVN].seconds()); |
63 |
||
64 |
{ |
|
65 |
tty->print_cr (" Incremental Inline: %7.3f s", timers[_t_incrInline].seconds()); |
|
66 |
tty->print_cr (" IdealLoop: %7.3f s", timers[_t_incrInline_ideal].seconds()); |
|
67 |
tty->print_cr (" IGVN: %7.3f s", timers[_t_incrInline_igvn].seconds()); |
|
68 |
tty->print_cr (" Inline: %7.3f s", timers[_t_incrInline_inline].seconds()); |
|
69 |
tty->print_cr (" Prune Useless: %7.3f s", timers[_t_incrInline_pru].seconds()); |
|
70 |
||
71 |
double other = timers[_t_incrInline].seconds() - |
|
72 |
(timers[_t_incrInline_ideal].seconds() + |
|
73 |
timers[_t_incrInline_igvn].seconds() + |
|
74 |
timers[_t_incrInline_inline].seconds() + |
|
75 |
timers[_t_incrInline_pru].seconds()); |
|
76 |
if (other > 0) { |
|
77 |
tty->print_cr(" Other: %7.3f s", other); |
|
78 |
} |
|
79 |
} |
|
80 |
tty->print_cr (" IdealLoop: %7.3f s", timers[_t_idealLoop].seconds()); |
|
81 |
tty->print_cr (" IdealLoop Verify: %7.3f s", timers[_t_idealLoopVerify].seconds()); |
|
82 |
tty->print_cr (" Cond Const Prop: %7.3f s", timers[_t_ccp].seconds()); |
|
83 |
tty->print_cr (" GVN 2: %7.3f s", timers[_t_iterGVN2].seconds()); |
|
84 |
tty->print_cr (" Macro Expand: %7.3f s", timers[_t_macroExpand].seconds()); |
|
85 |
tty->print_cr (" Graph Reshape: %7.3f s", timers[_t_graphReshaping].seconds()); |
|
86 |
||
87 |
double other = timers[_t_optimizer].seconds() - |
|
88 |
(timers[_t_escapeAnalysis].seconds() + |
|
89 |
timers[_t_iterGVN].seconds() + |
|
90 |
timers[_t_incrInline].seconds() + |
|
91 |
timers[_t_idealLoop].seconds() + |
|
92 |
timers[_t_idealLoopVerify].seconds() + |
|
93 |
timers[_t_ccp].seconds() + |
|
94 |
timers[_t_iterGVN2].seconds() + |
|
95 |
timers[_t_macroExpand].seconds() + |
|
96 |
timers[_t_graphReshaping].seconds()); |
|
97 |
if (other > 0) { |
|
98 |
tty->print_cr(" Other: %7.3f s", other); |
|
99 |
} |
|
1 | 100 |
} |
26913 | 101 |
|
102 |
tty->print_cr (" Matcher: %7.3f s", timers[_t_matcher].seconds()); |
|
103 |
tty->print_cr (" Scheduler: %7.3f s", timers[_t_scheduler].seconds()); |
|
104 |
||
105 |
{ |
|
106 |
tty->print_cr (" Regalloc: %7.3f s", timers[_t_registerAllocation].seconds()); |
|
107 |
tty->print_cr (" Ctor Chaitin: %7.3f s", timers[_t_ctorChaitin].seconds()); |
|
108 |
tty->print_cr (" Build IFG (virt): %7.3f s", timers[_t_buildIFGvirtual].seconds()); |
|
109 |
tty->print_cr (" Build IFG (phys): %7.3f s", timers[_t_buildIFGphysical].seconds()); |
|
110 |
tty->print_cr (" Compute Liveness: %7.3f s", timers[_t_computeLive].seconds()); |
|
111 |
tty->print_cr (" Regalloc Split: %7.3f s", timers[_t_regAllocSplit].seconds()); |
|
112 |
tty->print_cr (" Postalloc Copy Rem: %7.3f s", timers[_t_postAllocCopyRemoval].seconds()); |
|
28648
102bdbb42723
8068881: SIGBUS in C2 compiled method weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory$SimulatedWsdlDefinitions.<init>
iveresov
parents:
26913
diff
changeset
|
113 |
tty->print_cr (" Merge multidefs: %7.3f s", timers[_t_mergeMultidefs].seconds()); |
26913 | 114 |
tty->print_cr (" Fixup Spills: %7.3f s", timers[_t_fixupSpills].seconds()); |
115 |
tty->print_cr (" Compact: %7.3f s", timers[_t_chaitinCompact].seconds()); |
|
116 |
tty->print_cr (" Coalesce 1: %7.3f s", timers[_t_chaitinCoalesce1].seconds()); |
|
117 |
tty->print_cr (" Coalesce 2: %7.3f s", timers[_t_chaitinCoalesce2].seconds()); |
|
118 |
tty->print_cr (" Coalesce 3: %7.3f s", timers[_t_chaitinCoalesce3].seconds()); |
|
119 |
tty->print_cr (" Cache LRG: %7.3f s", timers[_t_chaitinCacheLRG].seconds()); |
|
120 |
tty->print_cr (" Simplify: %7.3f s", timers[_t_chaitinSimplify].seconds()); |
|
121 |
tty->print_cr (" Select: %7.3f s", timers[_t_chaitinSelect].seconds()); |
|
122 |
||
123 |
double other = timers[_t_registerAllocation].seconds() - |
|
124 |
(timers[_t_ctorChaitin].seconds() + |
|
125 |
timers[_t_buildIFGvirtual].seconds() + |
|
126 |
timers[_t_buildIFGphysical].seconds() + |
|
127 |
timers[_t_computeLive].seconds() + |
|
128 |
timers[_t_regAllocSplit].seconds() + |
|
129 |
timers[_t_postAllocCopyRemoval].seconds() + |
|
28648
102bdbb42723
8068881: SIGBUS in C2 compiled method weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory$SimulatedWsdlDefinitions.<init>
iveresov
parents:
26913
diff
changeset
|
130 |
timers[_t_mergeMultidefs].seconds() + |
26913 | 131 |
timers[_t_fixupSpills].seconds() + |
132 |
timers[_t_chaitinCompact].seconds() + |
|
133 |
timers[_t_chaitinCoalesce1].seconds() + |
|
134 |
timers[_t_chaitinCoalesce2].seconds() + |
|
135 |
timers[_t_chaitinCoalesce3].seconds() + |
|
136 |
timers[_t_chaitinCacheLRG].seconds() + |
|
137 |
timers[_t_chaitinSimplify].seconds() + |
|
138 |
timers[_t_chaitinSelect].seconds()); |
|
1 | 139 |
|
26913 | 140 |
if (other > 0) { |
141 |
tty->print_cr(" Other: %7.3f s", other); |
|
142 |
} |
|
143 |
} |
|
144 |
tty->print_cr (" Block Ordering: %7.3f s", timers[_t_blockOrdering].seconds()); |
|
145 |
tty->print_cr (" Peephole: %7.3f s", timers[_t_peephole].seconds()); |
|
146 |
if (Matcher::require_postalloc_expand) { |
|
147 |
tty->print_cr (" Postalloc Expand: %7.3f s", timers[_t_postalloc_expand].seconds()); |
|
148 |
} |
|
149 |
tty->print_cr (" Code Emission: %7.3f s", timers[_t_output].seconds()); |
|
150 |
tty->print_cr (" Insn Scheduling: %7.3f s", timers[_t_instrSched].seconds()); |
|
151 |
tty->print_cr (" Build OOP maps: %7.3f s", timers[_t_buildOopMaps].seconds()); |
|
152 |
tty->print_cr (" Code Installation: %7.3f s", timers[_t_registerMethod].seconds()); |
|
1 | 153 |
|
26913 | 154 |
if( timers[_t_temporaryTimer1].seconds() > 0 ) { |
1 | 155 |
tty->cr(); |
26913 | 156 |
tty->print_cr (" Temp Timer 1: %7.3f s", timers[_t_temporaryTimer1].seconds()); |
1 | 157 |
} |
26913 | 158 |
if( timers[_t_temporaryTimer2].seconds() > 0 ) { |
1 | 159 |
tty->cr(); |
26913 | 160 |
tty->print_cr (" Temp Timer 2: %7.3f s", timers[_t_temporaryTimer2].seconds()); |
1 | 161 |
} |
26913 | 162 |
|
163 |
double other = Phase::_t_totalCompilation.seconds() - |
|
164 |
(timers[_t_parser].seconds() + |
|
165 |
timers[_t_optimizer].seconds() + |
|
166 |
timers[_t_matcher].seconds() + |
|
167 |
timers[_t_scheduler].seconds() + |
|
168 |
timers[_t_registerAllocation].seconds() + |
|
169 |
timers[_t_blockOrdering].seconds() + |
|
170 |
timers[_t_peephole].seconds() + |
|
171 |
timers[_t_postalloc_expand].seconds() + |
|
172 |
timers[_t_output].seconds() + |
|
173 |
timers[_t_registerMethod].seconds() + |
|
174 |
timers[_t_temporaryTimer1].seconds() + |
|
175 |
timers[_t_temporaryTimer2].seconds()); |
|
176 |
if (other > 0) { |
|
177 |
tty->print_cr(" Other: %7.3f s", other); |
|
178 |
} |
|
179 |
||
1 | 180 |
} |