annotate src/share/vm/opto/phase.hpp @ 9126:bc26f978b0ce

HotSpotResolvedObjectType: implement hasFinalizeSubclass() correctly don't use the (wrong) cached value, but ask the runtime on each request. Fixes regression on xml.* benchmarks @ specjvm2008. The problem was: After the constructor of Object was deoptimized due to an assumption violation, it was recompiled again after some time. However, on recompilation, the value of hasFinalizeSubclass for the class was not updated and it was compiled again with a, now wrong, assumption, which then triggers deoptimization again. This was repeated until it hit the recompilation limit (defined by PerMethodRecompilationCutoff), and therefore only executed by the interpreter from now on, causing the performance regression.
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 15 Apr 2013 19:54:58 +0200
parents ee138854b3a6
children 6f3fd5150b67
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
5948
ee138854b3a6 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 1972
diff changeset
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1080
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1080
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1080
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_OPTO_PHASE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_OPTO_PHASE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "libadt/port.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/timer.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class Compile;
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 //------------------------------Phase------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // Most optimizations are done in Phases. Creating a phase does any long
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // running analysis required, and caches the analysis in internal data
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // structures. Later the analysis is queried using transform() calls to
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // guide transforming the program. When the Phase is deleted, so is any
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // cached analysis info. This basic Phase class mostly contains timing and
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // memory management code.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 class Phase : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
41 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
42 enum PhaseNumber {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Compiler, // Top-level compiler phase
a61af66fc99e Initial load
duke
parents:
diff changeset
44 Parser, // Parse bytecodes
a61af66fc99e Initial load
duke
parents:
diff changeset
45 Remove_Useless, // Remove useless nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
46 Optimistic, // Optimistic analysis phase
a61af66fc99e Initial load
duke
parents:
diff changeset
47 GVN, // Pessimistic global value numbering phase
a61af66fc99e Initial load
duke
parents:
diff changeset
48 Ins_Select, // Instruction selection phase
a61af66fc99e Initial load
duke
parents:
diff changeset
49 CFG, // Build a CFG
418
72c5366e5d86 6743900: frequency based block layout
rasbold
parents: 0
diff changeset
50 BlockLayout, // Linear ordering of blocks
0
a61af66fc99e Initial load
duke
parents:
diff changeset
51 Register_Allocation, // Register allocation, duh
a61af66fc99e Initial load
duke
parents:
diff changeset
52 LIVE, // Dragon-book LIVE range problem
1080
7c57aead6d3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 921
diff changeset
53 StringOpts, // StringBuilder related optimizations
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54 Interference_Graph, // Building the IFG
a61af66fc99e Initial load
duke
parents:
diff changeset
55 Coalesce, // Coalescing copies
a61af66fc99e Initial load
duke
parents:
diff changeset
56 Ideal_Loop, // Find idealized trip-counted loops
a61af66fc99e Initial load
duke
parents:
diff changeset
57 Macro_Expand, // Expand macro nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
58 Peephole, // Apply peephole optimizations
a61af66fc99e Initial load
duke
parents:
diff changeset
59 last_phase
a61af66fc99e Initial load
duke
parents:
diff changeset
60 };
a61af66fc99e Initial load
duke
parents:
diff changeset
61 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
62 enum PhaseNumber _pnum; // Phase number (for stat gathering)
a61af66fc99e Initial load
duke
parents:
diff changeset
63
a61af66fc99e Initial load
duke
parents:
diff changeset
64 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
65 static int _total_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // accumulated timers
a61af66fc99e Initial load
duke
parents:
diff changeset
68 static elapsedTimer _t_totalCompilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 static elapsedTimer _t_methodCompilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static elapsedTimer _t_stubCompilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // The next timers used for LogCompilation
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static elapsedTimer _t_parser;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 static elapsedTimer _t_optimizer;
5948
ee138854b3a6 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 1972
diff changeset
76 public:
ee138854b3a6 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 1972
diff changeset
77 // ConnectionGraph can't be Phase since it is used after EA done.
ee138854b3a6 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 1972
diff changeset
78 static elapsedTimer _t_escapeAnalysis;
ee138854b3a6 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 1972
diff changeset
79 static elapsedTimer _t_connectionGraph;
ee138854b3a6 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 1972
diff changeset
80 protected:
0
a61af66fc99e Initial load
duke
parents:
diff changeset
81 static elapsedTimer _t_idealLoop;
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static elapsedTimer _t_ccp;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 static elapsedTimer _t_matcher;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 static elapsedTimer _t_registerAllocation;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 static elapsedTimer _t_output;
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
88 static elapsedTimer _t_graphReshaping;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 static elapsedTimer _t_scheduler;
418
72c5366e5d86 6743900: frequency based block layout
rasbold
parents: 0
diff changeset
90 static elapsedTimer _t_blockOrdering;
5948
ee138854b3a6 7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents: 1972
diff changeset
91 static elapsedTimer _t_macroEliminate;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static elapsedTimer _t_macroExpand;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 static elapsedTimer _t_peephole;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 static elapsedTimer _t_codeGeneration;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 static elapsedTimer _t_registerMethod;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 static elapsedTimer _t_temporaryTimer1;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 static elapsedTimer _t_temporaryTimer2;
921
046932b72aa2 6862956: PhaseIdealLoop should have a CFG verification mode
never
parents: 470
diff changeset
98 static elapsedTimer _t_idealLoopVerify;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Subtimers for _t_optimizer
a61af66fc99e Initial load
duke
parents:
diff changeset
101 static elapsedTimer _t_iterGVN;
a61af66fc99e Initial load
duke
parents:
diff changeset
102 static elapsedTimer _t_iterGVN2;
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // Subtimers for _t_registerAllocation
a61af66fc99e Initial load
duke
parents:
diff changeset
105 static elapsedTimer _t_ctorChaitin;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 static elapsedTimer _t_buildIFGphysical;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 static elapsedTimer _t_computeLive;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static elapsedTimer _t_regAllocSplit;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 static elapsedTimer _t_postAllocCopyRemoval;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static elapsedTimer _t_fixupSpills;
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Subtimers for _t_output
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static elapsedTimer _t_instrSched;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 static elapsedTimer _t_buildOopMaps;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
116 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
117 Compile * C;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 Phase( PhaseNumber pnum );
a61af66fc99e Initial load
duke
parents:
diff changeset
119 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
120 static void print_timers();
a61af66fc99e Initial load
duke
parents:
diff changeset
121 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
122 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
123
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
124 #endif // SHARE_VM_OPTO_PHASE_HPP