annotate src/share/vm/opto/callnode.cpp @ 23799:535618ab1c04

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