author | iveresov |
Thu, 22 Jan 2015 11:25:23 -0800 | |
changeset 28723 | 0a36120cb225 |
parent 28396 | 7fe4347e6792 |
child 28930 | dcf13bceeafd |
permissions | -rw-r--r-- |
1 | 1 |
/* |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
2 |
* Copyright (c) 1997, 2014, 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:
4450
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4450
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:
4450
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "ci/bcEscapeAnalyzer.hpp" |
|
27 |
#include "compiler/oopMap.hpp" |
|
15113 | 28 |
#include "opto/callGenerator.hpp" |
7397 | 29 |
#include "opto/callnode.hpp" |
23528 | 30 |
#include "opto/castnode.hpp" |
28396
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
31 |
#include "opto/convertnode.hpp" |
7397 | 32 |
#include "opto/escape.hpp" |
33 |
#include "opto/locknode.hpp" |
|
34 |
#include "opto/machnode.hpp" |
|
35 |
#include "opto/matcher.hpp" |
|
36 |
#include "opto/parse.hpp" |
|
37 |
#include "opto/regalloc.hpp" |
|
38 |
#include "opto/regmask.hpp" |
|
39 |
#include "opto/rootnode.hpp" |
|
40 |
#include "opto/runtime.hpp" |
|
41 |
||
1 | 42 |
// Portions of code courtesy of Clifford Click |
43 |
||
44 |
// Optimization - Graph Style |
|
45 |
||
46 |
//============================================================================= |
|
47 |
uint StartNode::size_of() const { return sizeof(*this); } |
|
48 |
uint StartNode::cmp( const Node &n ) const |
|
49 |
{ return _domain == ((StartNode&)n)._domain; } |
|
50 |
const Type *StartNode::bottom_type() const { return _domain; } |
|
51 |
const Type *StartNode::Value(PhaseTransform *phase) const { return _domain; } |
|
52 |
#ifndef PRODUCT |
|
53 |
void StartNode::dump_spec(outputStream *st) const { st->print(" #"); _domain->dump_on(st);} |
|
54 |
#endif |
|
55 |
||
56 |
//------------------------------Ideal------------------------------------------ |
|
57 |
Node *StartNode::Ideal(PhaseGVN *phase, bool can_reshape){ |
|
58 |
return remove_dead_region(phase, can_reshape) ? this : NULL; |
|
59 |
} |
|
60 |
||
61 |
//------------------------------calling_convention----------------------------- |
|
62 |
void StartNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const { |
|
63 |
Matcher::calling_convention( sig_bt, parm_regs, argcnt, false ); |
|
64 |
} |
|
65 |
||
66 |
//------------------------------Registers-------------------------------------- |
|
67 |
const RegMask &StartNode::in_RegMask(uint) const { |
|
68 |
return RegMask::Empty; |
|
69 |
} |
|
70 |
||
71 |
//------------------------------match------------------------------------------ |
|
72 |
// Construct projections for incoming parameters, and their RegMask info |
|
73 |
Node *StartNode::match( const ProjNode *proj, const Matcher *match ) { |
|
74 |
switch (proj->_con) { |
|
75 |
case TypeFunc::Control: |
|
76 |
case TypeFunc::I_O: |
|
77 |
case TypeFunc::Memory: |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
78 |
return new MachProjNode(this,proj->_con,RegMask::Empty,MachProjNode::unmatched_proj); |
1 | 79 |
case TypeFunc::FramePtr: |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
80 |
return new MachProjNode(this,proj->_con,Matcher::c_frame_ptr_mask, Op_RegP); |
1 | 81 |
case TypeFunc::ReturnAdr: |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
82 |
return new MachProjNode(this,proj->_con,match->_return_addr_mask,Op_RegP); |
1 | 83 |
case TypeFunc::Parms: |
84 |
default: { |
|
85 |
uint parm_num = proj->_con - TypeFunc::Parms; |
|
86 |
const Type *t = _domain->field_at(proj->_con); |
|
87 |
if (t->base() == Type::Half) // 2nd half of Longs and Doubles |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
88 |
return new ConNode(Type::TOP); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
89 |
uint ideal_reg = t->ideal_reg(); |
1 | 90 |
RegMask &rm = match->_calling_convention_mask[parm_num]; |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
91 |
return new MachProjNode(this,proj->_con,rm,ideal_reg); |
1 | 92 |
} |
93 |
} |
|
94 |
return NULL; |
|
95 |
} |
|
96 |
||
97 |
//------------------------------StartOSRNode---------------------------------- |
|
98 |
// The method start node for an on stack replacement adapter |
|
99 |
||
100 |
//------------------------------osr_domain----------------------------- |
|
101 |
const TypeTuple *StartOSRNode::osr_domain() { |
|
102 |
const Type **fields = TypeTuple::fields(2); |
|
103 |
fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // address of osr buffer |
|
104 |
||
105 |
return TypeTuple::make(TypeFunc::Parms+1, fields); |
|
106 |
} |
|
107 |
||
108 |
//============================================================================= |
|
109 |
const char * const ParmNode::names[TypeFunc::Parms+1] = { |
|
110 |
"Control", "I_O", "Memory", "FramePtr", "ReturnAdr", "Parms" |
|
111 |
}; |
|
112 |
||
113 |
#ifndef PRODUCT |
|
114 |
void ParmNode::dump_spec(outputStream *st) const { |
|
115 |
if( _con < TypeFunc::Parms ) { |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
116 |
st->print("%s", names[_con]); |
1 | 117 |
} else { |
118 |
st->print("Parm%d: ",_con-TypeFunc::Parms); |
|
119 |
// Verbose and WizardMode dump bottom_type for all nodes |
|
120 |
if( !Verbose && !WizardMode ) bottom_type()->dump_on(st); |
|
121 |
} |
|
122 |
} |
|
123 |
#endif |
|
124 |
||
125 |
uint ParmNode::ideal_reg() const { |
|
126 |
switch( _con ) { |
|
127 |
case TypeFunc::Control : // fall through |
|
128 |
case TypeFunc::I_O : // fall through |
|
129 |
case TypeFunc::Memory : return 0; |
|
130 |
case TypeFunc::FramePtr : // fall through |
|
131 |
case TypeFunc::ReturnAdr: return Op_RegP; |
|
132 |
default : assert( _con > TypeFunc::Parms, "" ); |
|
133 |
// fall through |
|
134 |
case TypeFunc::Parms : { |
|
135 |
// Type of argument being passed |
|
136 |
const Type *t = in(0)->as_Start()->_domain->field_at(_con); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
137 |
return t->ideal_reg(); |
1 | 138 |
} |
139 |
} |
|
140 |
ShouldNotReachHere(); |
|
141 |
return 0; |
|
142 |
} |
|
143 |
||
144 |
//============================================================================= |
|
145 |
ReturnNode::ReturnNode(uint edges, Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *retadr ) : Node(edges) { |
|
146 |
init_req(TypeFunc::Control,cntrl); |
|
147 |
init_req(TypeFunc::I_O,i_o); |
|
148 |
init_req(TypeFunc::Memory,memory); |
|
149 |
init_req(TypeFunc::FramePtr,frameptr); |
|
150 |
init_req(TypeFunc::ReturnAdr,retadr); |
|
151 |
} |
|
152 |
||
153 |
Node *ReturnNode::Ideal(PhaseGVN *phase, bool can_reshape){ |
|
154 |
return remove_dead_region(phase, can_reshape) ? this : NULL; |
|
155 |
} |
|
156 |
||
157 |
const Type *ReturnNode::Value( PhaseTransform *phase ) const { |
|
158 |
return ( phase->type(in(TypeFunc::Control)) == Type::TOP) |
|
159 |
? Type::TOP |
|
160 |
: Type::BOTTOM; |
|
161 |
} |
|
162 |
||
163 |
// Do we Match on this edge index or not? No edges on return nodes |
|
164 |
uint ReturnNode::match_edge(uint idx) const { |
|
165 |
return 0; |
|
166 |
} |
|
167 |
||
168 |
||
169 |
#ifndef PRODUCT |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
170 |
void ReturnNode::dump_req(outputStream *st) const { |
1 | 171 |
// Dump the required inputs, enclosed in '(' and ')' |
172 |
uint i; // Exit value of loop |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
173 |
for (i = 0; i < req(); i++) { // For all required inputs |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
174 |
if (i == TypeFunc::Parms) st->print("returns"); |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
175 |
if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx); |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
176 |
else st->print("_ "); |
1 | 177 |
} |
178 |
} |
|
179 |
#endif |
|
180 |
||
181 |
//============================================================================= |
|
182 |
RethrowNode::RethrowNode( |
|
183 |
Node* cntrl, |
|
184 |
Node* i_o, |
|
185 |
Node* memory, |
|
186 |
Node* frameptr, |
|
187 |
Node* ret_adr, |
|
188 |
Node* exception |
|
189 |
) : Node(TypeFunc::Parms + 1) { |
|
190 |
init_req(TypeFunc::Control , cntrl ); |
|
191 |
init_req(TypeFunc::I_O , i_o ); |
|
192 |
init_req(TypeFunc::Memory , memory ); |
|
193 |
init_req(TypeFunc::FramePtr , frameptr ); |
|
194 |
init_req(TypeFunc::ReturnAdr, ret_adr); |
|
195 |
init_req(TypeFunc::Parms , exception); |
|
196 |
} |
|
197 |
||
198 |
Node *RethrowNode::Ideal(PhaseGVN *phase, bool can_reshape){ |
|
199 |
return remove_dead_region(phase, can_reshape) ? this : NULL; |
|
200 |
} |
|
201 |
||
202 |
const Type *RethrowNode::Value( PhaseTransform *phase ) const { |
|
203 |
return (phase->type(in(TypeFunc::Control)) == Type::TOP) |
|
204 |
? Type::TOP |
|
205 |
: Type::BOTTOM; |
|
206 |
} |
|
207 |
||
208 |
uint RethrowNode::match_edge(uint idx) const { |
|
209 |
return 0; |
|
210 |
} |
|
211 |
||
212 |
#ifndef PRODUCT |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
213 |
void RethrowNode::dump_req(outputStream *st) const { |
1 | 214 |
// Dump the required inputs, enclosed in '(' and ')' |
215 |
uint i; // Exit value of loop |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
216 |
for (i = 0; i < req(); i++) { // For all required inputs |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
217 |
if (i == TypeFunc::Parms) st->print("exception"); |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
218 |
if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx); |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
219 |
else st->print("_ "); |
1 | 220 |
} |
221 |
} |
|
222 |
#endif |
|
223 |
||
224 |
//============================================================================= |
|
225 |
// Do we Match on this edge index or not? Match only target address & method |
|
226 |
uint TailCallNode::match_edge(uint idx) const { |
|
227 |
return TypeFunc::Parms <= idx && idx <= TypeFunc::Parms+1; |
|
228 |
} |
|
229 |
||
230 |
//============================================================================= |
|
231 |
// Do we Match on this edge index or not? Match only target address & oop |
|
232 |
uint TailJumpNode::match_edge(uint idx) const { |
|
233 |
return TypeFunc::Parms <= idx && idx <= TypeFunc::Parms+1; |
|
234 |
} |
|
235 |
||
236 |
//============================================================================= |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12158
diff
changeset
|
237 |
JVMState::JVMState(ciMethod* method, JVMState* caller) : |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12158
diff
changeset
|
238 |
_method(method) { |
1 | 239 |
assert(method != NULL, "must be valid call site"); |
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2528
diff
changeset
|
240 |
_reexecute = Reexecute_Undefined; |
1 | 241 |
debug_only(_bci = -99); // random garbage value |
242 |
debug_only(_map = (SafePointNode*)-1); |
|
243 |
_caller = caller; |
|
244 |
_depth = 1 + (caller == NULL ? 0 : caller->depth()); |
|
245 |
_locoff = TypeFunc::Parms; |
|
246 |
_stkoff = _locoff + _method->max_locals(); |
|
247 |
_monoff = _stkoff + _method->max_stack(); |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
248 |
_scloff = _monoff; |
1 | 249 |
_endoff = _monoff; |
250 |
_sp = 0; |
|
251 |
} |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12158
diff
changeset
|
252 |
JVMState::JVMState(int stack_size) : |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12158
diff
changeset
|
253 |
_method(NULL) { |
1 | 254 |
_bci = InvocationEntryBci; |
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2528
diff
changeset
|
255 |
_reexecute = Reexecute_Undefined; |
1 | 256 |
debug_only(_map = (SafePointNode*)-1); |
257 |
_caller = NULL; |
|
258 |
_depth = 1; |
|
259 |
_locoff = TypeFunc::Parms; |
|
260 |
_stkoff = _locoff; |
|
261 |
_monoff = _stkoff + stack_size; |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
262 |
_scloff = _monoff; |
1 | 263 |
_endoff = _monoff; |
264 |
_sp = 0; |
|
265 |
} |
|
266 |
||
267 |
//--------------------------------of_depth------------------------------------- |
|
268 |
JVMState* JVMState::of_depth(int d) const { |
|
269 |
const JVMState* jvmp = this; |
|
270 |
assert(0 < d && (uint)d <= depth(), "oob"); |
|
271 |
for (int skip = depth() - d; skip > 0; skip--) { |
|
272 |
jvmp = jvmp->caller(); |
|
273 |
} |
|
274 |
assert(jvmp->depth() == (uint)d, "found the right one"); |
|
275 |
return (JVMState*)jvmp; |
|
276 |
} |
|
277 |
||
278 |
//-----------------------------same_calls_as----------------------------------- |
|
279 |
bool JVMState::same_calls_as(const JVMState* that) const { |
|
280 |
if (this == that) return true; |
|
281 |
if (this->depth() != that->depth()) return false; |
|
282 |
const JVMState* p = this; |
|
283 |
const JVMState* q = that; |
|
284 |
for (;;) { |
|
285 |
if (p->_method != q->_method) return false; |
|
286 |
if (p->_method == NULL) return true; // bci is irrelevant |
|
287 |
if (p->_bci != q->_bci) return false; |
|
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2528
diff
changeset
|
288 |
if (p->_reexecute != q->_reexecute) return false; |
1 | 289 |
p = p->caller(); |
290 |
q = q->caller(); |
|
291 |
if (p == q) return true; |
|
292 |
assert(p != NULL && q != NULL, "depth check ensures we don't run off end"); |
|
293 |
} |
|
294 |
} |
|
295 |
||
296 |
//------------------------------debug_start------------------------------------ |
|
297 |
uint JVMState::debug_start() const { |
|
298 |
debug_only(JVMState* jvmroot = of_depth(1)); |
|
299 |
assert(jvmroot->locoff() <= this->locoff(), "youngest JVMState must be last"); |
|
300 |
return of_depth(1)->locoff(); |
|
301 |
} |
|
302 |
||
303 |
//-------------------------------debug_end------------------------------------- |
|
304 |
uint JVMState::debug_end() const { |
|
305 |
debug_only(JVMState* jvmroot = of_depth(1)); |
|
306 |
assert(jvmroot->endoff() <= this->endoff(), "youngest JVMState must be last"); |
|
307 |
return endoff(); |
|
308 |
} |
|
309 |
||
310 |
//------------------------------debug_depth------------------------------------ |
|
311 |
uint JVMState::debug_depth() const { |
|
312 |
uint total = 0; |
|
313 |
for (const JVMState* jvmp = this; jvmp != NULL; jvmp = jvmp->caller()) { |
|
314 |
total += jvmp->debug_size(); |
|
315 |
} |
|
316 |
return total; |
|
317 |
} |
|
318 |
||
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
319 |
#ifndef PRODUCT |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
320 |
|
1 | 321 |
//------------------------------format_helper---------------------------------- |
322 |
// Given an allocation (a Chaitin object) and a Node decide if the Node carries |
|
323 |
// any defined value or not. If it does, print out the register or constant. |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
324 |
static void format_helper( PhaseRegAlloc *regalloc, outputStream* st, Node *n, const char *msg, uint i, GrowableArray<SafePointScalarObjectNode*> *scobjs ) { |
1 | 325 |
if (n == NULL) { st->print(" NULL"); return; } |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
326 |
if (n->is_SafePointScalarObject()) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
327 |
// Scalar replacement. |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
328 |
SafePointScalarObjectNode* spobj = n->as_SafePointScalarObject(); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
329 |
scobjs->append_if_missing(spobj); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
330 |
int sco_n = scobjs->find(spobj); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
331 |
assert(sco_n >= 0, ""); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
332 |
st->print(" %s%d]=#ScObj" INT32_FORMAT, msg, i, sco_n); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
333 |
return; |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
334 |
} |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
335 |
if (regalloc->node_regs_max_index() > 0 && |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
336 |
OptoReg::is_valid(regalloc->get_reg_first(n))) { // Check for undefined |
1 | 337 |
char buf[50]; |
338 |
regalloc->dump_register(n,buf); |
|
339 |
st->print(" %s%d]=%s",msg,i,buf); |
|
340 |
} else { // No register, but might be constant |
|
341 |
const Type *t = n->bottom_type(); |
|
342 |
switch (t->base()) { |
|
343 |
case Type::Int: |
|
344 |
st->print(" %s%d]=#"INT32_FORMAT,msg,i,t->is_int()->get_con()); |
|
345 |
break; |
|
346 |
case Type::AnyPtr: |
|
22854
2787e48d6df9
8029025: PPC64 (part 203): opto: Move static _in_dump_cnt to Compile object.
goetz
parents:
19708
diff
changeset
|
347 |
assert( t == TypePtr::NULL_PTR || n->in_dump(), "" ); |
1 | 348 |
st->print(" %s%d]=#NULL",msg,i); |
349 |
break; |
|
350 |
case Type::AryPtr: |
|
351 |
case Type::InstPtr: |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
352 |
st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->isa_oopptr()->const_oop())); |
1 | 353 |
break; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
354 |
case Type::KlassPtr: |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
355 |
st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_klassptr()->klass())); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
356 |
break; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
357 |
case Type::MetadataPtr: |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
358 |
st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_metadataptr()->metadata())); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
359 |
break; |
1135
9487203e5789
6706829: Compressed Oops: add debug info for narrow oops
kvn
parents:
1067
diff
changeset
|
360 |
case Type::NarrowOop: |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
361 |
st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,p2i(t->make_ptr()->isa_oopptr()->const_oop())); |
1135
9487203e5789
6706829: Compressed Oops: add debug info for narrow oops
kvn
parents:
1067
diff
changeset
|
362 |
break; |
1 | 363 |
case Type::RawPtr: |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
364 |
st->print(" %s%d]=#Raw" INTPTR_FORMAT,msg,i,p2i(t->is_rawptr())); |
1 | 365 |
break; |
366 |
case Type::DoubleCon: |
|
367 |
st->print(" %s%d]=#%fD",msg,i,t->is_double_constant()->_d); |
|
368 |
break; |
|
369 |
case Type::FloatCon: |
|
370 |
st->print(" %s%d]=#%fF",msg,i,t->is_float_constant()->_f); |
|
371 |
break; |
|
372 |
case Type::Long: |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
373 |
st->print(" %s%d]=#"INT64_FORMAT,msg,i,(int64_t)(t->is_long()->get_con())); |
1 | 374 |
break; |
375 |
case Type::Half: |
|
376 |
case Type::Top: |
|
377 |
st->print(" %s%d]=_",msg,i); |
|
378 |
break; |
|
379 |
default: ShouldNotReachHere(); |
|
380 |
} |
|
381 |
} |
|
382 |
} |
|
383 |
||
384 |
//------------------------------format----------------------------------------- |
|
385 |
void JVMState::format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st) const { |
|
386 |
st->print(" #"); |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
387 |
if (_method) { |
1 | 388 |
_method->print_short_name(st); |
389 |
st->print(" @ bci:%d ",_bci); |
|
390 |
} else { |
|
391 |
st->print_cr(" runtime stub "); |
|
392 |
return; |
|
393 |
} |
|
394 |
if (n->is_MachSafePoint()) { |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
395 |
GrowableArray<SafePointScalarObjectNode*> scobjs; |
1 | 396 |
MachSafePointNode *mcall = n->as_MachSafePoint(); |
397 |
uint i; |
|
398 |
// Print locals |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
399 |
for (i = 0; i < (uint)loc_size(); i++) |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
400 |
format_helper(regalloc, st, mcall->local(this, i), "L[", i, &scobjs); |
1 | 401 |
// Print stack |
402 |
for (i = 0; i < (uint)stk_size(); i++) { |
|
403 |
if ((uint)(_stkoff + i) >= mcall->len()) |
|
404 |
st->print(" oob "); |
|
405 |
else |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
406 |
format_helper(regalloc, st, mcall->stack(this, i), "STK[", i, &scobjs); |
1 | 407 |
} |
408 |
for (i = 0; (int)i < nof_monitors(); i++) { |
|
409 |
Node *box = mcall->monitor_box(this, i); |
|
410 |
Node *obj = mcall->monitor_obj(this, i); |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
411 |
if (regalloc->node_regs_max_index() > 0 && |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
412 |
OptoReg::is_valid(regalloc->get_reg_first(box))) { |
11445 | 413 |
box = BoxLockNode::box_node(box); |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
414 |
format_helper(regalloc, st, box, "MON-BOX[", i, &scobjs); |
1 | 415 |
} else { |
11445 | 416 |
OptoReg::Name box_reg = BoxLockNode::reg(box); |
1 | 417 |
st->print(" MON-BOX%d=%s+%d", |
418 |
i, |
|
419 |
OptoReg::regname(OptoReg::c_frame_pointer), |
|
420 |
regalloc->reg2offset(box_reg)); |
|
421 |
} |
|
1613
be097ec639a2
6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents:
1500
diff
changeset
|
422 |
const char* obj_msg = "MON-OBJ["; |
be097ec639a2
6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents:
1500
diff
changeset
|
423 |
if (EliminateLocks) { |
11445 | 424 |
if (BoxLockNode::box_node(box)->is_eliminated()) |
1613
be097ec639a2
6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents:
1500
diff
changeset
|
425 |
obj_msg = "MON-OBJ(LOCK ELIMINATED)["; |
be097ec639a2
6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents:
1500
diff
changeset
|
426 |
} |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
427 |
format_helper(regalloc, st, obj, obj_msg, i, &scobjs); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
428 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
429 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
430 |
for (i = 0; i < (uint)scobjs.length(); i++) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
431 |
// Scalar replaced objects. |
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
432 |
st->cr(); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
433 |
st->print(" # ScObj" INT32_FORMAT " ", i); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
434 |
SafePointScalarObjectNode* spobj = scobjs.at(i); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
435 |
ciKlass* cik = spobj->bottom_type()->is_oopptr()->klass(); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
436 |
assert(cik->is_instance_klass() || |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
437 |
cik->is_array_klass(), "Not supported allocation."); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
438 |
ciInstanceKlass *iklass = NULL; |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
439 |
if (cik->is_instance_klass()) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
440 |
cik->print_name_on(st); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
441 |
iklass = cik->as_instance_klass(); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
442 |
} else if (cik->is_type_array_klass()) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
443 |
cik->as_array_klass()->base_element_type()->print_name_on(st); |
4095
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
444 |
st->print("[%d]", spobj->n_fields()); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
445 |
} else if (cik->is_obj_array_klass()) { |
4095
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
446 |
ciKlass* cie = cik->as_obj_array_klass()->base_element_klass(); |
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
447 |
if (cie->is_instance_klass()) { |
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
448 |
cie->print_name_on(st); |
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
449 |
} else if (cie->is_type_array_klass()) { |
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
450 |
cie->as_array_klass()->base_element_type()->print_name_on(st); |
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
451 |
} else { |
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
452 |
ShouldNotReachHere(); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
453 |
} |
4095
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
454 |
st->print("[%d]", spobj->n_fields()); |
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
455 |
int ndim = cik->as_array_klass()->dimension() - 1; |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
456 |
while (ndim-- > 0) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
457 |
st->print("[]"); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
458 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
459 |
} |
4095
6e0acfda1d47
6892186: SA does not dump debug info for scalar replaced objects
kvn
parents:
3686
diff
changeset
|
460 |
st->print("={"); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
461 |
uint nf = spobj->n_fields(); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
462 |
if (nf > 0) { |
19708
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
463 |
uint first_ind = spobj->first_index(mcall->jvms()); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
464 |
Node* fld_node = mcall->in(first_ind); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
465 |
ciField* cifield; |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
466 |
if (iklass != NULL) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
467 |
st->print(" ["); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
468 |
cifield = iklass->nonstatic_field_at(0); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
469 |
cifield->print_name_on(st); |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
470 |
format_helper(regalloc, st, fld_node, ":", 0, &scobjs); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
471 |
} else { |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
472 |
format_helper(regalloc, st, fld_node, "[", 0, &scobjs); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
473 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
474 |
for (uint j = 1; j < nf; j++) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
475 |
fld_node = mcall->in(first_ind+j); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
476 |
if (iklass != NULL) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
477 |
st->print(", ["); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
478 |
cifield = iklass->nonstatic_field_at(j); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
479 |
cifield->print_name_on(st); |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
480 |
format_helper(regalloc, st, fld_node, ":", j, &scobjs); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
481 |
} else { |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
482 |
format_helper(regalloc, st, fld_node, ", [", j, &scobjs); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
483 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
484 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
485 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
486 |
st->print(" }"); |
1 | 487 |
} |
488 |
} |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
489 |
st->cr(); |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
490 |
if (caller() != NULL) caller()->format(regalloc, n, st); |
1 | 491 |
} |
492 |
||
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
493 |
|
1 | 494 |
void JVMState::dump_spec(outputStream *st) const { |
495 |
if (_method != NULL) { |
|
496 |
bool printed = false; |
|
497 |
if (!Verbose) { |
|
498 |
// The JVMS dumps make really, really long lines. |
|
499 |
// Take out the most boring parts, which are the package prefixes. |
|
500 |
char buf[500]; |
|
501 |
stringStream namest(buf, sizeof(buf)); |
|
502 |
_method->print_short_name(&namest); |
|
503 |
if (namest.count() < sizeof(buf)) { |
|
504 |
const char* name = namest.base(); |
|
505 |
if (name[0] == ' ') ++name; |
|
506 |
const char* endcn = strchr(name, ':'); // end of class name |
|
507 |
if (endcn == NULL) endcn = strchr(name, '('); |
|
508 |
if (endcn == NULL) endcn = name + strlen(name); |
|
509 |
while (endcn > name && endcn[-1] != '.' && endcn[-1] != '/') |
|
510 |
--endcn; |
|
511 |
st->print(" %s", endcn); |
|
512 |
printed = true; |
|
513 |
} |
|
514 |
} |
|
515 |
if (!printed) |
|
516 |
_method->print_short_name(st); |
|
517 |
st->print(" @ bci:%d",_bci); |
|
3686
69c1b5228547
6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents:
3603
diff
changeset
|
518 |
if(_reexecute == Reexecute_True) |
69c1b5228547
6873116: Modify reexecute implementation to use pcDesc to record the reexecute bit
cfang
parents:
3603
diff
changeset
|
519 |
st->print(" reexecute"); |
1 | 520 |
} else { |
521 |
st->print(" runtime stub"); |
|
522 |
} |
|
523 |
if (caller() != NULL) caller()->dump_spec(st); |
|
524 |
} |
|
525 |
||
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
526 |
|
1 | 527 |
void JVMState::dump_on(outputStream* st) const { |
17383 | 528 |
bool print_map = _map && !((uintptr_t)_map & 1) && |
529 |
((caller() == NULL) || (caller()->map() != _map)); |
|
530 |
if (print_map) { |
|
1 | 531 |
if (_map->len() > _map->req()) { // _map->has_exceptions() |
532 |
Node* ex = _map->in(_map->req()); // _map->next_exception() |
|
533 |
// skip the first one; it's already being printed |
|
534 |
while (ex != NULL && ex->len() > ex->req()) { |
|
535 |
ex = ex->in(ex->req()); // ex->next_exception() |
|
536 |
ex->dump(1); |
|
537 |
} |
|
538 |
} |
|
17383 | 539 |
_map->dump(Verbose ? 2 : 1); |
540 |
} |
|
541 |
if (caller() != NULL) { |
|
542 |
caller()->dump_on(st); |
|
1 | 543 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12158
diff
changeset
|
544 |
st->print("JVMS depth=%d loc=%d stk=%d arg=%d mon=%d scalar=%d end=%d mondepth=%d sp=%d bci=%d reexecute=%s method=", |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12158
diff
changeset
|
545 |
depth(), locoff(), stkoff(), argoff(), monoff(), scloff(), endoff(), monitor_depth(), sp(), bci(), should_reexecute()?"true":"false"); |
1 | 546 |
if (_method == NULL) { |
547 |
st->print_cr("(none)"); |
|
548 |
} else { |
|
549 |
_method->print_name(st); |
|
550 |
st->cr(); |
|
551 |
if (bci() >= 0 && bci() < _method->code_size()) { |
|
552 |
st->print(" bc: "); |
|
553 |
_method->print_codes_on(bci(), bci()+1, st); |
|
554 |
} |
|
555 |
} |
|
556 |
} |
|
557 |
||
558 |
// Extra way to dump a jvms from the debugger, |
|
559 |
// to avoid a bug with C++ member function calls. |
|
560 |
void dump_jvms(JVMState* jvms) { |
|
561 |
jvms->dump(); |
|
562 |
} |
|
563 |
#endif |
|
564 |
||
565 |
//--------------------------clone_shallow-------------------------------------- |
|
566 |
JVMState* JVMState::clone_shallow(Compile* C) const { |
|
567 |
JVMState* n = has_method() ? new (C) JVMState(_method, _caller) : new (C) JVMState(0); |
|
568 |
n->set_bci(_bci); |
|
3600
27aa4477d039
6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents:
2528
diff
changeset
|
569 |
n->_reexecute = _reexecute; |
1 | 570 |
n->set_locoff(_locoff); |
571 |
n->set_stkoff(_stkoff); |
|
572 |
n->set_monoff(_monoff); |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
573 |
n->set_scloff(_scloff); |
1 | 574 |
n->set_endoff(_endoff); |
575 |
n->set_sp(_sp); |
|
576 |
n->set_map(_map); |
|
577 |
return n; |
|
578 |
} |
|
579 |
||
580 |
//---------------------------clone_deep---------------------------------------- |
|
581 |
JVMState* JVMState::clone_deep(Compile* C) const { |
|
582 |
JVMState* n = clone_shallow(C); |
|
583 |
for (JVMState* p = n; p->_caller != NULL; p = p->_caller) { |
|
584 |
p->_caller = p->_caller->clone_shallow(C); |
|
585 |
} |
|
586 |
assert(n->depth() == depth(), "sanity"); |
|
587 |
assert(n->debug_depth() == debug_depth(), "sanity"); |
|
588 |
return n; |
|
589 |
} |
|
590 |
||
17383 | 591 |
/** |
592 |
* Reset map for all callers |
|
593 |
*/ |
|
594 |
void JVMState::set_map_deep(SafePointNode* map) { |
|
595 |
for (JVMState* p = this; p->_caller != NULL; p = p->_caller) { |
|
596 |
p->set_map(map); |
|
597 |
} |
|
598 |
} |
|
599 |
||
22865
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
600 |
// Adapt offsets in in-array after adding or removing an edge. |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
601 |
// Prerequisite is that the JVMState is used by only one node. |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
602 |
void JVMState::adapt_position(int delta) { |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
603 |
for (JVMState* jvms = this; jvms != NULL; jvms = jvms->caller()) { |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
604 |
jvms->set_locoff(jvms->locoff() + delta); |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
605 |
jvms->set_stkoff(jvms->stkoff() + delta); |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
606 |
jvms->set_monoff(jvms->monoff() + delta); |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
607 |
jvms->set_scloff(jvms->scloff() + delta); |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
608 |
jvms->set_endoff(jvms->endoff() + delta); |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
609 |
} |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
610 |
} |
3b8857d7b3cc
8030863: PPC64: (part 220): ConstantTableBase for calls between args and jvms
goetz
parents:
22854
diff
changeset
|
611 |
|
24018
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
612 |
// Mirror the stack size calculation in the deopt code |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
613 |
// How much stack space would we need at this point in the program in |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
614 |
// case of deoptimization? |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
615 |
int JVMState::interpreter_frame_size() const { |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
616 |
const JVMState* jvms = this; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
617 |
int size = 0; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
618 |
int callee_parameters = 0; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
619 |
int callee_locals = 0; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
620 |
int extra_args = method()->max_stack() - stk_size(); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
621 |
|
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
622 |
while (jvms != NULL) { |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
623 |
int locks = jvms->nof_monitors(); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
624 |
int temps = jvms->stk_size(); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
625 |
bool is_top_frame = (jvms == this); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
626 |
ciMethod* method = jvms->method(); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
627 |
|
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
628 |
int frame_size = BytesPerWord * Interpreter::size_activation(method->max_stack(), |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
629 |
temps + callee_parameters, |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
630 |
extra_args, |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
631 |
locks, |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
632 |
callee_parameters, |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
633 |
callee_locals, |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
634 |
is_top_frame); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
635 |
size += frame_size; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
636 |
|
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
637 |
callee_parameters = method->size_of_parameters(); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
638 |
callee_locals = method->max_locals(); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
639 |
extra_args = 0; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
640 |
jvms = jvms->caller(); |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
641 |
} |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
642 |
return size + Deoptimization::last_frame_adjust(0, callee_locals) * BytesPerWord; |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
643 |
} |
77b156916bab
8032410: compiler/uncommontrap/TestStackBangRbp.java times out on Solaris-Sparc V9
roland
parents:
23528
diff
changeset
|
644 |
|
1 | 645 |
//============================================================================= |
646 |
uint CallNode::cmp( const Node &n ) const |
|
647 |
{ return _tf == ((CallNode&)n)._tf && _jvms == ((CallNode&)n)._jvms; } |
|
648 |
#ifndef PRODUCT |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
649 |
void CallNode::dump_req(outputStream *st) const { |
1 | 650 |
// Dump the required inputs, enclosed in '(' and ')' |
651 |
uint i; // Exit value of loop |
|
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
652 |
for (i = 0; i < req(); i++) { // For all required inputs |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
653 |
if (i == TypeFunc::Parms) st->print("("); |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
654 |
if (in(i)) st->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx); |
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
655 |
else st->print("_ "); |
1 | 656 |
} |
15241
87d217c2d183
8005055: pass outputStream to more opto debug routines
kvn
parents:
15113
diff
changeset
|
657 |
st->print(")"); |
1 | 658 |
} |
659 |
||
660 |
void CallNode::dump_spec(outputStream *st) const { |
|
661 |
st->print(" "); |
|
28202
3518158ff5d0
8067338: compiler/debug/TraceIterativeGVN.java segfaults
vlivanov
parents:
27422
diff
changeset
|
662 |
if (tf() != NULL) tf()->dump_on(st); |
1 | 663 |
if (_cnt != COUNT_UNKNOWN) st->print(" C=%f",_cnt); |
664 |
if (jvms() != NULL) jvms()->dump_spec(st); |
|
665 |
} |
|
666 |
#endif |
|
667 |
||
668 |
const Type *CallNode::bottom_type() const { return tf()->range(); } |
|
669 |
const Type *CallNode::Value(PhaseTransform *phase) const { |
|
670 |
if (phase->type(in(0)) == Type::TOP) return Type::TOP; |
|
671 |
return tf()->range(); |
|
672 |
} |
|
673 |
||
674 |
//------------------------------calling_convention----------------------------- |
|
675 |
void CallNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const { |
|
676 |
// Use the standard compiler calling convention |
|
677 |
Matcher::calling_convention( sig_bt, parm_regs, argcnt, true ); |
|
678 |
} |
|
679 |
||
680 |
||
681 |
//------------------------------match------------------------------------------ |
|
682 |
// Construct projections for control, I/O, memory-fields, ..., and |
|
683 |
// return result(s) along with their RegMask info |
|
684 |
Node *CallNode::match( const ProjNode *proj, const Matcher *match ) { |
|
685 |
switch (proj->_con) { |
|
686 |
case TypeFunc::Control: |
|
687 |
case TypeFunc::I_O: |
|
688 |
case TypeFunc::Memory: |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
689 |
return new MachProjNode(this,proj->_con,RegMask::Empty,MachProjNode::unmatched_proj); |
1 | 690 |
|
691 |
case TypeFunc::Parms+1: // For LONG & DOUBLE returns |
|
25911 | 692 |
assert(tf()->range()->field_at(TypeFunc::Parms+1) == Type::HALF, ""); |
1 | 693 |
// 2nd half of doubles and longs |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
694 |
return new MachProjNode(this,proj->_con, RegMask::Empty, (uint)OptoReg::Bad); |
1 | 695 |
|
696 |
case TypeFunc::Parms: { // Normal returns |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13391
diff
changeset
|
697 |
uint ideal_reg = tf()->range()->field_at(TypeFunc::Parms)->ideal_reg(); |
1 | 698 |
OptoRegPair regs = is_CallRuntime() |
699 |
? match->c_return_value(ideal_reg,true) // Calls into C runtime |
|
700 |
: match-> return_value(ideal_reg,true); // Calls into compiled Java code |
|
701 |
RegMask rm = RegMask(regs.first()); |
|
702 |
if( OptoReg::is_valid(regs.second()) ) |
|
703 |
rm.Insert( regs.second() ); |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
704 |
return new MachProjNode(this,proj->_con,rm,ideal_reg); |
1 | 705 |
} |
706 |
||
707 |
case TypeFunc::ReturnAdr: |
|
708 |
case TypeFunc::FramePtr: |
|
709 |
default: |
|
710 |
ShouldNotReachHere(); |
|
711 |
} |
|
712 |
return NULL; |
|
713 |
} |
|
714 |
||
715 |
// Do we Match on this edge index or not? Match no edges |
|
716 |
uint CallNode::match_edge(uint idx) const { |
|
717 |
return 0; |
|
718 |
} |
|
719 |
||
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
720 |
// |
247
2aeab9ac7fea
6674600: (Escape Analysis) Optimize memory graph for instance's fields
kvn
parents:
239
diff
changeset
|
721 |
// Determine whether the call could modify the field of the specified |
2aeab9ac7fea
6674600: (Escape Analysis) Optimize memory graph for instance's fields
kvn
parents:
239
diff
changeset
|
722 |
// instance at the specified offset. |
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
723 |
// |
17383 | 724 |
bool CallNode::may_modify(const TypeOopPtr *t_oop, PhaseTransform *phase) { |
725 |
assert((t_oop != NULL), "sanity"); |
|
726 |
if (t_oop->is_known_instance()) { |
|
727 |
// The instance_id is set only for scalar-replaceable allocations which |
|
728 |
// are not passed as arguments according to Escape Analysis. |
|
729 |
return false; |
|
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
730 |
} |
17383 | 731 |
if (t_oop->is_ptr_to_boxed_value()) { |
732 |
ciKlass* boxing_klass = t_oop->klass(); |
|
733 |
if (is_CallStaticJava() && as_CallStaticJava()->is_boxing_method()) { |
|
734 |
// Skip unrelated boxing methods. |
|
735 |
Node* proj = proj_out(TypeFunc::Parms); |
|
736 |
if ((proj == NULL) || (phase->type(proj)->is_instptr()->klass() != boxing_klass)) { |
|
737 |
return false; |
|
738 |
} |
|
739 |
} |
|
740 |
if (is_CallJava() && as_CallJava()->method() != NULL) { |
|
741 |
ciMethod* meth = as_CallJava()->method(); |
|
742 |
if (meth->is_accessor()) { |
|
743 |
return false; |
|
744 |
} |
|
745 |
// May modify (by reflection) if an boxing object is passed |
|
746 |
// as argument or returned. |
|
747 |
if (returns_pointer() && (proj_out(TypeFunc::Parms) != NULL)) { |
|
748 |
Node* proj = proj_out(TypeFunc::Parms); |
|
749 |
const TypeInstPtr* inst_t = phase->type(proj)->isa_instptr(); |
|
750 |
if ((inst_t != NULL) && (!inst_t->klass_is_exact() || |
|
751 |
(inst_t->klass() == boxing_klass))) { |
|
752 |
return true; |
|
753 |
} |
|
754 |
} |
|
755 |
const TypeTuple* d = tf()->domain(); |
|
756 |
for (uint i = TypeFunc::Parms; i < d->cnt(); i++) { |
|
757 |
const TypeInstPtr* inst_t = d->field_at(i)->isa_instptr(); |
|
758 |
if ((inst_t != NULL) && (!inst_t->klass_is_exact() || |
|
759 |
(inst_t->klass() == boxing_klass))) { |
|
760 |
return true; |
|
761 |
} |
|
762 |
} |
|
763 |
return false; |
|
764 |
} |
|
765 |
} |
|
766 |
return true; |
|
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
767 |
} |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
768 |
|
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
769 |
// Does this call have a direct reference to n other than debug information? |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
770 |
bool CallNode::has_non_debug_use(Node *n) { |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
771 |
const TypeTuple * d = tf()->domain(); |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
772 |
for (uint i = TypeFunc::Parms; i < d->cnt(); i++) { |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
773 |
Node *arg = in(i); |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
774 |
if (arg == n) { |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
775 |
return true; |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
776 |
} |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
777 |
} |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
778 |
return false; |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
779 |
} |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
780 |
|
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
781 |
// Returns the unique CheckCastPP of a call |
25935
59b08808cb9c
8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents:
25911
diff
changeset
|
782 |
// or 'this' if there are several CheckCastPP or unexpected uses |
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
783 |
// or returns NULL if there is no one. |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
784 |
Node *CallNode::result_cast() { |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
785 |
Node *cast = NULL; |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
786 |
|
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
787 |
Node *p = proj_out(TypeFunc::Parms); |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
788 |
if (p == NULL) |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
789 |
return NULL; |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
790 |
|
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
791 |
for (DUIterator_Fast imax, i = p->fast_outs(imax); i < imax; i++) { |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
792 |
Node *use = p->fast_out(i); |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
793 |
if (use->is_CheckCastPP()) { |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
794 |
if (cast != NULL) { |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
795 |
return this; // more than 1 CheckCastPP |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
796 |
} |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
797 |
cast = use; |
25935
59b08808cb9c
8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents:
25911
diff
changeset
|
798 |
} else if (!use->is_Initialize() && |
59b08808cb9c
8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents:
25911
diff
changeset
|
799 |
!use->is_AddP()) { |
59b08808cb9c
8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents:
25911
diff
changeset
|
800 |
// Expected uses are restricted to a CheckCastPP, an Initialize |
59b08808cb9c
8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents:
25911
diff
changeset
|
801 |
// node, and AddP nodes. If we encounter any other use (a Phi |
59b08808cb9c
8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents:
25911
diff
changeset
|
802 |
// node can be seen in rare cases) return this to prevent |
59b08808cb9c
8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents:
25911
diff
changeset
|
803 |
// incorrect optimizations. |
59b08808cb9c
8046698: assert(false) failed: only Initialize or AddP expected macro.cpp:943
roland
parents:
25911
diff
changeset
|
804 |
return this; |
238
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
805 |
} |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
806 |
} |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
807 |
return cast; |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
808 |
} |
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
809 |
|
803c80713999
6674588: (Escape Analysis) Improve Escape Analysis code
kvn
parents:
236
diff
changeset
|
810 |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
811 |
void CallNode::extract_projections(CallProjections* projs, bool separate_io_proj) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
812 |
projs->fallthrough_proj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
813 |
projs->fallthrough_catchproj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
814 |
projs->fallthrough_ioproj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
815 |
projs->catchall_ioproj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
816 |
projs->catchall_catchproj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
817 |
projs->fallthrough_memproj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
818 |
projs->catchall_memproj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
819 |
projs->resproj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
820 |
projs->exobj = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
821 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
822 |
for (DUIterator_Fast imax, i = fast_outs(imax); i < imax; i++) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
823 |
ProjNode *pn = fast_out(i)->as_Proj(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
824 |
if (pn->outcnt() == 0) continue; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
825 |
switch (pn->_con) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
826 |
case TypeFunc::Control: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
827 |
{ |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
828 |
// For Control (fallthrough) and I_O (catch_all_index) we have CatchProj -> Catch -> Proj |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
829 |
projs->fallthrough_proj = pn; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
830 |
DUIterator_Fast jmax, j = pn->fast_outs(jmax); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
831 |
const Node *cn = pn->fast_out(j); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
832 |
if (cn->is_Catch()) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
833 |
ProjNode *cpn = NULL; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
834 |
for (DUIterator_Fast kmax, k = cn->fast_outs(kmax); k < kmax; k++) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
835 |
cpn = cn->fast_out(k)->as_Proj(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
836 |
assert(cpn->is_CatchProj(), "must be a CatchProjNode"); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
837 |
if (cpn->_con == CatchProjNode::fall_through_index) |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
838 |
projs->fallthrough_catchproj = cpn; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
839 |
else { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
840 |
assert(cpn->_con == CatchProjNode::catch_all_index, "must be correct index."); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
841 |
projs->catchall_catchproj = cpn; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
842 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
843 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
844 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
845 |
break; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
846 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
847 |
case TypeFunc::I_O: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
848 |
if (pn->_is_io_use) |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
849 |
projs->catchall_ioproj = pn; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
850 |
else |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
851 |
projs->fallthrough_ioproj = pn; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
852 |
for (DUIterator j = pn->outs(); pn->has_out(j); j++) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
853 |
Node* e = pn->out(j); |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
13895
diff
changeset
|
854 |
if (e->Opcode() == Op_CreateEx && e->in(0)->is_CatchProj() && e->outcnt() > 0) { |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
855 |
assert(projs->exobj == NULL, "only one"); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
856 |
projs->exobj = e; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
857 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
858 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
859 |
break; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
860 |
case TypeFunc::Memory: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
861 |
if (pn->_is_io_use) |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
862 |
projs->catchall_memproj = pn; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
863 |
else |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
864 |
projs->fallthrough_memproj = pn; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
865 |
break; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
866 |
case TypeFunc::Parms: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
867 |
projs->resproj = pn; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
868 |
break; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
869 |
default: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
870 |
assert(false, "unexpected projection from allocation node."); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
871 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
872 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
873 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
874 |
// The resproj may not exist because the result couuld be ignored |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
875 |
// and the exception object may not exist if an exception handler |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
876 |
// swallows the exception but all the other must exist and be found. |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
877 |
assert(projs->fallthrough_proj != NULL, "must be found"); |
15113 | 878 |
assert(Compile::current()->inlining_incrementally() || projs->fallthrough_catchproj != NULL, "must be found"); |
879 |
assert(Compile::current()->inlining_incrementally() || projs->fallthrough_memproj != NULL, "must be found"); |
|
880 |
assert(Compile::current()->inlining_incrementally() || projs->fallthrough_ioproj != NULL, "must be found"); |
|
881 |
assert(Compile::current()->inlining_incrementally() || projs->catchall_catchproj != NULL, "must be found"); |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
882 |
if (separate_io_proj) { |
15113 | 883 |
assert(Compile::current()->inlining_incrementally() || projs->catchall_memproj != NULL, "must be found"); |
884 |
assert(Compile::current()->inlining_incrementally() || projs->catchall_ioproj != NULL, "must be found"); |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
885 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
886 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
887 |
|
15113 | 888 |
Node *CallNode::Ideal(PhaseGVN *phase, bool can_reshape) { |
889 |
CallGenerator* cg = generator(); |
|
890 |
if (can_reshape && cg != NULL && cg->is_mh_late_inline() && !cg->already_attempted()) { |
|
891 |
// Check whether this MH handle call becomes a candidate for inlining |
|
892 |
ciMethod* callee = cg->method(); |
|
893 |
vmIntrinsics::ID iid = callee->intrinsic_id(); |
|
894 |
if (iid == vmIntrinsics::_invokeBasic) { |
|
895 |
if (in(TypeFunc::Parms)->Opcode() == Op_ConP) { |
|
896 |
phase->C->prepend_late_inline(cg); |
|
897 |
set_generator(NULL); |
|
898 |
} |
|
899 |
} else { |
|
900 |
assert(callee->has_member_arg(), "wrong type of call?"); |
|
901 |
if (in(TypeFunc::Parms + callee->arg_size() - 1)->Opcode() == Op_ConP) { |
|
902 |
phase->C->prepend_late_inline(cg); |
|
903 |
set_generator(NULL); |
|
904 |
} |
|
905 |
} |
|
906 |
} |
|
907 |
return SafePointNode::Ideal(phase, can_reshape); |
|
908 |
} |
|
909 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
4095
diff
changeset
|
910 |
|
1 | 911 |
//============================================================================= |
912 |
uint CallJavaNode::size_of() const { return sizeof(*this); } |
|
913 |
uint CallJavaNode::cmp( const Node &n ) const { |
|
914 |
CallJavaNode &call = (CallJavaNode&)n; |
|
915 |
return CallNode::cmp(call) && _method == call._method; |
|
916 |
} |
|
917 |
#ifndef PRODUCT |
|
918 |
void CallJavaNode::dump_spec(outputStream *st) const { |
|
919 |
if( _method ) _method->print_short_name(st); |
|
920 |
CallNode::dump_spec(st); |
|
921 |
} |
|
922 |
#endif |
|
923 |
||
924 |
//============================================================================= |
|
925 |
uint CallStaticJavaNode::size_of() const { return sizeof(*this); } |
|
926 |
uint CallStaticJavaNode::cmp( const Node &n ) const { |
|
927 |
CallStaticJavaNode &call = (CallStaticJavaNode&)n; |
|
928 |
return CallJavaNode::cmp(call); |
|
929 |
} |
|
930 |
||
931 |
//----------------------------uncommon_trap_request---------------------------- |
|
932 |
// If this is an uncommon trap, return the request code, else zero. |
|
933 |
int CallStaticJavaNode::uncommon_trap_request() const { |
|
934 |
if (_name != NULL && !strcmp(_name, "uncommon_trap")) { |
|
935 |
return extract_uncommon_trap_request(this); |
|
936 |
} |
|
937 |
return 0; |
|
938 |
} |
|
939 |
int CallStaticJavaNode::extract_uncommon_trap_request(const Node* call) { |
|
940 |
#ifndef PRODUCT |
|
941 |
if (!(call->req() > TypeFunc::Parms && |
|
942 |
call->in(TypeFunc::Parms) != NULL && |
|
27422
954620f336dc
8036748: assert(_base == Int) failed: Not an Int w/ -XX:+TraceIterativeGVN
vlivanov
parents:
26435
diff
changeset
|
943 |
call->in(TypeFunc::Parms)->is_Con() && |
954620f336dc
8036748: assert(_base == Int) failed: Not an Int w/ -XX:+TraceIterativeGVN
vlivanov
parents:
26435
diff
changeset
|
944 |
call->in(TypeFunc::Parms)->bottom_type()->isa_int())) { |
22854
2787e48d6df9
8029025: PPC64 (part 203): opto: Move static _in_dump_cnt to Compile object.
goetz
parents:
19708
diff
changeset
|
945 |
assert(in_dump() != 0, "OK if dumping"); |
1 | 946 |
tty->print("[bad uncommon trap]"); |
947 |
return 0; |
|
948 |
} |
|
949 |
#endif |
|
950 |
return call->in(TypeFunc::Parms)->bottom_type()->is_int()->get_con(); |
|
951 |
} |
|
952 |
||
953 |
#ifndef PRODUCT |
|
954 |
void CallStaticJavaNode::dump_spec(outputStream *st) const { |
|
955 |
st->print("# Static "); |
|
956 |
if (_name != NULL) { |
|
957 |
st->print("%s", _name); |
|
958 |
int trap_req = uncommon_trap_request(); |
|
959 |
if (trap_req != 0) { |
|
960 |
char buf[100]; |
|
961 |
st->print("(%s)", |
|
962 |
Deoptimization::format_trap_request(buf, sizeof(buf), |
|
963 |
trap_req)); |
|
964 |
} |
|
965 |
st->print(" "); |
|
966 |
} |
|
967 |
CallJavaNode::dump_spec(st); |
|
968 |
} |
|
969 |
#endif |
|
970 |
||
971 |
//============================================================================= |
|
972 |
uint CallDynamicJavaNode::size_of() const { return sizeof(*this); } |
|
973 |
uint CallDynamicJavaNode::cmp( const Node &n ) const { |
|
974 |
CallDynamicJavaNode &call = (CallDynamicJavaNode&)n; |
|
975 |
return CallJavaNode::cmp(call); |
|
976 |
} |
|
977 |
#ifndef PRODUCT |
|
978 |
void CallDynamicJavaNode::dump_spec(outputStream *st) const { |
|
979 |
st->print("# Dynamic "); |
|
980 |
CallJavaNode::dump_spec(st); |
|
981 |
} |
|
982 |
#endif |
|
983 |
||
984 |
//============================================================================= |
|
985 |
uint CallRuntimeNode::size_of() const { return sizeof(*this); } |
|
986 |
uint CallRuntimeNode::cmp( const Node &n ) const { |
|
987 |
CallRuntimeNode &call = (CallRuntimeNode&)n; |
|
988 |
return CallNode::cmp(call) && !strcmp(_name,call._name); |
|
989 |
} |
|
990 |
#ifndef PRODUCT |
|
991 |
void CallRuntimeNode::dump_spec(outputStream *st) const { |
|
992 |
st->print("# "); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
993 |
st->print("%s", _name); |
1 | 994 |
CallNode::dump_spec(st); |
995 |
} |
|
996 |
#endif |
|
997 |
||
998 |
//------------------------------calling_convention----------------------------- |
|
999 |
void CallRuntimeNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const { |
|
1000 |
Matcher::c_calling_convention( sig_bt, parm_regs, argcnt ); |
|
1001 |
} |
|
1002 |
||
1003 |
//============================================================================= |
|
1004 |
//------------------------------calling_convention----------------------------- |
|
1005 |
||
1006 |
||
1007 |
//============================================================================= |
|
1008 |
#ifndef PRODUCT |
|
1009 |
void CallLeafNode::dump_spec(outputStream *st) const { |
|
1010 |
st->print("# "); |
|
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24018
diff
changeset
|
1011 |
st->print("%s", _name); |
1 | 1012 |
CallNode::dump_spec(st); |
1013 |
} |
|
1014 |
#endif |
|
1015 |
||
1016 |
//============================================================================= |
|
1017 |
||
1018 |
void SafePointNode::set_local(JVMState* jvms, uint idx, Node *c) { |
|
1019 |
assert(verify_jvms(jvms), "jvms must match"); |
|
1020 |
int loc = jvms->locoff() + idx; |
|
1021 |
if (in(loc)->is_top() && idx > 0 && !c->is_top() ) { |
|
1022 |
// If current local idx is top then local idx - 1 could |
|
1023 |
// be a long/double that needs to be killed since top could |
|
1024 |
// represent the 2nd half ofthe long/double. |
|
1025 |
uint ideal = in(loc -1)->ideal_reg(); |
|
1026 |
if (ideal == Op_RegD || ideal == Op_RegL) { |
|
1027 |
// set other (low index) half to top |
|
1028 |
set_req(loc - 1, in(loc)); |
|
1029 |
} |
|
1030 |
} |
|
1031 |
set_req(loc, c); |
|
1032 |
} |
|
1033 |
||
1034 |
uint SafePointNode::size_of() const { return sizeof(*this); } |
|
1035 |
uint SafePointNode::cmp( const Node &n ) const { |
|
1036 |
return (&n == this); // Always fail except on self |
|
1037 |
} |
|
1038 |
||
1039 |
//-------------------------set_next_exception---------------------------------- |
|
1040 |
void SafePointNode::set_next_exception(SafePointNode* n) { |
|
1041 |
assert(n == NULL || n->Opcode() == Op_SafePoint, "correct value for next_exception"); |
|
1042 |
if (len() == req()) { |
|
1043 |
if (n != NULL) add_prec(n); |
|
1044 |
} else { |
|
1045 |
set_prec(req(), n); |
|
1046 |
} |
|
1047 |
} |
|
1048 |
||
1049 |
||
1050 |
//----------------------------next_exception----------------------------------- |
|
1051 |
SafePointNode* SafePointNode::next_exception() const { |
|
1052 |
if (len() == req()) { |
|
1053 |
return NULL; |
|
1054 |
} else { |
|
1055 |
Node* n = in(req()); |
|
1056 |
assert(n == NULL || n->Opcode() == Op_SafePoint, "no other uses of prec edges"); |
|
1057 |
return (SafePointNode*) n; |
|
1058 |
} |
|
1059 |
} |
|
1060 |
||
1061 |
||
1062 |
//------------------------------Ideal------------------------------------------ |
|
1063 |
// Skip over any collapsed Regions |
|
1064 |
Node *SafePointNode::Ideal(PhaseGVN *phase, bool can_reshape) { |
|
1067 | 1065 |
return remove_dead_region(phase, can_reshape) ? this : NULL; |
1 | 1066 |
} |
1067 |
||
1068 |
//------------------------------Identity--------------------------------------- |
|
1069 |
// Remove obviously duplicate safepoints |
|
1070 |
Node *SafePointNode::Identity( PhaseTransform *phase ) { |
|
1071 |
||
1072 |
// If you have back to back safepoints, remove one |
|
1073 |
if( in(TypeFunc::Control)->is_SafePoint() ) |
|
1074 |
return in(TypeFunc::Control); |
|
1075 |
||
1076 |
if( in(0)->is_Proj() ) { |
|
1077 |
Node *n0 = in(0)->in(0); |
|
1078 |
// Check if he is a call projection (except Leaf Call) |
|
1079 |
if( n0->is_Catch() ) { |
|
1080 |
n0 = n0->in(0)->in(0); |
|
1081 |
assert( n0->is_Call(), "expect a call here" ); |
|
1082 |
} |
|
1083 |
if( n0->is_Call() && n0->as_Call()->guaranteed_safepoint() ) { |
|
1084 |
// Useless Safepoint, so remove it |
|
1085 |
return in(TypeFunc::Control); |
|
1086 |
} |
|
1087 |
} |
|
1088 |
||
1089 |
return this; |
|
1090 |
} |
|
1091 |
||
1092 |
//------------------------------Value------------------------------------------ |
|
1093 |
const Type *SafePointNode::Value( PhaseTransform *phase ) const { |
|
1094 |
if( phase->type(in(0)) == Type::TOP ) return Type::TOP; |
|
1095 |
if( phase->eqv( in(0), this ) ) return Type::TOP; // Dead infinite loop |
|
1096 |
return Type::CONTROL; |
|
1097 |
} |
|
1098 |
||
1099 |
#ifndef PRODUCT |
|
1100 |
void SafePointNode::dump_spec(outputStream *st) const { |
|
1101 |
st->print(" SafePoint "); |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
1102 |
_replaced_nodes.dump(st); |
1 | 1103 |
} |
1104 |
#endif |
|
1105 |
||
1106 |
const RegMask &SafePointNode::in_RegMask(uint idx) const { |
|
1107 |
if( idx < TypeFunc::Parms ) return RegMask::Empty; |
|
1108 |
// Values outside the domain represent debug info |
|
1109 |
return *(Compile::current()->matcher()->idealreg2debugmask[in(idx)->ideal_reg()]); |
|
1110 |
} |
|
1111 |
const RegMask &SafePointNode::out_RegMask() const { |
|
1112 |
return RegMask::Empty; |
|
1113 |
} |
|
1114 |
||
1115 |
||
1116 |
void SafePointNode::grow_stack(JVMState* jvms, uint grow_by) { |
|
1117 |
assert((int)grow_by > 0, "sanity"); |
|
1118 |
int monoff = jvms->monoff(); |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1119 |
int scloff = jvms->scloff(); |
1 | 1120 |
int endoff = jvms->endoff(); |
1121 |
assert(endoff == (int)req(), "no other states or debug info after me"); |
|
1122 |
Node* top = Compile::current()->top(); |
|
1123 |
for (uint i = 0; i < grow_by; i++) { |
|
1124 |
ins_req(monoff, top); |
|
1125 |
} |
|
1126 |
jvms->set_monoff(monoff + grow_by); |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1127 |
jvms->set_scloff(scloff + grow_by); |
1 | 1128 |
jvms->set_endoff(endoff + grow_by); |
1129 |
} |
|
1130 |
||
1131 |
void SafePointNode::push_monitor(const FastLockNode *lock) { |
|
1132 |
// Add a LockNode, which points to both the original BoxLockNode (the |
|
1133 |
// stack space for the monitor) and the Object being locked. |
|
1134 |
const int MonitorEdges = 2; |
|
1135 |
assert(JVMState::logMonitorEdges == exact_log2(MonitorEdges), "correct MonitorEdges"); |
|
1136 |
assert(req() == jvms()->endoff(), "correct sizing"); |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1137 |
int nextmon = jvms()->scloff(); |
1 | 1138 |
if (GenerateSynchronizationCode) { |
19708
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1139 |
ins_req(nextmon, lock->box_node()); |
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1140 |
ins_req(nextmon+1, lock->obj_node()); |
1 | 1141 |
} else { |
1613
be097ec639a2
6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents:
1500
diff
changeset
|
1142 |
Node* top = Compile::current()->top(); |
19708
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1143 |
ins_req(nextmon, top); |
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1144 |
ins_req(nextmon, top); |
1 | 1145 |
} |
19708
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1146 |
jvms()->set_scloff(nextmon + MonitorEdges); |
1 | 1147 |
jvms()->set_endoff(req()); |
1148 |
} |
|
1149 |
||
1150 |
void SafePointNode::pop_monitor() { |
|
1151 |
// Delete last monitor from debug info |
|
1152 |
debug_only(int num_before_pop = jvms()->nof_monitors()); |
|
19708
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1153 |
const int MonitorEdges = 2; |
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1154 |
assert(JVMState::logMonitorEdges == exact_log2(MonitorEdges), "correct MonitorEdges"); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1155 |
int scloff = jvms()->scloff(); |
1 | 1156 |
int endoff = jvms()->endoff(); |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1157 |
int new_scloff = scloff - MonitorEdges; |
1 | 1158 |
int new_endoff = endoff - MonitorEdges; |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1159 |
jvms()->set_scloff(new_scloff); |
1 | 1160 |
jvms()->set_endoff(new_endoff); |
19708
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1161 |
while (scloff > new_scloff) del_req_ordered(--scloff); |
1 | 1162 |
assert(jvms()->nof_monitors() == num_before_pop-1, ""); |
1163 |
} |
|
1164 |
||
1165 |
Node *SafePointNode::peek_monitor_box() const { |
|
1166 |
int mon = jvms()->nof_monitors() - 1; |
|
1167 |
assert(mon >= 0, "most have a monitor"); |
|
1168 |
return monitor_box(jvms(), mon); |
|
1169 |
} |
|
1170 |
||
1171 |
Node *SafePointNode::peek_monitor_obj() const { |
|
1172 |
int mon = jvms()->nof_monitors() - 1; |
|
1173 |
assert(mon >= 0, "most have a monitor"); |
|
1174 |
return monitor_obj(jvms(), mon); |
|
1175 |
} |
|
1176 |
||
1177 |
// Do we Match on this edge index or not? Match no edges |
|
1178 |
uint SafePointNode::match_edge(uint idx) const { |
|
1179 |
if( !needs_polling_address_input() ) |
|
1180 |
return 0; |
|
1181 |
||
1182 |
return (TypeFunc::Parms == idx); |
|
1183 |
} |
|
1184 |
||
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1185 |
//============== SafePointScalarObjectNode ============== |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1186 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1187 |
SafePointScalarObjectNode::SafePointScalarObjectNode(const TypeOopPtr* tp, |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1188 |
#ifdef ASSERT |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1189 |
AllocateNode* alloc, |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1190 |
#endif |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1191 |
uint first_index, |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1192 |
uint n_fields) : |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1193 |
TypeNode(tp, 1), // 1 control input -- seems required. Get from root. |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1194 |
#ifdef ASSERT |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1195 |
_alloc(alloc), |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1196 |
#endif |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1197 |
_first_index(first_index), |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1198 |
_n_fields(n_fields) |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1199 |
{ |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1200 |
init_class_id(Class_SafePointScalarObject); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1201 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1202 |
|
11191 | 1203 |
// Do not allow value-numbering for SafePointScalarObject node. |
1204 |
uint SafePointScalarObjectNode::hash() const { return NO_HASH; } |
|
1205 |
uint SafePointScalarObjectNode::cmp( const Node &n ) const { |
|
1206 |
return (&n == this); // Always fail except on self |
|
1207 |
} |
|
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1208 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1209 |
uint SafePointScalarObjectNode::ideal_reg() const { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1210 |
return 0; // No matching to machine instruction |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1211 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1212 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1213 |
const RegMask &SafePointScalarObjectNode::in_RegMask(uint idx) const { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1214 |
return *(Compile::current()->matcher()->idealreg2debugmask[in(idx)->ideal_reg()]); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1215 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1216 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1217 |
const RegMask &SafePointScalarObjectNode::out_RegMask() const { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1218 |
return RegMask::Empty; |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1219 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1220 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1221 |
uint SafePointScalarObjectNode::match_edge(uint idx) const { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1222 |
return 0; |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1223 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1224 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1225 |
SafePointScalarObjectNode* |
19708
64e8c91f5f3e
8012972: Incremental Inlining should support scalar replaced object in debug info
kvn
parents:
17383
diff
changeset
|
1226 |
SafePointScalarObjectNode::clone(Dict* sosn_map) const { |
236
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1227 |
void* cached = (*sosn_map)[(void*)this]; |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1228 |
if (cached != NULL) { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1229 |
return (SafePointScalarObjectNode*)cached; |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1230 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1231 |
SafePointScalarObjectNode* res = (SafePointScalarObjectNode*)Node::clone(); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1232 |
sosn_map->Insert((void*)this, (void*)res); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1233 |
return res; |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1234 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1235 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1236 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1237 |
#ifndef PRODUCT |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1238 |
void SafePointScalarObjectNode::dump_spec(outputStream *st) const { |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1239 |
st->print(" # fields@[%d..%d]", first_index(), |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1240 |
first_index() + n_fields() - 1); |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1241 |
} |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1242 |
|
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1243 |
#endif |
9a04268c8eea
6671807: (Escape Analysis) Add new ideal node to represent the state of a scalarized object at a safepoint
kvn
parents:
212
diff
changeset
|
1244 |
|
1 | 1245 |
//============================================================================= |
1246 |
uint AllocateNode::size_of() const { return sizeof(*this); } |
|
1247 |
||
1248 |
AllocateNode::AllocateNode(Compile* C, const TypeFunc *atype, |
|
1249 |
Node *ctrl, Node *mem, Node *abio, |
|
1250 |
Node *size, Node *klass_node, Node *initial_test) |
|
1251 |
: CallNode(atype, NULL, TypeRawPtr::BOTTOM) |
|
1252 |
{ |
|
1253 |
init_class_id(Class_Allocate); |
|
1254 |
init_flags(Flag_is_macro); |
|
212
cd4963e67949
6667612: (Escape Analysis) disable loop cloning if it has a scalar replaceable allocation
kvn
parents:
1
diff
changeset
|
1255 |
_is_scalar_replaceable = false; |
17383 | 1256 |
_is_non_escaping = false; |
1 | 1257 |
Node *topnode = C->top(); |
1258 |
||
1259 |
init_req( TypeFunc::Control , ctrl ); |
|
1260 |
init_req( TypeFunc::I_O , abio ); |
|
1261 |
init_req( TypeFunc::Memory , mem ); |
|
1262 |
init_req( TypeFunc::ReturnAdr, topnode ); |
|
1263 |
init_req( TypeFunc::FramePtr , topnode ); |
|
1264 |
init_req( AllocSize , size); |
|
1265 |
init_req( KlassNode , klass_node); |
|
1266 |
init_req( InitialTest , initial_test); |
|
1267 |
init_req( ALength , topnode); |
|
1268 |
C->add_macro_node(this); |
|
1269 |
} |
|
1270 |
||
1271 |
//============================================================================= |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1272 |
Node* AllocateArrayNode::Ideal(PhaseGVN *phase, bool can_reshape) { |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1273 |
if (remove_dead_region(phase, can_reshape)) return this; |
11191 | 1274 |
// Don't bother trying to transform a dead node |
1275 |
if (in(0) && in(0)->is_top()) return NULL; |
|
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1276 |
|
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1277 |
const Type* type = phase->type(Ideal_length()); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1278 |
if (type->isa_int() && type->is_int()->_hi < 0) { |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1279 |
if (can_reshape) { |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1280 |
PhaseIterGVN *igvn = phase->is_IterGVN(); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1281 |
// Unreachable fall through path (negative array length), |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1282 |
// the allocation can only throw so disconnect it. |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1283 |
Node* proj = proj_out(TypeFunc::Control); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1284 |
Node* catchproj = NULL; |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1285 |
if (proj != NULL) { |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1286 |
for (DUIterator_Fast imax, i = proj->fast_outs(imax); i < imax; i++) { |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1287 |
Node *cn = proj->fast_out(i); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1288 |
if (cn->is_Catch()) { |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1289 |
catchproj = cn->as_Multi()->proj_out(CatchProjNode::fall_through_index); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1290 |
break; |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1291 |
} |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1292 |
} |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1293 |
} |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1294 |
if (catchproj != NULL && catchproj->outcnt() > 0 && |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1295 |
(catchproj->outcnt() > 1 || |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1296 |
catchproj->unique_out()->Opcode() != Op_Halt)) { |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1297 |
assert(catchproj->is_CatchProj(), "must be a CatchProjNode"); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1298 |
Node* nproj = catchproj->clone(); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1299 |
igvn->register_new_node_with_optimizer(nproj); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1300 |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
1301 |
Node *frame = new ParmNode( phase->C->start(), TypeFunc::FramePtr ); |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1302 |
frame = phase->transform(frame); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1303 |
// Halt & Catch Fire |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
1304 |
Node *halt = new HaltNode( nproj, frame ); |
2528
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1305 |
phase->C->root()->add_req(halt); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1306 |
phase->transform(halt); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1307 |
|
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1308 |
igvn->replace_node(catchproj, phase->C->top()); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1309 |
return this; |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1310 |
} |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1311 |
} else { |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1312 |
// Can't correct it during regular GVN so register for IGVN |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1313 |
phase->C->record_for_igvn(this); |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1314 |
} |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1315 |
} |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1316 |
return NULL; |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1317 |
} |
feeff04a3129
6823453: DeoptimizeALot causes fastdebug server jvm to fail with assert(false,"unscheduable graph")
kvn
parents:
2127
diff
changeset
|
1318 |
|
1398
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1319 |
// Retrieve the length from the AllocateArrayNode. Narrow the type with a |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1320 |
// CastII, if appropriate. If we are not allowed to create new nodes, and |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1321 |
// a CastII is appropriate, return NULL. |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1322 |
Node *AllocateArrayNode::make_ideal_length(const TypeOopPtr* oop_type, PhaseTransform *phase, bool allow_new_nodes) { |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1323 |
Node *length = in(AllocateNode::ALength); |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1324 |
assert(length != NULL, "length is not null"); |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1325 |
|
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1326 |
const TypeInt* length_type = phase->find_int_type(length); |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1327 |
const TypeAryPtr* ary_type = oop_type->isa_aryptr(); |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1328 |
|
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1329 |
if (ary_type != NULL && length_type != NULL) { |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1330 |
const TypeInt* narrow_length_type = ary_type->narrow_size_type(length_type); |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1331 |
if (narrow_length_type != length_type) { |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1332 |
// Assert one of: |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1333 |
// - the narrow_length is 0 |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1334 |
// - the narrow_length is not wider than length |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1335 |
assert(narrow_length_type == TypeInt::ZERO || |
17383 | 1336 |
length_type->is_con() && narrow_length_type->is_con() && |
1337 |
(narrow_length_type->_hi <= length_type->_lo) || |
|
1398
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1338 |
(narrow_length_type->_hi <= length_type->_hi && |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1339 |
narrow_length_type->_lo >= length_type->_lo), |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1340 |
"narrow type must be narrower than length type"); |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1341 |
|
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1342 |
// Return NULL if new nodes are not allowed |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1343 |
if (!allow_new_nodes) return NULL; |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1344 |
// Create a cast which is control dependent on the initialization to |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1345 |
// propagate the fact that the array length must be positive. |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24424
diff
changeset
|
1346 |
length = new CastIINode(length, narrow_length_type); |
1398
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1347 |
length->set_req(0, initialization()->proj_out(0)); |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1348 |
} |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1349 |
} |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1350 |
|
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1351 |
return length; |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1352 |
} |
342890a5d031
6711100: 64bit fastdebug server vm crashes with assert(_base == Int,"Not an Int")
rasbold
parents:
1135
diff
changeset
|
1353 |
|
1 | 1354 |
//============================================================================= |
1355 |
uint LockNode::size_of() const { return sizeof(*this); } |
|
1356 |
||
1357 |
// Redundant lock elimination |
|
1358 |
// |
|
1359 |
// There are various patterns of locking where we release and |
|
1360 |
// immediately reacquire a lock in a piece of code where no operations |
|
1361 |
// occur in between that would be observable. In those cases we can |
|
1362 |
// skip releasing and reacquiring the lock without violating any |
|
1363 |
// fairness requirements. Doing this around a loop could cause a lock |
|
1364 |
// to be held for a very long time so we concentrate on non-looping |
|
1365 |
// control flow. We also require that the operations are fully |
|
1366 |
// redundant meaning that we don't introduce new lock operations on |
|
1367 |
// some paths so to be able to eliminate it on others ala PRE. This |
|
1368 |
// would probably require some more extensive graph manipulation to |
|
1369 |
// guarantee that the memory edges were all handled correctly. |
|
1370 |
// |
|
1371 |
// Assuming p is a simple predicate which can't trap in any way and s |
|
1372 |
// is a synchronized method consider this code: |
|
1373 |
// |
|
1374 |
// s(); |
|
1375 |
// if (p) |
|
1376 |
// s(); |
|
1377 |
// else |
|
1378 |
// s(); |
|
1379 |
// s(); |
|
1380 |
// |
|
1381 |
// 1. The unlocks of the first call to s can be eliminated if the |
|
1382 |
// locks inside the then and else branches are eliminated. |
|
1383 |
// |
|
1384 |
// 2. The unlocks of the then and else branches can be eliminated if |
|
1385 |
// the lock of the final call to s is eliminated. |
|
1386 |
// |
|
1387 |
// Either of these cases subsumes the simple case of sequential control flow |
|
1388 |
// |
|
1389 |
// Addtionally we can eliminate versions without the else case: |
|
1390 |
// |
|
1391 |
// s(); |
|
1392 |
// if (p) |
|
1393 |
// s(); |
|
1394 |
// s(); |
|
1395 |
// |
|
1396 |
// 3. In this case we eliminate the unlock of the first s, the lock |
|
1397 |
// and unlock in the then case and the lock in the final s. |
|
1398 |
// |
|
1399 |
// Note also that in all these cases the then/else pieces don't have |
|
1400 |
// to be trivial as long as they begin and end with synchronization |
|
1401 |
// operations. |
|
1402 |
// |
|
1403 |
// s(); |
|
1404 |
// if (p) |
|
1405 |
// s(); |
|
1406 |
// f(); |
|
1407 |
// s(); |
|
1408 |
// s(); |
|
1409 |
// |
|
1410 |
// The code will work properly for this case, leaving in the unlock |
|
1411 |
// before the call to f and the relock after it. |
|
1412 |
// |
|
1413 |
// A potentially interesting case which isn't handled here is when the |
|
1414 |
// locking is partially redundant. |
|
1415 |
// |
|
1416 |
// s(); |
|
1417 |
// if (p) |
|
1418 |
// s(); |
|
1419 |
// |
|
1420 |
// This could be eliminated putting unlocking on the else case and |
|
1421 |
// eliminating the first unlock and the lock in the then side. |
|
1422 |
// Alternatively the unlock could be moved out of the then side so it |
|
1423 |
// was after the merge and the first unlock and second lock |
|
1424 |
// eliminated. This might require less manipulation of the memory |
|
1425 |
// state to get correct. |
|
1426 |
// |
|
1427 |
// Additionally we might allow work between a unlock and lock before |
|
1428 |
// giving up eliminating the locks. The current code disallows any |
|
1429 |
// conditional control flow between these operations. A formulation |
|
1430 |
// similar to partial redundancy elimination computing the |
|
1431 |
// availability of unlocking and the anticipatability of locking at a |
|
1432 |
// program point would allow detection of fully redundant locking with |
|
1433 |
// some amount of work in between. I'm not sure how often I really |
|
1434 |
// think that would occur though. Most of the cases I've seen |
|
1435 |
// indicate it's likely non-trivial work would occur in between. |
|
1436 |
// There may be other more complicated constructs where we could |
|
1437 |
// eliminate locking but I haven't seen any others appear as hot or |
|
1438 |
// interesting. |
|
1439 |
// |
|
1440 |
// Locking and unlocking have a canonical form in ideal that looks |
|
1441 |
// roughly like this: |
|
1442 |
// |
|
1443 |
// <obj> |
|
1444 |
// | \\------+ |
|
1445 |
// | \ \ |
|
1446 |
// | BoxLock \ |
|
1447 |
// | | | \ |
|
1448 |
// | | \ \ |
|
1449 |
// | | FastLock |
|
1450 |
// | | / |
|
1451 |
// | | / |
|
1452 |
// | | | |
|
1453 |
// |
|
1454 |
// Lock |
|
1455 |
// | |
|
1456 |
// Proj #0 |
|
1457 |
// | |
|
1458 |
// MembarAcquire |
|
1459 |
// | |
|
1460 |
// Proj #0 |
|
1461 |
// |
|
1462 |
// MembarRelease |
|
1463 |
// | |
|
1464 |
// Proj #0 |
|
1465 |
// | |
|
1466 |
// Unlock |
|
1467 |
// | |
|
1468 |
// Proj #0 |
|
1469 |
// |
|
1470 |
// |
|
1471 |
// This code proceeds by processing Lock nodes during PhaseIterGVN |
|
1472 |
// and searching back through its control for the proper code |
|
1473 |
// patterns. Once it finds a set of lock and unlock operations to |
|
1474 |
// eliminate they are marked as eliminatable which causes the |
|
1475 |
// expansion of the Lock and Unlock macro nodes to make the operation a NOP |
|
1476 |
// |
|
1477 |
//============================================================================= |
|
1478 |
||
1479 |
// |
|
1480 |
// Utility function to skip over uninteresting control nodes. Nodes skipped are: |
|
1481 |
// - copy regions. (These may not have been optimized away yet.) |
|
1482 |
// - eliminated locking nodes |
|
1483 |
// |
|
1484 |
static Node *next_control(Node *ctrl) { |
|
1485 |
if (ctrl == NULL) |
|
1486 |
return NULL; |
|
1487 |
while (1) { |
|
1488 |
if (ctrl->is_Region()) { |
|
1489 |
RegionNode *r = ctrl->as_Region(); |
|
1490 |
Node *n = r->is_copy(); |
|
1491 |
if (n == NULL) |
|
1492 |
break; // hit a region, return it |
|
1493 |
else |
|
1494 |
ctrl = n; |
|
1495 |
} else if (ctrl->is_Proj()) { |
|
1496 |
Node *in0 = ctrl->in(0); |
|
1497 |
if (in0->is_AbstractLock() && in0->as_AbstractLock()->is_eliminated()) { |
|
1498 |
ctrl = in0->in(0); |
|
1499 |
} else { |
|
1500 |
break; |
|
1501 |
} |
|
1502 |
} else { |
|
1503 |
break; // found an interesting control |
|
1504 |
} |
|
1505 |
} |
|
1506 |
return ctrl; |
|
1507 |
} |
|
1508 |
// |
|
1509 |
// Given a control, see if it's the control projection of an Unlock which |
|
1510 |
// operating on the same object as lock. |
|
1511 |
// |
|
1512 |
bool AbstractLockNode::find_matching_unlock(const Node* ctrl, LockNode* lock, |
|
1513 |
GrowableArray<AbstractLockNode*> &lock_ops) { |
|
1514 |
ProjNode *ctrl_proj = (ctrl->is_Proj()) ? ctrl->as_Proj() : NULL; |
|
1515 |
if (ctrl_proj != NULL && ctrl_proj->_con == TypeFunc::Control) { |
|
1516 |
Node *n = ctrl_proj->in(0); |
|
1517 |
if (n != NULL && n->is_Unlock()) { |
|
1518 |
UnlockNode *unlock = n->as_Unlock(); |
|
11446 | 1519 |
if (lock->obj_node()->eqv_uncast(unlock->obj_node()) && |
11445 | 1520 |
BoxLockNode::same_slot(lock->box_node(), unlock->box_node()) && |
1521 |
!unlock->is_eliminated()) { |
|
1 | 1522 |
lock_ops.append(unlock); |
1523 |
return true; |
|
1524 |
} |
|
1525 |
} |
|
1526 |
} |
|
1527 |
return false; |
|
1528 |
} |
|
1529 |
||
1530 |
// |
|
1531 |
// Find the lock matching an unlock. Returns null if a safepoint |
|
1532 |
// or complicated control is encountered first. |
|
1533 |
LockNode *AbstractLockNode::find_matching_lock(UnlockNode* unlock) { |
|
1534 |
LockNode *lock_result = NULL; |
|
1535 |
// find the matching lock, or an intervening safepoint |
|
1536 |
Node *ctrl = next_control(unlock->in(0)); |
|
1537 |
while (1) { |
|
1538 |
assert(ctrl != NULL, "invalid control graph"); |
|
1539 |
assert(!ctrl->is_Start(), "missing lock for unlock"); |
|
1540 |
if (ctrl->is_top()) break; // dead control path |
|
1541 |
if (ctrl->is_Proj()) ctrl = ctrl->in(0); |
|
1542 |
if (ctrl->is_SafePoint()) { |
|
1543 |
break; // found a safepoint (may be the lock we are searching for) |
|
1544 |
} else if (ctrl->is_Region()) { |
|
1545 |
// Check for a simple diamond pattern. Punt on anything more complicated |
|
1546 |
if (ctrl->req() == 3 && ctrl->in(1) != NULL && ctrl->in(2) != NULL) { |
|
1547 |
Node *in1 = next_control(ctrl->in(1)); |
|
1548 |
Node *in2 = next_control(ctrl->in(2)); |
|
1549 |
if (((in1->is_IfTrue() && in2->is_IfFalse()) || |
|
1550 |
(in2->is_IfTrue() && in1->is_IfFalse())) && (in1->in(0) == in2->in(0))) { |
|
1551 |
ctrl = next_control(in1->in(0)->in(0)); |
|
1552 |
} else { |
|
1553 |
break; |
|
1554 |
} |
|
1555 |
} else { |
|
1556 |
break; |
|
1557 |
} |
|
1558 |
} else { |
|
1559 |
ctrl = next_control(ctrl->in(0)); // keep searching |
|
1560 |
} |
|
1561 |
} |
|
1562 |
if (ctrl->is_Lock()) { |
|
1563 |
LockNode *lock = ctrl->as_Lock(); |
|
11446 | 1564 |
if (lock->obj_node()->eqv_uncast(unlock->obj_node()) && |
11445 | 1565 |
BoxLockNode::same_slot(lock->box_node(), unlock->box_node())) { |
1 | 1566 |
lock_result = lock; |
1567 |
} |
|
1568 |
} |
|
1569 |
return lock_result; |
|
1570 |
} |
|
1571 |
||
1572 |
// This code corresponds to case 3 above. |
|
1573 |
||
1574 |
bool AbstractLockNode::find_lock_and_unlock_through_if(Node* node, LockNode* lock, |
|
1575 |
GrowableArray<AbstractLockNode*> &lock_ops) { |
|
1576 |
Node* if_node = node->in(0); |
|
1577 |
bool if_true = node->is_IfTrue(); |
|
1578 |
||
1579 |
if (if_node->is_If() && if_node->outcnt() == 2 && (if_true || node->is_IfFalse())) { |
|
1580 |
Node *lock_ctrl = next_control(if_node->in(0)); |
|
1581 |
if (find_matching_unlock(lock_ctrl, lock, lock_ops)) { |
|
1582 |
Node* lock1_node = NULL; |
|
1583 |
ProjNode* proj = if_node->as_If()->proj_out(!if_true); |
|
1584 |
if (if_true) { |
|
1585 |
if (proj->is_IfFalse() && proj->outcnt() == 1) { |
|
1586 |
lock1_node = proj->unique_out(); |
|
1587 |
} |
|
1588 |
} else { |
|
1589 |
if (proj->is_IfTrue() && proj->outcnt() == 1) { |
|
1590 |
lock1_node = proj->unique_out(); |
|
1591 |
} |
|
1592 |
} |
|
1593 |
if (lock1_node != NULL && lock1_node->is_Lock()) { |
|
1594 |
LockNode *lock1 = lock1_node->as_Lock(); |
|
11446 | 1595 |
if (lock->obj_node()->eqv_uncast(lock1->obj_node()) && |
11445 | 1596 |
BoxLockNode::same_slot(lock->box_node(), lock1->box_node()) && |
1597 |
!lock1->is_eliminated()) { |
|
1 | 1598 |
lock_ops.append(lock1); |
1599 |
return true; |
|
1600 |
} |
|
1601 |
} |
|
1602 |
} |
|
1603 |
} |
|
1604 |
||
1605 |
lock_ops.trunc_to(0); |
|
1606 |
return false; |
|
1607 |
} |
|
1608 |
||
1609 |
bool AbstractLockNode::find_unlocks_for_region(const RegionNode* region, LockNode* lock, |
|
1610 |
GrowableArray<AbstractLockNode*> &lock_ops) { |
|
1611 |
// check each control merging at this point for a matching unlock. |
|
1612 |
// in(0) should be self edge so skip it. |
|
1613 |
for (int i = 1; i < (int)region->req(); i++) { |
|
1614 |
Node *in_node = next_control(region->in(i)); |
|
1615 |
if (in_node != NULL) { |
|
1616 |
if (find_matching_unlock(in_node, lock, lock_ops)) { |
|
1617 |
// found a match so keep on checking. |
|
1618 |
continue; |
|
1619 |
} else if (find_lock_and_unlock_through_if(in_node, lock, lock_ops)) { |
|
1620 |
continue; |
|
1621 |
} |
|
1622 |
||
1623 |
// If we fall through to here then it was some kind of node we |
|
1624 |
// don't understand or there wasn't a matching unlock, so give |
|
1625 |
// up trying to merge locks. |
|
1626 |
lock_ops.trunc_to(0); |
|
1627 |
return false; |
|
1628 |
} |
|
1629 |
} |
|
1630 |
return true; |
|
1631 |
||
1632 |
} |
|
1633 |
||
1634 |
#ifndef PRODUCT |
|
1635 |
// |
|
1636 |
// Create a counter which counts the number of times this lock is acquired |
|
1637 |
// |
|
1638 |
void AbstractLockNode::create_lock_counter(JVMState* state) { |
|
1639 |
_counter = OptoRuntime::new_named_counter(state, NamedCounter::LockCounter); |
|
1640 |
} |
|
1641 |
||
11445 | 1642 |
void AbstractLockNode::set_eliminated_lock_counter() { |
1 | 1643 |
if (_counter) { |
1644 |
// Update the counter to indicate that this lock was eliminated. |
|
1645 |
// The counter update code will stay around even though the |
|
1646 |
// optimizer will eliminate the lock operation itself. |
|
1647 |
_counter->set_tag(NamedCounter::EliminatedLockCounter); |
|
1648 |
} |
|
11445 | 1649 |
} |
1 | 1650 |
#endif |
1651 |
||
1652 |
//============================================================================= |
|
1653 |
Node *LockNode::Ideal(PhaseGVN *phase, bool can_reshape) { |
|
1654 |
||
239
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1655 |
// perform any generic optimizations first (returns 'this' or NULL) |
1 | 1656 |
Node *result = SafePointNode::Ideal(phase, can_reshape); |
11191 | 1657 |
if (result != NULL) return result; |
1658 |
// Don't bother trying to transform a dead node |
|
1659 |
if (in(0) && in(0)->is_top()) return NULL; |
|
1 | 1660 |
|
1661 |
// Now see if we can optimize away this lock. We don't actually |
|
1662 |
// remove the locking here, we simply set the _eliminate flag which |
|
1663 |
// prevents macro expansion from expanding the lock. Since we don't |
|
1664 |
// modify the graph, the value returned from this function is the |
|
1665 |
// one computed above. |
|
11445 | 1666 |
if (can_reshape && EliminateLocks && !is_non_esc_obj()) { |
239
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1667 |
// |
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1668 |
// If we are locking an unescaped object, the lock/unlock is unnecessary |
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1669 |
// |
1613
be097ec639a2
6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents:
1500
diff
changeset
|
1670 |
ConnectionGraph *cgr = phase->C->congraph(); |
12158
f24f2560da32
7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents:
11458
diff
changeset
|
1671 |
if (cgr != NULL && cgr->not_global_escape(obj_node())) { |
11445 | 1672 |
assert(!is_eliminated() || is_coarsened(), "sanity"); |
1673 |
// The lock could be marked eliminated by lock coarsening |
|
1674 |
// code during first IGVN before EA. Replace coarsened flag |
|
1675 |
// to eliminate all associated locks/unlocks. |
|
1676 |
this->set_non_esc_obj(); |
|
239
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1677 |
return result; |
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1678 |
} |
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1679 |
|
1 | 1680 |
// |
1681 |
// Try lock coarsening |
|
1682 |
// |
|
1683 |
PhaseIterGVN* iter = phase->is_IterGVN(); |
|
11191 | 1684 |
if (iter != NULL && !is_eliminated()) { |
1 | 1685 |
|
1686 |
GrowableArray<AbstractLockNode*> lock_ops; |
|
1687 |
||
1688 |
Node *ctrl = next_control(in(0)); |
|
1689 |
||
1690 |
// now search back for a matching Unlock |
|
1691 |
if (find_matching_unlock(ctrl, this, lock_ops)) { |
|
1692 |
// found an unlock directly preceding this lock. This is the |
|
1693 |
// case of single unlock directly control dependent on a |
|
1694 |
// single lock which is the trivial version of case 1 or 2. |
|
1695 |
} else if (ctrl->is_Region() ) { |
|
1696 |
if (find_unlocks_for_region(ctrl->as_Region(), this, lock_ops)) { |
|
1697 |
// found lock preceded by multiple unlocks along all paths |
|
1698 |
// joining at this point which is case 3 in description above. |
|
1699 |
} |
|
1700 |
} else { |
|
1701 |
// see if this lock comes from either half of an if and the |
|
1702 |
// predecessors merges unlocks and the other half of the if |
|
1703 |
// performs a lock. |
|
1704 |
if (find_lock_and_unlock_through_if(ctrl, this, lock_ops)) { |
|
1705 |
// found unlock splitting to an if with locks on both branches. |
|
1706 |
} |
|
1707 |
} |
|
1708 |
||
1709 |
if (lock_ops.length() > 0) { |
|
1710 |
// add ourselves to the list of locks to be eliminated. |
|
1711 |
lock_ops.append(this); |
|
1712 |
||
1713 |
#ifndef PRODUCT |
|
1714 |
if (PrintEliminateLocks) { |
|
1715 |
int locks = 0; |
|
1716 |
int unlocks = 0; |
|
1717 |
for (int i = 0; i < lock_ops.length(); i++) { |
|
1718 |
AbstractLockNode* lock = lock_ops.at(i); |
|
239
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1719 |
if (lock->Opcode() == Op_Lock) |
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1720 |
locks++; |
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1721 |
else |
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1722 |
unlocks++; |
1 | 1723 |
if (Verbose) { |
1724 |
lock->dump(1); |
|
1725 |
} |
|
1726 |
} |
|
1727 |
tty->print_cr("***Eliminated %d unlocks and %d locks", unlocks, locks); |
|
1728 |
} |
|
1729 |
#endif |
|
1730 |
||
1731 |
// for each of the identified locks, mark them |
|
1732 |
// as eliminatable |
|
1733 |
for (int i = 0; i < lock_ops.length(); i++) { |
|
1734 |
AbstractLockNode* lock = lock_ops.at(i); |
|
1735 |
||
11445 | 1736 |
// Mark it eliminated by coarsening and update any counters |
1613
be097ec639a2
6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents:
1500
diff
changeset
|
1737 |
lock->set_coarsened(); |
1 | 1738 |
} |
11191 | 1739 |
} else if (ctrl->is_Region() && |
1 | 1740 |
iter->_worklist.member(ctrl)) { |
1741 |
// We weren't able to find any opportunities but the region this |
|
1742 |
// lock is control dependent on hasn't been processed yet so put |
|
1743 |
// this lock back on the worklist so we can check again once any |
|
1744 |
// region simplification has occurred. |
|
1745 |
iter->_worklist.push(this); |
|
1746 |
} |
|
1747 |
} |
|
1748 |
} |
|
1749 |
||
1750 |
return result; |
|
1751 |
} |
|
1752 |
||
1753 |
//============================================================================= |
|
11445 | 1754 |
bool LockNode::is_nested_lock_region() { |
11458
5ba160829cef
7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents:
11446
diff
changeset
|
1755 |
BoxLockNode* box = box_node()->as_BoxLock(); |
5ba160829cef
7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents:
11446
diff
changeset
|
1756 |
int stk_slot = box->stack_slot(); |
5ba160829cef
7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents:
11446
diff
changeset
|
1757 |
if (stk_slot <= 0) |
11445 | 1758 |
return false; // External lock or it is not Box (Phi node). |
1759 |
||
1760 |
// Ignore complex cases: merged locks or multiple locks. |
|
1761 |
Node* obj = obj_node(); |
|
1762 |
LockNode* unique_lock = NULL; |
|
11458
5ba160829cef
7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents:
11446
diff
changeset
|
1763 |
if (!box->is_simple_lock_region(&unique_lock, obj) || |
11445 | 1764 |
(unique_lock != this)) { |
1765 |
return false; |
|
1766 |
} |
|
1767 |
||
1768 |
// Look for external lock for the same object. |
|
1769 |
SafePointNode* sfn = this->as_SafePoint(); |
|
1770 |
JVMState* youngest_jvms = sfn->jvms(); |
|
1771 |
int max_depth = youngest_jvms->depth(); |
|
1772 |
for (int depth = 1; depth <= max_depth; depth++) { |
|
1773 |
JVMState* jvms = youngest_jvms->of_depth(depth); |
|
1774 |
int num_mon = jvms->nof_monitors(); |
|
1775 |
// Loop over monitors |
|
1776 |
for (int idx = 0; idx < num_mon; idx++) { |
|
1777 |
Node* obj_node = sfn->monitor_obj(jvms, idx); |
|
11458
5ba160829cef
7128355: assert(!nocreate) failed: Cannot build a phi for a block already parsed
kvn
parents:
11446
diff
changeset
|
1778 |
BoxLockNode* box_node = sfn->monitor_box(jvms, idx)->as_BoxLock(); |
11446 | 1779 |
if ((box_node->stack_slot() < stk_slot) && obj_node->eqv_uncast(obj)) { |
11445 | 1780 |
return true; |
1781 |
} |
|
1782 |
} |
|
1783 |
} |
|
1784 |
return false; |
|
1785 |
} |
|
1786 |
||
1787 |
//============================================================================= |
|
1 | 1788 |
uint UnlockNode::size_of() const { return sizeof(*this); } |
1789 |
||
1790 |
//============================================================================= |
|
1791 |
Node *UnlockNode::Ideal(PhaseGVN *phase, bool can_reshape) { |
|
1792 |
||
239
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1793 |
// perform any generic optimizations first (returns 'this' or NULL) |
11191 | 1794 |
Node *result = SafePointNode::Ideal(phase, can_reshape); |
1795 |
if (result != NULL) return result; |
|
1796 |
// Don't bother trying to transform a dead node |
|
1797 |
if (in(0) && in(0)->is_top()) return NULL; |
|
1 | 1798 |
|
1799 |
// Now see if we can optimize away this unlock. We don't actually |
|
1800 |
// remove the unlocking here, we simply set the _eliminate flag which |
|
1801 |
// prevents macro expansion from expanding the unlock. Since we don't |
|
1802 |
// modify the graph, the value returned from this function is the |
|
1803 |
// one computed above. |
|
239
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1804 |
// Escape state is defined after Parse phase. |
11445 | 1805 |
if (can_reshape && EliminateLocks && !is_non_esc_obj()) { |
1 | 1806 |
// |
239
fb31825d5444
6672848: (Escape Analysis) improve lock elimination with EA
kvn
parents:
238
diff
changeset
|
1807 |
// If we are unlocking an unescaped object, the lock/unlock is unnecessary. |
1 | 1808 |
// |
1613
be097ec639a2
6775880: EA +DeoptimizeALot: assert(mon_info->owner()->is_locked(),"object must be locked now")
kvn
parents:
1500
diff
changeset
|
1809 |
ConnectionGraph *cgr = phase->C->congraph(); |
12158
f24f2560da32
7147744: CTW: assert(false) failed: infinite EA connection graph build
kvn
parents:
11458
diff
changeset
|
1810 |
if (cgr != NULL && cgr->not_global_escape(obj_node())) { |
11445 | 1811 |
assert(!is_eliminated() || is_coarsened(), "sanity"); |
1812 |
// The lock could be marked eliminated by lock coarsening |
|
1813 |
// code during first IGVN before EA. Replace coarsened flag |
|
1814 |
// to eliminate all associated locks/unlocks. |
|
1815 |
this->set_non_esc_obj(); |
|
1 | 1816 |
} |
1817 |
} |
|
1818 |
return result; |
|
1819 |
} |
|
26166 | 1820 |
|
1821 |
ArrayCopyNode::ArrayCopyNode(Compile* C, bool alloc_tightly_coupled) |
|
28396
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1822 |
: CallNode(arraycopy_type(), NULL, TypeRawPtr::BOTTOM), |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1823 |
_alloc_tightly_coupled(alloc_tightly_coupled), |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1824 |
_kind(None), |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1825 |
_arguments_validated(false) { |
26166 | 1826 |
init_class_id(Class_ArrayCopy); |
1827 |
init_flags(Flag_is_macro); |
|
1828 |
C->add_macro_node(this); |
|
1829 |
} |
|
1830 |
||
1831 |
uint ArrayCopyNode::size_of() const { return sizeof(*this); } |
|
1832 |
||
1833 |
ArrayCopyNode* ArrayCopyNode::make(GraphKit* kit, bool may_throw, |
|
26180
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1834 |
Node* src, Node* src_offset, |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1835 |
Node* dest, Node* dest_offset, |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1836 |
Node* length, |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1837 |
bool alloc_tightly_coupled, |
26435
b446202ac824
8055910: closed/java/util/Collections/CheckedCollections.java failed with ClassCastException not thrown
roland
parents:
26180
diff
changeset
|
1838 |
Node* src_klass, Node* dest_klass, |
b446202ac824
8055910: closed/java/util/Collections/CheckedCollections.java failed with ClassCastException not thrown
roland
parents:
26180
diff
changeset
|
1839 |
Node* src_length, Node* dest_length) { |
26166 | 1840 |
|
1841 |
ArrayCopyNode* ac = new ArrayCopyNode(kit->C, alloc_tightly_coupled); |
|
1842 |
Node* prev_mem = kit->set_predefined_input_for_runtime_call(ac); |
|
1843 |
||
26180
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1844 |
ac->init_req(ArrayCopyNode::Src, src); |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1845 |
ac->init_req(ArrayCopyNode::SrcPos, src_offset); |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1846 |
ac->init_req(ArrayCopyNode::Dest, dest); |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1847 |
ac->init_req(ArrayCopyNode::DestPos, dest_offset); |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1848 |
ac->init_req(ArrayCopyNode::Length, length); |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1849 |
ac->init_req(ArrayCopyNode::SrcLen, src_length); |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1850 |
ac->init_req(ArrayCopyNode::DestLen, dest_length); |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1851 |
ac->init_req(ArrayCopyNode::SrcKlass, src_klass); |
2fbed11af70e
8055153: nsk/stress/jck60/jck60014 crashes on sparc
roland
parents:
26166
diff
changeset
|
1852 |
ac->init_req(ArrayCopyNode::DestKlass, dest_klass); |
26166 | 1853 |
|
1854 |
if (may_throw) { |
|
1855 |
ac->set_req(TypeFunc::I_O , kit->i_o()); |
|
1856 |
kit->add_safepoint_edges(ac, false); |
|
1857 |
} |
|
1858 |
||
1859 |
return ac; |
|
1860 |
} |
|
1861 |
||
1862 |
void ArrayCopyNode::connect_outputs(GraphKit* kit) { |
|
1863 |
kit->set_all_memory_call(this, true); |
|
1864 |
kit->set_control(kit->gvn().transform(new ProjNode(this,TypeFunc::Control))); |
|
1865 |
kit->set_i_o(kit->gvn().transform(new ProjNode(this, TypeFunc::I_O))); |
|
1866 |
kit->make_slow_call_ex(this, kit->env()->Throwable_klass(), true); |
|
1867 |
kit->set_all_memory_call(this); |
|
1868 |
} |
|
1869 |
||
1870 |
#ifndef PRODUCT |
|
1871 |
const char* ArrayCopyNode::_kind_names[] = {"arraycopy", "arraycopy, validated arguments", "clone", "oop array clone", "CopyOf", "CopyOfRange"}; |
|
1872 |
void ArrayCopyNode::dump_spec(outputStream *st) const { |
|
1873 |
CallNode::dump_spec(st); |
|
1874 |
st->print(" (%s%s)", _kind_names[_kind], _alloc_tightly_coupled ? ", tightly coupled allocation" : ""); |
|
1875 |
} |
|
1876 |
#endif |
|
28396
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1877 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1878 |
int ArrayCopyNode::get_count(PhaseGVN *phase) const { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1879 |
Node* src = in(ArrayCopyNode::Src); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1880 |
const Type* src_type = phase->type(src); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1881 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1882 |
assert(is_clonebasic(), "unexpected arraycopy type"); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1883 |
if (src_type->isa_instptr()) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1884 |
const TypeInstPtr* inst_src = src_type->is_instptr(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1885 |
ciInstanceKlass* ik = inst_src->klass()->as_instance_klass(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1886 |
// ciInstanceKlass::nof_nonstatic_fields() doesn't take injected |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1887 |
// fields into account. They are rare anyway so easier to simply |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1888 |
// skip instances with injected fields. |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1889 |
if ((!inst_src->klass_is_exact() && (ik->is_interface() || ik->has_subklass())) || ik->has_injected_fields()) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1890 |
return -1; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1891 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1892 |
int nb_fields = ik->nof_nonstatic_fields(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1893 |
return nb_fields; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1894 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1895 |
return -1; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1896 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1897 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1898 |
Node* ArrayCopyNode::try_clone_instance(PhaseGVN *phase, bool can_reshape, int count) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1899 |
assert(is_clonebasic(), "unexpected arraycopy type"); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1900 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1901 |
Node* src = in(ArrayCopyNode::Src); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1902 |
Node* dest = in(ArrayCopyNode::Dest); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1903 |
Node* ctl = in(TypeFunc::Control); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1904 |
Node* in_mem = in(TypeFunc::Memory); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1905 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1906 |
const Type* src_type = phase->type(src); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1907 |
const Type* dest_type = phase->type(dest); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1908 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1909 |
assert(src->is_AddP(), "should be base + off"); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1910 |
assert(dest->is_AddP(), "should be base + off"); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1911 |
Node* base_src = src->in(AddPNode::Base); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1912 |
Node* base_dest = dest->in(AddPNode::Base); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1913 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1914 |
MergeMemNode* mem = MergeMemNode::make(in_mem); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1915 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1916 |
const TypeInstPtr* inst_src = src_type->is_instptr(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1917 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1918 |
if (!inst_src->klass_is_exact()) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1919 |
ciInstanceKlass* ik = inst_src->klass()->as_instance_klass(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1920 |
assert(!ik->is_interface() && !ik->has_subklass(), "inconsistent klass hierarchy"); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1921 |
phase->C->dependencies()->assert_leaf_type(ik); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1922 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1923 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1924 |
ciInstanceKlass* ik = inst_src->klass()->as_instance_klass(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1925 |
assert(ik->nof_nonstatic_fields() <= ArrayCopyLoadStoreMaxElem, "too many fields"); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1926 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1927 |
for (int i = 0; i < count; i++) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1928 |
ciField* field = ik->nonstatic_field_at(i); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1929 |
int fieldidx = phase->C->alias_type(field)->index(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1930 |
const TypePtr* adr_type = phase->C->alias_type(field)->adr_type(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1931 |
Node* off = phase->MakeConX(field->offset()); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1932 |
Node* next_src = phase->transform(new AddPNode(base_src,base_src,off)); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1933 |
Node* next_dest = phase->transform(new AddPNode(base_dest,base_dest,off)); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1934 |
BasicType bt = field->layout_type(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1935 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1936 |
const Type *type; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1937 |
if (bt == T_OBJECT) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1938 |
if (!field->type()->is_loaded()) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1939 |
type = TypeInstPtr::BOTTOM; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1940 |
} else { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1941 |
ciType* field_klass = field->type(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1942 |
type = TypeOopPtr::make_from_klass(field_klass->as_klass()); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1943 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1944 |
} else { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1945 |
type = Type::get_const_basic_type(bt); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1946 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1947 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1948 |
Node* v = LoadNode::make(*phase, ctl, mem->memory_at(fieldidx), next_src, adr_type, type, bt, MemNode::unordered); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1949 |
v = phase->transform(v); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1950 |
Node* s = StoreNode::make(*phase, ctl, mem->memory_at(fieldidx), next_dest, adr_type, v, bt, MemNode::unordered); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1951 |
s = phase->transform(s); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1952 |
mem->set_memory_at(fieldidx, s); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1953 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1954 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1955 |
if (!finish_transform(phase, can_reshape, ctl, mem)) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1956 |
return NULL; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1957 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1958 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1959 |
return mem; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1960 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1961 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1962 |
bool ArrayCopyNode::finish_transform(PhaseGVN *phase, bool can_reshape, |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1963 |
Node* ctl, Node *mem) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1964 |
if (can_reshape) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1965 |
PhaseIterGVN* igvn = phase->is_IterGVN(); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1966 |
assert(is_clonebasic(), "unexpected arraycopy type"); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1967 |
Node* out_mem = proj_out(TypeFunc::Memory); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1968 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1969 |
if (out_mem->outcnt() != 1 || !out_mem->raw_out(0)->is_MergeMem() || |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1970 |
out_mem->raw_out(0)->outcnt() != 1 || !out_mem->raw_out(0)->raw_out(0)->is_MemBar()) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1971 |
assert(!GraphKit::use_ReduceInitialCardMarks(), "can only happen with card marking"); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1972 |
return false; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1973 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1974 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1975 |
igvn->replace_node(out_mem->raw_out(0), mem); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1976 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1977 |
Node* out_ctl = proj_out(TypeFunc::Control); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1978 |
igvn->replace_node(out_ctl, ctl); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1979 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1980 |
return true; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1981 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1982 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1983 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1984 |
Node *ArrayCopyNode::Ideal(PhaseGVN *phase, bool can_reshape) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1985 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1986 |
if (StressArrayCopyMacroNode && !can_reshape) return NULL; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1987 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1988 |
// See if it's a small array copy and we can inline it as |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1989 |
// loads/stores |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1990 |
// Here we can only do: |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1991 |
// - clone for which we don't need to do card marking |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1992 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1993 |
if (!is_clonebasic()) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1994 |
return NULL; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1995 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1996 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1997 |
if (in(TypeFunc::Control)->is_top() || in(TypeFunc::Memory)->is_top()) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1998 |
return NULL; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
1999 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2000 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2001 |
int count = get_count(phase); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2002 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2003 |
if (count < 0 || count > ArrayCopyLoadStoreMaxElem) { |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2004 |
return NULL; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2005 |
} |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2006 |
|
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2007 |
Node* mem = try_clone_instance(phase, can_reshape, count); |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2008 |
return mem; |
7fe4347e6792
6700100: optimize inline_native_clone() for small objects with exact klass
roland
parents:
28202
diff
changeset
|
2009 |
} |