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