annotate src/share/vm/opto/callnode.cpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children 76256d272075
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // Portions of code courtesy of Clifford Click
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // Optimization - Graph Style
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
30 #include "incls/_callnode.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
33 uint StartNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
34 uint StartNode::cmp( const Node &n ) const
a61af66fc99e Initial load
duke
parents:
diff changeset
35 { return _domain == ((StartNode&)n)._domain; }
a61af66fc99e Initial load
duke
parents:
diff changeset
36 const Type *StartNode::bottom_type() const { return _domain; }
a61af66fc99e Initial load
duke
parents:
diff changeset
37 const Type *StartNode::Value(PhaseTransform *phase) const { return _domain; }
a61af66fc99e Initial load
duke
parents:
diff changeset
38 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
39 void StartNode::dump_spec(outputStream *st) const { st->print(" #"); _domain->dump_on(st);}
a61af66fc99e Initial load
duke
parents:
diff changeset
40 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 //------------------------------Ideal------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Node *StartNode::Ideal(PhaseGVN *phase, bool can_reshape){
a61af66fc99e Initial load
duke
parents:
diff changeset
44 return remove_dead_region(phase, can_reshape) ? this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 //------------------------------calling_convention-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
48 void StartNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 Matcher::calling_convention( sig_bt, parm_regs, argcnt, false );
a61af66fc99e Initial load
duke
parents:
diff changeset
50 }
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 //------------------------------Registers--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
53 const RegMask &StartNode::in_RegMask(uint) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 return RegMask::Empty;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 //------------------------------match------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // Construct projections for incoming parameters, and their RegMask info
a61af66fc99e Initial load
duke
parents:
diff changeset
59 Node *StartNode::match( const ProjNode *proj, const Matcher *match ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
60 switch (proj->_con) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 case TypeFunc::Control:
a61af66fc99e Initial load
duke
parents:
diff changeset
62 case TypeFunc::I_O:
a61af66fc99e Initial load
duke
parents:
diff changeset
63 case TypeFunc::Memory:
a61af66fc99e Initial load
duke
parents:
diff changeset
64 return new (match->C, 1) MachProjNode(this,proj->_con,RegMask::Empty,MachProjNode::unmatched_proj);
a61af66fc99e Initial load
duke
parents:
diff changeset
65 case TypeFunc::FramePtr:
a61af66fc99e Initial load
duke
parents:
diff changeset
66 return new (match->C, 1) MachProjNode(this,proj->_con,Matcher::c_frame_ptr_mask, Op_RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 case TypeFunc::ReturnAdr:
a61af66fc99e Initial load
duke
parents:
diff changeset
68 return new (match->C, 1) MachProjNode(this,proj->_con,match->_return_addr_mask,Op_RegP);
a61af66fc99e Initial load
duke
parents:
diff changeset
69 case TypeFunc::Parms:
a61af66fc99e Initial load
duke
parents:
diff changeset
70 default: {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 uint parm_num = proj->_con - TypeFunc::Parms;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 const Type *t = _domain->field_at(proj->_con);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 if (t->base() == Type::Half) // 2nd half of Longs and Doubles
a61af66fc99e Initial load
duke
parents:
diff changeset
74 return new (match->C, 1) ConNode(Type::TOP);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 uint ideal_reg = Matcher::base2reg[t->base()];
a61af66fc99e Initial load
duke
parents:
diff changeset
76 RegMask &rm = match->_calling_convention_mask[parm_num];
a61af66fc99e Initial load
duke
parents:
diff changeset
77 return new (match->C, 1) MachProjNode(this,proj->_con,rm,ideal_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 //------------------------------StartOSRNode----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
84 // The method start node for an on stack replacement adapter
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 //------------------------------osr_domain-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
87 const TypeTuple *StartOSRNode::osr_domain() {
a61af66fc99e Initial load
duke
parents:
diff changeset
88 const Type **fields = TypeTuple::fields(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
89 fields[TypeFunc::Parms+0] = TypeRawPtr::BOTTOM; // address of osr buffer
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 return TypeTuple::make(TypeFunc::Parms+1, fields);
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
95 const char * const ParmNode::names[TypeFunc::Parms+1] = {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 "Control", "I_O", "Memory", "FramePtr", "ReturnAdr", "Parms"
a61af66fc99e Initial load
duke
parents:
diff changeset
97 };
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
100 void ParmNode::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 if( _con < TypeFunc::Parms ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 st->print(names[_con]);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 st->print("Parm%d: ",_con-TypeFunc::Parms);
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Verbose and WizardMode dump bottom_type for all nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
106 if( !Verbose && !WizardMode ) bottom_type()->dump_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 uint ParmNode::ideal_reg() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 switch( _con ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 case TypeFunc::Control : // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
114 case TypeFunc::I_O : // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
115 case TypeFunc::Memory : return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 case TypeFunc::FramePtr : // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
117 case TypeFunc::ReturnAdr: return Op_RegP;
a61af66fc99e Initial load
duke
parents:
diff changeset
118 default : assert( _con > TypeFunc::Parms, "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // fall through
a61af66fc99e Initial load
duke
parents:
diff changeset
120 case TypeFunc::Parms : {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // Type of argument being passed
a61af66fc99e Initial load
duke
parents:
diff changeset
122 const Type *t = in(0)->as_Start()->_domain->field_at(_con);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 return Matcher::base2reg[t->base()];
a61af66fc99e Initial load
duke
parents:
diff changeset
124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
127 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
131 ReturnNode::ReturnNode(uint edges, Node *cntrl, Node *i_o, Node *memory, Node *frameptr, Node *retadr ) : Node(edges) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 init_req(TypeFunc::Control,cntrl);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 init_req(TypeFunc::I_O,i_o);
a61af66fc99e Initial load
duke
parents:
diff changeset
134 init_req(TypeFunc::Memory,memory);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 init_req(TypeFunc::FramePtr,frameptr);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 init_req(TypeFunc::ReturnAdr,retadr);
a61af66fc99e Initial load
duke
parents:
diff changeset
137 }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 Node *ReturnNode::Ideal(PhaseGVN *phase, bool can_reshape){
a61af66fc99e Initial load
duke
parents:
diff changeset
140 return remove_dead_region(phase, can_reshape) ? this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142
a61af66fc99e Initial load
duke
parents:
diff changeset
143 const Type *ReturnNode::Value( PhaseTransform *phase ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 return ( phase->type(in(TypeFunc::Control)) == Type::TOP)
a61af66fc99e Initial load
duke
parents:
diff changeset
145 ? Type::TOP
a61af66fc99e Initial load
duke
parents:
diff changeset
146 : Type::BOTTOM;
a61af66fc99e Initial load
duke
parents:
diff changeset
147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // Do we Match on this edge index or not? No edges on return nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
150 uint ReturnNode::match_edge(uint idx) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
156 void ReturnNode::dump_req() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Dump the required inputs, enclosed in '(' and ')'
a61af66fc99e Initial load
duke
parents:
diff changeset
158 uint i; // Exit value of loop
a61af66fc99e Initial load
duke
parents:
diff changeset
159 for( i=0; i<req(); i++ ) { // For all required inputs
a61af66fc99e Initial load
duke
parents:
diff changeset
160 if( i == TypeFunc::Parms ) tty->print("returns");
a61af66fc99e Initial load
duke
parents:
diff changeset
161 if( in(i) ) tty->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
162 else tty->print("_ ");
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 }
a61af66fc99e Initial load
duke
parents:
diff changeset
165 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
168 RethrowNode::RethrowNode(
a61af66fc99e Initial load
duke
parents:
diff changeset
169 Node* cntrl,
a61af66fc99e Initial load
duke
parents:
diff changeset
170 Node* i_o,
a61af66fc99e Initial load
duke
parents:
diff changeset
171 Node* memory,
a61af66fc99e Initial load
duke
parents:
diff changeset
172 Node* frameptr,
a61af66fc99e Initial load
duke
parents:
diff changeset
173 Node* ret_adr,
a61af66fc99e Initial load
duke
parents:
diff changeset
174 Node* exception
a61af66fc99e Initial load
duke
parents:
diff changeset
175 ) : Node(TypeFunc::Parms + 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 init_req(TypeFunc::Control , cntrl );
a61af66fc99e Initial load
duke
parents:
diff changeset
177 init_req(TypeFunc::I_O , i_o );
a61af66fc99e Initial load
duke
parents:
diff changeset
178 init_req(TypeFunc::Memory , memory );
a61af66fc99e Initial load
duke
parents:
diff changeset
179 init_req(TypeFunc::FramePtr , frameptr );
a61af66fc99e Initial load
duke
parents:
diff changeset
180 init_req(TypeFunc::ReturnAdr, ret_adr);
a61af66fc99e Initial load
duke
parents:
diff changeset
181 init_req(TypeFunc::Parms , exception);
a61af66fc99e Initial load
duke
parents:
diff changeset
182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 Node *RethrowNode::Ideal(PhaseGVN *phase, bool can_reshape){
a61af66fc99e Initial load
duke
parents:
diff changeset
185 return remove_dead_region(phase, can_reshape) ? this : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 const Type *RethrowNode::Value( PhaseTransform *phase ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 return (phase->type(in(TypeFunc::Control)) == Type::TOP)
a61af66fc99e Initial load
duke
parents:
diff changeset
190 ? Type::TOP
a61af66fc99e Initial load
duke
parents:
diff changeset
191 : Type::BOTTOM;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 uint RethrowNode::match_edge(uint idx) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
195 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
199 void RethrowNode::dump_req() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Dump the required inputs, enclosed in '(' and ')'
a61af66fc99e Initial load
duke
parents:
diff changeset
201 uint i; // Exit value of loop
a61af66fc99e Initial load
duke
parents:
diff changeset
202 for( i=0; i<req(); i++ ) { // For all required inputs
a61af66fc99e Initial load
duke
parents:
diff changeset
203 if( i == TypeFunc::Parms ) tty->print("exception");
a61af66fc99e Initial load
duke
parents:
diff changeset
204 if( in(i) ) tty->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 else tty->print("_ ");
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // Do we Match on this edge index or not? Match only target address & method
a61af66fc99e Initial load
duke
parents:
diff changeset
212 uint TailCallNode::match_edge(uint idx) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
213 return TypeFunc::Parms <= idx && idx <= TypeFunc::Parms+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
214 }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // Do we Match on this edge index or not? Match only target address & oop
a61af66fc99e Initial load
duke
parents:
diff changeset
218 uint TailJumpNode::match_edge(uint idx) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 return TypeFunc::Parms <= idx && idx <= TypeFunc::Parms+1;
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
223 JVMState::JVMState(ciMethod* method, JVMState* caller) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 assert(method != NULL, "must be valid call site");
a61af66fc99e Initial load
duke
parents:
diff changeset
225 _method = method;
a61af66fc99e Initial load
duke
parents:
diff changeset
226 debug_only(_bci = -99); // random garbage value
a61af66fc99e Initial load
duke
parents:
diff changeset
227 debug_only(_map = (SafePointNode*)-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 _caller = caller;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 _depth = 1 + (caller == NULL ? 0 : caller->depth());
a61af66fc99e Initial load
duke
parents:
diff changeset
230 _locoff = TypeFunc::Parms;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 _stkoff = _locoff + _method->max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
232 _monoff = _stkoff + _method->max_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
233 _endoff = _monoff;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 _sp = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }
a61af66fc99e Initial load
duke
parents:
diff changeset
236 JVMState::JVMState(int stack_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 _method = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
238 _bci = InvocationEntryBci;
a61af66fc99e Initial load
duke
parents:
diff changeset
239 debug_only(_map = (SafePointNode*)-1);
a61af66fc99e Initial load
duke
parents:
diff changeset
240 _caller = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 _depth = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
242 _locoff = TypeFunc::Parms;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 _stkoff = _locoff;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 _monoff = _stkoff + stack_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
245 _endoff = _monoff;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 _sp = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 //--------------------------------of_depth-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
250 JVMState* JVMState::of_depth(int d) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 const JVMState* jvmp = this;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 assert(0 < d && (uint)d <= depth(), "oob");
a61af66fc99e Initial load
duke
parents:
diff changeset
253 for (int skip = depth() - d; skip > 0; skip--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
254 jvmp = jvmp->caller();
a61af66fc99e Initial load
duke
parents:
diff changeset
255 }
a61af66fc99e Initial load
duke
parents:
diff changeset
256 assert(jvmp->depth() == (uint)d, "found the right one");
a61af66fc99e Initial load
duke
parents:
diff changeset
257 return (JVMState*)jvmp;
a61af66fc99e Initial load
duke
parents:
diff changeset
258 }
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 //-----------------------------same_calls_as-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
261 bool JVMState::same_calls_as(const JVMState* that) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 if (this == that) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 if (this->depth() != that->depth()) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 const JVMState* p = this;
a61af66fc99e Initial load
duke
parents:
diff changeset
265 const JVMState* q = that;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 for (;;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 if (p->_method != q->_method) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 if (p->_method == NULL) return true; // bci is irrelevant
a61af66fc99e Initial load
duke
parents:
diff changeset
269 if (p->_bci != q->_bci) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 p = p->caller();
a61af66fc99e Initial load
duke
parents:
diff changeset
271 q = q->caller();
a61af66fc99e Initial load
duke
parents:
diff changeset
272 if (p == q) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 assert(p != NULL && q != NULL, "depth check ensures we don't run off end");
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 //------------------------------debug_start------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
278 uint JVMState::debug_start() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 debug_only(JVMState* jvmroot = of_depth(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
280 assert(jvmroot->locoff() <= this->locoff(), "youngest JVMState must be last");
a61af66fc99e Initial load
duke
parents:
diff changeset
281 return of_depth(1)->locoff();
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 //-------------------------------debug_end-------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
285 uint JVMState::debug_end() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
286 debug_only(JVMState* jvmroot = of_depth(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
287 assert(jvmroot->endoff() <= this->endoff(), "youngest JVMState must be last");
a61af66fc99e Initial load
duke
parents:
diff changeset
288 return endoff();
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 //------------------------------debug_depth------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
292 uint JVMState::debug_depth() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 uint total = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
294 for (const JVMState* jvmp = this; jvmp != NULL; jvmp = jvmp->caller()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
295 total += jvmp->debug_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
296 }
a61af66fc99e Initial load
duke
parents:
diff changeset
297 return total;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 //------------------------------format_helper----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // Given an allocation (a Chaitin object) and a Node decide if the Node carries
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // any defined value or not. If it does, print out the register or constant.
a61af66fc99e Initial load
duke
parents:
diff changeset
303 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
304 static void format_helper( PhaseRegAlloc *regalloc, outputStream* st, Node *n, const char *msg, uint i ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
305 if (n == NULL) { st->print(" NULL"); return; }
a61af66fc99e Initial load
duke
parents:
diff changeset
306 if( OptoReg::is_valid(regalloc->get_reg_first(n))) { // Check for undefined
a61af66fc99e Initial load
duke
parents:
diff changeset
307 char buf[50];
a61af66fc99e Initial load
duke
parents:
diff changeset
308 regalloc->dump_register(n,buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
309 st->print(" %s%d]=%s",msg,i,buf);
a61af66fc99e Initial load
duke
parents:
diff changeset
310 } else { // No register, but might be constant
a61af66fc99e Initial load
duke
parents:
diff changeset
311 const Type *t = n->bottom_type();
a61af66fc99e Initial load
duke
parents:
diff changeset
312 switch (t->base()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 case Type::Int:
a61af66fc99e Initial load
duke
parents:
diff changeset
314 st->print(" %s%d]=#"INT32_FORMAT,msg,i,t->is_int()->get_con());
a61af66fc99e Initial load
duke
parents:
diff changeset
315 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
316 case Type::AnyPtr:
a61af66fc99e Initial load
duke
parents:
diff changeset
317 assert( t == TypePtr::NULL_PTR, "" );
a61af66fc99e Initial load
duke
parents:
diff changeset
318 st->print(" %s%d]=#NULL",msg,i);
a61af66fc99e Initial load
duke
parents:
diff changeset
319 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
320 case Type::AryPtr:
a61af66fc99e Initial load
duke
parents:
diff changeset
321 case Type::KlassPtr:
a61af66fc99e Initial load
duke
parents:
diff changeset
322 case Type::InstPtr:
a61af66fc99e Initial load
duke
parents:
diff changeset
323 st->print(" %s%d]=#Ptr" INTPTR_FORMAT,msg,i,t->isa_oopptr()->const_oop());
a61af66fc99e Initial load
duke
parents:
diff changeset
324 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 case Type::RawPtr:
a61af66fc99e Initial load
duke
parents:
diff changeset
326 st->print(" %s%d]=#Raw" INTPTR_FORMAT,msg,i,t->is_rawptr());
a61af66fc99e Initial load
duke
parents:
diff changeset
327 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
328 case Type::DoubleCon:
a61af66fc99e Initial load
duke
parents:
diff changeset
329 st->print(" %s%d]=#%fD",msg,i,t->is_double_constant()->_d);
a61af66fc99e Initial load
duke
parents:
diff changeset
330 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 case Type::FloatCon:
a61af66fc99e Initial load
duke
parents:
diff changeset
332 st->print(" %s%d]=#%fF",msg,i,t->is_float_constant()->_f);
a61af66fc99e Initial load
duke
parents:
diff changeset
333 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
334 case Type::Long:
a61af66fc99e Initial load
duke
parents:
diff changeset
335 st->print(" %s%d]=#"INT64_FORMAT,msg,i,t->is_long()->get_con());
a61af66fc99e Initial load
duke
parents:
diff changeset
336 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 case Type::Half:
a61af66fc99e Initial load
duke
parents:
diff changeset
338 case Type::Top:
a61af66fc99e Initial load
duke
parents:
diff changeset
339 st->print(" %s%d]=_",msg,i);
a61af66fc99e Initial load
duke
parents:
diff changeset
340 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
341 default: ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
342 }
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344 }
a61af66fc99e Initial load
duke
parents:
diff changeset
345 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 //------------------------------format-----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
348 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
349 void JVMState::format(PhaseRegAlloc *regalloc, const Node *n, outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 st->print(" #");
a61af66fc99e Initial load
duke
parents:
diff changeset
351 if( _method ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
352 _method->print_short_name(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 st->print(" @ bci:%d ",_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
354 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 st->print_cr(" runtime stub ");
a61af66fc99e Initial load
duke
parents:
diff changeset
356 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
357 }
a61af66fc99e Initial load
duke
parents:
diff changeset
358 if (n->is_MachSafePoint()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 MachSafePointNode *mcall = n->as_MachSafePoint();
a61af66fc99e Initial load
duke
parents:
diff changeset
360 uint i;
a61af66fc99e Initial load
duke
parents:
diff changeset
361 // Print locals
a61af66fc99e Initial load
duke
parents:
diff changeset
362 for( i = 0; i < (uint)loc_size(); i++ )
a61af66fc99e Initial load
duke
parents:
diff changeset
363 format_helper( regalloc, st, mcall->local(this, i), "L[", i );
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // Print stack
a61af66fc99e Initial load
duke
parents:
diff changeset
365 for (i = 0; i < (uint)stk_size(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
366 if ((uint)(_stkoff + i) >= mcall->len())
a61af66fc99e Initial load
duke
parents:
diff changeset
367 st->print(" oob ");
a61af66fc99e Initial load
duke
parents:
diff changeset
368 else
a61af66fc99e Initial load
duke
parents:
diff changeset
369 format_helper( regalloc, st, mcall->stack(this, i), "STK[", i );
a61af66fc99e Initial load
duke
parents:
diff changeset
370 }
a61af66fc99e Initial load
duke
parents:
diff changeset
371 for (i = 0; (int)i < nof_monitors(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
372 Node *box = mcall->monitor_box(this, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
373 Node *obj = mcall->monitor_obj(this, i);
a61af66fc99e Initial load
duke
parents:
diff changeset
374 if ( OptoReg::is_valid(regalloc->get_reg_first(box)) ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
375 while( !box->is_BoxLock() ) box = box->in(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 format_helper( regalloc, st, box, "MON-BOX[", i );
a61af66fc99e Initial load
duke
parents:
diff changeset
377 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 OptoReg::Name box_reg = BoxLockNode::stack_slot(box);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 st->print(" MON-BOX%d=%s+%d",
a61af66fc99e Initial load
duke
parents:
diff changeset
380 i,
a61af66fc99e Initial load
duke
parents:
diff changeset
381 OptoReg::regname(OptoReg::c_frame_pointer),
a61af66fc99e Initial load
duke
parents:
diff changeset
382 regalloc->reg2offset(box_reg));
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384 format_helper( regalloc, st, obj, "MON-OBJ[", i );
a61af66fc99e Initial load
duke
parents:
diff changeset
385 }
a61af66fc99e Initial load
duke
parents:
diff changeset
386 }
a61af66fc99e Initial load
duke
parents:
diff changeset
387 st->print_cr("");
a61af66fc99e Initial load
duke
parents:
diff changeset
388 if (caller() != NULL) caller()->format(regalloc, n, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
389 }
a61af66fc99e Initial load
duke
parents:
diff changeset
390 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
391
a61af66fc99e Initial load
duke
parents:
diff changeset
392 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
393 void JVMState::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
394 if (_method != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
395 bool printed = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
396 if (!Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
397 // The JVMS dumps make really, really long lines.
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // Take out the most boring parts, which are the package prefixes.
a61af66fc99e Initial load
duke
parents:
diff changeset
399 char buf[500];
a61af66fc99e Initial load
duke
parents:
diff changeset
400 stringStream namest(buf, sizeof(buf));
a61af66fc99e Initial load
duke
parents:
diff changeset
401 _method->print_short_name(&namest);
a61af66fc99e Initial load
duke
parents:
diff changeset
402 if (namest.count() < sizeof(buf)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
403 const char* name = namest.base();
a61af66fc99e Initial load
duke
parents:
diff changeset
404 if (name[0] == ' ') ++name;
a61af66fc99e Initial load
duke
parents:
diff changeset
405 const char* endcn = strchr(name, ':'); // end of class name
a61af66fc99e Initial load
duke
parents:
diff changeset
406 if (endcn == NULL) endcn = strchr(name, '(');
a61af66fc99e Initial load
duke
parents:
diff changeset
407 if (endcn == NULL) endcn = name + strlen(name);
a61af66fc99e Initial load
duke
parents:
diff changeset
408 while (endcn > name && endcn[-1] != '.' && endcn[-1] != '/')
a61af66fc99e Initial load
duke
parents:
diff changeset
409 --endcn;
a61af66fc99e Initial load
duke
parents:
diff changeset
410 st->print(" %s", endcn);
a61af66fc99e Initial load
duke
parents:
diff changeset
411 printed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 }
a61af66fc99e Initial load
duke
parents:
diff changeset
413 }
a61af66fc99e Initial load
duke
parents:
diff changeset
414 if (!printed)
a61af66fc99e Initial load
duke
parents:
diff changeset
415 _method->print_short_name(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
416 st->print(" @ bci:%d",_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
417 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
418 st->print(" runtime stub");
a61af66fc99e Initial load
duke
parents:
diff changeset
419 }
a61af66fc99e Initial load
duke
parents:
diff changeset
420 if (caller() != NULL) caller()->dump_spec(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
421 }
a61af66fc99e Initial load
duke
parents:
diff changeset
422 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
423
a61af66fc99e Initial load
duke
parents:
diff changeset
424 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
425 void JVMState::dump_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
426 if (_map && !((uintptr_t)_map & 1)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
427 if (_map->len() > _map->req()) { // _map->has_exceptions()
a61af66fc99e Initial load
duke
parents:
diff changeset
428 Node* ex = _map->in(_map->req()); // _map->next_exception()
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // skip the first one; it's already being printed
a61af66fc99e Initial load
duke
parents:
diff changeset
430 while (ex != NULL && ex->len() > ex->req()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 ex = ex->in(ex->req()); // ex->next_exception()
a61af66fc99e Initial load
duke
parents:
diff changeset
432 ex->dump(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
433 }
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435 _map->dump(2);
a61af66fc99e Initial load
duke
parents:
diff changeset
436 }
a61af66fc99e Initial load
duke
parents:
diff changeset
437 st->print("JVMS depth=%d loc=%d stk=%d mon=%d end=%d mondepth=%d sp=%d bci=%d method=",
a61af66fc99e Initial load
duke
parents:
diff changeset
438 depth(), locoff(), stkoff(), monoff(), endoff(), monitor_depth(), sp(), bci());
a61af66fc99e Initial load
duke
parents:
diff changeset
439 if (_method == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
440 st->print_cr("(none)");
a61af66fc99e Initial load
duke
parents:
diff changeset
441 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 _method->print_name(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
443 st->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
444 if (bci() >= 0 && bci() < _method->code_size()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
445 st->print(" bc: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
446 _method->print_codes_on(bci(), bci()+1, st);
a61af66fc99e Initial load
duke
parents:
diff changeset
447 }
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449 if (caller() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
450 caller()->dump_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
451 }
a61af66fc99e Initial load
duke
parents:
diff changeset
452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 // Extra way to dump a jvms from the debugger,
a61af66fc99e Initial load
duke
parents:
diff changeset
455 // to avoid a bug with C++ member function calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
456 void dump_jvms(JVMState* jvms) {
a61af66fc99e Initial load
duke
parents:
diff changeset
457 jvms->dump();
a61af66fc99e Initial load
duke
parents:
diff changeset
458 }
a61af66fc99e Initial load
duke
parents:
diff changeset
459 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
460
a61af66fc99e Initial load
duke
parents:
diff changeset
461 //--------------------------clone_shallow--------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
462 JVMState* JVMState::clone_shallow(Compile* C) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
463 JVMState* n = has_method() ? new (C) JVMState(_method, _caller) : new (C) JVMState(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
464 n->set_bci(_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
465 n->set_locoff(_locoff);
a61af66fc99e Initial load
duke
parents:
diff changeset
466 n->set_stkoff(_stkoff);
a61af66fc99e Initial load
duke
parents:
diff changeset
467 n->set_monoff(_monoff);
a61af66fc99e Initial load
duke
parents:
diff changeset
468 n->set_endoff(_endoff);
a61af66fc99e Initial load
duke
parents:
diff changeset
469 n->set_sp(_sp);
a61af66fc99e Initial load
duke
parents:
diff changeset
470 n->set_map(_map);
a61af66fc99e Initial load
duke
parents:
diff changeset
471 return n;
a61af66fc99e Initial load
duke
parents:
diff changeset
472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 //---------------------------clone_deep----------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
475 JVMState* JVMState::clone_deep(Compile* C) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
476 JVMState* n = clone_shallow(C);
a61af66fc99e Initial load
duke
parents:
diff changeset
477 for (JVMState* p = n; p->_caller != NULL; p = p->_caller) {
a61af66fc99e Initial load
duke
parents:
diff changeset
478 p->_caller = p->_caller->clone_shallow(C);
a61af66fc99e Initial load
duke
parents:
diff changeset
479 }
a61af66fc99e Initial load
duke
parents:
diff changeset
480 assert(n->depth() == depth(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
481 assert(n->debug_depth() == debug_depth(), "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
482 return n;
a61af66fc99e Initial load
duke
parents:
diff changeset
483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
484
a61af66fc99e Initial load
duke
parents:
diff changeset
485 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
486 uint CallNode::cmp( const Node &n ) const
a61af66fc99e Initial load
duke
parents:
diff changeset
487 { return _tf == ((CallNode&)n)._tf && _jvms == ((CallNode&)n)._jvms; }
a61af66fc99e Initial load
duke
parents:
diff changeset
488 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
489 void CallNode::dump_req() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
490 // Dump the required inputs, enclosed in '(' and ')'
a61af66fc99e Initial load
duke
parents:
diff changeset
491 uint i; // Exit value of loop
a61af66fc99e Initial load
duke
parents:
diff changeset
492 for( i=0; i<req(); i++ ) { // For all required inputs
a61af66fc99e Initial load
duke
parents:
diff changeset
493 if( i == TypeFunc::Parms ) tty->print("(");
a61af66fc99e Initial load
duke
parents:
diff changeset
494 if( in(i) ) tty->print("%c%d ", Compile::current()->node_arena()->contains(in(i)) ? ' ' : 'o', in(i)->_idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
495 else tty->print("_ ");
a61af66fc99e Initial load
duke
parents:
diff changeset
496 }
a61af66fc99e Initial load
duke
parents:
diff changeset
497 tty->print(")");
a61af66fc99e Initial load
duke
parents:
diff changeset
498 }
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 void CallNode::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
501 st->print(" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
502 tf()->dump_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
503 if (_cnt != COUNT_UNKNOWN) st->print(" C=%f",_cnt);
a61af66fc99e Initial load
duke
parents:
diff changeset
504 if (jvms() != NULL) jvms()->dump_spec(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
505 }
a61af66fc99e Initial load
duke
parents:
diff changeset
506 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
507
a61af66fc99e Initial load
duke
parents:
diff changeset
508 const Type *CallNode::bottom_type() const { return tf()->range(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
509 const Type *CallNode::Value(PhaseTransform *phase) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
510 if (phase->type(in(0)) == Type::TOP) return Type::TOP;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 return tf()->range();
a61af66fc99e Initial load
duke
parents:
diff changeset
512 }
a61af66fc99e Initial load
duke
parents:
diff changeset
513
a61af66fc99e Initial load
duke
parents:
diff changeset
514 //------------------------------calling_convention-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
515 void CallNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // Use the standard compiler calling convention
a61af66fc99e Initial load
duke
parents:
diff changeset
517 Matcher::calling_convention( sig_bt, parm_regs, argcnt, true );
a61af66fc99e Initial load
duke
parents:
diff changeset
518 }
a61af66fc99e Initial load
duke
parents:
diff changeset
519
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 //------------------------------match------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
522 // Construct projections for control, I/O, memory-fields, ..., and
a61af66fc99e Initial load
duke
parents:
diff changeset
523 // return result(s) along with their RegMask info
a61af66fc99e Initial load
duke
parents:
diff changeset
524 Node *CallNode::match( const ProjNode *proj, const Matcher *match ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
525 switch (proj->_con) {
a61af66fc99e Initial load
duke
parents:
diff changeset
526 case TypeFunc::Control:
a61af66fc99e Initial load
duke
parents:
diff changeset
527 case TypeFunc::I_O:
a61af66fc99e Initial load
duke
parents:
diff changeset
528 case TypeFunc::Memory:
a61af66fc99e Initial load
duke
parents:
diff changeset
529 return new (match->C, 1) MachProjNode(this,proj->_con,RegMask::Empty,MachProjNode::unmatched_proj);
a61af66fc99e Initial load
duke
parents:
diff changeset
530
a61af66fc99e Initial load
duke
parents:
diff changeset
531 case TypeFunc::Parms+1: // For LONG & DOUBLE returns
a61af66fc99e Initial load
duke
parents:
diff changeset
532 assert(tf()->_range->field_at(TypeFunc::Parms+1) == Type::HALF, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
533 // 2nd half of doubles and longs
a61af66fc99e Initial load
duke
parents:
diff changeset
534 return new (match->C, 1) MachProjNode(this,proj->_con, RegMask::Empty, (uint)OptoReg::Bad);
a61af66fc99e Initial load
duke
parents:
diff changeset
535
a61af66fc99e Initial load
duke
parents:
diff changeset
536 case TypeFunc::Parms: { // Normal returns
a61af66fc99e Initial load
duke
parents:
diff changeset
537 uint ideal_reg = Matcher::base2reg[tf()->range()->field_at(TypeFunc::Parms)->base()];
a61af66fc99e Initial load
duke
parents:
diff changeset
538 OptoRegPair regs = is_CallRuntime()
a61af66fc99e Initial load
duke
parents:
diff changeset
539 ? match->c_return_value(ideal_reg,true) // Calls into C runtime
a61af66fc99e Initial load
duke
parents:
diff changeset
540 : match-> return_value(ideal_reg,true); // Calls into compiled Java code
a61af66fc99e Initial load
duke
parents:
diff changeset
541 RegMask rm = RegMask(regs.first());
a61af66fc99e Initial load
duke
parents:
diff changeset
542 if( OptoReg::is_valid(regs.second()) )
a61af66fc99e Initial load
duke
parents:
diff changeset
543 rm.Insert( regs.second() );
a61af66fc99e Initial load
duke
parents:
diff changeset
544 return new (match->C, 1) MachProjNode(this,proj->_con,rm,ideal_reg);
a61af66fc99e Initial load
duke
parents:
diff changeset
545 }
a61af66fc99e Initial load
duke
parents:
diff changeset
546
a61af66fc99e Initial load
duke
parents:
diff changeset
547 case TypeFunc::ReturnAdr:
a61af66fc99e Initial load
duke
parents:
diff changeset
548 case TypeFunc::FramePtr:
a61af66fc99e Initial load
duke
parents:
diff changeset
549 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
550 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
551 }
a61af66fc99e Initial load
duke
parents:
diff changeset
552 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
554
a61af66fc99e Initial load
duke
parents:
diff changeset
555 // Do we Match on this edge index or not? Match no edges
a61af66fc99e Initial load
duke
parents:
diff changeset
556 uint CallNode::match_edge(uint idx) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
557 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
558 }
a61af66fc99e Initial load
duke
parents:
diff changeset
559
a61af66fc99e Initial load
duke
parents:
diff changeset
560 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
561 uint CallJavaNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
562 uint CallJavaNode::cmp( const Node &n ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
563 CallJavaNode &call = (CallJavaNode&)n;
a61af66fc99e Initial load
duke
parents:
diff changeset
564 return CallNode::cmp(call) && _method == call._method;
a61af66fc99e Initial load
duke
parents:
diff changeset
565 }
a61af66fc99e Initial load
duke
parents:
diff changeset
566 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
567 void CallJavaNode::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
568 if( _method ) _method->print_short_name(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
569 CallNode::dump_spec(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
570 }
a61af66fc99e Initial load
duke
parents:
diff changeset
571 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
572
a61af66fc99e Initial load
duke
parents:
diff changeset
573 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
574 uint CallStaticJavaNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
575 uint CallStaticJavaNode::cmp( const Node &n ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
576 CallStaticJavaNode &call = (CallStaticJavaNode&)n;
a61af66fc99e Initial load
duke
parents:
diff changeset
577 return CallJavaNode::cmp(call);
a61af66fc99e Initial load
duke
parents:
diff changeset
578 }
a61af66fc99e Initial load
duke
parents:
diff changeset
579
a61af66fc99e Initial load
duke
parents:
diff changeset
580 //----------------------------uncommon_trap_request----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
581 // If this is an uncommon trap, return the request code, else zero.
a61af66fc99e Initial load
duke
parents:
diff changeset
582 int CallStaticJavaNode::uncommon_trap_request() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
583 if (_name != NULL && !strcmp(_name, "uncommon_trap")) {
a61af66fc99e Initial load
duke
parents:
diff changeset
584 return extract_uncommon_trap_request(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
585 }
a61af66fc99e Initial load
duke
parents:
diff changeset
586 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588 int CallStaticJavaNode::extract_uncommon_trap_request(const Node* call) {
a61af66fc99e Initial load
duke
parents:
diff changeset
589 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
590 if (!(call->req() > TypeFunc::Parms &&
a61af66fc99e Initial load
duke
parents:
diff changeset
591 call->in(TypeFunc::Parms) != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
592 call->in(TypeFunc::Parms)->is_Con())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
593 assert(_in_dump_cnt != 0, "OK if dumping");
a61af66fc99e Initial load
duke
parents:
diff changeset
594 tty->print("[bad uncommon trap]");
a61af66fc99e Initial load
duke
parents:
diff changeset
595 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
596 }
a61af66fc99e Initial load
duke
parents:
diff changeset
597 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
598 return call->in(TypeFunc::Parms)->bottom_type()->is_int()->get_con();
a61af66fc99e Initial load
duke
parents:
diff changeset
599 }
a61af66fc99e Initial load
duke
parents:
diff changeset
600
a61af66fc99e Initial load
duke
parents:
diff changeset
601 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
602 void CallStaticJavaNode::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
603 st->print("# Static ");
a61af66fc99e Initial load
duke
parents:
diff changeset
604 if (_name != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
605 st->print("%s", _name);
a61af66fc99e Initial load
duke
parents:
diff changeset
606 int trap_req = uncommon_trap_request();
a61af66fc99e Initial load
duke
parents:
diff changeset
607 if (trap_req != 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
608 char buf[100];
a61af66fc99e Initial load
duke
parents:
diff changeset
609 st->print("(%s)",
a61af66fc99e Initial load
duke
parents:
diff changeset
610 Deoptimization::format_trap_request(buf, sizeof(buf),
a61af66fc99e Initial load
duke
parents:
diff changeset
611 trap_req));
a61af66fc99e Initial load
duke
parents:
diff changeset
612 }
a61af66fc99e Initial load
duke
parents:
diff changeset
613 st->print(" ");
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615 CallJavaNode::dump_spec(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
617 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
618
a61af66fc99e Initial load
duke
parents:
diff changeset
619 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
620 uint CallDynamicJavaNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
621 uint CallDynamicJavaNode::cmp( const Node &n ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
622 CallDynamicJavaNode &call = (CallDynamicJavaNode&)n;
a61af66fc99e Initial load
duke
parents:
diff changeset
623 return CallJavaNode::cmp(call);
a61af66fc99e Initial load
duke
parents:
diff changeset
624 }
a61af66fc99e Initial load
duke
parents:
diff changeset
625 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
626 void CallDynamicJavaNode::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
627 st->print("# Dynamic ");
a61af66fc99e Initial load
duke
parents:
diff changeset
628 CallJavaNode::dump_spec(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
629 }
a61af66fc99e Initial load
duke
parents:
diff changeset
630 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
633 uint CallRuntimeNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
634 uint CallRuntimeNode::cmp( const Node &n ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
635 CallRuntimeNode &call = (CallRuntimeNode&)n;
a61af66fc99e Initial load
duke
parents:
diff changeset
636 return CallNode::cmp(call) && !strcmp(_name,call._name);
a61af66fc99e Initial load
duke
parents:
diff changeset
637 }
a61af66fc99e Initial load
duke
parents:
diff changeset
638 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
639 void CallRuntimeNode::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
640 st->print("# ");
a61af66fc99e Initial load
duke
parents:
diff changeset
641 st->print(_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
642 CallNode::dump_spec(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
643 }
a61af66fc99e Initial load
duke
parents:
diff changeset
644 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646 //------------------------------calling_convention-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
647 void CallRuntimeNode::calling_convention( BasicType* sig_bt, VMRegPair *parm_regs, uint argcnt ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
648 Matcher::c_calling_convention( sig_bt, parm_regs, argcnt );
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650
a61af66fc99e Initial load
duke
parents:
diff changeset
651 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
652 //------------------------------calling_convention-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
653
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
656 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
657 void CallLeafNode::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
658 st->print("# ");
a61af66fc99e Initial load
duke
parents:
diff changeset
659 st->print(_name);
a61af66fc99e Initial load
duke
parents:
diff changeset
660 CallNode::dump_spec(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
661 }
a61af66fc99e Initial load
duke
parents:
diff changeset
662 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
663
a61af66fc99e Initial load
duke
parents:
diff changeset
664 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
665
a61af66fc99e Initial load
duke
parents:
diff changeset
666 void SafePointNode::set_local(JVMState* jvms, uint idx, Node *c) {
a61af66fc99e Initial load
duke
parents:
diff changeset
667 assert(verify_jvms(jvms), "jvms must match");
a61af66fc99e Initial load
duke
parents:
diff changeset
668 int loc = jvms->locoff() + idx;
a61af66fc99e Initial load
duke
parents:
diff changeset
669 if (in(loc)->is_top() && idx > 0 && !c->is_top() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
670 // If current local idx is top then local idx - 1 could
a61af66fc99e Initial load
duke
parents:
diff changeset
671 // be a long/double that needs to be killed since top could
a61af66fc99e Initial load
duke
parents:
diff changeset
672 // represent the 2nd half ofthe long/double.
a61af66fc99e Initial load
duke
parents:
diff changeset
673 uint ideal = in(loc -1)->ideal_reg();
a61af66fc99e Initial load
duke
parents:
diff changeset
674 if (ideal == Op_RegD || ideal == Op_RegL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
675 // set other (low index) half to top
a61af66fc99e Initial load
duke
parents:
diff changeset
676 set_req(loc - 1, in(loc));
a61af66fc99e Initial load
duke
parents:
diff changeset
677 }
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
679 set_req(loc, c);
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681
a61af66fc99e Initial load
duke
parents:
diff changeset
682 uint SafePointNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
683 uint SafePointNode::cmp( const Node &n ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
684 return (&n == this); // Always fail except on self
a61af66fc99e Initial load
duke
parents:
diff changeset
685 }
a61af66fc99e Initial load
duke
parents:
diff changeset
686
a61af66fc99e Initial load
duke
parents:
diff changeset
687 //-------------------------set_next_exception----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
688 void SafePointNode::set_next_exception(SafePointNode* n) {
a61af66fc99e Initial load
duke
parents:
diff changeset
689 assert(n == NULL || n->Opcode() == Op_SafePoint, "correct value for next_exception");
a61af66fc99e Initial load
duke
parents:
diff changeset
690 if (len() == req()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
691 if (n != NULL) add_prec(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
692 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
693 set_prec(req(), n);
a61af66fc99e Initial load
duke
parents:
diff changeset
694 }
a61af66fc99e Initial load
duke
parents:
diff changeset
695 }
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697
a61af66fc99e Initial load
duke
parents:
diff changeset
698 //----------------------------next_exception-----------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
699 SafePointNode* SafePointNode::next_exception() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
700 if (len() == req()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
701 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
702 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
703 Node* n = in(req());
a61af66fc99e Initial load
duke
parents:
diff changeset
704 assert(n == NULL || n->Opcode() == Op_SafePoint, "no other uses of prec edges");
a61af66fc99e Initial load
duke
parents:
diff changeset
705 return (SafePointNode*) n;
a61af66fc99e Initial load
duke
parents:
diff changeset
706 }
a61af66fc99e Initial load
duke
parents:
diff changeset
707 }
a61af66fc99e Initial load
duke
parents:
diff changeset
708
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 //------------------------------Ideal------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
711 // Skip over any collapsed Regions
a61af66fc99e Initial load
duke
parents:
diff changeset
712 Node *SafePointNode::Ideal(PhaseGVN *phase, bool can_reshape) {
a61af66fc99e Initial load
duke
parents:
diff changeset
713 if (remove_dead_region(phase, can_reshape)) return this;
a61af66fc99e Initial load
duke
parents:
diff changeset
714
a61af66fc99e Initial load
duke
parents:
diff changeset
715 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
716 }
a61af66fc99e Initial load
duke
parents:
diff changeset
717
a61af66fc99e Initial load
duke
parents:
diff changeset
718 //------------------------------Identity---------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
719 // Remove obviously duplicate safepoints
a61af66fc99e Initial load
duke
parents:
diff changeset
720 Node *SafePointNode::Identity( PhaseTransform *phase ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
721
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // If you have back to back safepoints, remove one
a61af66fc99e Initial load
duke
parents:
diff changeset
723 if( in(TypeFunc::Control)->is_SafePoint() )
a61af66fc99e Initial load
duke
parents:
diff changeset
724 return in(TypeFunc::Control);
a61af66fc99e Initial load
duke
parents:
diff changeset
725
a61af66fc99e Initial load
duke
parents:
diff changeset
726 if( in(0)->is_Proj() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
727 Node *n0 = in(0)->in(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
728 // Check if he is a call projection (except Leaf Call)
a61af66fc99e Initial load
duke
parents:
diff changeset
729 if( n0->is_Catch() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
730 n0 = n0->in(0)->in(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
731 assert( n0->is_Call(), "expect a call here" );
a61af66fc99e Initial load
duke
parents:
diff changeset
732 }
a61af66fc99e Initial load
duke
parents:
diff changeset
733 if( n0->is_Call() && n0->as_Call()->guaranteed_safepoint() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
734 // Useless Safepoint, so remove it
a61af66fc99e Initial load
duke
parents:
diff changeset
735 return in(TypeFunc::Control);
a61af66fc99e Initial load
duke
parents:
diff changeset
736 }
a61af66fc99e Initial load
duke
parents:
diff changeset
737 }
a61af66fc99e Initial load
duke
parents:
diff changeset
738
a61af66fc99e Initial load
duke
parents:
diff changeset
739 return this;
a61af66fc99e Initial load
duke
parents:
diff changeset
740 }
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 //------------------------------Value------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
743 const Type *SafePointNode::Value( PhaseTransform *phase ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
744 if( phase->type(in(0)) == Type::TOP ) return Type::TOP;
a61af66fc99e Initial load
duke
parents:
diff changeset
745 if( phase->eqv( in(0), this ) ) return Type::TOP; // Dead infinite loop
a61af66fc99e Initial load
duke
parents:
diff changeset
746 return Type::CONTROL;
a61af66fc99e Initial load
duke
parents:
diff changeset
747 }
a61af66fc99e Initial load
duke
parents:
diff changeset
748
a61af66fc99e Initial load
duke
parents:
diff changeset
749 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
750 void SafePointNode::dump_spec(outputStream *st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
751 st->print(" SafePoint ");
a61af66fc99e Initial load
duke
parents:
diff changeset
752 }
a61af66fc99e Initial load
duke
parents:
diff changeset
753 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
754
a61af66fc99e Initial load
duke
parents:
diff changeset
755 const RegMask &SafePointNode::in_RegMask(uint idx) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
756 if( idx < TypeFunc::Parms ) return RegMask::Empty;
a61af66fc99e Initial load
duke
parents:
diff changeset
757 // Values outside the domain represent debug info
a61af66fc99e Initial load
duke
parents:
diff changeset
758 return *(Compile::current()->matcher()->idealreg2debugmask[in(idx)->ideal_reg()]);
a61af66fc99e Initial load
duke
parents:
diff changeset
759 }
a61af66fc99e Initial load
duke
parents:
diff changeset
760 const RegMask &SafePointNode::out_RegMask() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
761 return RegMask::Empty;
a61af66fc99e Initial load
duke
parents:
diff changeset
762 }
a61af66fc99e Initial load
duke
parents:
diff changeset
763
a61af66fc99e Initial load
duke
parents:
diff changeset
764
a61af66fc99e Initial load
duke
parents:
diff changeset
765 void SafePointNode::grow_stack(JVMState* jvms, uint grow_by) {
a61af66fc99e Initial load
duke
parents:
diff changeset
766 assert((int)grow_by > 0, "sanity");
a61af66fc99e Initial load
duke
parents:
diff changeset
767 int monoff = jvms->monoff();
a61af66fc99e Initial load
duke
parents:
diff changeset
768 int endoff = jvms->endoff();
a61af66fc99e Initial load
duke
parents:
diff changeset
769 assert(endoff == (int)req(), "no other states or debug info after me");
a61af66fc99e Initial load
duke
parents:
diff changeset
770 Node* top = Compile::current()->top();
a61af66fc99e Initial load
duke
parents:
diff changeset
771 for (uint i = 0; i < grow_by; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
772 ins_req(monoff, top);
a61af66fc99e Initial load
duke
parents:
diff changeset
773 }
a61af66fc99e Initial load
duke
parents:
diff changeset
774 jvms->set_monoff(monoff + grow_by);
a61af66fc99e Initial load
duke
parents:
diff changeset
775 jvms->set_endoff(endoff + grow_by);
a61af66fc99e Initial load
duke
parents:
diff changeset
776 }
a61af66fc99e Initial load
duke
parents:
diff changeset
777
a61af66fc99e Initial load
duke
parents:
diff changeset
778 void SafePointNode::push_monitor(const FastLockNode *lock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
779 // Add a LockNode, which points to both the original BoxLockNode (the
a61af66fc99e Initial load
duke
parents:
diff changeset
780 // stack space for the monitor) and the Object being locked.
a61af66fc99e Initial load
duke
parents:
diff changeset
781 const int MonitorEdges = 2;
a61af66fc99e Initial load
duke
parents:
diff changeset
782 assert(JVMState::logMonitorEdges == exact_log2(MonitorEdges), "correct MonitorEdges");
a61af66fc99e Initial load
duke
parents:
diff changeset
783 assert(req() == jvms()->endoff(), "correct sizing");
a61af66fc99e Initial load
duke
parents:
diff changeset
784 if (GenerateSynchronizationCode) {
a61af66fc99e Initial load
duke
parents:
diff changeset
785 add_req(lock->box_node());
a61af66fc99e Initial load
duke
parents:
diff changeset
786 add_req(lock->obj_node());
a61af66fc99e Initial load
duke
parents:
diff changeset
787 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
788 add_req(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
789 add_req(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
791 jvms()->set_endoff(req());
a61af66fc99e Initial load
duke
parents:
diff changeset
792 }
a61af66fc99e Initial load
duke
parents:
diff changeset
793
a61af66fc99e Initial load
duke
parents:
diff changeset
794 void SafePointNode::pop_monitor() {
a61af66fc99e Initial load
duke
parents:
diff changeset
795 // Delete last monitor from debug info
a61af66fc99e Initial load
duke
parents:
diff changeset
796 debug_only(int num_before_pop = jvms()->nof_monitors());
a61af66fc99e Initial load
duke
parents:
diff changeset
797 const int MonitorEdges = (1<<JVMState::logMonitorEdges);
a61af66fc99e Initial load
duke
parents:
diff changeset
798 int endoff = jvms()->endoff();
a61af66fc99e Initial load
duke
parents:
diff changeset
799 int new_endoff = endoff - MonitorEdges;
a61af66fc99e Initial load
duke
parents:
diff changeset
800 jvms()->set_endoff(new_endoff);
a61af66fc99e Initial load
duke
parents:
diff changeset
801 while (endoff > new_endoff) del_req(--endoff);
a61af66fc99e Initial load
duke
parents:
diff changeset
802 assert(jvms()->nof_monitors() == num_before_pop-1, "");
a61af66fc99e Initial load
duke
parents:
diff changeset
803 }
a61af66fc99e Initial load
duke
parents:
diff changeset
804
a61af66fc99e Initial load
duke
parents:
diff changeset
805 Node *SafePointNode::peek_monitor_box() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
806 int mon = jvms()->nof_monitors() - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
807 assert(mon >= 0, "most have a monitor");
a61af66fc99e Initial load
duke
parents:
diff changeset
808 return monitor_box(jvms(), mon);
a61af66fc99e Initial load
duke
parents:
diff changeset
809 }
a61af66fc99e Initial load
duke
parents:
diff changeset
810
a61af66fc99e Initial load
duke
parents:
diff changeset
811 Node *SafePointNode::peek_monitor_obj() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
812 int mon = jvms()->nof_monitors() - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
813 assert(mon >= 0, "most have a monitor");
a61af66fc99e Initial load
duke
parents:
diff changeset
814 return monitor_obj(jvms(), mon);
a61af66fc99e Initial load
duke
parents:
diff changeset
815 }
a61af66fc99e Initial load
duke
parents:
diff changeset
816
a61af66fc99e Initial load
duke
parents:
diff changeset
817 // Do we Match on this edge index or not? Match no edges
a61af66fc99e Initial load
duke
parents:
diff changeset
818 uint SafePointNode::match_edge(uint idx) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
819 if( !needs_polling_address_input() )
a61af66fc99e Initial load
duke
parents:
diff changeset
820 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
821
a61af66fc99e Initial load
duke
parents:
diff changeset
822 return (TypeFunc::Parms == idx);
a61af66fc99e Initial load
duke
parents:
diff changeset
823 }
a61af66fc99e Initial load
duke
parents:
diff changeset
824
a61af66fc99e Initial load
duke
parents:
diff changeset
825 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
826 uint AllocateNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
827
a61af66fc99e Initial load
duke
parents:
diff changeset
828 AllocateNode::AllocateNode(Compile* C, const TypeFunc *atype,
a61af66fc99e Initial load
duke
parents:
diff changeset
829 Node *ctrl, Node *mem, Node *abio,
a61af66fc99e Initial load
duke
parents:
diff changeset
830 Node *size, Node *klass_node, Node *initial_test)
a61af66fc99e Initial load
duke
parents:
diff changeset
831 : CallNode(atype, NULL, TypeRawPtr::BOTTOM)
a61af66fc99e Initial load
duke
parents:
diff changeset
832 {
a61af66fc99e Initial load
duke
parents:
diff changeset
833 init_class_id(Class_Allocate);
a61af66fc99e Initial load
duke
parents:
diff changeset
834 init_flags(Flag_is_macro);
a61af66fc99e Initial load
duke
parents:
diff changeset
835 Node *topnode = C->top();
a61af66fc99e Initial load
duke
parents:
diff changeset
836
a61af66fc99e Initial load
duke
parents:
diff changeset
837 init_req( TypeFunc::Control , ctrl );
a61af66fc99e Initial load
duke
parents:
diff changeset
838 init_req( TypeFunc::I_O , abio );
a61af66fc99e Initial load
duke
parents:
diff changeset
839 init_req( TypeFunc::Memory , mem );
a61af66fc99e Initial load
duke
parents:
diff changeset
840 init_req( TypeFunc::ReturnAdr, topnode );
a61af66fc99e Initial load
duke
parents:
diff changeset
841 init_req( TypeFunc::FramePtr , topnode );
a61af66fc99e Initial load
duke
parents:
diff changeset
842 init_req( AllocSize , size);
a61af66fc99e Initial load
duke
parents:
diff changeset
843 init_req( KlassNode , klass_node);
a61af66fc99e Initial load
duke
parents:
diff changeset
844 init_req( InitialTest , initial_test);
a61af66fc99e Initial load
duke
parents:
diff changeset
845 init_req( ALength , topnode);
a61af66fc99e Initial load
duke
parents:
diff changeset
846 C->add_macro_node(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
847 }
a61af66fc99e Initial load
duke
parents:
diff changeset
848
a61af66fc99e Initial load
duke
parents:
diff changeset
849 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
850 uint AllocateArrayNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
851
a61af66fc99e Initial load
duke
parents:
diff changeset
852 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
853 uint LockNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
854
a61af66fc99e Initial load
duke
parents:
diff changeset
855 // Redundant lock elimination
a61af66fc99e Initial load
duke
parents:
diff changeset
856 //
a61af66fc99e Initial load
duke
parents:
diff changeset
857 // There are various patterns of locking where we release and
a61af66fc99e Initial load
duke
parents:
diff changeset
858 // immediately reacquire a lock in a piece of code where no operations
a61af66fc99e Initial load
duke
parents:
diff changeset
859 // occur in between that would be observable. In those cases we can
a61af66fc99e Initial load
duke
parents:
diff changeset
860 // skip releasing and reacquiring the lock without violating any
a61af66fc99e Initial load
duke
parents:
diff changeset
861 // fairness requirements. Doing this around a loop could cause a lock
a61af66fc99e Initial load
duke
parents:
diff changeset
862 // to be held for a very long time so we concentrate on non-looping
a61af66fc99e Initial load
duke
parents:
diff changeset
863 // control flow. We also require that the operations are fully
a61af66fc99e Initial load
duke
parents:
diff changeset
864 // redundant meaning that we don't introduce new lock operations on
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // some paths so to be able to eliminate it on others ala PRE. This
a61af66fc99e Initial load
duke
parents:
diff changeset
866 // would probably require some more extensive graph manipulation to
a61af66fc99e Initial load
duke
parents:
diff changeset
867 // guarantee that the memory edges were all handled correctly.
a61af66fc99e Initial load
duke
parents:
diff changeset
868 //
a61af66fc99e Initial load
duke
parents:
diff changeset
869 // Assuming p is a simple predicate which can't trap in any way and s
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // is a synchronized method consider this code:
a61af66fc99e Initial load
duke
parents:
diff changeset
871 //
a61af66fc99e Initial load
duke
parents:
diff changeset
872 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
873 // if (p)
a61af66fc99e Initial load
duke
parents:
diff changeset
874 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
875 // else
a61af66fc99e Initial load
duke
parents:
diff changeset
876 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
877 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
878 //
a61af66fc99e Initial load
duke
parents:
diff changeset
879 // 1. The unlocks of the first call to s can be eliminated if the
a61af66fc99e Initial load
duke
parents:
diff changeset
880 // locks inside the then and else branches are eliminated.
a61af66fc99e Initial load
duke
parents:
diff changeset
881 //
a61af66fc99e Initial load
duke
parents:
diff changeset
882 // 2. The unlocks of the then and else branches can be eliminated if
a61af66fc99e Initial load
duke
parents:
diff changeset
883 // the lock of the final call to s is eliminated.
a61af66fc99e Initial load
duke
parents:
diff changeset
884 //
a61af66fc99e Initial load
duke
parents:
diff changeset
885 // Either of these cases subsumes the simple case of sequential control flow
a61af66fc99e Initial load
duke
parents:
diff changeset
886 //
a61af66fc99e Initial load
duke
parents:
diff changeset
887 // Addtionally we can eliminate versions without the else case:
a61af66fc99e Initial load
duke
parents:
diff changeset
888 //
a61af66fc99e Initial load
duke
parents:
diff changeset
889 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
890 // if (p)
a61af66fc99e Initial load
duke
parents:
diff changeset
891 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
892 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
893 //
a61af66fc99e Initial load
duke
parents:
diff changeset
894 // 3. In this case we eliminate the unlock of the first s, the lock
a61af66fc99e Initial load
duke
parents:
diff changeset
895 // and unlock in the then case and the lock in the final s.
a61af66fc99e Initial load
duke
parents:
diff changeset
896 //
a61af66fc99e Initial load
duke
parents:
diff changeset
897 // Note also that in all these cases the then/else pieces don't have
a61af66fc99e Initial load
duke
parents:
diff changeset
898 // to be trivial as long as they begin and end with synchronization
a61af66fc99e Initial load
duke
parents:
diff changeset
899 // operations.
a61af66fc99e Initial load
duke
parents:
diff changeset
900 //
a61af66fc99e Initial load
duke
parents:
diff changeset
901 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
902 // if (p)
a61af66fc99e Initial load
duke
parents:
diff changeset
903 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
904 // f();
a61af66fc99e Initial load
duke
parents:
diff changeset
905 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
906 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
907 //
a61af66fc99e Initial load
duke
parents:
diff changeset
908 // The code will work properly for this case, leaving in the unlock
a61af66fc99e Initial load
duke
parents:
diff changeset
909 // before the call to f and the relock after it.
a61af66fc99e Initial load
duke
parents:
diff changeset
910 //
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // A potentially interesting case which isn't handled here is when the
a61af66fc99e Initial load
duke
parents:
diff changeset
912 // locking is partially redundant.
a61af66fc99e Initial load
duke
parents:
diff changeset
913 //
a61af66fc99e Initial load
duke
parents:
diff changeset
914 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
915 // if (p)
a61af66fc99e Initial load
duke
parents:
diff changeset
916 // s();
a61af66fc99e Initial load
duke
parents:
diff changeset
917 //
a61af66fc99e Initial load
duke
parents:
diff changeset
918 // This could be eliminated putting unlocking on the else case and
a61af66fc99e Initial load
duke
parents:
diff changeset
919 // eliminating the first unlock and the lock in the then side.
a61af66fc99e Initial load
duke
parents:
diff changeset
920 // Alternatively the unlock could be moved out of the then side so it
a61af66fc99e Initial load
duke
parents:
diff changeset
921 // was after the merge and the first unlock and second lock
a61af66fc99e Initial load
duke
parents:
diff changeset
922 // eliminated. This might require less manipulation of the memory
a61af66fc99e Initial load
duke
parents:
diff changeset
923 // state to get correct.
a61af66fc99e Initial load
duke
parents:
diff changeset
924 //
a61af66fc99e Initial load
duke
parents:
diff changeset
925 // Additionally we might allow work between a unlock and lock before
a61af66fc99e Initial load
duke
parents:
diff changeset
926 // giving up eliminating the locks. The current code disallows any
a61af66fc99e Initial load
duke
parents:
diff changeset
927 // conditional control flow between these operations. A formulation
a61af66fc99e Initial load
duke
parents:
diff changeset
928 // similar to partial redundancy elimination computing the
a61af66fc99e Initial load
duke
parents:
diff changeset
929 // availability of unlocking and the anticipatability of locking at a
a61af66fc99e Initial load
duke
parents:
diff changeset
930 // program point would allow detection of fully redundant locking with
a61af66fc99e Initial load
duke
parents:
diff changeset
931 // some amount of work in between. I'm not sure how often I really
a61af66fc99e Initial load
duke
parents:
diff changeset
932 // think that would occur though. Most of the cases I've seen
a61af66fc99e Initial load
duke
parents:
diff changeset
933 // indicate it's likely non-trivial work would occur in between.
a61af66fc99e Initial load
duke
parents:
diff changeset
934 // There may be other more complicated constructs where we could
a61af66fc99e Initial load
duke
parents:
diff changeset
935 // eliminate locking but I haven't seen any others appear as hot or
a61af66fc99e Initial load
duke
parents:
diff changeset
936 // interesting.
a61af66fc99e Initial load
duke
parents:
diff changeset
937 //
a61af66fc99e Initial load
duke
parents:
diff changeset
938 // Locking and unlocking have a canonical form in ideal that looks
a61af66fc99e Initial load
duke
parents:
diff changeset
939 // roughly like this:
a61af66fc99e Initial load
duke
parents:
diff changeset
940 //
a61af66fc99e Initial load
duke
parents:
diff changeset
941 // <obj>
a61af66fc99e Initial load
duke
parents:
diff changeset
942 // | \\------+
a61af66fc99e Initial load
duke
parents:
diff changeset
943 // | \ \
a61af66fc99e Initial load
duke
parents:
diff changeset
944 // | BoxLock \
a61af66fc99e Initial load
duke
parents:
diff changeset
945 // | | | \
a61af66fc99e Initial load
duke
parents:
diff changeset
946 // | | \ \
a61af66fc99e Initial load
duke
parents:
diff changeset
947 // | | FastLock
a61af66fc99e Initial load
duke
parents:
diff changeset
948 // | | /
a61af66fc99e Initial load
duke
parents:
diff changeset
949 // | | /
a61af66fc99e Initial load
duke
parents:
diff changeset
950 // | | |
a61af66fc99e Initial load
duke
parents:
diff changeset
951 //
a61af66fc99e Initial load
duke
parents:
diff changeset
952 // Lock
a61af66fc99e Initial load
duke
parents:
diff changeset
953 // |
a61af66fc99e Initial load
duke
parents:
diff changeset
954 // Proj #0
a61af66fc99e Initial load
duke
parents:
diff changeset
955 // |
a61af66fc99e Initial load
duke
parents:
diff changeset
956 // MembarAcquire
a61af66fc99e Initial load
duke
parents:
diff changeset
957 // |
a61af66fc99e Initial load
duke
parents:
diff changeset
958 // Proj #0
a61af66fc99e Initial load
duke
parents:
diff changeset
959 //
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // MembarRelease
a61af66fc99e Initial load
duke
parents:
diff changeset
961 // |
a61af66fc99e Initial load
duke
parents:
diff changeset
962 // Proj #0
a61af66fc99e Initial load
duke
parents:
diff changeset
963 // |
a61af66fc99e Initial load
duke
parents:
diff changeset
964 // Unlock
a61af66fc99e Initial load
duke
parents:
diff changeset
965 // |
a61af66fc99e Initial load
duke
parents:
diff changeset
966 // Proj #0
a61af66fc99e Initial load
duke
parents:
diff changeset
967 //
a61af66fc99e Initial load
duke
parents:
diff changeset
968 //
a61af66fc99e Initial load
duke
parents:
diff changeset
969 // This code proceeds by processing Lock nodes during PhaseIterGVN
a61af66fc99e Initial load
duke
parents:
diff changeset
970 // and searching back through its control for the proper code
a61af66fc99e Initial load
duke
parents:
diff changeset
971 // patterns. Once it finds a set of lock and unlock operations to
a61af66fc99e Initial load
duke
parents:
diff changeset
972 // eliminate they are marked as eliminatable which causes the
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // expansion of the Lock and Unlock macro nodes to make the operation a NOP
a61af66fc99e Initial load
duke
parents:
diff changeset
974 //
a61af66fc99e Initial load
duke
parents:
diff changeset
975 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
976
a61af66fc99e Initial load
duke
parents:
diff changeset
977 //
a61af66fc99e Initial load
duke
parents:
diff changeset
978 // Utility function to skip over uninteresting control nodes. Nodes skipped are:
a61af66fc99e Initial load
duke
parents:
diff changeset
979 // - copy regions. (These may not have been optimized away yet.)
a61af66fc99e Initial load
duke
parents:
diff changeset
980 // - eliminated locking nodes
a61af66fc99e Initial load
duke
parents:
diff changeset
981 //
a61af66fc99e Initial load
duke
parents:
diff changeset
982 static Node *next_control(Node *ctrl) {
a61af66fc99e Initial load
duke
parents:
diff changeset
983 if (ctrl == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
984 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
985 while (1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
986 if (ctrl->is_Region()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
987 RegionNode *r = ctrl->as_Region();
a61af66fc99e Initial load
duke
parents:
diff changeset
988 Node *n = r->is_copy();
a61af66fc99e Initial load
duke
parents:
diff changeset
989 if (n == NULL)
a61af66fc99e Initial load
duke
parents:
diff changeset
990 break; // hit a region, return it
a61af66fc99e Initial load
duke
parents:
diff changeset
991 else
a61af66fc99e Initial load
duke
parents:
diff changeset
992 ctrl = n;
a61af66fc99e Initial load
duke
parents:
diff changeset
993 } else if (ctrl->is_Proj()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
994 Node *in0 = ctrl->in(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
995 if (in0->is_AbstractLock() && in0->as_AbstractLock()->is_eliminated()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
996 ctrl = in0->in(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
997 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
998 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
999 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 break; // found an interesting control
a61af66fc99e Initial load
duke
parents:
diff changeset
1002 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 return ctrl;
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 // Given a control, see if it's the control projection of an Unlock which
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 // operating on the same object as lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 bool AbstractLockNode::find_matching_unlock(const Node* ctrl, LockNode* lock,
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 GrowableArray<AbstractLockNode*> &lock_ops) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 ProjNode *ctrl_proj = (ctrl->is_Proj()) ? ctrl->as_Proj() : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 if (ctrl_proj != NULL && ctrl_proj->_con == TypeFunc::Control) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 Node *n = ctrl_proj->in(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 if (n != NULL && n->is_Unlock()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 UnlockNode *unlock = n->as_Unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 if ((lock->obj_node() == unlock->obj_node()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 (lock->box_node() == unlock->box_node()) && !unlock->is_eliminated()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 lock_ops.append(unlock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1026
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 // Find the lock matching an unlock. Returns null if a safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 // or complicated control is encountered first.
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 LockNode *AbstractLockNode::find_matching_lock(UnlockNode* unlock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 LockNode *lock_result = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 // find the matching lock, or an intervening safepoint
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 Node *ctrl = next_control(unlock->in(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 while (1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 assert(ctrl != NULL, "invalid control graph");
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 assert(!ctrl->is_Start(), "missing lock for unlock");
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 if (ctrl->is_top()) break; // dead control path
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 if (ctrl->is_Proj()) ctrl = ctrl->in(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 if (ctrl->is_SafePoint()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 break; // found a safepoint (may be the lock we are searching for)
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 } else if (ctrl->is_Region()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 // Check for a simple diamond pattern. Punt on anything more complicated
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 if (ctrl->req() == 3 && ctrl->in(1) != NULL && ctrl->in(2) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 Node *in1 = next_control(ctrl->in(1));
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 Node *in2 = next_control(ctrl->in(2));
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 if (((in1->is_IfTrue() && in2->is_IfFalse()) ||
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 (in2->is_IfTrue() && in1->is_IfFalse())) && (in1->in(0) == in2->in(0))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 ctrl = next_control(in1->in(0)->in(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 ctrl = next_control(ctrl->in(0)); // keep searching
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 if (ctrl->is_Lock()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 LockNode *lock = ctrl->as_Lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 if ((lock->obj_node() == unlock->obj_node()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 (lock->box_node() == unlock->box_node())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 lock_result = lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 return lock_result;
a61af66fc99e Initial load
duke
parents:
diff changeset
1067 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1068
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 // This code corresponds to case 3 above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1070
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 bool AbstractLockNode::find_lock_and_unlock_through_if(Node* node, LockNode* lock,
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 GrowableArray<AbstractLockNode*> &lock_ops) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 Node* if_node = node->in(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 bool if_true = node->is_IfTrue();
a61af66fc99e Initial load
duke
parents:
diff changeset
1075
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 if (if_node->is_If() && if_node->outcnt() == 2 && (if_true || node->is_IfFalse())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 Node *lock_ctrl = next_control(if_node->in(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 if (find_matching_unlock(lock_ctrl, lock, lock_ops)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 Node* lock1_node = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 ProjNode* proj = if_node->as_If()->proj_out(!if_true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 if (if_true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 if (proj->is_IfFalse() && proj->outcnt() == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 lock1_node = proj->unique_out();
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1085 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 if (proj->is_IfTrue() && proj->outcnt() == 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 lock1_node = proj->unique_out();
a61af66fc99e Initial load
duke
parents:
diff changeset
1088 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 if (lock1_node != NULL && lock1_node->is_Lock()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 LockNode *lock1 = lock1_node->as_Lock();
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 if ((lock->obj_node() == lock1->obj_node()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 (lock->box_node() == lock1->box_node()) && !lock1->is_eliminated()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 lock_ops.append(lock1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1100
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 lock_ops.trunc_to(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1103 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1104
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 bool AbstractLockNode::find_unlocks_for_region(const RegionNode* region, LockNode* lock,
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 GrowableArray<AbstractLockNode*> &lock_ops) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 // check each control merging at this point for a matching unlock.
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 // in(0) should be self edge so skip it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 for (int i = 1; i < (int)region->req(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 Node *in_node = next_control(region->in(i));
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 if (in_node != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 if (find_matching_unlock(in_node, lock, lock_ops)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 // found a match so keep on checking.
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 } else if (find_lock_and_unlock_through_if(in_node, lock, lock_ops)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1118
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 // If we fall through to here then it was some kind of node we
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 // don't understand or there wasn't a matching unlock, so give
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 // up trying to merge locks.
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 lock_ops.trunc_to(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1123 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1127
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1129
a61af66fc99e Initial load
duke
parents:
diff changeset
1130 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1132 // Create a counter which counts the number of times this lock is acquired
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 void AbstractLockNode::create_lock_counter(JVMState* state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1135 _counter = OptoRuntime::new_named_counter(state, NamedCounter::LockCounter);
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1138
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 void AbstractLockNode::set_eliminated() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 _eliminate = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 if (_counter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 // Update the counter to indicate that this lock was eliminated.
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 // The counter update code will stay around even though the
a61af66fc99e Initial load
duke
parents:
diff changeset
1145 // optimizer will eliminate the lock operation itself.
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 _counter->set_tag(NamedCounter::EliminatedLockCounter);
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1150
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 Node *LockNode::Ideal(PhaseGVN *phase, bool can_reshape) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1153
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 // perform any generic optimizations first
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 Node *result = SafePointNode::Ideal(phase, can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
1156
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 // Now see if we can optimize away this lock. We don't actually
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 // remove the locking here, we simply set the _eliminate flag which
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 // prevents macro expansion from expanding the lock. Since we don't
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 // modify the graph, the value returned from this function is the
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 // one computed above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 if (EliminateLocks && !is_eliminated()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 // Try lock coarsening
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 PhaseIterGVN* iter = phase->is_IterGVN();
a61af66fc99e Initial load
duke
parents:
diff changeset
1167 if (iter != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1168
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 GrowableArray<AbstractLockNode*> lock_ops;
a61af66fc99e Initial load
duke
parents:
diff changeset
1170
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 Node *ctrl = next_control(in(0));
a61af66fc99e Initial load
duke
parents:
diff changeset
1172
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 // now search back for a matching Unlock
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 if (find_matching_unlock(ctrl, this, lock_ops)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 // found an unlock directly preceding this lock. This is the
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 // case of single unlock directly control dependent on a
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 // single lock which is the trivial version of case 1 or 2.
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 } else if (ctrl->is_Region() ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 if (find_unlocks_for_region(ctrl->as_Region(), this, lock_ops)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 // found lock preceded by multiple unlocks along all paths
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 // joining at this point which is case 3 in description above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 // see if this lock comes from either half of an if and the
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 // predecessors merges unlocks and the other half of the if
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 // performs a lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
1187 if (find_lock_and_unlock_through_if(ctrl, this, lock_ops)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 // found unlock splitting to an if with locks on both branches.
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1191
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 if (lock_ops.length() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 // add ourselves to the list of locks to be eliminated.
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 lock_ops.append(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1195
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 if (PrintEliminateLocks) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 int locks = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 int unlocks = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 for (int i = 0; i < lock_ops.length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1201 AbstractLockNode* lock = lock_ops.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 if (lock->Opcode() == Op_Lock) locks++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 else unlocks++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 if (Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1205 lock->dump(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1208 tty->print_cr("***Eliminated %d unlocks and %d locks", unlocks, locks);
a61af66fc99e Initial load
duke
parents:
diff changeset
1209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1210 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1211
a61af66fc99e Initial load
duke
parents:
diff changeset
1212 // for each of the identified locks, mark them
a61af66fc99e Initial load
duke
parents:
diff changeset
1213 // as eliminatable
a61af66fc99e Initial load
duke
parents:
diff changeset
1214 for (int i = 0; i < lock_ops.length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1215 AbstractLockNode* lock = lock_ops.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1216
a61af66fc99e Initial load
duke
parents:
diff changeset
1217 // Mark it eliminated to update any counters
a61af66fc99e Initial load
duke
parents:
diff changeset
1218 lock->set_eliminated();
a61af66fc99e Initial load
duke
parents:
diff changeset
1219 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1220 } else if (result != NULL && ctrl->is_Region() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
1221 iter->_worklist.member(ctrl)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1222 // We weren't able to find any opportunities but the region this
a61af66fc99e Initial load
duke
parents:
diff changeset
1223 // lock is control dependent on hasn't been processed yet so put
a61af66fc99e Initial load
duke
parents:
diff changeset
1224 // this lock back on the worklist so we can check again once any
a61af66fc99e Initial load
duke
parents:
diff changeset
1225 // region simplification has occurred.
a61af66fc99e Initial load
duke
parents:
diff changeset
1226 iter->_worklist.push(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1230
a61af66fc99e Initial load
duke
parents:
diff changeset
1231 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
1232 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1233
a61af66fc99e Initial load
duke
parents:
diff changeset
1234 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1235 uint UnlockNode::size_of() const { return sizeof(*this); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1236
a61af66fc99e Initial load
duke
parents:
diff changeset
1237 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
1238 Node *UnlockNode::Ideal(PhaseGVN *phase, bool can_reshape) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1239
a61af66fc99e Initial load
duke
parents:
diff changeset
1240 // perform any generic optimizations first
a61af66fc99e Initial load
duke
parents:
diff changeset
1241 Node * result = SafePointNode::Ideal(phase, can_reshape);
a61af66fc99e Initial load
duke
parents:
diff changeset
1242
a61af66fc99e Initial load
duke
parents:
diff changeset
1243 // Now see if we can optimize away this unlock. We don't actually
a61af66fc99e Initial load
duke
parents:
diff changeset
1244 // remove the unlocking here, we simply set the _eliminate flag which
a61af66fc99e Initial load
duke
parents:
diff changeset
1245 // prevents macro expansion from expanding the unlock. Since we don't
a61af66fc99e Initial load
duke
parents:
diff changeset
1246 // modify the graph, the value returned from this function is the
a61af66fc99e Initial load
duke
parents:
diff changeset
1247 // one computed above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1248 if (EliminateLocks && !is_eliminated()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1249 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1250 // If we are unlocking an unescaped object, the lock/unlock is unnecessary
a61af66fc99e Initial load
duke
parents:
diff changeset
1251 // We can eliminate them if there are no safepoints in the locked region.
a61af66fc99e Initial load
duke
parents:
diff changeset
1252 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1253 ConnectionGraph *cgr = Compile::current()->congraph();
a61af66fc99e Initial load
duke
parents:
diff changeset
1254 if (cgr != NULL && cgr->escape_state(obj_node(), phase) == PointsToNode::NoEscape) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1255 GrowableArray<AbstractLockNode*> lock_ops;
a61af66fc99e Initial load
duke
parents:
diff changeset
1256 LockNode *lock = find_matching_lock(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1257 if (lock != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1258 lock_ops.append(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1259 lock_ops.append(lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
1260 // find other unlocks which pair with the lock we found and add them
a61af66fc99e Initial load
duke
parents:
diff changeset
1261 // to the list
a61af66fc99e Initial load
duke
parents:
diff changeset
1262 Node * box = box_node();
a61af66fc99e Initial load
duke
parents:
diff changeset
1263
a61af66fc99e Initial load
duke
parents:
diff changeset
1264 for (DUIterator_Fast imax, i = box->fast_outs(imax); i < imax; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1265 Node *use = box->fast_out(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1266 if (use->is_Unlock() && use != this) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1267 UnlockNode *unlock1 = use->as_Unlock();
a61af66fc99e Initial load
duke
parents:
diff changeset
1268 if (!unlock1->is_eliminated()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1269 LockNode *lock1 = find_matching_lock(unlock1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1270 if (lock == lock1)
a61af66fc99e Initial load
duke
parents:
diff changeset
1271 lock_ops.append(unlock1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1272 else if (lock1 == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1273 // we can't find a matching lock, we must assume the worst
a61af66fc99e Initial load
duke
parents:
diff changeset
1274 lock_ops.trunc_to(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1275 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1276 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1278 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1279 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1280 if (lock_ops.length() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1281
a61af66fc99e Initial load
duke
parents:
diff changeset
1282 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
1283 if (PrintEliminateLocks) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1284 int locks = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1285 int unlocks = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1286 for (int i = 0; i < lock_ops.length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1287 AbstractLockNode* lock = lock_ops.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1288 if (lock->Opcode() == Op_Lock) locks++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1289 else unlocks++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1290 if (Verbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1291 lock->dump(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1292 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1293 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1294 tty->print_cr("***Eliminated %d unescaped unlocks and %d unescaped locks", unlocks, locks);
a61af66fc99e Initial load
duke
parents:
diff changeset
1295 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1296 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
1297
a61af66fc99e Initial load
duke
parents:
diff changeset
1298 // for each of the identified locks, mark them
a61af66fc99e Initial load
duke
parents:
diff changeset
1299 // as eliminatable
a61af66fc99e Initial load
duke
parents:
diff changeset
1300 for (int i = 0; i < lock_ops.length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1301 AbstractLockNode* lock = lock_ops.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
1302
a61af66fc99e Initial load
duke
parents:
diff changeset
1303 // Mark it eliminated to update any counters
a61af66fc99e Initial load
duke
parents:
diff changeset
1304 lock->set_eliminated();
a61af66fc99e Initial load
duke
parents:
diff changeset
1305 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1307 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1310 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
1311 }