author | coleenp |
Fri, 04 Jan 2019 15:06:01 -0500 | |
changeset 53149 | 259c36ef27df |
parent 52925 | 9c18c9d839d3 |
child 53220 | c14b7b6a9b2f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
48371
diff
changeset
|
2 |
* Copyright (c) 1997, 2018, 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:
5353
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5353
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:
5353
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#ifndef SHARE_VM_OPTO_COMPILE_HPP |
26 |
#define SHARE_VM_OPTO_COMPILE_HPP |
|
27 |
||
28 |
#include "asm/codeBuffer.hpp" |
|
29 |
#include "ci/compilerInterface.hpp" |
|
30 |
#include "code/debugInfoRec.hpp" |
|
31 |
#include "code/exceptionHandlerTable.hpp" |
|
32 |
#include "compiler/compilerOracle.hpp" |
|
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
33 |
#include "compiler/compileBroker.hpp" |
7397 | 34 |
#include "libadt/dict.hpp" |
35 |
#include "libadt/vectset.hpp" |
|
50113 | 36 |
#include "jfr/jfrEvents.hpp" |
7397 | 37 |
#include "memory/resourceArea.hpp" |
49480
d7df2dd501ce
8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents:
48371
diff
changeset
|
38 |
#include "oops/methodData.hpp" |
7397 | 39 |
#include "opto/idealGraphPrinter.hpp" |
18025 | 40 |
#include "opto/phasetype.hpp" |
7397 | 41 |
#include "opto/phase.hpp" |
42 |
#include "opto/regmask.hpp" |
|
43 |
#include "runtime/deoptimization.hpp" |
|
37161
e881f320966e
8150015: Integrate TraceTime with Unified Logging more seamlessly
rehn
parents:
36560
diff
changeset
|
44 |
#include "runtime/timerTrace.hpp" |
7397 | 45 |
#include "runtime/vmThread.hpp" |
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21526
diff
changeset
|
46 |
#include "utilities/ticks.hpp" |
7397 | 47 |
|
38286
0ddb6f84e138
8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents:
38228
diff
changeset
|
48 |
class AddPNode; |
1 | 49 |
class Block; |
50 |
class Bundle; |
|
51 |
class C2Compiler; |
|
52 |
class CallGenerator; |
|
30593 | 53 |
class CloneMap; |
1 | 54 |
class ConnectionGraph; |
55 |
class InlineTree; |
|
56 |
class Int_Array; |
|
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50180
diff
changeset
|
57 |
class LoadBarrierNode; |
1 | 58 |
class Matcher; |
7433 | 59 |
class MachConstantNode; |
60 |
class MachConstantBaseNode; |
|
1 | 61 |
class MachNode; |
7433 | 62 |
class MachOper; |
211
e2b60448c234
6667610: (Escape Analysis) retry compilation without EA if it fails
kvn
parents:
1
diff
changeset
|
63 |
class MachSafePointNode; |
1 | 64 |
class Node; |
65 |
class Node_Array; |
|
66 |
class Node_Notes; |
|
30593 | 67 |
class NodeCloneInfo; |
1 | 68 |
class OptoReg; |
69 |
class PhaseCFG; |
|
70 |
class PhaseGVN; |
|
4643 | 71 |
class PhaseIterGVN; |
1 | 72 |
class PhaseRegAlloc; |
73 |
class PhaseCCP; |
|
74 |
class PhaseCCP_DCE; |
|
75 |
class RootNode; |
|
76 |
class relocInfo; |
|
77 |
class Scope; |
|
78 |
class StartNode; |
|
79 |
class SafePointNode; |
|
80 |
class JVMState; |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
81 |
class Type; |
1 | 82 |
class TypeData; |
29337
ef2be52deeaf
6912521: System.arraycopy works slower than the simple loop for little lengths
roland
parents:
27707
diff
changeset
|
83 |
class TypeInt; |
1 | 84 |
class TypePtr; |
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
85 |
class TypeOopPtr; |
1 | 86 |
class TypeFunc; |
87 |
class Unique_Node_List; |
|
88 |
class nmethod; |
|
89 |
class WarmCallInfo; |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
90 |
class Node_Stack; |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
91 |
struct Final_Reshape_Counts; |
1 | 92 |
|
51489
b5abbca5b2dc
8209686: cleanup arguments to PhaseIdealLoop() constructor
roland
parents:
50525
diff
changeset
|
93 |
enum LoopOptsMode { |
b5abbca5b2dc
8209686: cleanup arguments to PhaseIdealLoop() constructor
roland
parents:
50525
diff
changeset
|
94 |
LoopOptsDefault, |
b5abbca5b2dc
8209686: cleanup arguments to PhaseIdealLoop() constructor
roland
parents:
50525
diff
changeset
|
95 |
LoopOptsNone, |
52925
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
52711
diff
changeset
|
96 |
LoopOptsShenandoahExpand, |
9c18c9d839d3
8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents:
52711
diff
changeset
|
97 |
LoopOptsShenandoahPostExpand, |
51489
b5abbca5b2dc
8209686: cleanup arguments to PhaseIdealLoop() constructor
roland
parents:
50525
diff
changeset
|
98 |
LoopOptsSkipSplitIf, |
b5abbca5b2dc
8209686: cleanup arguments to PhaseIdealLoop() constructor
roland
parents:
50525
diff
changeset
|
99 |
LoopOptsVerify, |
b5abbca5b2dc
8209686: cleanup arguments to PhaseIdealLoop() constructor
roland
parents:
50525
diff
changeset
|
100 |
LoopOptsLastRound |
b5abbca5b2dc
8209686: cleanup arguments to PhaseIdealLoop() constructor
roland
parents:
50525
diff
changeset
|
101 |
}; |
b5abbca5b2dc
8209686: cleanup arguments to PhaseIdealLoop() constructor
roland
parents:
50525
diff
changeset
|
102 |
|
30593 | 103 |
typedef unsigned int node_idx_t; |
104 |
class NodeCloneInfo { |
|
105 |
private: |
|
33589
7cbd1b2c139b
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents:
33129
diff
changeset
|
106 |
uint64_t _idx_clone_orig; |
30593 | 107 |
public: |
108 |
||
109 |
void set_idx(node_idx_t idx) { |
|
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
40664
diff
changeset
|
110 |
_idx_clone_orig = (_idx_clone_orig & CONST64(0xFFFFFFFF00000000)) | idx; |
30593 | 111 |
} |
112 |
node_idx_t idx() const { return (node_idx_t)(_idx_clone_orig & 0xFFFFFFFF); } |
|
113 |
||
114 |
void set_gen(int generation) { |
|
33589
7cbd1b2c139b
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents:
33129
diff
changeset
|
115 |
uint64_t g = (uint64_t)generation << 32; |
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
40664
diff
changeset
|
116 |
_idx_clone_orig = (_idx_clone_orig & 0xFFFFFFFF) | g; |
30593 | 117 |
} |
118 |
int gen() const { return (int)(_idx_clone_orig >> 32); } |
|
119 |
||
33589
7cbd1b2c139b
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents:
33129
diff
changeset
|
120 |
void set(uint64_t x) { _idx_clone_orig = x; } |
7cbd1b2c139b
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents:
33129
diff
changeset
|
121 |
void set(node_idx_t x, int g) { set_idx(x); set_gen(g); } |
30593 | 122 |
uint64_t get() const { return _idx_clone_orig; } |
123 |
||
124 |
NodeCloneInfo(uint64_t idx_clone_orig) : _idx_clone_orig(idx_clone_orig) {} |
|
33589
7cbd1b2c139b
8139040: Fix initializations before ShouldNotReachHere() etc. and enable -Wuninitialized on linux.
goetz
parents:
33129
diff
changeset
|
125 |
NodeCloneInfo(node_idx_t x, int g) : _idx_clone_orig(0) { set(x, g); } |
30593 | 126 |
|
127 |
void dump() const; |
|
128 |
}; |
|
129 |
||
130 |
class CloneMap { |
|
131 |
friend class Compile; |
|
132 |
private: |
|
133 |
bool _debug; |
|
134 |
Dict* _dict; |
|
135 |
int _clone_idx; // current cloning iteration/generation in loop unroll |
|
136 |
public: |
|
137 |
void* _2p(node_idx_t key) const { return (void*)(intptr_t)key; } // 2 conversion functions to make gcc happy |
|
138 |
node_idx_t _2_node_idx_t(const void* k) const { return (node_idx_t)(intptr_t)k; } |
|
139 |
Dict* dict() const { return _dict; } |
|
140 |
void insert(node_idx_t key, uint64_t val) { assert(_dict->operator[](_2p(key)) == NULL, "key existed"); _dict->Insert(_2p(key), (void*)val); } |
|
141 |
void insert(node_idx_t key, NodeCloneInfo& ci) { insert(key, ci.get()); } |
|
142 |
void remove(node_idx_t key) { _dict->Delete(_2p(key)); } |
|
143 |
uint64_t value(node_idx_t key) const { return (uint64_t)_dict->operator[](_2p(key)); } |
|
144 |
node_idx_t idx(node_idx_t key) const { return NodeCloneInfo(value(key)).idx(); } |
|
145 |
int gen(node_idx_t key) const { return NodeCloneInfo(value(key)).gen(); } |
|
146 |
int gen(const void* k) const { return gen(_2_node_idx_t(k)); } |
|
147 |
int max_gen() const; |
|
148 |
void clone(Node* old, Node* nnn, int gen); |
|
149 |
void verify_insert_and_clone(Node* old, Node* nnn, int gen); |
|
150 |
void dump(node_idx_t key) const; |
|
151 |
||
152 |
int clone_idx() const { return _clone_idx; } |
|
153 |
void set_clone_idx(int x) { _clone_idx = x; } |
|
154 |
bool is_debug() const { return _debug; } |
|
155 |
void set_debug(bool debug) { _debug = debug; } |
|
156 |
static const char* debug_option_name; |
|
31858
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
30593
diff
changeset
|
157 |
|
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
30593
diff
changeset
|
158 |
bool same_idx(node_idx_t k1, node_idx_t k2) const { return idx(k1) == idx(k2); } |
13420c0a3ad5
8085932: Fixing bugs in detecting memory alignments in SuperWord
kvn
parents:
30593
diff
changeset
|
159 |
bool same_gen(node_idx_t k1, node_idx_t k2) const { return gen(k1) == gen(k2); } |
30593 | 160 |
}; |
161 |
||
1 | 162 |
//------------------------------Compile---------------------------------------- |
163 |
// This class defines a top-level Compiler invocation. |
|
164 |
||
165 |
class Compile : public Phase { |
|
10547 | 166 |
friend class VMStructs; |
167 |
||
1 | 168 |
public: |
169 |
// Fixed alias indexes. (See also MergeMemNode.) |
|
170 |
enum { |
|
171 |
AliasIdxTop = 1, // pseudo-index, aliases to nothing (used as sentinel value) |
|
172 |
AliasIdxBot = 2, // pseudo-index, aliases to everything |
|
173 |
AliasIdxRaw = 3 // hard-wired index for TypeRawPtr::BOTTOM |
|
174 |
}; |
|
175 |
||
26913 | 176 |
// Variant of TraceTime(NULL, &_t_accumulator, CITime); |
177 |
// Integrated with logging. If logging is turned on, and CITimeVerbose is true, |
|
1 | 178 |
// then brackets are put into the log, with time stamps and node counts. |
26913 | 179 |
// (The time collection itself is always conditionalized on CITime.) |
1 | 180 |
class TracePhase : public TraceTime { |
181 |
private: |
|
182 |
Compile* C; |
|
183 |
CompileLog* _log; |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
184 |
const char* _phase_name; |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
185 |
bool _dolog; |
1 | 186 |
public: |
26913 | 187 |
TracePhase(const char* name, elapsedTimer* accumulator); |
1 | 188 |
~TracePhase(); |
189 |
}; |
|
190 |
||
191 |
// Information per category of alias (memory slice) |
|
192 |
class AliasType { |
|
193 |
private: |
|
194 |
friend class Compile; |
|
195 |
||
196 |
int _index; // unique index, used with MergeMemNode |
|
197 |
const TypePtr* _adr_type; // normalized address type |
|
198 |
ciField* _field; // relevant instance field, or null if none |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
199 |
const Type* _element; // relevant array element type, or null if none |
1 | 200 |
bool _is_rewritable; // false if the memory is write-once only |
201 |
int _general_index; // if this is type is an instance, the general |
|
202 |
// type that this is an instance of |
|
203 |
||
204 |
void Init(int i, const TypePtr* at); |
|
205 |
||
206 |
public: |
|
207 |
int index() const { return _index; } |
|
208 |
const TypePtr* adr_type() const { return _adr_type; } |
|
209 |
ciField* field() const { return _field; } |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
210 |
const Type* element() const { return _element; } |
1 | 211 |
bool is_rewritable() const { return _is_rewritable; } |
212 |
bool is_volatile() const { return (_field ? _field->is_volatile() : false); } |
|
213 |
int general_index() const { return (_general_index != 0) ? _general_index : _index; } |
|
214 |
||
215 |
void set_rewritable(bool z) { _is_rewritable = z; } |
|
216 |
void set_field(ciField* f) { |
|
217 |
assert(!_field,""); |
|
218 |
_field = f; |
|
19770
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
219 |
if (f->is_final() || f->is_stable()) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
220 |
// In the case of @Stable, multiple writes are possible but may be assumed to be no-ops. |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
221 |
_is_rewritable = false; |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
222 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
223 |
} |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
224 |
void set_element(const Type* e) { |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
225 |
assert(_element == NULL, ""); |
7cb9f982ea81
8001107: @Stable annotation for constant folding of lazily evaluated variables
vlivanov
parents:
18025
diff
changeset
|
226 |
_element = e; |
1 | 227 |
} |
228 |
||
38131
7bb27ec1a3d8
8134918: C2: Type speculation produces mismatched unsafe accesses
vlivanov
parents:
37161
diff
changeset
|
229 |
BasicType basic_type() const; |
7bb27ec1a3d8
8134918: C2: Type speculation produces mismatched unsafe accesses
vlivanov
parents:
37161
diff
changeset
|
230 |
|
1 | 231 |
void print_on(outputStream* st) PRODUCT_RETURN; |
232 |
}; |
|
233 |
||
234 |
enum { |
|
235 |
logAliasCacheSize = 6, |
|
236 |
AliasCacheSize = (1<<logAliasCacheSize) |
|
237 |
}; |
|
238 |
struct AliasCacheEntry { const TypePtr* _adr_type; int _index; }; // simple duple type |
|
239 |
enum { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
240 |
trapHistLength = MethodData::_trap_hist_limit |
1 | 241 |
}; |
242 |
||
7433 | 243 |
// Constant entry of the constant table. |
244 |
class Constant { |
|
245 |
private: |
|
246 |
BasicType _type; |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
247 |
union { |
14126
afb8a3a86f1f
8000623: tools/javac/Diagnostics/6769027/T6769027.java crashes in PSPromotionManager::copy_to_survivor_space
kvn
parents:
13883
diff
changeset
|
248 |
jvalue _value; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
249 |
Metadata* _metadata; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
250 |
} _v; |
7433 | 251 |
int _offset; // offset of this constant (in bytes) relative to the constant table base. |
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
252 |
float _freq; |
7433 | 253 |
bool _can_be_reused; // true (default) if the value can be shared with other users. |
254 |
||
255 |
public: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
256 |
Constant() : _type(T_ILLEGAL), _offset(-1), _freq(0.0f), _can_be_reused(true) { _v._value.l = 0; } |
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
257 |
Constant(BasicType type, jvalue value, float freq = 0.0f, bool can_be_reused = true) : |
7433 | 258 |
_type(type), |
259 |
_offset(-1), |
|
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
260 |
_freq(freq), |
7433 | 261 |
_can_be_reused(can_be_reused) |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
262 |
{ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
263 |
assert(type != T_METADATA, "wrong constructor"); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
264 |
_v._value = value; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
265 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
266 |
Constant(Metadata* metadata, bool can_be_reused = true) : |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
267 |
_type(T_METADATA), |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
268 |
_offset(-1), |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
269 |
_freq(0.0f), |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
270 |
_can_be_reused(can_be_reused) |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
271 |
{ |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
272 |
_v._metadata = metadata; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
273 |
} |
7433 | 274 |
|
275 |
bool operator==(const Constant& other); |
|
276 |
||
277 |
BasicType type() const { return _type; } |
|
278 |
||
40040
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
279 |
jint get_jint() const { return _v._value.i; } |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
280 |
jlong get_jlong() const { return _v._value.j; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
281 |
jfloat get_jfloat() const { return _v._value.f; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
282 |
jdouble get_jdouble() const { return _v._value.d; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
283 |
jobject get_jobject() const { return _v._value.l; } |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
284 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
285 |
Metadata* get_metadata() const { return _v._metadata; } |
7433 | 286 |
|
287 |
int offset() const { return _offset; } |
|
288 |
void set_offset(int offset) { _offset = offset; } |
|
289 |
||
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
290 |
float freq() const { return _freq; } |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
291 |
void inc_freq(float freq) { _freq += freq; } |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
292 |
|
7433 | 293 |
bool can_be_reused() const { return _can_be_reused; } |
294 |
}; |
|
295 |
||
296 |
// Constant table. |
|
297 |
class ConstantTable { |
|
298 |
private: |
|
299 |
GrowableArray<Constant> _constants; // Constants of this table. |
|
300 |
int _size; // Size in bytes the emitted constant table takes (including padding). |
|
301 |
int _table_base_offset; // Offset of the table base that gets added to the constant offsets. |
|
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
302 |
int _nof_jump_tables; // Number of jump-tables in this constant table. |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
303 |
|
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
304 |
static int qsort_comparator(Constant* a, Constant* b); |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
305 |
|
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
306 |
// We use negative frequencies to keep the order of the |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
307 |
// jump-tables in which they were added. Otherwise we get into |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
308 |
// trouble with relocation. |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
309 |
float next_jump_table_freq() { return -1.0f * (++_nof_jump_tables); } |
7433 | 310 |
|
311 |
public: |
|
312 |
ConstantTable() : |
|
313 |
_size(-1), |
|
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
314 |
_table_base_offset(-1), // We can use -1 here since the constant table is always bigger than 2 bytes (-(size / 2), see MachConstantBaseNode::emit). |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
315 |
_nof_jump_tables(0) |
7433 | 316 |
{} |
317 |
||
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
318 |
int size() const { assert(_size != -1, "not calculated yet"); return _size; } |
7433 | 319 |
|
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
320 |
int calculate_table_base_offset() const; // AD specific |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
321 |
void set_table_base_offset(int x) { assert(_table_base_offset == -1 || x == _table_base_offset, "can't change"); _table_base_offset = x; } |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
322 |
int table_base_offset() const { assert(_table_base_offset != -1, "not set yet"); return _table_base_offset; } |
7433 | 323 |
|
324 |
void emit(CodeBuffer& cb); |
|
325 |
||
326 |
// Returns the offset of the last entry (the top) of the constant table. |
|
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
327 |
int top_offset() const { assert(_constants.top().offset() != -1, "not bound yet"); return _constants.top().offset(); } |
7433 | 328 |
|
329 |
void calculate_offsets_and_size(); |
|
330 |
int find_offset(Constant& con) const; |
|
331 |
||
332 |
void add(Constant& con); |
|
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
333 |
Constant add(MachConstantNode* n, BasicType type, jvalue value); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
334 |
Constant add(Metadata* metadata); |
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
335 |
Constant add(MachConstantNode* n, MachOper* oper); |
40040
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
336 |
Constant add(MachConstantNode* n, jint i) { |
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
337 |
jvalue value; value.i = i; |
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
338 |
return add(n, T_INT, value); |
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
339 |
} |
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
340 |
Constant add(MachConstantNode* n, jlong j) { |
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
341 |
jvalue value; value.j = j; |
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
342 |
return add(n, T_LONG, value); |
7644f470d923
8160425: Vectorization with signalling NaN returns wrong result
thartmann
parents:
39431
diff
changeset
|
343 |
} |
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
344 |
Constant add(MachConstantNode* n, jfloat f) { |
7433 | 345 |
jvalue value; value.f = f; |
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
346 |
return add(n, T_FLOAT, value); |
7433 | 347 |
} |
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
348 |
Constant add(MachConstantNode* n, jdouble d) { |
7433 | 349 |
jvalue value; value.d = d; |
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
350 |
return add(n, T_DOUBLE, value); |
7433 | 351 |
} |
352 |
||
11190
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
353 |
// Jump-table |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
354 |
Constant add_jump_table(MachConstantNode* n); |
d561d41f241a
7003454: order constants in constant table by number of references in code
twisti
parents:
10547
diff
changeset
|
355 |
void fill_jump_table(CodeBuffer& cb, MachConstantNode* n, GrowableArray<Label*> labels) const; |
7433 | 356 |
}; |
357 |
||
1 | 358 |
private: |
359 |
// Fixed parameters to this compilation. |
|
360 |
const int _compile_id; |
|
361 |
const bool _save_argument_registers; // save/restore arg regs for trampolines |
|
362 |
const bool _subsume_loads; // Load can be matched as part of a larger op. |
|
211
e2b60448c234
6667610: (Escape Analysis) retry compilation without EA if it fails
kvn
parents:
1
diff
changeset
|
363 |
const bool _do_escape_analysis; // Do escape analysis. |
17383 | 364 |
const bool _eliminate_boxing; // Do boxing elimination. |
1 | 365 |
ciMethod* _method; // The method being compiled. |
366 |
int _entry_bci; // entry bci for osr methods. |
|
367 |
const TypeFunc* _tf; // My kind of signature |
|
368 |
InlineTree* _ilt; // Ditto (temporary). |
|
369 |
address _stub_function; // VM entry for stub being compiled, or NULL |
|
370 |
const char* _stub_name; // Name of stub or adapter being compiled, or NULL |
|
371 |
address _stub_entry_point; // Compile code entry for generated stub, or NULL |
|
372 |
||
373 |
// Control of this compilation. |
|
374 |
int _max_inline_size; // Max inline size for this compilation |
|
375 |
int _freq_inline_size; // Max hot method inline size for this compilation |
|
376 |
int _fixed_slots; // count of frame slots not allocated by the register |
|
377 |
// allocator i.e. locks, original deopt pc, etc. |
|
27707
f7d26e5b8b5d
8058148: MaxNodeLimit and LiveNodeCountInliningCutoff
vlivanov
parents:
27147
diff
changeset
|
378 |
uintx _max_node_limit; // Max unique node count during a single compilation. |
1 | 379 |
// For deopt |
380 |
int _orig_pc_slot; |
|
381 |
int _orig_pc_slot_offset_in_bytes; |
|
382 |
||
383 |
int _major_progress; // Count of something big happening |
|
15113 | 384 |
bool _inlining_progress; // progress doing incremental inlining? |
385 |
bool _inlining_incrementally;// Are we doing incremental inlining (post parse) |
|
1 | 386 |
bool _has_loops; // True if the method _may_ have some loops |
387 |
bool _has_split_ifs; // True if the method _may_ have some split-if |
|
388 |
bool _has_unsafe_access; // True if the method _may_ produce faults in unsafe loads or stores. |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
389 |
bool _has_stringbuilder; // True StringBuffers or StringBuilders are allocated |
17383 | 390 |
bool _has_boxed_value; // True if a boxed object is allocated |
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
33626
diff
changeset
|
391 |
bool _has_reserved_stack_access; // True if the method or an inlined method is annotated with ReservedStackAccess |
48370
cfde2a53d393
8193518: C2: Vector registers sometimes corrupted at safepoint
roland
parents:
47216
diff
changeset
|
392 |
uint _max_vector_size; // Maximum size of generated vectors |
48371
291020144f22
8190934: Regressions on Haswell Xeon due to JDK-8178811
vdeshpande
parents:
48370
diff
changeset
|
393 |
bool _clear_upper_avx; // Clear upper bits of ymm registers using vzeroupper |
1 | 394 |
uint _trap_hist[trapHistLength]; // Cumulative traps |
395 |
bool _trap_can_recompile; // Have we emitted a recompiling trap? |
|
396 |
uint _decompile_count; // Cumulative decompilation counts. |
|
397 |
bool _do_inlining; // True if we intend to do inlining |
|
398 |
bool _do_scheduling; // True if we intend to do scheduling |
|
1498 | 399 |
bool _do_freq_based_layout; // True if we intend to do frequency based block layout |
1 | 400 |
bool _do_count_invocations; // True if we generate code to count invocations |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12107
diff
changeset
|
401 |
bool _do_method_data_update; // True if we generate code to update MethodData*s |
30593 | 402 |
bool _do_vector_loop; // True if allowed to execute loop in parallel iterations |
33469
30f4811eded0
8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents:
33451
diff
changeset
|
403 |
bool _use_cmove; // True if CMove should be used without profitability analysis |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
404 |
bool _age_code; // True if we need to profile code age (decrement the aging counter) |
1 | 405 |
int _AliasLevel; // Locally-adjusted version of AliasLevel flag. |
406 |
bool _print_assembly; // True if we should dump assembly code for this compilation |
|
20073 | 407 |
bool _print_inlining; // True if we should print inlining for this compilation |
408 |
bool _print_intrinsics; // True if we should print intrinsics for this compilation |
|
1 | 409 |
#ifndef PRODUCT |
410 |
bool _trace_opto_output; |
|
1399
9648dfd4ce09
6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents:
670
diff
changeset
|
411 |
bool _parsed_irreducible_loop; // True if ciTypeFlow detected irreducible loops during parsing |
1 | 412 |
#endif |
24342
34e1384b02db
8039298: assert(base == NULL || t_adr->isa_rawptr() || !phase->type(base)->higher_equal(TypePtr::NULL_PTR))
kvn
parents:
24018
diff
changeset
|
413 |
bool _has_irreducible_loop; // Found irreducible loops |
4906 | 414 |
// JSR 292 |
415 |
bool _has_method_handle_invokes; // True if this method has MethodHandle invokes. |
|
23491 | 416 |
RTMState _rtm_state; // State of Restricted Transactional Memory usage |
52711 | 417 |
int _loop_opts_cnt; // loop opts round |
4906 | 418 |
|
1 | 419 |
// Compilation environment. |
420 |
Arena _comp_arena; // Arena with lifetime equivalent to Compile |
|
50525
767cdb97f103
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
50180
diff
changeset
|
421 |
void* _barrier_set_state; // Potential GC barrier state for Compile |
1 | 422 |
ciEnv* _env; // CI interface |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
423 |
DirectiveSet* _directive; // Compiler directive |
1 | 424 |
CompileLog* _log; // from CompilerThread |
425 |
const char* _failure_reason; // for record_failure/failing pattern |
|
426 |
GrowableArray<CallGenerator*>* _intrinsics; // List of intrinsics. |
|
427 |
GrowableArray<Node*>* _macro_nodes; // List of nodes which need to be expanded before matching. |
|
4643 | 428 |
GrowableArray<Node*>* _predicate_opaqs; // List of Opaque1 nodes for the loop predicates. |
15618
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
429 |
GrowableArray<Node*>* _expensive_nodes; // List of nodes that are expensive to compute and that we'd better not let the GVN freely common |
35574
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
430 |
GrowableArray<Node*>* _range_check_casts; // List of CastII nodes with a range check dependency |
49487
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
431 |
GrowableArray<Node*>* _opaque4_nodes; // List of Opaque4 nodes that have a default value |
1 | 432 |
ConnectionGraph* _congraph; |
433 |
#ifndef PRODUCT |
|
434 |
IdealGraphPrinter* _printer; |
|
435 |
#endif |
|
436 |
||
18025 | 437 |
|
1 | 438 |
// Node management |
439 |
uint _unique; // Counter for unique Node indices |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
440 |
VectorSet _dead_node_list; // Set of dead nodes |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
441 |
uint _dead_node_count; // Number of dead nodes; VectorSet::Size() is O(N). |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
442 |
// So use this to keep count and make the call O(1). |
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25494
diff
changeset
|
443 |
DEBUG_ONLY( Unique_Node_List* _modified_nodes; ) // List of nodes which inputs were modified |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25494
diff
changeset
|
444 |
|
1 | 445 |
debug_only(static int _debug_idx;) // Monotonic counter (not reset), use -XX:BreakAtNode=<idx> |
446 |
Arena _node_arena; // Arena for new-space Nodes |
|
447 |
Arena _old_arena; // Arena for old-space Nodes, lifetime during xform |
|
448 |
RootNode* _root; // Unique root of compilation, or NULL after bail-out. |
|
449 |
Node* _top; // Unique top node. (Reset by various phases.) |
|
450 |
||
451 |
Node* _immutable_memory; // Initial memory state |
|
452 |
||
453 |
Node* _recent_alloc_obj; |
|
454 |
Node* _recent_alloc_ctl; |
|
455 |
||
7433 | 456 |
// Constant table |
457 |
ConstantTable _constant_table; // The constant table for this compile. |
|
458 |
MachConstantBaseNode* _mach_constant_base_node; // Constant table base node singleton. |
|
459 |
||
460 |
||
1 | 461 |
// Blocked array of debugging and profiling information, |
462 |
// tracked per node. |
|
463 |
enum { _log2_node_notes_block_size = 8, |
|
464 |
_node_notes_block_size = (1<<_log2_node_notes_block_size) |
|
465 |
}; |
|
466 |
GrowableArray<Node_Notes*>* _node_note_array; |
|
467 |
Node_Notes* _default_node_notes; // default notes for new nodes |
|
468 |
||
469 |
// After parsing and every bulk phase we hang onto the Root instruction. |
|
470 |
// The RootNode instruction is where the whole program begins. It produces |
|
471 |
// the initial Control and BOTTOM for everybody else. |
|
472 |
||
473 |
// Type management |
|
474 |
Arena _Compile_types; // Arena for all types |
|
475 |
Arena* _type_arena; // Alias for _Compile_types except in Initialize_shared() |
|
476 |
Dict* _type_dict; // Intern table |
|
30593 | 477 |
CloneMap _clone_map; // used for recording history of cloned nodes |
1 | 478 |
void* _type_hwm; // Last allocation (see Type::operator new/delete) |
479 |
size_t _type_last_size; // Last allocation size (see Type::operator new/delete) |
|
480 |
ciMethod* _last_tf_m; // Cache for |
|
481 |
const TypeFunc* _last_tf; // TypeFunc::make |
|
482 |
AliasType** _alias_types; // List of alias types seen so far. |
|
483 |
int _num_alias_types; // Logical length of _alias_types |
|
484 |
int _max_alias_types; // Physical length of _alias_types |
|
485 |
AliasCacheEntry _alias_cache[AliasCacheSize]; // Gets aliases w/o data structure walking |
|
486 |
||
487 |
// Parsing, optimization |
|
488 |
PhaseGVN* _initial_gvn; // Results of parse-time PhaseGVN |
|
489 |
Unique_Node_List* _for_igvn; // Initial work-list for next round of Iterative GVN |
|
490 |
WarmCallInfo* _warm_calls; // Sorted work-list for heat-based inlining. |
|
491 |
||
15113 | 492 |
GrowableArray<CallGenerator*> _late_inlines; // List of CallGenerators to be revisited after |
493 |
// main parsing has finished. |
|
494 |
GrowableArray<CallGenerator*> _string_late_inlines; // same but for string operations |
|
495 |
||
17383 | 496 |
GrowableArray<CallGenerator*> _boxing_late_inlines; // same but for boxing operations |
497 |
||
15113 | 498 |
int _late_inlines_pos; // Where in the queue should the next late inlining candidate go (emulate depth first inlining) |
499 |
uint _number_of_mh_late_inlines; // number of method handle late inlining still pending |
|
500 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
501 |
|
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
502 |
// Inlining may not happen in parse order which would make |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
503 |
// PrintInlining output confusing. Keep track of PrintInlining |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
504 |
// pieces in order. |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
505 |
class PrintInliningBuffer : public ResourceObj { |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
506 |
private: |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
507 |
CallGenerator* _cg; |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
508 |
stringStream* _ss; |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
509 |
|
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
510 |
public: |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
511 |
PrintInliningBuffer() |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
512 |
: _cg(NULL) { _ss = new stringStream(); } |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
513 |
|
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
514 |
stringStream* ss() const { return _ss; } |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
515 |
CallGenerator* cg() const { return _cg; } |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
516 |
void set_cg(CallGenerator* cg) { _cg = cg; } |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
517 |
}; |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
518 |
|
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
519 |
stringStream* _print_inlining_stream; |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
520 |
GrowableArray<PrintInliningBuffer>* _print_inlining_list; |
20073 | 521 |
int _print_inlining_idx; |
24673
2ec56802b829
8043638: Multiple compilation attempts break LogCompulation, lead to confusing PrintInlining output
roland
parents:
24446
diff
changeset
|
522 |
char* _print_inlining_output; |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
523 |
|
15618
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
524 |
// Only keep nodes in the expensive node list that need to be optimized |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
525 |
void cleanup_expensive_nodes(PhaseIterGVN &igvn); |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
526 |
// Use for sorting expensive nodes to bring similar nodes together |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
527 |
static int cmp_expensive_nodes(Node** n1, Node** n2); |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
528 |
// Expensive nodes list already sorted? |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
529 |
bool expensive_nodes_sorted() const; |
21099 | 530 |
// Remove the speculative part of types and clean up the graph |
531 |
void remove_speculative_types(PhaseIterGVN &igvn); |
|
15618
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
532 |
|
22243 | 533 |
void* _replay_inline_data; // Pointer to data loaded from file |
534 |
||
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
535 |
void print_inlining_init(); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
536 |
void print_inlining_reinit(); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
537 |
void print_inlining_commit(); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
538 |
void print_inlining_push(); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
539 |
PrintInliningBuffer& print_inlining_current(); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
540 |
|
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
541 |
void log_late_inline_failure(CallGenerator* cg, const char* msg); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
542 |
|
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
543 |
public: |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
544 |
|
50180 | 545 |
void* barrier_set_state() const { return _barrier_set_state; } |
546 |
||
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
547 |
outputStream* print_inlining_stream() const { |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
548 |
assert(print_inlining() || print_intrinsics(), "PrintInlining off?"); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
549 |
return _print_inlining_stream; |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
550 |
} |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
551 |
|
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
552 |
void print_inlining_update(CallGenerator* cg); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
553 |
void print_inlining_update_delayed(CallGenerator* cg); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
554 |
void print_inlining_move_to(CallGenerator* cg); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
555 |
void print_inlining_assert_ready(); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23491
diff
changeset
|
556 |
void print_inlining_reset(); |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
557 |
|
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
558 |
void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) { |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
559 |
stringStream ss; |
32582
56619bb8bcaa
8135067: Preparatory refactorings for compiler control
neliasso
parents:
32393
diff
changeset
|
560 |
CompileTask::print_inlining_inner(&ss, method, inline_level, bci, msg); |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24342
diff
changeset
|
561 |
print_inlining_stream()->print("%s", ss.as_string()); |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
562 |
} |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
563 |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
564 |
#ifndef PRODUCT |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
565 |
IdealGraphPrinter* printer() { return _printer; } |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
566 |
#endif |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
567 |
|
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
568 |
void log_late_inline(CallGenerator* cg); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
569 |
void log_inline_id(CallGenerator* cg); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
570 |
void log_inline_failure(const char* msg); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
571 |
|
22243 | 572 |
void* replay_inline_data() const { return _replay_inline_data; } |
573 |
||
574 |
// Dump inlining replay data to the stream. |
|
575 |
void dump_inline_data(outputStream* out); |
|
576 |
||
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
577 |
private: |
1 | 578 |
// Matching, CFG layout, allocation, code generation |
579 |
PhaseCFG* _cfg; // Results of CFG finding |
|
580 |
bool _select_24_bit_instr; // We selected an instruction with a 24-bit result |
|
581 |
bool _in_24_bit_fp_mode; // We are emitting instructions with 24-bit results |
|
3276
bda7d4532054
6860599: nodes limit could be reached during Output phase
kvn
parents:
1498
diff
changeset
|
582 |
int _java_calls; // Number of java calls in the method |
bda7d4532054
6860599: nodes limit could be reached during Output phase
kvn
parents:
1498
diff
changeset
|
583 |
int _inner_loops; // Number of inner loops in the method |
1 | 584 |
Matcher* _matcher; // Engine to map ideal to machine instructions |
585 |
PhaseRegAlloc* _regalloc; // Results of register allocation. |
|
586 |
int _frame_slots; // Size of total frame in stack slots |
|
587 |
CodeOffsets _code_offsets; // Offsets into the code for various interesting entries |
|
588 |
RegMask _FIRST_STACK_mask; // All stack slots usable for spills (depends on frame layout) |
|
589 |
Arena* _indexSet_arena; // control IndexSet allocation within PhaseChaitin |
|
590 |
void* _indexSet_free_block_list; // free list of IndexSet bit blocks |
|
24018
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
591 |
int _interpreter_frame_size; |
1 | 592 |
|
593 |
uint _node_bundling_limit; |
|
594 |
Bundle* _node_bundling_base; // Information for instruction bundling |
|
595 |
||
596 |
// Instruction bits passed off to the VM |
|
597 |
int _method_size; // Size of nmethod code segment in bytes |
|
598 |
CodeBuffer _code_buffer; // Where the code is assembled |
|
599 |
int _first_block_size; // Size of unvalidated entry point code / OSR poison code |
|
600 |
ExceptionHandlerTable _handler_table; // Table of native-code exception handlers |
|
601 |
ImplicitExceptionTable _inc_table; // Table of implicit null checks in native code |
|
602 |
OopMapSet* _oop_map_set; // Table of oop maps (one for each safepoint location) |
|
603 |
static int _CompiledZap_count; // counter compared against CompileZap[First/Last] |
|
604 |
BufferBlob* _scratch_buffer_blob; // For temporary code buffers. |
|
605 |
relocInfo* _scratch_locs_memory; // For temporary code buffers. |
|
7433 | 606 |
int _scratch_const_size; // For temporary code buffers. |
607 |
bool _in_scratch_emit_size; // true when in scratch_emit_size. |
|
1 | 608 |
|
38286
0ddb6f84e138
8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents:
38228
diff
changeset
|
609 |
void reshape_address(AddPNode* n); |
0ddb6f84e138
8154826: AArch64: take advantage better of base + shifted offset addressing mode
roland
parents:
38228
diff
changeset
|
610 |
|
1 | 611 |
public: |
612 |
// Accessors |
|
613 |
||
614 |
// The Compile instance currently active in this (compiler) thread. |
|
615 |
static Compile* current() { |
|
616 |
return (Compile*) ciEnv::current()->compiler_data(); |
|
617 |
} |
|
618 |
||
619 |
// ID for this compilation. Useful for setting breakpoints in the debugger. |
|
620 |
int compile_id() const { return _compile_id; } |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
621 |
DirectiveSet* directive() const { return _directive; } |
1 | 622 |
|
623 |
// Does this compilation allow instructions to subsume loads? User |
|
624 |
// instructions that subsume a load may result in an unschedulable |
|
625 |
// instruction sequence. |
|
626 |
bool subsume_loads() const { return _subsume_loads; } |
|
17383 | 627 |
/** Do escape analysis. */ |
211
e2b60448c234
6667610: (Escape Analysis) retry compilation without EA if it fails
kvn
parents:
1
diff
changeset
|
628 |
bool do_escape_analysis() const { return _do_escape_analysis; } |
17383 | 629 |
/** Do boxing elimination. */ |
630 |
bool eliminate_boxing() const { return _eliminate_boxing; } |
|
631 |
/** Do aggressive boxing elimination. */ |
|
632 |
bool aggressive_unboxing() const { return _eliminate_boxing && AggressiveUnboxing; } |
|
1 | 633 |
bool save_argument_registers() const { return _save_argument_registers; } |
634 |
||
635 |
||
636 |
// Other fixed compilation parameters. |
|
637 |
ciMethod* method() const { return _method; } |
|
638 |
int entry_bci() const { return _entry_bci; } |
|
639 |
bool is_osr_compilation() const { return _entry_bci != InvocationEntryBci; } |
|
640 |
bool is_method_compilation() const { return (_method != NULL && !_method->flags().is_native()); } |
|
641 |
const TypeFunc* tf() const { assert(_tf!=NULL, ""); return _tf; } |
|
642 |
void init_tf(const TypeFunc* tf) { assert(_tf==NULL, ""); _tf = tf; } |
|
643 |
InlineTree* ilt() const { return _ilt; } |
|
644 |
address stub_function() const { return _stub_function; } |
|
645 |
const char* stub_name() const { return _stub_name; } |
|
646 |
address stub_entry_point() const { return _stub_entry_point; } |
|
647 |
||
648 |
// Control of this compilation. |
|
649 |
int fixed_slots() const { assert(_fixed_slots >= 0, ""); return _fixed_slots; } |
|
650 |
void set_fixed_slots(int n) { _fixed_slots = n; } |
|
651 |
int major_progress() const { return _major_progress; } |
|
15113 | 652 |
void set_inlining_progress(bool z) { _inlining_progress = z; } |
653 |
int inlining_progress() const { return _inlining_progress; } |
|
654 |
void set_inlining_incrementally(bool z) { _inlining_incrementally = z; } |
|
655 |
int inlining_incrementally() const { return _inlining_incrementally; } |
|
1 | 656 |
void set_major_progress() { _major_progress++; } |
657 |
void clear_major_progress() { _major_progress = 0; } |
|
658 |
int max_inline_size() const { return _max_inline_size; } |
|
659 |
void set_freq_inline_size(int n) { _freq_inline_size = n; } |
|
660 |
int freq_inline_size() const { return _freq_inline_size; } |
|
661 |
void set_max_inline_size(int n) { _max_inline_size = n; } |
|
662 |
bool has_loops() const { return _has_loops; } |
|
663 |
void set_has_loops(bool z) { _has_loops = z; } |
|
664 |
bool has_split_ifs() const { return _has_split_ifs; } |
|
665 |
void set_has_split_ifs(bool z) { _has_split_ifs = z; } |
|
666 |
bool has_unsafe_access() const { return _has_unsafe_access; } |
|
667 |
void set_has_unsafe_access(bool z) { _has_unsafe_access = z; } |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
668 |
bool has_stringbuilder() const { return _has_stringbuilder; } |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
669 |
void set_has_stringbuilder(bool z) { _has_stringbuilder = z; } |
17383 | 670 |
bool has_boxed_value() const { return _has_boxed_value; } |
671 |
void set_has_boxed_value(bool z) { _has_boxed_value = z; } |
|
35071
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
33626
diff
changeset
|
672 |
bool has_reserved_stack_access() const { return _has_reserved_stack_access; } |
a0910b1d3e0d
8046936: JEP 270: Reserved Stack Areas for Critical Sections
fparain
parents:
33626
diff
changeset
|
673 |
void set_has_reserved_stack_access(bool z) { _has_reserved_stack_access = z; } |
48371
291020144f22
8190934: Regressions on Haswell Xeon due to JDK-8178811
vdeshpande
parents:
48370
diff
changeset
|
674 |
uint max_vector_size() const { return _max_vector_size; } |
48370
cfde2a53d393
8193518: C2: Vector registers sometimes corrupted at safepoint
roland
parents:
47216
diff
changeset
|
675 |
void set_max_vector_size(uint s) { _max_vector_size = s; } |
48371
291020144f22
8190934: Regressions on Haswell Xeon due to JDK-8178811
vdeshpande
parents:
48370
diff
changeset
|
676 |
bool clear_upper_avx() const { return _clear_upper_avx; } |
291020144f22
8190934: Regressions on Haswell Xeon due to JDK-8178811
vdeshpande
parents:
48370
diff
changeset
|
677 |
void set_clear_upper_avx(bool s) { _clear_upper_avx = s; } |
1 | 678 |
void set_trap_count(uint r, uint c) { assert(r < trapHistLength, "oob"); _trap_hist[r] = c; } |
679 |
uint trap_count(uint r) const { assert(r < trapHistLength, "oob"); return _trap_hist[r]; } |
|
680 |
bool trap_can_recompile() const { return _trap_can_recompile; } |
|
681 |
void set_trap_can_recompile(bool z) { _trap_can_recompile = z; } |
|
682 |
uint decompile_count() const { return _decompile_count; } |
|
683 |
void set_decompile_count(uint c) { _decompile_count = c; } |
|
684 |
bool allow_range_check_smearing() const; |
|
685 |
bool do_inlining() const { return _do_inlining; } |
|
686 |
void set_do_inlining(bool z) { _do_inlining = z; } |
|
687 |
bool do_scheduling() const { return _do_scheduling; } |
|
688 |
void set_do_scheduling(bool z) { _do_scheduling = z; } |
|
1498 | 689 |
bool do_freq_based_layout() const{ return _do_freq_based_layout; } |
690 |
void set_do_freq_based_layout(bool z){ _do_freq_based_layout = z; } |
|
1 | 691 |
bool do_count_invocations() const{ return _do_count_invocations; } |
692 |
void set_do_count_invocations(bool z){ _do_count_invocations = z; } |
|
693 |
bool do_method_data_update() const { return _do_method_data_update; } |
|
694 |
void set_do_method_data_update(bool z) { _do_method_data_update = z; } |
|
30593 | 695 |
bool do_vector_loop() const { return _do_vector_loop; } |
696 |
void set_do_vector_loop(bool z) { _do_vector_loop = z; } |
|
33469
30f4811eded0
8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents:
33451
diff
changeset
|
697 |
bool use_cmove() const { return _use_cmove; } |
30f4811eded0
8139340: SuperWord enhancement to support vector conditional move (CMovVD) on Intel AVX cpu
iveresov
parents:
33451
diff
changeset
|
698 |
void set_use_cmove(bool z) { _use_cmove = z; } |
24442
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
699 |
bool age_code() const { return _age_code; } |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
700 |
void set_age_code(bool z) { _age_code = z; } |
4d4ae31dea26
8032463: VirtualDispatch test timeout with DeoptimizeALot
iveresov
parents:
24424
diff
changeset
|
701 |
int AliasLevel() const { return _AliasLevel; } |
1 | 702 |
bool print_assembly() const { return _print_assembly; } |
703 |
void set_print_assembly(bool z) { _print_assembly = z; } |
|
20073 | 704 |
bool print_inlining() const { return _print_inlining; } |
705 |
void set_print_inlining(bool z) { _print_inlining = z; } |
|
706 |
bool print_intrinsics() const { return _print_intrinsics; } |
|
707 |
void set_print_intrinsics(bool z) { _print_intrinsics = z; } |
|
23491 | 708 |
RTMState rtm_state() const { return _rtm_state; } |
709 |
void set_rtm_state(RTMState s) { _rtm_state = s; } |
|
710 |
bool use_rtm() const { return (_rtm_state & NoRTM) == 0; } |
|
711 |
bool profile_rtm() const { return _rtm_state == ProfileRTM; } |
|
27707
f7d26e5b8b5d
8058148: MaxNodeLimit and LiveNodeCountInliningCutoff
vlivanov
parents:
27147
diff
changeset
|
712 |
uint max_node_limit() const { return (uint)_max_node_limit; } |
f7d26e5b8b5d
8058148: MaxNodeLimit and LiveNodeCountInliningCutoff
vlivanov
parents:
27147
diff
changeset
|
713 |
void set_max_node_limit(uint n) { _max_node_limit = n; } |
f7d26e5b8b5d
8058148: MaxNodeLimit and LiveNodeCountInliningCutoff
vlivanov
parents:
27147
diff
changeset
|
714 |
|
1 | 715 |
// check the CompilerOracle for special behaviours for this compile |
716 |
bool method_has_option(const char * option) { |
|
717 |
return method() != NULL && method()->has_option(option); |
|
718 |
} |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
719 |
|
1 | 720 |
#ifndef PRODUCT |
721 |
bool trace_opto_output() const { return _trace_opto_output; } |
|
1399
9648dfd4ce09
6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents:
670
diff
changeset
|
722 |
bool parsed_irreducible_loop() const { return _parsed_irreducible_loop; } |
9648dfd4ce09
6384206: Phis which are later unneeded are impairing our ability to inline based on static types
never
parents:
670
diff
changeset
|
723 |
void set_parsed_irreducible_loop(bool z) { _parsed_irreducible_loop = z; } |
22854
2787e48d6df9
8029025: PPC64 (part 203): opto: Move static _in_dump_cnt to Compile object.
goetz
parents:
21526
diff
changeset
|
724 |
int _in_dump_cnt; // Required for dumping ir nodes. |
1 | 725 |
#endif |
24342
34e1384b02db
8039298: assert(base == NULL || t_adr->isa_rawptr() || !phase->type(base)->higher_equal(TypePtr::NULL_PTR))
kvn
parents:
24018
diff
changeset
|
726 |
bool has_irreducible_loop() const { return _has_irreducible_loop; } |
34e1384b02db
8039298: assert(base == NULL || t_adr->isa_rawptr() || !phase->type(base)->higher_equal(TypePtr::NULL_PTR))
kvn
parents:
24018
diff
changeset
|
727 |
void set_has_irreducible_loop(bool z) { _has_irreducible_loop = z; } |
1 | 728 |
|
4906 | 729 |
// JSR 292 |
730 |
bool has_method_handle_invokes() const { return _has_method_handle_invokes; } |
|
731 |
void set_has_method_handle_invokes(bool z) { _has_method_handle_invokes = z; } |
|
732 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21526
diff
changeset
|
733 |
Ticks _latest_stage_start_counter; |
18025 | 734 |
|
1 | 735 |
void begin_method() { |
736 |
#ifndef PRODUCT |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
737 |
if (_printer && _printer->should_print(1)) { |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
738 |
_printer->begin_method(); |
27147 | 739 |
} |
1 | 740 |
#endif |
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21526
diff
changeset
|
741 |
C->_latest_stage_start_counter.stamp(); |
1 | 742 |
} |
18025 | 743 |
|
744 |
void print_method(CompilerPhaseType cpt, int level = 1) { |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21526
diff
changeset
|
745 |
EventCompilerPhase event; |
18025 | 746 |
if (event.should_commit()) { |
747 |
event.set_starttime(C->_latest_stage_start_counter); |
|
748 |
event.set_phase((u1) cpt); |
|
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
40040
diff
changeset
|
749 |
event.set_compileId(C->_compile_id); |
18025 | 750 |
event.set_phaseLevel(level); |
751 |
event.commit(); |
|
752 |
} |
|
753 |
||
754 |
||
1 | 755 |
#ifndef PRODUCT |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
756 |
if (_printer && _printer->should_print(level)) { |
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
757 |
_printer->print_method(CompilerPhaseTypeHelper::to_string(cpt), level); |
27147 | 758 |
} |
1 | 759 |
#endif |
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21526
diff
changeset
|
760 |
C->_latest_stage_start_counter.stamp(); |
1 | 761 |
} |
18025 | 762 |
|
763 |
void end_method(int level = 1) { |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
21526
diff
changeset
|
764 |
EventCompilerPhase event; |
18025 | 765 |
if (event.should_commit()) { |
766 |
event.set_starttime(C->_latest_stage_start_counter); |
|
767 |
event.set_phase((u1) PHASE_END); |
|
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
40040
diff
changeset
|
768 |
event.set_compileId(C->_compile_id); |
18025 | 769 |
event.set_phaseLevel(level); |
770 |
event.commit(); |
|
771 |
} |
|
1 | 772 |
#ifndef PRODUCT |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
773 |
if (_printer && _printer->should_print(level)) { |
27147 | 774 |
_printer->end_method(); |
775 |
} |
|
1 | 776 |
#endif |
777 |
} |
|
778 |
||
17383 | 779 |
int macro_count() const { return _macro_nodes->length(); } |
780 |
int predicate_count() const { return _predicate_opaqs->length();} |
|
781 |
int expensive_count() const { return _expensive_nodes->length(); } |
|
782 |
Node* macro_node(int idx) const { return _macro_nodes->at(idx); } |
|
783 |
Node* predicate_opaque1_node(int idx) const { return _predicate_opaqs->at(idx);} |
|
784 |
Node* expensive_node(int idx) const { return _expensive_nodes->at(idx); } |
|
1 | 785 |
ConnectionGraph* congraph() { return _congraph;} |
5914
8363e7e6915a
6966411: escape.cpp:450 assert(base->Opcode() == Op_ConP
kvn
parents:
5547
diff
changeset
|
786 |
void set_congraph(ConnectionGraph* congraph) { _congraph = congraph;} |
1 | 787 |
void add_macro_node(Node * n) { |
788 |
//assert(n->is_macro(), "must be a macro node"); |
|
35574
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
789 |
assert(!_macro_nodes->contains(n), "duplicate entry in expand list"); |
1 | 790 |
_macro_nodes->append(n); |
791 |
} |
|
792 |
void remove_macro_node(Node * n) { |
|
793 |
// this function may be called twice for a node so check |
|
794 |
// that the node is in the array before attempting to remove it |
|
795 |
if (_macro_nodes->contains(n)) |
|
796 |
_macro_nodes->remove(n); |
|
4643 | 797 |
// remove from _predicate_opaqs list also if it is there |
798 |
if (predicate_count() > 0 && _predicate_opaqs->contains(n)){ |
|
799 |
_predicate_opaqs->remove(n); |
|
800 |
} |
|
1 | 801 |
} |
15618
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
802 |
void add_expensive_node(Node * n); |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
803 |
void remove_expensive_node(Node * n) { |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
804 |
if (_expensive_nodes->contains(n)) { |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
805 |
_expensive_nodes->remove(n); |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
806 |
} |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
807 |
} |
4643 | 808 |
void add_predicate_opaq(Node * n) { |
35574
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
809 |
assert(!_predicate_opaqs->contains(n), "duplicate entry in predicate opaque1"); |
4643 | 810 |
assert(_macro_nodes->contains(n), "should have already been in macro list"); |
811 |
_predicate_opaqs->append(n); |
|
812 |
} |
|
35574
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
813 |
|
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
814 |
// Range check dependent CastII nodes that can be removed after loop optimizations |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
815 |
void add_range_check_cast(Node* n); |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
816 |
void remove_range_check_cast(Node* n) { |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
817 |
if (_range_check_casts->contains(n)) { |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
818 |
_range_check_casts->remove(n); |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
819 |
} |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
820 |
} |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
821 |
Node* range_check_cast_node(int idx) const { return _range_check_casts->at(idx); } |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
822 |
int range_check_cast_count() const { return _range_check_casts->length(); } |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
823 |
// Remove all range check dependent CastIINodes. |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
824 |
void remove_range_check_casts(PhaseIterGVN &igvn); |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
825 |
|
49487
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
826 |
void add_opaque4_node(Node* n); |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
827 |
void remove_opaque4_node(Node* n) { |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
828 |
if (_opaque4_nodes->contains(n)) { |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
829 |
_opaque4_nodes->remove(n); |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
830 |
} |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
831 |
} |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
832 |
Node* opaque4_node(int idx) const { return _opaque4_nodes->at(idx); } |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
833 |
int opaque4_count() const { return _opaque4_nodes->length(); } |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
834 |
void remove_opaque4_nodes(PhaseIterGVN &igvn); |
bde392011cd8
8193130: Bad graph when unrolled loop bounds conflicts with range checks
roland
parents:
49480
diff
changeset
|
835 |
|
4643 | 836 |
// remove the opaque nodes that protect the predicates so that the unused checks and |
837 |
// uncommon traps will be eliminated from the graph. |
|
838 |
void cleanup_loop_predicates(PhaseIterGVN &igvn); |
|
9101 | 839 |
bool is_predicate_opaq(Node * n) { |
840 |
return _predicate_opaqs->contains(n); |
|
841 |
} |
|
1 | 842 |
|
15618
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
843 |
// Are there candidate expensive nodes for optimization? |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
844 |
bool should_optimize_expensive_nodes(PhaseIterGVN &igvn); |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
845 |
// Check whether n1 and n2 are similar |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
846 |
static int cmp_expensive_nodes(Node* n1, Node* n2); |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
847 |
// Sort expensive nodes to locate similar expensive nodes |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
848 |
void sort_expensive_nodes(); |
3eb521896836
7197327: 40% regression on 8 b41 comp 8 b40 on specjvm2008.mpegaudio on oob
roland
parents:
15118
diff
changeset
|
849 |
|
1 | 850 |
// Compilation environment. |
27016
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
851 |
Arena* comp_arena() { return &_comp_arena; } |
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
852 |
ciEnv* env() const { return _env; } |
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
853 |
CompileLog* log() const { return _log; } |
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
854 |
bool failing() const { return _env->failing() || _failure_reason != NULL; } |
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
855 |
const char* failure_reason() const { return (_env->failing()) ? _env->failure_reason() : _failure_reason; } |
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
856 |
|
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
857 |
bool failure_reason_is(const char* r) const { |
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
858 |
return (r == _failure_reason) || (r != NULL && _failure_reason != NULL && strcmp(r, _failure_reason) == 0); |
58e6c6d54017
8059331: Print additional information for the assert in Compile::start()
anoll
parents:
26913
diff
changeset
|
859 |
} |
1 | 860 |
|
861 |
void record_failure(const char* reason); |
|
39431
cb1b2538c4b2
8159720: Failure of C2 compilation with tiered prevents some C1 compilations.
cvarming
parents:
38286
diff
changeset
|
862 |
void record_method_not_compilable(const char* reason) { |
cb1b2538c4b2
8159720: Failure of C2 compilation with tiered prevents some C1 compilations.
cvarming
parents:
38286
diff
changeset
|
863 |
// Bailouts cover "all_tiers" when TieredCompilation is off. |
cb1b2538c4b2
8159720: Failure of C2 compilation with tiered prevents some C1 compilations.
cvarming
parents:
38286
diff
changeset
|
864 |
env()->record_method_not_compilable(reason, !TieredCompilation); |
1 | 865 |
// Record failure reason. |
866 |
record_failure(reason); |
|
867 |
} |
|
868 |
bool check_node_count(uint margin, const char* reason) { |
|
27707
f7d26e5b8b5d
8058148: MaxNodeLimit and LiveNodeCountInliningCutoff
vlivanov
parents:
27147
diff
changeset
|
869 |
if (live_nodes() + margin > max_node_limit()) { |
1 | 870 |
record_method_not_compilable(reason); |
871 |
return true; |
|
872 |
} else { |
|
873 |
return false; |
|
874 |
} |
|
875 |
} |
|
876 |
||
877 |
// Node management |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
878 |
uint unique() const { return _unique; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
879 |
uint next_unique() { return _unique++; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
880 |
void set_unique(uint i) { _unique = i; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
881 |
static int debug_idx() { return debug_only(_debug_idx)+0; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
882 |
static void set_debug_idx(int i) { debug_only(_debug_idx = i); } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
883 |
Arena* node_arena() { return &_node_arena; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
884 |
Arena* old_arena() { return &_old_arena; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
885 |
RootNode* root() const { return _root; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
886 |
void set_root(RootNode* r) { _root = r; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
887 |
StartNode* start() const; // (Derived from root.) |
1 | 888 |
void init_start(StartNode* s); |
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
889 |
Node* immutable_memory(); |
1 | 890 |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
891 |
Node* recent_alloc_ctl() const { return _recent_alloc_ctl; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
892 |
Node* recent_alloc_obj() const { return _recent_alloc_obj; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
893 |
void set_recent_alloc(Node* ctl, Node* obj) { |
1 | 894 |
_recent_alloc_ctl = ctl; |
895 |
_recent_alloc_obj = obj; |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
896 |
} |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
897 |
void record_dead_node(uint idx) { if (_dead_node_list.test_set(idx)) return; |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
898 |
_dead_node_count++; |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
899 |
} |
15875
638b3e8fbe5e
8009472: Print additional information for 8004640 failure
kvn
parents:
15871
diff
changeset
|
900 |
bool is_dead_node(uint idx) { return _dead_node_list.test(idx) != 0; } |
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
901 |
uint dead_node_count() { return _dead_node_count; } |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
902 |
void reset_dead_node_list() { _dead_node_list.Reset(); |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
903 |
_dead_node_count = 0; |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
904 |
} |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
905 |
uint live_nodes() const { |
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
906 |
int val = _unique - _dead_node_count; |
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32582
diff
changeset
|
907 |
assert (val >= 0, "number of tracked dead nodes %d more than created nodes %d", _unique, _dead_node_count); |
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
908 |
return (uint) val; |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
909 |
} |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
910 |
#ifdef ASSERT |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
911 |
uint count_live_nodes_by_graph_walk(); |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
912 |
void print_missing_nodes(); |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
913 |
#endif |
1 | 914 |
|
25913
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25494
diff
changeset
|
915 |
// Record modified nodes to check that they are put on IGVN worklist |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25494
diff
changeset
|
916 |
void record_modified_node(Node* n) NOT_DEBUG_RETURN; |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25494
diff
changeset
|
917 |
void remove_modified_node(Node* n) NOT_DEBUG_RETURN; |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25494
diff
changeset
|
918 |
DEBUG_ONLY( Unique_Node_List* modified_nodes() const { return _modified_nodes; } ) |
81dbc151e91c
8040213: C2 does not put all modified nodes on IGVN worklist
thartmann
parents:
25494
diff
changeset
|
919 |
|
7433 | 920 |
// Constant table |
921 |
ConstantTable& constant_table() { return _constant_table; } |
|
922 |
||
923 |
MachConstantBaseNode* mach_constant_base_node(); |
|
924 |
bool has_mach_constant_base_node() const { return _mach_constant_base_node != NULL; } |
|
22865
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22858
diff
changeset
|
925 |
// Generated by adlc, true if CallNode requires MachConstantBase. |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22858
diff
changeset
|
926 |
bool needs_clone_jvms(); |
7433 | 927 |
|
1 | 928 |
// Handy undefined Node |
929 |
Node* top() const { return _top; } |
|
930 |
||
931 |
// these are used by guys who need to know about creation and transformation of top: |
|
932 |
Node* cached_top_node() { return _top; } |
|
933 |
void set_cached_top_node(Node* tn); |
|
934 |
||
935 |
GrowableArray<Node_Notes*>* node_note_array() const { return _node_note_array; } |
|
936 |
void set_node_note_array(GrowableArray<Node_Notes*>* arr) { _node_note_array = arr; } |
|
937 |
Node_Notes* default_node_notes() const { return _default_node_notes; } |
|
938 |
void set_default_node_notes(Node_Notes* n) { _default_node_notes = n; } |
|
939 |
||
940 |
Node_Notes* node_notes_at(int idx) { |
|
941 |
return locate_node_notes(_node_note_array, idx, false); |
|
942 |
} |
|
943 |
inline bool set_node_notes_at(int idx, Node_Notes* value); |
|
944 |
||
945 |
// Copy notes from source to dest, if they exist. |
|
946 |
// Overwrite dest only if source provides something. |
|
947 |
// Return true if information was moved. |
|
948 |
bool copy_node_notes_to(Node* dest, Node* source); |
|
949 |
||
950 |
// Workhorse function to sort out the blocked Node_Notes array: |
|
951 |
inline Node_Notes* locate_node_notes(GrowableArray<Node_Notes*>* arr, |
|
952 |
int idx, bool can_grow = false); |
|
953 |
||
954 |
void grow_node_notes(GrowableArray<Node_Notes*>* arr, int grow_by); |
|
955 |
||
956 |
// Type management |
|
957 |
Arena* type_arena() { return _type_arena; } |
|
958 |
Dict* type_dict() { return _type_dict; } |
|
959 |
void* type_hwm() { return _type_hwm; } |
|
960 |
size_t type_last_size() { return _type_last_size; } |
|
961 |
int num_alias_types() { return _num_alias_types; } |
|
962 |
||
963 |
void init_type_arena() { _type_arena = &_Compile_types; } |
|
964 |
void set_type_arena(Arena* a) { _type_arena = a; } |
|
965 |
void set_type_dict(Dict* d) { _type_dict = d; } |
|
966 |
void set_type_hwm(void* p) { _type_hwm = p; } |
|
967 |
void set_type_last_size(size_t sz) { _type_last_size = sz; } |
|
968 |
||
969 |
const TypeFunc* last_tf(ciMethod* m) { |
|
970 |
return (m == _last_tf_m) ? _last_tf : NULL; |
|
971 |
} |
|
972 |
void set_last_tf(ciMethod* m, const TypeFunc* tf) { |
|
973 |
assert(m != NULL || tf == NULL, ""); |
|
974 |
_last_tf_m = m; |
|
975 |
_last_tf = tf; |
|
976 |
} |
|
977 |
||
978 |
AliasType* alias_type(int idx) { assert(idx < num_alias_types(), "oob"); return _alias_types[idx]; } |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
7433
diff
changeset
|
979 |
AliasType* alias_type(const TypePtr* adr_type, ciField* field = NULL) { return find_alias_type(adr_type, false, field); } |
1 | 980 |
bool have_alias_type(const TypePtr* adr_type); |
981 |
AliasType* alias_type(ciField* field); |
|
982 |
||
983 |
int get_alias_index(const TypePtr* at) { return alias_type(at)->index(); } |
|
984 |
const TypePtr* get_adr_type(uint aidx) { return alias_type(aidx)->adr_type(); } |
|
985 |
int get_general_index(uint aidx) { return alias_type(aidx)->general_index(); } |
|
986 |
||
987 |
// Building nodes |
|
988 |
void rethrow_exceptions(JVMState* jvms); |
|
989 |
void return_values(JVMState* jvms); |
|
990 |
JVMState* build_start_state(StartNode* start, const TypeFunc* tf); |
|
991 |
||
992 |
// Decide how to build a call. |
|
993 |
// The profile factor is a discount to apply to this site's interp. profile. |
|
21089
e1986ff6fe2e
8024069: replace_in_map() should operate on parent maps
roland
parents:
20073
diff
changeset
|
994 |
CallGenerator* call_generator(ciMethod* call_method, int vtable_index, bool call_does_dispatch, |
21099 | 995 |
JVMState* jvms, bool allow_inline, float profile_factor, ciKlass* speculative_receiver_type = NULL, |
996 |
bool allow_intrinsics = true, bool delayed_forbidden = false); |
|
17383 | 997 |
bool should_delay_inlining(ciMethod* call_method, JVMState* jvms) { |
998 |
return should_delay_string_inlining(call_method, jvms) || |
|
999 |
should_delay_boxing_inlining(call_method, jvms); |
|
1000 |
} |
|
1001 |
bool should_delay_string_inlining(ciMethod* call_method, JVMState* jvms); |
|
1002 |
bool should_delay_boxing_inlining(ciMethod* call_method, JVMState* jvms); |
|
1 | 1003 |
|
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
1004 |
// Helper functions to identify inlining potential at call-site |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
1005 |
ciMethod* optimize_virtual_call(ciMethod* caller, int bci, ciInstanceKlass* klass, |
25494
c18718ecf276
8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents:
24946
diff
changeset
|
1006 |
ciKlass* holder, ciMethod* callee, |
c18718ecf276
8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents:
24946
diff
changeset
|
1007 |
const TypeOopPtr* receiver_type, bool is_virtual, |
30223
82ab7b6b4927
8062280: C2: inlining failure due to access checks being too strict
vlivanov
parents:
29337
diff
changeset
|
1008 |
bool &call_does_dispatch, int &vtable_index, |
82ab7b6b4927
8062280: C2: inlining failure due to access checks being too strict
vlivanov
parents:
29337
diff
changeset
|
1009 |
bool check_access = true); |
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
1010 |
ciMethod* optimize_inlining(ciMethod* caller, int bci, ciInstanceKlass* klass, |
30223
82ab7b6b4927
8062280: C2: inlining failure due to access checks being too strict
vlivanov
parents:
29337
diff
changeset
|
1011 |
ciMethod* callee, const TypeOopPtr* receiver_type, |
82ab7b6b4927
8062280: C2: inlining failure due to access checks being too strict
vlivanov
parents:
29337
diff
changeset
|
1012 |
bool check_access = true); |
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
1013 |
|
1 | 1014 |
// Report if there were too many traps at a current method and bci. |
1015 |
// Report if a trap was recorded, and/or PerMethodTrapLimit was exceeded. |
|
1016 |
// If there is no MDO at all, report no trap unless told to assume it. |
|
1017 |
bool too_many_traps(ciMethod* method, int bci, Deoptimization::DeoptReason reason); |
|
1018 |
// This version, unspecific to a particular bci, asks if |
|
1019 |
// PerMethodTrapLimit was exceeded for all inlined methods seen so far. |
|
1020 |
bool too_many_traps(Deoptimization::DeoptReason reason, |
|
1021 |
// Privately used parameter for logging: |
|
1022 |
ciMethodData* logmd = NULL); |
|
1023 |
// Report if there were too many recompiles at a method and bci. |
|
1024 |
bool too_many_recompiles(ciMethod* method, int bci, Deoptimization::DeoptReason reason); |
|
22856
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22854
diff
changeset
|
1025 |
// Return a bitset with the reasons where deoptimization is allowed, |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22854
diff
changeset
|
1026 |
// i.e., where there were not too many uncommon traps. |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22854
diff
changeset
|
1027 |
int _allowed_reasons; |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22854
diff
changeset
|
1028 |
int allowed_deopt_reasons() { return _allowed_reasons; } |
03ad2cf18166
8029015: PPC64 (part 216): opto: trap based null and range checks
goetz
parents:
22854
diff
changeset
|
1029 |
void set_allowed_deopt_reasons(); |
1 | 1030 |
|
1031 |
// Parsing, optimization |
|
1032 |
PhaseGVN* initial_gvn() { return _initial_gvn; } |
|
1033 |
Unique_Node_List* for_igvn() { return _for_igvn; } |
|
1034 |
inline void record_for_igvn(Node* n); // Body is after class Unique_Node_List. |
|
1035 |
void set_initial_gvn(PhaseGVN *gvn) { _initial_gvn = gvn; } |
|
1036 |
void set_for_igvn(Unique_Node_List *for_igvn) { _for_igvn = for_igvn; } |
|
1037 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
1038 |
// Replace n by nn using initial_gvn, calling hash_delete and |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
1039 |
// record_for_igvn as needed. |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
1040 |
void gvn_replace_by(Node* n, Node* nn); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
1041 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
1042 |
|
1 | 1043 |
void identify_useful_nodes(Unique_Node_List &useful); |
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
1044 |
void update_dead_node_list(Unique_Node_List &useful); |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
1045 |
void remove_useless_nodes (Unique_Node_List &useful); |
1 | 1046 |
|
1047 |
WarmCallInfo* warm_calls() const { return _warm_calls; } |
|
1048 |
void set_warm_calls(WarmCallInfo* l) { _warm_calls = l; } |
|
1049 |
WarmCallInfo* pop_warm_call(); |
|
1050 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
1051 |
// Record this CallGenerator for inlining at the end of parsing. |
15113 | 1052 |
void add_late_inline(CallGenerator* cg) { |
1053 |
_late_inlines.insert_before(_late_inlines_pos, cg); |
|
1054 |
_late_inlines_pos++; |
|
1055 |
} |
|
1056 |
||
1057 |
void prepend_late_inline(CallGenerator* cg) { |
|
1058 |
_late_inlines.insert_before(0, cg); |
|
1059 |
} |
|
1060 |
||
1061 |
void add_string_late_inline(CallGenerator* cg) { |
|
1062 |
_string_late_inlines.push(cg); |
|
1063 |
} |
|
1064 |
||
17383 | 1065 |
void add_boxing_late_inline(CallGenerator* cg) { |
1066 |
_boxing_late_inlines.push(cg); |
|
1067 |
} |
|
1068 |
||
15113 | 1069 |
void remove_useless_late_inlines(GrowableArray<CallGenerator*>* inlines, Unique_Node_List &useful); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
3795
diff
changeset
|
1070 |
|
24673
2ec56802b829
8043638: Multiple compilation attempts break LogCompulation, lead to confusing PrintInlining output
roland
parents:
24446
diff
changeset
|
1071 |
void process_print_inlining(); |
2ec56802b829
8043638: Multiple compilation attempts break LogCompulation, lead to confusing PrintInlining output
roland
parents:
24446
diff
changeset
|
1072 |
void dump_print_inlining(); |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14623
diff
changeset
|
1073 |
|
15113 | 1074 |
bool over_inlining_cutoff() const { |
1075 |
if (!inlining_incrementally()) { |
|
1076 |
return unique() > (uint)NodeCountInliningCutoff; |
|
1077 |
} else { |
|
1078 |
return live_nodes() > (uint)LiveNodeCountInliningCutoff; |
|
1079 |
} |
|
1080 |
} |
|
1081 |
||
1082 |
void inc_number_of_mh_late_inlines() { _number_of_mh_late_inlines++; } |
|
1083 |
void dec_number_of_mh_late_inlines() { assert(_number_of_mh_late_inlines > 0, "_number_of_mh_late_inlines < 0 !"); _number_of_mh_late_inlines--; } |
|
1084 |
bool has_mh_late_inlines() const { return _number_of_mh_late_inlines > 0; } |
|
1085 |
||
1086 |
void inline_incrementally_one(PhaseIterGVN& igvn); |
|
1087 |
void inline_incrementally(PhaseIterGVN& igvn); |
|
1088 |
void inline_string_calls(bool parse_time); |
|
17383 | 1089 |
void inline_boxing_calls(PhaseIterGVN& igvn); |
52711 | 1090 |
bool optimize_loops(PhaseIterGVN& igvn, LoopOptsMode mode); |
15113 | 1091 |
|
1 | 1092 |
// Matching, CFG layout, allocation, code generation |
1093 |
PhaseCFG* cfg() { return _cfg; } |
|
1094 |
bool select_24_bit_instr() const { return _select_24_bit_instr; } |
|
1095 |
bool in_24_bit_fp_mode() const { return _in_24_bit_fp_mode; } |
|
3276
bda7d4532054
6860599: nodes limit could be reached during Output phase
kvn
parents:
1498
diff
changeset
|
1096 |
bool has_java_calls() const { return _java_calls > 0; } |
bda7d4532054
6860599: nodes limit could be reached during Output phase
kvn
parents:
1498
diff
changeset
|
1097 |
int java_calls() const { return _java_calls; } |
bda7d4532054
6860599: nodes limit could be reached during Output phase
kvn
parents:
1498
diff
changeset
|
1098 |
int inner_loops() const { return _inner_loops; } |
1 | 1099 |
Matcher* matcher() { return _matcher; } |
1100 |
PhaseRegAlloc* regalloc() { return _regalloc; } |
|
1101 |
int frame_slots() const { return _frame_slots; } |
|
1102 |
int frame_size_in_words() const; // frame_slots in units of the polymorphic 'words' |
|
24018
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
1103 |
int frame_size_in_bytes() const { return _frame_slots << LogBytesPerInt; } |
1 | 1104 |
RegMask& FIRST_STACK_mask() { return _FIRST_STACK_mask; } |
1105 |
Arena* indexSet_arena() { return _indexSet_arena; } |
|
1106 |
void* indexSet_free_block_list() { return _indexSet_free_block_list; } |
|
1107 |
uint node_bundling_limit() { return _node_bundling_limit; } |
|
1108 |
Bundle* node_bundling_base() { return _node_bundling_base; } |
|
1109 |
void set_node_bundling_limit(uint n) { _node_bundling_limit = n; } |
|
1110 |
void set_node_bundling_base(Bundle* b) { _node_bundling_base = b; } |
|
1111 |
bool starts_bundle(const Node *n) const; |
|
1112 |
bool need_stack_bang(int frame_size_in_bytes) const; |
|
1113 |
bool need_register_stack_bang() const; |
|
1114 |
||
24018
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
1115 |
void update_interpreter_frame_size(int size) { |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
1116 |
if (_interpreter_frame_size < size) { |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
1117 |
_interpreter_frame_size = size; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
1118 |
} |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
1119 |
} |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
1120 |
int bang_size_in_bytes() const; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
24002
diff
changeset
|
1121 |
|
1 | 1122 |
void set_matcher(Matcher* m) { _matcher = m; } |
1123 |
//void set_regalloc(PhaseRegAlloc* ra) { _regalloc = ra; } |
|
1124 |
void set_indexSet_arena(Arena* a) { _indexSet_arena = a; } |
|
1125 |
void set_indexSet_free_block_list(void* p) { _indexSet_free_block_list = p; } |
|
1126 |
||
1127 |
// Remember if this compilation changes hardware mode to 24-bit precision |
|
1128 |
void set_24_bit_selection_and_mode(bool selection, bool mode) { |
|
1129 |
_select_24_bit_instr = selection; |
|
1130 |
_in_24_bit_fp_mode = mode; |
|
1131 |
} |
|
1132 |
||
3276
bda7d4532054
6860599: nodes limit could be reached during Output phase
kvn
parents:
1498
diff
changeset
|
1133 |
void set_java_calls(int z) { _java_calls = z; } |
bda7d4532054
6860599: nodes limit could be reached during Output phase
kvn
parents:
1498
diff
changeset
|
1134 |
void set_inner_loops(int z) { _inner_loops = z; } |
1 | 1135 |
|
1136 |
// Instruction bits passed off to the VM |
|
1137 |
int code_size() { return _method_size; } |
|
1138 |
CodeBuffer* code_buffer() { return &_code_buffer; } |
|
1139 |
int first_block_size() { return _first_block_size; } |
|
38228 | 1140 |
void set_frame_complete(int off) { if (!in_scratch_emit_size()) { _code_offsets.set_value(CodeOffsets::Frame_Complete, off); } } |
1 | 1141 |
ExceptionHandlerTable* handler_table() { return &_handler_table; } |
1142 |
ImplicitExceptionTable* inc_table() { return &_inc_table; } |
|
1143 |
OopMapSet* oop_map_set() { return _oop_map_set; } |
|
1144 |
DebugInformationRecorder* debug_info() { return env()->debug_info(); } |
|
1145 |
Dependencies* dependencies() { return env()->dependencies(); } |
|
1146 |
static int CompiledZap_count() { return _CompiledZap_count; } |
|
1147 |
BufferBlob* scratch_buffer_blob() { return _scratch_buffer_blob; } |
|
7433 | 1148 |
void init_scratch_buffer_blob(int const_size); |
1149 |
void clear_scratch_buffer_blob(); |
|
1 | 1150 |
void set_scratch_buffer_blob(BufferBlob* b) { _scratch_buffer_blob = b; } |
1151 |
relocInfo* scratch_locs_memory() { return _scratch_locs_memory; } |
|
1152 |
void set_scratch_locs_memory(relocInfo* b) { _scratch_locs_memory = b; } |
|
1153 |
||
1154 |
// emit to scratch blob, report resulting size |
|
1155 |
uint scratch_emit_size(const Node* n); |
|
7433 | 1156 |
void set_in_scratch_emit_size(bool x) { _in_scratch_emit_size = x; } |
1157 |
bool in_scratch_emit_size() const { return _in_scratch_emit_size; } |
|
1 | 1158 |
|
1159 |
enum ScratchBufferBlob { |
|
36560 | 1160 |
#if defined(PPC64) |
1161 |
MAX_inst_size = 2048, |
|
1162 |
#else |
|
1 | 1163 |
MAX_inst_size = 1024, |
36560 | 1164 |
#endif |
1 | 1165 |
MAX_locs_size = 128, // number of relocInfo elements |
1166 |
MAX_const_size = 128, |
|
1167 |
MAX_stubs_size = 128 |
|
1168 |
}; |
|
1169 |
||
1170 |
// Major entry point. Given a Scope, compile the associated method. |
|
1171 |
// For normal compilations, entry_bci is InvocationEntryBci. For on stack |
|
1172 |
// replacement, entry_bci indicates the bytecode for which to compile a |
|
1173 |
// continuation. |
|
1174 |
Compile(ciEnv* ci_env, C2Compiler* compiler, ciMethod* target, |
|
17383 | 1175 |
int entry_bci, bool subsume_loads, bool do_escape_analysis, |
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
1176 |
bool eliminate_boxing, DirectiveSet* directive); |
1 | 1177 |
|
1178 |
// Second major entry point. From the TypeFunc signature, generate code |
|
1179 |
// to pass arguments from the Java calling convention to the C calling |
|
1180 |
// convention. |
|
1181 |
Compile(ciEnv* ci_env, const TypeFunc *(*gen)(), |
|
1182 |
address stub_function, const char *stub_name, |
|
1183 |
int is_fancy_jump, bool pass_tls, |
|
33451
0712796e4039
8137167: JEP165: Compiler Control: Implementation task
neliasso
parents:
33129
diff
changeset
|
1184 |
bool save_arg_registers, bool return_pc, DirectiveSet* directive); |
1 | 1185 |
|
1186 |
// From the TypeFunc signature, generate code to pass arguments |
|
1187 |
// from Compiled calling convention to Interpreter's calling convention |
|
1188 |
void Generate_Compiled_To_Interpreter_Graph(const TypeFunc *tf, address interpreter_entry); |
|
1189 |
||
1190 |
// From the TypeFunc signature, generate code to pass arguments |
|
1191 |
// from Interpreter's calling convention to Compiler's calling convention |
|
1192 |
void Generate_Interpreter_To_Compiled_Graph(const TypeFunc *tf); |
|
1193 |
||
1194 |
// Are we compiling a method? |
|
1195 |
bool has_method() { return method() != NULL; } |
|
1196 |
||
1197 |
// Maybe print some information about this compile. |
|
1198 |
void print_compile_messages(); |
|
1199 |
||
1200 |
// Final graph reshaping, a post-pass after the regular optimizer is done. |
|
1201 |
bool final_graph_reshaping(); |
|
1202 |
||
1203 |
// returns true if adr is completely contained in the given alias category |
|
1204 |
bool must_alias(const TypePtr* adr, int alias_idx); |
|
1205 |
||
1206 |
// returns true if adr overlaps with the given alias category |
|
1207 |
bool can_alias(const TypePtr* adr, int alias_idx); |
|
1208 |
||
1209 |
// Driver for converting compiler's IR into machine code bits |
|
1210 |
void Output(); |
|
1211 |
||
1212 |
// Accessors for node bundling info. |
|
1213 |
Bundle* node_bundling(const Node *n); |
|
1214 |
bool valid_bundle_info(const Node *n); |
|
1215 |
||
1216 |
// Schedule and Bundle the instructions |
|
1217 |
void ScheduleAndBundle(); |
|
1218 |
||
1219 |
// Build OopMaps for each GC point |
|
1220 |
void BuildOopMaps(); |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1221 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1222 |
// Append debug info for the node "local" at safepoint node "sfpt" to the |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1223 |
// "array", May also consult and add to "objs", which describes the |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1224 |
// scalar-replaced objects. |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1225 |
void FillLocArray( int idx, MachSafePointNode* sfpt, |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1226 |
Node *local, GrowableArray<ScopeValue*> *array, |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1227 |
GrowableArray<ScopeValue*> *objs ); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1228 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1229 |
// If "objs" contains an ObjectValue whose id is "id", returns it, else NULL. |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1230 |
static ObjectValue* sv_for_node_id(GrowableArray<ScopeValue*> *objs, int id); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1231 |
// Requres that "objs" does not contains an ObjectValue whose id matches |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1232 |
// that of "sv. Appends "sv". |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1233 |
static void set_sv_for_object_node(GrowableArray<ScopeValue*> *objs, |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
211
diff
changeset
|
1234 |
ObjectValue* sv ); |
1 | 1235 |
|
1236 |
// Process an OopMap Element while emitting nodes |
|
1237 |
void Process_OopMap_Node(MachNode *mach, int code_offset); |
|
1238 |
||
10264 | 1239 |
// Initialize code buffer |
1240 |
CodeBuffer* init_buffer(uint* blk_starts); |
|
1241 |
||
1 | 1242 |
// Write out basic block data to code buffer |
10264 | 1243 |
void fill_buffer(CodeBuffer* cb, uint* blk_starts); |
1 | 1244 |
|
1245 |
// Determine which variable sized branches can be shortened |
|
10264 | 1246 |
void shorten_branches(uint* blk_starts, int& code_size, int& reloc_size, int& stub_size); |
1247 |
||
1 | 1248 |
// Compute the size of first NumberOfLoopInstrToAlign instructions |
1249 |
// at the head of a loop. |
|
1250 |
void compute_loop_first_inst_sizes(); |
|
1251 |
||
1252 |
// Compute the information for the exception tables |
|
1253 |
void FillExceptionTables(uint cnt, uint *call_returns, uint *inct_starts, Label *blk_labels); |
|
1254 |
||
1255 |
// Stack slots that may be unused by the calling convention but must |
|
1256 |
// otherwise be preserved. On Intel this includes the return address. |
|
1257 |
// On PowerPC it includes the 4 words holding the old TOC & LR glue. |
|
1258 |
uint in_preserve_stack_slots(); |
|
1259 |
||
1260 |
// "Top of Stack" slots that may be unused by the calling convention but must |
|
1261 |
// otherwise be preserved. |
|
1262 |
// On Intel these are not necessary and the value can be zero. |
|
1263 |
// On Sparc this describes the words reserved for storing a register window |
|
1264 |
// when an interrupt occurs. |
|
1265 |
static uint out_preserve_stack_slots(); |
|
1266 |
||
1267 |
// Number of outgoing stack slots killed above the out_preserve_stack_slots |
|
1268 |
// for calls to C. Supports the var-args backing area for register parms. |
|
1269 |
uint varargs_C_out_slots_killed() const; |
|
1270 |
||
1271 |
// Number of Stack Slots consumed by a synchronization entry |
|
1272 |
int sync_stack_slots() const; |
|
1273 |
||
1274 |
// Compute the name of old_SP. See <arch>.ad for frame layout. |
|
1275 |
OptoReg::Name compute_old_SP(); |
|
1276 |
||
1277 |
private: |
|
1278 |
// Phase control: |
|
1279 |
void Init(int aliaslevel); // Prepare for a single compilation |
|
1280 |
int Inline_Warm(); // Find more inlining work. |
|
1281 |
void Finish_Warm(); // Give up on further inlines. |
|
1282 |
void Optimize(); // Given a graph, optimize it |
|
1283 |
void Code_Gen(); // Generate code from a graph |
|
1284 |
||
1285 |
// Management of the AliasType table. |
|
1286 |
void grow_alias_types(); |
|
1287 |
AliasCacheEntry* probe_alias_cache(const TypePtr* adr_type); |
|
1288 |
const TypePtr *flatten_alias_type(const TypePtr* adr_type) const; |
|
8725
8c1e3dd5fe1b
7017732: move static fields into Class to prepare for perm gen removal
never
parents:
7433
diff
changeset
|
1289 |
AliasType* find_alias_type(const TypePtr* adr_type, bool no_create, ciField* field); |
1 | 1290 |
|
1291 |
void verify_top(Node*) const PRODUCT_RETURN; |
|
1292 |
||
1293 |
// Intrinsic setup. |
|
1294 |
void register_library_intrinsics(); // initializer |
|
1295 |
CallGenerator* make_vm_intrinsic(ciMethod* m, bool is_virtual); // constructor |
|
36315
150a415079ae
8007986: GrowableArray should implement binary search
roland
parents:
35574
diff
changeset
|
1296 |
int intrinsic_insertion_index(ciMethod* m, bool is_virtual, bool& found); // helper |
1 | 1297 |
CallGenerator* find_intrinsic(ciMethod* m, bool is_virtual); // query fn |
1298 |
void register_intrinsic(CallGenerator* cg); // update fn |
|
1299 |
||
1300 |
#ifndef PRODUCT |
|
1301 |
static juint _intrinsic_hist_count[vmIntrinsics::ID_LIMIT]; |
|
1302 |
static jubyte _intrinsic_hist_flags[vmIntrinsics::ID_LIMIT]; |
|
1303 |
#endif |
|
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
1304 |
// Function calls made by the public function final_graph_reshaping. |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
1305 |
// No need to be made public as they are not called elsewhere. |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
1306 |
void final_graph_reshaping_impl( Node *n, Final_Reshape_Counts &frc); |
52471
04d7e790aa2e
8213489: GC/C2 abstraction for Compile::final_graph_reshaping()
rkennke
parents:
52426
diff
changeset
|
1307 |
void final_graph_reshaping_main_switch(Node* n, Final_Reshape_Counts& frc, uint nop); |
14623
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
1308 |
void final_graph_reshaping_walk( Node_Stack &nstack, Node *root, Final_Reshape_Counts &frc ); |
70c4c1be0a14
7092905: C2: Keep track of the number of dead nodes
bharadwaj
parents:
14126
diff
changeset
|
1309 |
void eliminate_redundant_card_marks(Node* n); |
1 | 1310 |
|
1311 |
public: |
|
1312 |
||
1313 |
// Note: Histogram array size is about 1 Kb. |
|
1314 |
enum { // flag bits: |
|
1315 |
_intrinsic_worked = 1, // succeeded at least once |
|
1316 |
_intrinsic_failed = 2, // tried it but it failed |
|
1317 |
_intrinsic_disabled = 4, // was requested but disabled (e.g., -XX:-InlineUnsafeOps) |
|
1318 |
_intrinsic_virtual = 8, // was seen in the virtual form (rare) |
|
1319 |
_intrinsic_both = 16 // was seen in the non-virtual form (usual) |
|
1320 |
}; |
|
1321 |
// Update histogram. Return boolean if this is a first-time occurrence. |
|
1322 |
static bool gather_intrinsic_statistics(vmIntrinsics::ID id, |
|
1323 |
bool is_virtual, int flags) PRODUCT_RETURN0; |
|
1324 |
static void print_intrinsic_statistics() PRODUCT_RETURN; |
|
1325 |
||
1326 |
// Graph verification code |
|
1327 |
// Walk the node list, verifying that there is a one-to-one |
|
1328 |
// correspondence between Use-Def edges and Def-Use edges |
|
1329 |
// The option no_dead_code enables stronger checks that the |
|
1330 |
// graph is strongly connected from root in both directions. |
|
1331 |
void verify_graph_edges(bool no_dead_code = false) PRODUCT_RETURN; |
|
1332 |
||
1333 |
// End-of-run dumps. |
|
1334 |
static void print_statistics() PRODUCT_RETURN; |
|
1335 |
||
1336 |
// Dump formatted assembly |
|
1337 |
void dump_asm(int *pcs = NULL, uint pc_limit = 0) PRODUCT_RETURN; |
|
1338 |
void dump_pc(int *pcs, int pc_limit, Node *n); |
|
1339 |
||
1340 |
// Verify ADLC assumptions during startup |
|
1341 |
static void adlc_verification() PRODUCT_RETURN; |
|
1342 |
||
1343 |
// Definitions of pd methods |
|
1344 |
static void pd_compiler2_init(); |
|
15871
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
1345 |
|
26166 | 1346 |
// Static parse-time type checking logic for gen_subtype_check: |
1347 |
enum { SSC_always_false, SSC_always_true, SSC_easy_test, SSC_full_test }; |
|
1348 |
int static_subtype_check(ciKlass* superk, ciKlass* subk); |
|
1349 |
||
35574
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
1350 |
static Node* conv_I2X_index(PhaseGVN* phase, Node* offset, const TypeInt* sizetype, |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
1351 |
// Optional control dependency (for example, on range check) |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
1352 |
Node* ctrl = NULL); |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
1353 |
|
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
1354 |
// Convert integer value to a narrowed long type dependent on ctrl (for example, a range check) |
2b25eb88c8d6
6675699: need comprehensive fix for unconstrained ConvI2L with narrowed type
thartmann
parents:
35071
diff
changeset
|
1355 |
static Node* constrained_convI2L(PhaseGVN* phase, Node* value, const TypeInt* itype, Node* ctrl); |
29337
ef2be52deeaf
6912521: System.arraycopy works slower than the simple loop for little lengths
roland
parents:
27707
diff
changeset
|
1356 |
|
15871
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
1357 |
// Auxiliary method for randomized fuzzing/stressing |
b04dd94da4e6
8009120: Fuzz instruction scheduling in HotSpot compilers
shade
parents:
15618
diff
changeset
|
1358 |
static bool randomized_select(int count); |
30593 | 1359 |
|
1360 |
// supporting clone_map |
|
1361 |
CloneMap& clone_map(); |
|
1362 |
void set_clone_map(Dict* d); |
|
1 | 1363 |
}; |
7397 | 1364 |
|
1365 |
#endif // SHARE_VM_OPTO_COMPILE_HPP |