author | roland |
Wed, 14 Sep 2011 09:22:51 +0200 | |
changeset 11196 | a310a659c580 |
parent 11193 | d8de495d05e0 |
child 12591 | 064b5c1aa88a |
permissions | -rw-r--r-- |
1 | 1 |
/* |
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
7397
diff
changeset
|
2 |
* Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4906
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4906
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4906
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "ci/bcEscapeAnalyzer.hpp" |
|
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
27 |
#include "ci/ciCallSite.hpp" |
7397 | 28 |
#include "ci/ciCPCache.hpp" |
29 |
#include "ci/ciMethodHandle.hpp" |
|
30 |
#include "classfile/javaClasses.hpp" |
|
31 |
#include "compiler/compileLog.hpp" |
|
32 |
#include "opto/addnode.hpp" |
|
33 |
#include "opto/callGenerator.hpp" |
|
34 |
#include "opto/callnode.hpp" |
|
35 |
#include "opto/cfgnode.hpp" |
|
36 |
#include "opto/connode.hpp" |
|
37 |
#include "opto/parse.hpp" |
|
38 |
#include "opto/rootnode.hpp" |
|
39 |
#include "opto/runtime.hpp" |
|
40 |
#include "opto/subnode.hpp" |
|
1 | 41 |
|
42 |
CallGenerator::CallGenerator(ciMethod* method) { |
|
43 |
_method = method; |
|
44 |
} |
|
45 |
||
46 |
// Utility function. |
|
47 |
const TypeFunc* CallGenerator::tf() const { |
|
48 |
return TypeFunc::make(method()); |
|
49 |
} |
|
50 |
||
51 |
//-----------------------------ParseGenerator--------------------------------- |
|
52 |
// Internal class which handles all direct bytecode traversal. |
|
53 |
class ParseGenerator : public InlineCallGenerator { |
|
54 |
private: |
|
55 |
bool _is_osr; |
|
56 |
float _expected_uses; |
|
57 |
||
58 |
public: |
|
59 |
ParseGenerator(ciMethod* method, float expected_uses, bool is_osr = false) |
|
60 |
: InlineCallGenerator(method) |
|
61 |
{ |
|
62 |
_is_osr = is_osr; |
|
63 |
_expected_uses = expected_uses; |
|
10509
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10503
diff
changeset
|
64 |
assert(InlineTree::check_can_parse(method) == NULL, "parse must be possible"); |
1 | 65 |
} |
66 |
||
67 |
virtual bool is_parse() const { return true; } |
|
68 |
virtual JVMState* generate(JVMState* jvms); |
|
69 |
int is_osr() { return _is_osr; } |
|
70 |
||
71 |
}; |
|
72 |
||
73 |
JVMState* ParseGenerator::generate(JVMState* jvms) { |
|
74 |
Compile* C = Compile::current(); |
|
75 |
||
76 |
if (is_osr()) { |
|
77 |
// The JVMS for a OSR has a single argument (see its TypeFunc). |
|
78 |
assert(jvms->depth() == 1, "no inline OSR"); |
|
79 |
} |
|
80 |
||
81 |
if (C->failing()) { |
|
82 |
return NULL; // bailing out of the compile; do not try to parse |
|
83 |
} |
|
84 |
||
85 |
Parse parser(jvms, method(), _expected_uses); |
|
86 |
// Grab signature for matching/allocation |
|
87 |
#ifdef ASSERT |
|
88 |
if (parser.tf() != (parser.depth() == 1 ? C->tf() : tf())) { |
|
89 |
MutexLockerEx ml(Compile_lock, Mutex::_no_safepoint_check_flag); |
|
90 |
assert(C->env()->system_dictionary_modification_counter_changed(), |
|
91 |
"Must invalidate if TypeFuncs differ"); |
|
92 |
} |
|
93 |
#endif |
|
94 |
||
95 |
GraphKit& exits = parser.exits(); |
|
96 |
||
97 |
if (C->failing()) { |
|
98 |
while (exits.pop_exception_state() != NULL) ; |
|
99 |
return NULL; |
|
100 |
} |
|
101 |
||
102 |
assert(exits.jvms()->same_calls_as(jvms), "sanity"); |
|
103 |
||
104 |
// Simply return the exit state of the parser, |
|
105 |
// augmented by any exceptional states. |
|
106 |
return exits.transfer_exceptions_into_jvms(); |
|
107 |
} |
|
108 |
||
109 |
//---------------------------DirectCallGenerator------------------------------ |
|
110 |
// Internal class which handles all out-of-line calls w/o receiver type checks. |
|
111 |
class DirectCallGenerator : public CallGenerator { |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
112 |
private: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
113 |
CallStaticJavaNode* _call_node; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
114 |
// Force separate memory and I/O projections for the exceptional |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
115 |
// paths to facilitate late inlinig. |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
116 |
bool _separate_io_proj; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
117 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
118 |
public: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
119 |
DirectCallGenerator(ciMethod* method, bool separate_io_proj) |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
120 |
: CallGenerator(method), |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
121 |
_separate_io_proj(separate_io_proj) |
1 | 122 |
{ |
123 |
} |
|
124 |
virtual JVMState* generate(JVMState* jvms); |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
125 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
126 |
CallStaticJavaNode* call_node() const { return _call_node; } |
1 | 127 |
}; |
128 |
||
129 |
JVMState* DirectCallGenerator::generate(JVMState* jvms) { |
|
130 |
GraphKit kit(jvms); |
|
131 |
bool is_static = method()->is_static(); |
|
132 |
address target = is_static ? SharedRuntime::get_resolve_static_call_stub() |
|
133 |
: SharedRuntime::get_resolve_opt_virtual_call_stub(); |
|
134 |
||
135 |
if (kit.C->log() != NULL) { |
|
136 |
kit.C->log()->elem("direct_call bci='%d'", jvms->bci()); |
|
137 |
} |
|
138 |
||
139 |
CallStaticJavaNode *call = new (kit.C, tf()->domain()->cnt()) CallStaticJavaNode(tf(), target, method(), kit.bci()); |
|
140 |
if (!is_static) { |
|
141 |
// Make an explicit receiver null_check as part of this call. |
|
142 |
// Since we share a map with the caller, his JVMS gets adjusted. |
|
143 |
kit.null_check_receiver(method()); |
|
144 |
if (kit.stopped()) { |
|
145 |
// And dump it back to the caller, decorated with any exceptions: |
|
146 |
return kit.transfer_exceptions_into_jvms(); |
|
147 |
} |
|
148 |
// Mark the call node as virtual, sort of: |
|
149 |
call->set_optimized_virtual(true); |
|
4906 | 150 |
if (method()->is_method_handle_invoke()) { |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
151 |
call->set_method_handle_invoke(true); |
4906 | 152 |
} |
1 | 153 |
} |
154 |
kit.set_arguments_for_java_call(call); |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
155 |
kit.set_edges_for_java_call(call, false, _separate_io_proj); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
156 |
Node* ret = kit.set_results_for_java_call(call, _separate_io_proj); |
1 | 157 |
kit.push_node(method()->return_type()->basic_type(), ret); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
158 |
_call_node = call; // Save the call node in case we need it later |
1 | 159 |
return kit.transfer_exceptions_into_jvms(); |
160 |
} |
|
161 |
||
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
162 |
//---------------------------DynamicCallGenerator----------------------------- |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
163 |
// Internal class which handles all out-of-line invokedynamic calls. |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
164 |
class DynamicCallGenerator : public CallGenerator { |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
165 |
public: |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
166 |
DynamicCallGenerator(ciMethod* method) |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
167 |
: CallGenerator(method) |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
168 |
{ |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
169 |
} |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
170 |
virtual JVMState* generate(JVMState* jvms); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
171 |
}; |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
172 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
173 |
JVMState* DynamicCallGenerator::generate(JVMState* jvms) { |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
174 |
GraphKit kit(jvms); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
175 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
176 |
if (kit.C->log() != NULL) { |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
177 |
kit.C->log()->elem("dynamic_call bci='%d'", jvms->bci()); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
178 |
} |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
179 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
180 |
// Get the constant pool cache from the caller class. |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
181 |
ciMethod* caller_method = jvms->method(); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
182 |
ciBytecodeStream str(caller_method); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
183 |
str.force_bci(jvms->bci()); // Set the stream to the invokedynamic bci. |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
184 |
assert(str.cur_bc() == Bytecodes::_invokedynamic, "wrong place to issue a dynamic call!"); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
185 |
ciCPCache* cpcache = str.get_cpcache(); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
186 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
187 |
// Get the offset of the CallSite from the constant pool cache |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
188 |
// pointer. |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
189 |
int index = str.get_method_index(); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
190 |
size_t call_site_offset = cpcache->get_f1_offset(index); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
191 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
192 |
// Load the CallSite object from the constant pool cache. |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
193 |
const TypeOopPtr* cpcache_ptr = TypeOopPtr::make_from_constant(cpcache); |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
194 |
Node* cpcache_adr = kit.makecon(cpcache_ptr); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
195 |
Node* call_site_adr = kit.basic_plus_adr(cpcache_adr, cpcache_adr, call_site_offset); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
196 |
Node* call_site = kit.make_load(kit.control(), call_site_adr, TypeInstPtr::BOTTOM, T_OBJECT, Compile::AliasIdxRaw); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
197 |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
198 |
// Load the target MethodHandle from the CallSite object. |
8676
9098d4e927e1
7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents:
7397
diff
changeset
|
199 |
Node* target_mh_adr = kit.basic_plus_adr(call_site, call_site, java_lang_invoke_CallSite::target_offset_in_bytes()); |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
200 |
Node* target_mh = kit.make_load(kit.control(), target_mh_adr, TypeInstPtr::BOTTOM, T_OBJECT); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
201 |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
202 |
address resolve_stub = SharedRuntime::get_resolve_opt_virtual_call_stub(); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
203 |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
204 |
CallStaticJavaNode *call = new (kit.C, tf()->domain()->cnt()) CallStaticJavaNode(tf(), resolve_stub, method(), kit.bci()); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
205 |
// invokedynamic is treated as an optimized invokevirtual. |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
206 |
call->set_optimized_virtual(true); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
207 |
// Take extra care (in the presence of argument motion) not to trash the SP: |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
208 |
call->set_method_handle_invoke(true); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
209 |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
210 |
// Pass the target MethodHandle as first argument and shift the |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
211 |
// other arguments. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
212 |
call->init_req(0 + TypeFunc::Parms, target_mh); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
213 |
uint nargs = call->method()->arg_size(); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
214 |
for (uint i = 1; i < nargs; i++) { |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
215 |
Node* arg = kit.argument(i - 1); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
216 |
call->init_req(i + TypeFunc::Parms, arg); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
217 |
} |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
218 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
219 |
kit.set_edges_for_java_call(call); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
220 |
Node* ret = kit.set_results_for_java_call(call); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
221 |
kit.push_node(method()->return_type()->basic_type(), ret); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
222 |
return kit.transfer_exceptions_into_jvms(); |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
223 |
} |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
224 |
|
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
225 |
//--------------------------VirtualCallGenerator------------------------------ |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
226 |
// Internal class which handles all out-of-line calls checking receiver type. |
1 | 227 |
class VirtualCallGenerator : public CallGenerator { |
228 |
private: |
|
229 |
int _vtable_index; |
|
230 |
public: |
|
231 |
VirtualCallGenerator(ciMethod* method, int vtable_index) |
|
232 |
: CallGenerator(method), _vtable_index(vtable_index) |
|
233 |
{ |
|
234 |
assert(vtable_index == methodOopDesc::invalid_vtable_index || |
|
235 |
vtable_index >= 0, "either invalid or usable"); |
|
236 |
} |
|
237 |
virtual bool is_virtual() const { return true; } |
|
238 |
virtual JVMState* generate(JVMState* jvms); |
|
239 |
}; |
|
240 |
||
241 |
JVMState* VirtualCallGenerator::generate(JVMState* jvms) { |
|
242 |
GraphKit kit(jvms); |
|
243 |
Node* receiver = kit.argument(0); |
|
244 |
||
245 |
if (kit.C->log() != NULL) { |
|
246 |
kit.C->log()->elem("virtual_call bci='%d'", jvms->bci()); |
|
247 |
} |
|
248 |
||
249 |
// If the receiver is a constant null, do not torture the system |
|
250 |
// by attempting to call through it. The compile will proceed |
|
251 |
// correctly, but may bail out in final_graph_reshaping, because |
|
252 |
// the call instruction will have a seemingly deficient out-count. |
|
253 |
// (The bailout says something misleading about an "infinite loop".) |
|
254 |
if (kit.gvn().type(receiver)->higher_equal(TypePtr::NULL_PTR)) { |
|
255 |
kit.inc_sp(method()->arg_size()); // restore arguments |
|
256 |
kit.uncommon_trap(Deoptimization::Reason_null_check, |
|
257 |
Deoptimization::Action_none, |
|
258 |
NULL, "null receiver"); |
|
259 |
return kit.transfer_exceptions_into_jvms(); |
|
260 |
} |
|
261 |
||
262 |
// Ideally we would unconditionally do a null check here and let it |
|
263 |
// be converted to an implicit check based on profile information. |
|
264 |
// However currently the conversion to implicit null checks in |
|
265 |
// Block::implicit_null_check() only looks for loads and stores, not calls. |
|
266 |
ciMethod *caller = kit.method(); |
|
267 |
ciMethodData *caller_md = (caller == NULL) ? NULL : caller->method_data(); |
|
268 |
if (!UseInlineCaches || !ImplicitNullChecks || |
|
269 |
((ImplicitNullCheckThreshold > 0) && caller_md && |
|
270 |
(caller_md->trap_count(Deoptimization::Reason_null_check) |
|
271 |
>= (uint)ImplicitNullCheckThreshold))) { |
|
272 |
// Make an explicit receiver null_check as part of this call. |
|
273 |
// Since we share a map with the caller, his JVMS gets adjusted. |
|
274 |
receiver = kit.null_check_receiver(method()); |
|
275 |
if (kit.stopped()) { |
|
276 |
// And dump it back to the caller, decorated with any exceptions: |
|
277 |
return kit.transfer_exceptions_into_jvms(); |
|
278 |
} |
|
279 |
} |
|
280 |
||
281 |
assert(!method()->is_static(), "virtual call must not be to static"); |
|
282 |
assert(!method()->is_final(), "virtual call should not be to final"); |
|
283 |
assert(!method()->is_private(), "virtual call should not be to private"); |
|
284 |
assert(_vtable_index == methodOopDesc::invalid_vtable_index || !UseInlineCaches, |
|
285 |
"no vtable calls if +UseInlineCaches "); |
|
286 |
address target = SharedRuntime::get_resolve_virtual_call_stub(); |
|
287 |
// Normal inline cache used for call |
|
288 |
CallDynamicJavaNode *call = new (kit.C, tf()->domain()->cnt()) CallDynamicJavaNode(tf(), target, method(), _vtable_index, kit.bci()); |
|
289 |
kit.set_arguments_for_java_call(call); |
|
290 |
kit.set_edges_for_java_call(call); |
|
291 |
Node* ret = kit.set_results_for_java_call(call); |
|
292 |
kit.push_node(method()->return_type()->basic_type(), ret); |
|
293 |
||
294 |
// Represent the effect of an implicit receiver null_check |
|
295 |
// as part of this call. Since we share a map with the caller, |
|
296 |
// his JVMS gets adjusted. |
|
297 |
kit.cast_not_null(receiver); |
|
298 |
return kit.transfer_exceptions_into_jvms(); |
|
299 |
} |
|
300 |
||
301 |
CallGenerator* CallGenerator::for_inline(ciMethod* m, float expected_uses) { |
|
10509
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10503
diff
changeset
|
302 |
if (InlineTree::check_can_parse(m) != NULL) return NULL; |
1 | 303 |
return new ParseGenerator(m, expected_uses); |
304 |
} |
|
305 |
||
306 |
// As a special case, the JVMS passed to this CallGenerator is |
|
307 |
// for the method execution already in progress, not just the JVMS |
|
308 |
// of the caller. Thus, this CallGenerator cannot be mixed with others! |
|
309 |
CallGenerator* CallGenerator::for_osr(ciMethod* m, int osr_bci) { |
|
10509
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10503
diff
changeset
|
310 |
if (InlineTree::check_can_parse(m) != NULL) return NULL; |
1 | 311 |
float past_uses = m->interpreter_invocation_count(); |
312 |
float expected_uses = past_uses; |
|
313 |
return new ParseGenerator(m, expected_uses, true); |
|
314 |
} |
|
315 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
316 |
CallGenerator* CallGenerator::for_direct_call(ciMethod* m, bool separate_io_proj) { |
1 | 317 |
assert(!m->is_abstract(), "for_direct_call mismatch"); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
318 |
return new DirectCallGenerator(m, separate_io_proj); |
1 | 319 |
} |
320 |
||
321 |
CallGenerator* CallGenerator::for_virtual_call(ciMethod* m, int vtable_index) { |
|
322 |
assert(!m->is_static(), "for_virtual_call mismatch"); |
|
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
323 |
assert(!m->is_method_handle_invoke(), "should be a direct call"); |
1 | 324 |
return new VirtualCallGenerator(m, vtable_index); |
325 |
} |
|
326 |
||
11193
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
327 |
CallGenerator* CallGenerator::for_dynamic_call(ciMethod* m) { |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
328 |
assert(m->is_method_handle_invoke() || m->is_method_handle_adapter(), "for_dynamic_call mismatch"); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
329 |
return new DynamicCallGenerator(m); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
330 |
} |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
331 |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
332 |
// Allow inlining decisions to be delayed |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
333 |
class LateInlineCallGenerator : public DirectCallGenerator { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
334 |
CallGenerator* _inline_cg; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
335 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
336 |
public: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
337 |
LateInlineCallGenerator(ciMethod* method, CallGenerator* inline_cg) : |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
338 |
DirectCallGenerator(method, true), _inline_cg(inline_cg) {} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
339 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
340 |
virtual bool is_late_inline() const { return true; } |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
341 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
342 |
// Convert the CallStaticJava into an inline |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
343 |
virtual void do_late_inline(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
344 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
345 |
JVMState* generate(JVMState* jvms) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
346 |
// Record that this call site should be revisited once the main |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
347 |
// parse is finished. |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
348 |
Compile::current()->add_late_inline(this); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
349 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
350 |
// Emit the CallStaticJava and request separate projections so |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
351 |
// that the late inlining logic can distinguish between fall |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
352 |
// through and exceptional uses of the memory and io projections |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
353 |
// as is done for allocations and macro expansion. |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
354 |
return DirectCallGenerator::generate(jvms); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
355 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
356 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
357 |
}; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
358 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
359 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
360 |
void LateInlineCallGenerator::do_late_inline() { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
361 |
// Can't inline it |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
362 |
if (call_node() == NULL || call_node()->outcnt() == 0 || |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
363 |
call_node()->in(0) == NULL || call_node()->in(0)->is_top()) |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
364 |
return; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
365 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
366 |
CallStaticJavaNode* call = call_node(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
367 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
368 |
// Make a clone of the JVMState that appropriate to use for driving a parse |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
369 |
Compile* C = Compile::current(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
370 |
JVMState* jvms = call->jvms()->clone_shallow(C); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
371 |
uint size = call->req(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
372 |
SafePointNode* map = new (C, size) SafePointNode(size, jvms); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
373 |
for (uint i1 = 0; i1 < size; i1++) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
374 |
map->init_req(i1, call->in(i1)); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
375 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
376 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
377 |
// Make sure the state is a MergeMem for parsing. |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
378 |
if (!map->in(TypeFunc::Memory)->is_MergeMem()) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
379 |
map->set_req(TypeFunc::Memory, MergeMemNode::make(C, map->in(TypeFunc::Memory))); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
380 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
381 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
382 |
// Make enough space for the expression stack and transfer the incoming arguments |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
383 |
int nargs = method()->arg_size(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
384 |
jvms->set_map(map); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
385 |
map->ensure_stack(jvms, jvms->method()->max_stack()); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
386 |
if (nargs > 0) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
387 |
for (int i1 = 0; i1 < nargs; i1++) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
388 |
map->set_req(i1 + jvms->argoff(), call->in(TypeFunc::Parms + i1)); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
389 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
390 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
391 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
392 |
CompileLog* log = C->log(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
393 |
if (log != NULL) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
394 |
log->head("late_inline method='%d'", log->identify(method())); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
395 |
JVMState* p = jvms; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
396 |
while (p != NULL) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
397 |
log->elem("jvms bci='%d' method='%d'", p->bci(), log->identify(p->method())); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
398 |
p = p->caller(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
399 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
400 |
log->tail("late_inline"); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
401 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
402 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
403 |
// Setup default node notes to be picked up by the inlining |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
404 |
Node_Notes* old_nn = C->default_node_notes(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
405 |
if (old_nn != NULL) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
406 |
Node_Notes* entry_nn = old_nn->clone(C); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
407 |
entry_nn->set_jvms(jvms); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
408 |
C->set_default_node_notes(entry_nn); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
409 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
410 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
411 |
// Now perform the inling using the synthesized JVMState |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
412 |
JVMState* new_jvms = _inline_cg->generate(jvms); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
413 |
if (new_jvms == NULL) return; // no change |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
414 |
if (C->failing()) return; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
415 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
416 |
// Capture any exceptional control flow |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
417 |
GraphKit kit(new_jvms); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
418 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
419 |
// Find the result object |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
420 |
Node* result = C->top(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
421 |
int result_size = method()->return_type()->size(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
422 |
if (result_size != 0 && !kit.stopped()) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
423 |
result = (result_size == 1) ? kit.pop() : kit.pop_pair(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
424 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
425 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
426 |
kit.replace_call(call, result); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
427 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
428 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
429 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
430 |
CallGenerator* CallGenerator::for_late_inline(ciMethod* method, CallGenerator* inline_cg) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
431 |
return new LateInlineCallGenerator(method, inline_cg); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
432 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
433 |
|
1 | 434 |
|
435 |
//---------------------------WarmCallGenerator-------------------------------- |
|
436 |
// Internal class which handles initial deferral of inlining decisions. |
|
437 |
class WarmCallGenerator : public CallGenerator { |
|
438 |
WarmCallInfo* _call_info; |
|
439 |
CallGenerator* _if_cold; |
|
440 |
CallGenerator* _if_hot; |
|
441 |
bool _is_virtual; // caches virtuality of if_cold |
|
442 |
bool _is_inline; // caches inline-ness of if_hot |
|
443 |
||
444 |
public: |
|
445 |
WarmCallGenerator(WarmCallInfo* ci, |
|
446 |
CallGenerator* if_cold, |
|
447 |
CallGenerator* if_hot) |
|
448 |
: CallGenerator(if_cold->method()) |
|
449 |
{ |
|
450 |
assert(method() == if_hot->method(), "consistent choices"); |
|
451 |
_call_info = ci; |
|
452 |
_if_cold = if_cold; |
|
453 |
_if_hot = if_hot; |
|
454 |
_is_virtual = if_cold->is_virtual(); |
|
455 |
_is_inline = if_hot->is_inline(); |
|
456 |
} |
|
457 |
||
458 |
virtual bool is_inline() const { return _is_inline; } |
|
459 |
virtual bool is_virtual() const { return _is_virtual; } |
|
460 |
virtual bool is_deferred() const { return true; } |
|
461 |
||
462 |
virtual JVMState* generate(JVMState* jvms); |
|
463 |
}; |
|
464 |
||
465 |
||
466 |
CallGenerator* CallGenerator::for_warm_call(WarmCallInfo* ci, |
|
467 |
CallGenerator* if_cold, |
|
468 |
CallGenerator* if_hot) { |
|
469 |
return new WarmCallGenerator(ci, if_cold, if_hot); |
|
470 |
} |
|
471 |
||
472 |
JVMState* WarmCallGenerator::generate(JVMState* jvms) { |
|
473 |
Compile* C = Compile::current(); |
|
474 |
if (C->log() != NULL) { |
|
475 |
C->log()->elem("warm_call bci='%d'", jvms->bci()); |
|
476 |
} |
|
477 |
jvms = _if_cold->generate(jvms); |
|
478 |
if (jvms != NULL) { |
|
479 |
Node* m = jvms->map()->control(); |
|
480 |
if (m->is_CatchProj()) m = m->in(0); else m = C->top(); |
|
481 |
if (m->is_Catch()) m = m->in(0); else m = C->top(); |
|
482 |
if (m->is_Proj()) m = m->in(0); else m = C->top(); |
|
483 |
if (m->is_CallJava()) { |
|
484 |
_call_info->set_call(m->as_Call()); |
|
485 |
_call_info->set_hot_cg(_if_hot); |
|
486 |
#ifndef PRODUCT |
|
487 |
if (PrintOpto || PrintOptoInlining) { |
|
488 |
tty->print_cr("Queueing for warm inlining at bci %d:", jvms->bci()); |
|
489 |
tty->print("WCI: "); |
|
490 |
_call_info->print(); |
|
491 |
} |
|
492 |
#endif |
|
493 |
_call_info->set_heat(_call_info->compute_heat()); |
|
494 |
C->set_warm_calls(_call_info->insert_into(C->warm_calls())); |
|
495 |
} |
|
496 |
} |
|
497 |
return jvms; |
|
498 |
} |
|
499 |
||
500 |
void WarmCallInfo::make_hot() { |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
501 |
Unimplemented(); |
1 | 502 |
} |
503 |
||
504 |
void WarmCallInfo::make_cold() { |
|
505 |
// No action: Just dequeue. |
|
506 |
} |
|
507 |
||
508 |
||
509 |
//------------------------PredictedCallGenerator------------------------------ |
|
510 |
// Internal class which handles all out-of-line calls checking receiver type. |
|
511 |
class PredictedCallGenerator : public CallGenerator { |
|
512 |
ciKlass* _predicted_receiver; |
|
513 |
CallGenerator* _if_missed; |
|
514 |
CallGenerator* _if_hit; |
|
515 |
float _hit_prob; |
|
516 |
||
517 |
public: |
|
518 |
PredictedCallGenerator(ciKlass* predicted_receiver, |
|
519 |
CallGenerator* if_missed, |
|
520 |
CallGenerator* if_hit, float hit_prob) |
|
521 |
: CallGenerator(if_missed->method()) |
|
522 |
{ |
|
523 |
// The call profile data may predict the hit_prob as extreme as 0 or 1. |
|
524 |
// Remove the extremes values from the range. |
|
525 |
if (hit_prob > PROB_MAX) hit_prob = PROB_MAX; |
|
526 |
if (hit_prob < PROB_MIN) hit_prob = PROB_MIN; |
|
527 |
||
528 |
_predicted_receiver = predicted_receiver; |
|
529 |
_if_missed = if_missed; |
|
530 |
_if_hit = if_hit; |
|
531 |
_hit_prob = hit_prob; |
|
532 |
} |
|
533 |
||
534 |
virtual bool is_virtual() const { return true; } |
|
535 |
virtual bool is_inline() const { return _if_hit->is_inline(); } |
|
536 |
virtual bool is_deferred() const { return _if_hit->is_deferred(); } |
|
537 |
||
538 |
virtual JVMState* generate(JVMState* jvms); |
|
539 |
}; |
|
540 |
||
541 |
||
542 |
CallGenerator* CallGenerator::for_predicted_call(ciKlass* predicted_receiver, |
|
543 |
CallGenerator* if_missed, |
|
544 |
CallGenerator* if_hit, |
|
545 |
float hit_prob) { |
|
546 |
return new PredictedCallGenerator(predicted_receiver, if_missed, if_hit, hit_prob); |
|
547 |
} |
|
548 |
||
549 |
||
550 |
JVMState* PredictedCallGenerator::generate(JVMState* jvms) { |
|
551 |
GraphKit kit(jvms); |
|
552 |
PhaseGVN& gvn = kit.gvn(); |
|
553 |
// We need an explicit receiver null_check before checking its type. |
|
554 |
// We share a map with the caller, so his JVMS gets adjusted. |
|
555 |
Node* receiver = kit.argument(0); |
|
556 |
||
557 |
CompileLog* log = kit.C->log(); |
|
558 |
if (log != NULL) { |
|
559 |
log->elem("predicted_call bci='%d' klass='%d'", |
|
560 |
jvms->bci(), log->identify(_predicted_receiver)); |
|
561 |
} |
|
562 |
||
563 |
receiver = kit.null_check_receiver(method()); |
|
564 |
if (kit.stopped()) { |
|
565 |
return kit.transfer_exceptions_into_jvms(); |
|
566 |
} |
|
567 |
||
568 |
Node* exact_receiver = receiver; // will get updated in place... |
|
569 |
Node* slow_ctl = kit.type_check_receiver(receiver, |
|
570 |
_predicted_receiver, _hit_prob, |
|
571 |
&exact_receiver); |
|
572 |
||
573 |
SafePointNode* slow_map = NULL; |
|
574 |
JVMState* slow_jvms; |
|
575 |
{ PreserveJVMState pjvms(&kit); |
|
576 |
kit.set_control(slow_ctl); |
|
577 |
if (!kit.stopped()) { |
|
578 |
slow_jvms = _if_missed->generate(kit.sync_jvms()); |
|
11193
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
579 |
if (kit.failing()) |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
580 |
return NULL; // might happen because of NodeCountInliningCutoff |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
581 |
assert(slow_jvms != NULL, "must be"); |
1 | 582 |
kit.add_exception_states_from(slow_jvms); |
583 |
kit.set_map(slow_jvms->map()); |
|
584 |
if (!kit.stopped()) |
|
585 |
slow_map = kit.stop(); |
|
586 |
} |
|
587 |
} |
|
588 |
||
1055
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
589 |
if (kit.stopped()) { |
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
590 |
// Instance exactly does not matches the desired type. |
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
591 |
kit.set_jvms(slow_jvms); |
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
592 |
return kit.transfer_exceptions_into_jvms(); |
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
593 |
} |
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
594 |
|
1 | 595 |
// fall through if the instance exactly matches the desired type |
596 |
kit.replace_in_map(receiver, exact_receiver); |
|
597 |
||
598 |
// Make the hot call: |
|
599 |
JVMState* new_jvms = _if_hit->generate(kit.sync_jvms()); |
|
600 |
if (new_jvms == NULL) { |
|
601 |
// Inline failed, so make a direct call. |
|
602 |
assert(_if_hit->is_inline(), "must have been a failed inline"); |
|
603 |
CallGenerator* cg = CallGenerator::for_direct_call(_if_hit->method()); |
|
604 |
new_jvms = cg->generate(kit.sync_jvms()); |
|
605 |
} |
|
606 |
kit.add_exception_states_from(new_jvms); |
|
607 |
kit.set_jvms(new_jvms); |
|
608 |
||
609 |
// Need to merge slow and fast? |
|
610 |
if (slow_map == NULL) { |
|
611 |
// The fast path is the only path remaining. |
|
612 |
return kit.transfer_exceptions_into_jvms(); |
|
613 |
} |
|
614 |
||
615 |
if (kit.stopped()) { |
|
616 |
// Inlined method threw an exception, so it's just the slow path after all. |
|
617 |
kit.set_jvms(slow_jvms); |
|
618 |
return kit.transfer_exceptions_into_jvms(); |
|
619 |
} |
|
620 |
||
621 |
// Finish the diamond. |
|
622 |
kit.C->set_has_split_ifs(true); // Has chance for split-if optimization |
|
623 |
RegionNode* region = new (kit.C, 3) RegionNode(3); |
|
624 |
region->init_req(1, kit.control()); |
|
625 |
region->init_req(2, slow_map->control()); |
|
626 |
kit.set_control(gvn.transform(region)); |
|
627 |
Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO); |
|
628 |
iophi->set_req(2, slow_map->i_o()); |
|
629 |
kit.set_i_o(gvn.transform(iophi)); |
|
630 |
kit.merge_memory(slow_map->merged_memory(), region, 2); |
|
631 |
uint tos = kit.jvms()->stkoff() + kit.sp(); |
|
632 |
uint limit = slow_map->req(); |
|
633 |
for (uint i = TypeFunc::Parms; i < limit; i++) { |
|
634 |
// Skip unused stack slots; fast forward to monoff(); |
|
635 |
if (i == tos) { |
|
636 |
i = kit.jvms()->monoff(); |
|
637 |
if( i >= limit ) break; |
|
638 |
} |
|
639 |
Node* m = kit.map()->in(i); |
|
640 |
Node* n = slow_map->in(i); |
|
641 |
if (m != n) { |
|
642 |
const Type* t = gvn.type(m)->meet(gvn.type(n)); |
|
643 |
Node* phi = PhiNode::make(region, m, t); |
|
644 |
phi->set_req(2, n); |
|
645 |
kit.map()->set_req(i, gvn.transform(phi)); |
|
646 |
} |
|
647 |
} |
|
648 |
return kit.transfer_exceptions_into_jvms(); |
|
649 |
} |
|
650 |
||
651 |
||
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
652 |
//------------------------PredictedDynamicCallGenerator----------------------- |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
653 |
// Internal class which handles all out-of-line calls checking receiver type. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
654 |
class PredictedDynamicCallGenerator : public CallGenerator { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
655 |
ciMethodHandle* _predicted_method_handle; |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
656 |
CallGenerator* _if_missed; |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
657 |
CallGenerator* _if_hit; |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
658 |
float _hit_prob; |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
659 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
660 |
public: |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
661 |
PredictedDynamicCallGenerator(ciMethodHandle* predicted_method_handle, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
662 |
CallGenerator* if_missed, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
663 |
CallGenerator* if_hit, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
664 |
float hit_prob) |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
665 |
: CallGenerator(if_missed->method()), |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
666 |
_predicted_method_handle(predicted_method_handle), |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
667 |
_if_missed(if_missed), |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
668 |
_if_hit(if_hit), |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
669 |
_hit_prob(hit_prob) |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
670 |
{} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
671 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
672 |
virtual bool is_inline() const { return _if_hit->is_inline(); } |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
673 |
virtual bool is_deferred() const { return _if_hit->is_deferred(); } |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
674 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
675 |
virtual JVMState* generate(JVMState* jvms); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
676 |
}; |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
677 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
678 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
679 |
CallGenerator* CallGenerator::for_predicted_dynamic_call(ciMethodHandle* predicted_method_handle, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
680 |
CallGenerator* if_missed, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
681 |
CallGenerator* if_hit, |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
682 |
float hit_prob) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
683 |
return new PredictedDynamicCallGenerator(predicted_method_handle, if_missed, if_hit, hit_prob); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
684 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
685 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
686 |
|
11193
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
687 |
CallGenerator* CallGenerator::for_method_handle_call(Node* method_handle, JVMState* jvms, |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
688 |
ciMethod* caller, ciMethod* callee, ciCallProfile profile) { |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
689 |
assert(callee->is_method_handle_invoke() || callee->is_method_handle_adapter(), "for_method_handle_call mismatch"); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
690 |
CallGenerator* cg = CallGenerator::for_method_handle_inline(method_handle, jvms, caller, callee, profile); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
691 |
if (cg != NULL) |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
692 |
return cg; |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
693 |
return CallGenerator::for_direct_call(callee); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
694 |
} |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
695 |
|
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
696 |
CallGenerator* CallGenerator::for_method_handle_inline(Node* method_handle, JVMState* jvms, |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
697 |
ciMethod* caller, ciMethod* callee, ciCallProfile profile) { |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
698 |
if (method_handle->Opcode() == Op_ConP) { |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
699 |
const TypeOopPtr* oop_ptr = method_handle->bottom_type()->is_oopptr(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
700 |
ciObject* const_oop = oop_ptr->const_oop(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
701 |
ciMethodHandle* method_handle = const_oop->as_method_handle(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
702 |
|
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
703 |
// Set the callee to have access to the class and signature in |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
704 |
// the MethodHandleCompiler. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
705 |
method_handle->set_callee(callee); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
706 |
method_handle->set_caller(caller); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
707 |
method_handle->set_call_profile(profile); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
708 |
|
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
709 |
// Get an adapter for the MethodHandle. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
710 |
ciMethod* target_method = method_handle->get_method_handle_adapter(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
711 |
if (target_method != NULL) { |
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10265
diff
changeset
|
712 |
CallGenerator* cg = Compile::current()->call_generator(target_method, -1, false, jvms, true, PROB_ALWAYS); |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10265
diff
changeset
|
713 |
if (cg != NULL && cg->is_inline()) |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10265
diff
changeset
|
714 |
return cg; |
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
715 |
} |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
716 |
} else if (method_handle->Opcode() == Op_Phi && method_handle->req() == 3 && |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
717 |
method_handle->in(1)->Opcode() == Op_ConP && method_handle->in(2)->Opcode() == Op_ConP) { |
10514
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
718 |
float prob = PROB_FAIR; |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
719 |
Node* meth_region = method_handle->in(0); |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
720 |
if (meth_region->is_Region() && |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
721 |
meth_region->in(1)->is_Proj() && meth_region->in(2)->is_Proj() && |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
722 |
meth_region->in(1)->in(0) == meth_region->in(2)->in(0) && |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
723 |
meth_region->in(1)->in(0)->is_If()) { |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
724 |
// If diamond, so grab the probability of the test to drive the inlining below |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
725 |
prob = meth_region->in(1)->in(0)->as_If()->_prob; |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
726 |
if (meth_region->in(1)->is_IfTrue()) { |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
727 |
prob = 1 - prob; |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
728 |
} |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
729 |
} |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
730 |
|
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
731 |
// selectAlternative idiom merging two constant MethodHandles. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
732 |
// Generate a guard so that each can be inlined. We might want to |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
733 |
// do more inputs at later point but this gets the most common |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
734 |
// case. |
11193
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
735 |
CallGenerator* cg1 = for_method_handle_call(method_handle->in(1), jvms, caller, callee, profile.rescale(1.0 - prob)); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
736 |
CallGenerator* cg2 = for_method_handle_call(method_handle->in(2), jvms, caller, callee, profile.rescale(prob)); |
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
737 |
if (cg1 != NULL && cg2 != NULL) { |
10514
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
738 |
const TypeOopPtr* oop_ptr = method_handle->in(1)->bottom_type()->is_oopptr(); |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
739 |
ciObject* const_oop = oop_ptr->const_oop(); |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
740 |
ciMethodHandle* mh = const_oop->as_method_handle(); |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
741 |
return new PredictedDynamicCallGenerator(mh, cg2, cg1, prob); |
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
742 |
} |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
743 |
} |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
744 |
return NULL; |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
745 |
} |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
746 |
|
11193
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
747 |
CallGenerator* CallGenerator::for_invokedynamic_call(JVMState* jvms, ciMethod* caller, ciMethod* callee, ciCallProfile profile) { |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
748 |
assert(callee->is_method_handle_invoke() || callee->is_method_handle_adapter(), "for_invokedynamic_call mismatch"); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
749 |
// Get the CallSite object. |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
750 |
ciBytecodeStream str(caller); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
751 |
str.force_bci(jvms->bci()); // Set the stream to the invokedynamic bci. |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
752 |
ciCallSite* call_site = str.get_call_site(); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
753 |
CallGenerator* cg = CallGenerator::for_invokedynamic_inline(call_site, jvms, caller, callee, profile); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
754 |
if (cg != NULL) |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
755 |
return cg; |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
756 |
return CallGenerator::for_dynamic_call(callee); |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
757 |
} |
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
758 |
|
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
759 |
CallGenerator* CallGenerator::for_invokedynamic_inline(ciCallSite* call_site, JVMState* jvms, |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
760 |
ciMethod* caller, ciMethod* callee, ciCallProfile profile) { |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
761 |
ciMethodHandle* method_handle = call_site->get_target(); |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
762 |
|
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
763 |
// Set the callee to have access to the class and signature in the |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
764 |
// MethodHandleCompiler. |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
765 |
method_handle->set_callee(callee); |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
766 |
method_handle->set_caller(caller); |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
767 |
method_handle->set_call_profile(profile); |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
768 |
|
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
769 |
// Get an adapter for the MethodHandle. |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
770 |
ciMethod* target_method = method_handle->get_invokedynamic_adapter(); |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
771 |
if (target_method != NULL) { |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
772 |
Compile *C = Compile::current(); |
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10265
diff
changeset
|
773 |
CallGenerator* cg = C->call_generator(target_method, -1, false, jvms, true, PROB_ALWAYS); |
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10265
diff
changeset
|
774 |
if (cg != NULL && cg->is_inline()) { |
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
775 |
// Add a dependence for invalidation of the optimization. |
10510
ab626d1bdf53
7085404: JSR 292: VolatileCallSites should have push notification too
twisti
parents:
10509
diff
changeset
|
776 |
if (!call_site->is_constant_call_site()) { |
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10265
diff
changeset
|
777 |
C->dependencies()->assert_call_site_target_value(call_site, method_handle); |
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
778 |
} |
10503
04b74421bdea
7083184: JSR 292: don't store context class argument with call site dependencies
twisti
parents:
10265
diff
changeset
|
779 |
return cg; |
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
780 |
} |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
781 |
} |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
782 |
return NULL; |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
783 |
} |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
784 |
|
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
785 |
|
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
786 |
JVMState* PredictedDynamicCallGenerator::generate(JVMState* jvms) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
787 |
GraphKit kit(jvms); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
788 |
PhaseGVN& gvn = kit.gvn(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
789 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
790 |
CompileLog* log = kit.C->log(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
791 |
if (log != NULL) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
792 |
log->elem("predicted_dynamic_call bci='%d'", jvms->bci()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
793 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
794 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
795 |
const TypeOopPtr* predicted_mh_ptr = TypeOopPtr::make_from_constant(_predicted_method_handle, true); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
796 |
Node* predicted_mh = kit.makecon(predicted_mh_ptr); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
797 |
|
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
798 |
Node* bol = NULL; |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
799 |
int bc = jvms->method()->java_code_at_bci(jvms->bci()); |
10986
1952e39a6364
7087727: JSR 292: C2 crash if ScavengeRootsInCode=2 when "static final" MethodHandle constants are in use
twisti
parents:
10514
diff
changeset
|
800 |
if (bc != Bytecodes::_invokedynamic) { |
1952e39a6364
7087727: JSR 292: C2 crash if ScavengeRootsInCode=2 when "static final" MethodHandle constants are in use
twisti
parents:
10514
diff
changeset
|
801 |
// This is the selectAlternative idiom for guardWithTest or |
1952e39a6364
7087727: JSR 292: C2 crash if ScavengeRootsInCode=2 when "static final" MethodHandle constants are in use
twisti
parents:
10514
diff
changeset
|
802 |
// similar idioms. |
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
803 |
Node* receiver = kit.argument(0); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
804 |
|
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
805 |
// Check if the MethodHandle is the expected one |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
806 |
Node* cmp = gvn.transform(new(kit.C, 3) CmpPNode(receiver, predicted_mh)); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
807 |
bol = gvn.transform(new(kit.C, 2) BoolNode(cmp, BoolTest::eq) ); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
808 |
} else { |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
809 |
// Get the constant pool cache from the caller class. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
810 |
ciMethod* caller_method = jvms->method(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
811 |
ciBytecodeStream str(caller_method); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
812 |
str.force_bci(jvms->bci()); // Set the stream to the invokedynamic bci. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
813 |
ciCPCache* cpcache = str.get_cpcache(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
814 |
|
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
815 |
// Get the offset of the CallSite from the constant pool cache |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
816 |
// pointer. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
817 |
int index = str.get_method_index(); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
818 |
size_t call_site_offset = cpcache->get_f1_offset(index); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
819 |
|
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
820 |
// Load the CallSite object from the constant pool cache. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
821 |
const TypeOopPtr* cpcache_ptr = TypeOopPtr::make_from_constant(cpcache); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
822 |
Node* cpcache_adr = kit.makecon(cpcache_ptr); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
823 |
Node* call_site_adr = kit.basic_plus_adr(cpcache_adr, cpcache_adr, call_site_offset); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
824 |
Node* call_site = kit.make_load(kit.control(), call_site_adr, TypeInstPtr::BOTTOM, T_OBJECT, Compile::AliasIdxRaw); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
825 |
|
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
826 |
// Load the target MethodHandle from the CallSite object. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
827 |
Node* target_adr = kit.basic_plus_adr(call_site, call_site, java_lang_invoke_CallSite::target_offset_in_bytes()); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
828 |
Node* target_mh = kit.make_load(kit.control(), target_adr, TypeInstPtr::BOTTOM, T_OBJECT); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
829 |
|
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
830 |
// Check if the MethodHandle is still the same. |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
831 |
Node* cmp = gvn.transform(new(kit.C, 3) CmpPNode(target_mh, predicted_mh)); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
832 |
bol = gvn.transform(new(kit.C, 2) BoolNode(cmp, BoolTest::eq) ); |
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
833 |
} |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
834 |
IfNode* iff = kit.create_and_xform_if(kit.control(), bol, _hit_prob, COUNT_UNKNOWN); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
835 |
kit.set_control( gvn.transform(new(kit.C, 1) IfTrueNode (iff))); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
836 |
Node* slow_ctl = gvn.transform(new(kit.C, 1) IfFalseNode(iff)); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
837 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
838 |
SafePointNode* slow_map = NULL; |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
839 |
JVMState* slow_jvms; |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
840 |
{ PreserveJVMState pjvms(&kit); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
841 |
kit.set_control(slow_ctl); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
842 |
if (!kit.stopped()) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
843 |
slow_jvms = _if_missed->generate(kit.sync_jvms()); |
11193
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
844 |
if (kit.failing()) |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
845 |
return NULL; // might happen because of NodeCountInliningCutoff |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
846 |
assert(slow_jvms != NULL, "must be"); |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
847 |
kit.add_exception_states_from(slow_jvms); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
848 |
kit.set_map(slow_jvms->map()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
849 |
if (!kit.stopped()) |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
850 |
slow_map = kit.stop(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
851 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
852 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
853 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
854 |
if (kit.stopped()) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
855 |
// Instance exactly does not matches the desired type. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
856 |
kit.set_jvms(slow_jvms); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
857 |
return kit.transfer_exceptions_into_jvms(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
858 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
859 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
860 |
// Make the hot call: |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
861 |
JVMState* new_jvms = _if_hit->generate(kit.sync_jvms()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
862 |
if (new_jvms == NULL) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
863 |
// Inline failed, so make a direct call. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
864 |
assert(_if_hit->is_inline(), "must have been a failed inline"); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
865 |
CallGenerator* cg = CallGenerator::for_direct_call(_if_hit->method()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
866 |
new_jvms = cg->generate(kit.sync_jvms()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
867 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
868 |
kit.add_exception_states_from(new_jvms); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
869 |
kit.set_jvms(new_jvms); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
870 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
871 |
// Need to merge slow and fast? |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
872 |
if (slow_map == NULL) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
873 |
// The fast path is the only path remaining. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
874 |
return kit.transfer_exceptions_into_jvms(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
875 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
876 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
877 |
if (kit.stopped()) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
878 |
// Inlined method threw an exception, so it's just the slow path after all. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
879 |
kit.set_jvms(slow_jvms); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
880 |
return kit.transfer_exceptions_into_jvms(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
881 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
882 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
883 |
// Finish the diamond. |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
884 |
kit.C->set_has_split_ifs(true); // Has chance for split-if optimization |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
885 |
RegionNode* region = new (kit.C, 3) RegionNode(3); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
886 |
region->init_req(1, kit.control()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
887 |
region->init_req(2, slow_map->control()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
888 |
kit.set_control(gvn.transform(region)); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
889 |
Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
890 |
iophi->set_req(2, slow_map->i_o()); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
891 |
kit.set_i_o(gvn.transform(iophi)); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
892 |
kit.merge_memory(slow_map->merged_memory(), region, 2); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
893 |
uint tos = kit.jvms()->stkoff() + kit.sp(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
894 |
uint limit = slow_map->req(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
895 |
for (uint i = TypeFunc::Parms; i < limit; i++) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
896 |
// Skip unused stack slots; fast forward to monoff(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
897 |
if (i == tos) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
898 |
i = kit.jvms()->monoff(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
899 |
if( i >= limit ) break; |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
900 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
901 |
Node* m = kit.map()->in(i); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
902 |
Node* n = slow_map->in(i); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
903 |
if (m != n) { |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
904 |
const Type* t = gvn.type(m)->meet(gvn.type(n)); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
905 |
Node* phi = PhiNode::make(region, m, t); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
906 |
phi->set_req(2, n); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
907 |
kit.map()->set_req(i, gvn.transform(phi)); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
908 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
909 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
910 |
return kit.transfer_exceptions_into_jvms(); |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
911 |
} |
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
912 |
|
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
913 |
|
1 | 914 |
//-------------------------UncommonTrapCallGenerator----------------------------- |
915 |
// Internal class which handles all out-of-line calls checking receiver type. |
|
916 |
class UncommonTrapCallGenerator : public CallGenerator { |
|
917 |
Deoptimization::DeoptReason _reason; |
|
918 |
Deoptimization::DeoptAction _action; |
|
919 |
||
920 |
public: |
|
921 |
UncommonTrapCallGenerator(ciMethod* m, |
|
922 |
Deoptimization::DeoptReason reason, |
|
923 |
Deoptimization::DeoptAction action) |
|
924 |
: CallGenerator(m) |
|
925 |
{ |
|
926 |
_reason = reason; |
|
927 |
_action = action; |
|
928 |
} |
|
929 |
||
930 |
virtual bool is_virtual() const { ShouldNotReachHere(); return false; } |
|
931 |
virtual bool is_trap() const { return true; } |
|
932 |
||
933 |
virtual JVMState* generate(JVMState* jvms); |
|
934 |
}; |
|
935 |
||
936 |
||
937 |
CallGenerator* |
|
938 |
CallGenerator::for_uncommon_trap(ciMethod* m, |
|
939 |
Deoptimization::DeoptReason reason, |
|
940 |
Deoptimization::DeoptAction action) { |
|
941 |
return new UncommonTrapCallGenerator(m, reason, action); |
|
942 |
} |
|
943 |
||
944 |
||
945 |
JVMState* UncommonTrapCallGenerator::generate(JVMState* jvms) { |
|
946 |
GraphKit kit(jvms); |
|
947 |
// Take the trap with arguments pushed on the stack. (Cf. null_check_receiver). |
|
948 |
int nargs = method()->arg_size(); |
|
949 |
kit.inc_sp(nargs); |
|
950 |
assert(nargs <= kit.sp() && kit.sp() <= jvms->stk_size(), "sane sp w/ args pushed"); |
|
951 |
if (_reason == Deoptimization::Reason_class_check && |
|
952 |
_action == Deoptimization::Action_maybe_recompile) { |
|
953 |
// Temp fix for 6529811 |
|
954 |
// Don't allow uncommon_trap to override our decision to recompile in the event |
|
955 |
// of a class cast failure for a monomorphic call as it will never let us convert |
|
956 |
// the call to either bi-morphic or megamorphic and can lead to unc-trap loops |
|
957 |
bool keep_exact_action = true; |
|
958 |
kit.uncommon_trap(_reason, _action, NULL, "monomorphic vcall checkcast", false, keep_exact_action); |
|
959 |
} else { |
|
960 |
kit.uncommon_trap(_reason, _action); |
|
961 |
} |
|
962 |
return kit.transfer_exceptions_into_jvms(); |
|
963 |
} |
|
964 |
||
965 |
// (Note: Moved hook_up_call to GraphKit::set_edges_for_java_call.) |
|
966 |
||
967 |
// (Node: Merged hook_up_exits into ParseGenerator::generate.) |
|
968 |
||
969 |
#define NODES_OVERHEAD_PER_METHOD (30.0) |
|
970 |
#define NODES_PER_BYTECODE (9.5) |
|
971 |
||
972 |
void WarmCallInfo::init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor) { |
|
973 |
int call_count = profile.count(); |
|
974 |
int code_size = call_method->code_size(); |
|
975 |
||
976 |
// Expected execution count is based on the historical count: |
|
977 |
_count = call_count < 0 ? 1 : call_site->method()->scale_count(call_count, prof_factor); |
|
978 |
||
979 |
// Expected profit from inlining, in units of simple call-overheads. |
|
980 |
_profit = 1.0; |
|
981 |
||
982 |
// Expected work performed by the call in units of call-overheads. |
|
983 |
// %%% need an empirical curve fit for "work" (time in call) |
|
984 |
float bytecodes_per_call = 3; |
|
985 |
_work = 1.0 + code_size / bytecodes_per_call; |
|
986 |
||
987 |
// Expected size of compilation graph: |
|
988 |
// -XX:+PrintParseStatistics once reported: |
|
989 |
// Methods seen: 9184 Methods parsed: 9184 Nodes created: 1582391 |
|
990 |
// Histogram of 144298 parsed bytecodes: |
|
991 |
// %%% Need an better predictor for graph size. |
|
992 |
_size = NODES_OVERHEAD_PER_METHOD + (NODES_PER_BYTECODE * code_size); |
|
993 |
} |
|
994 |
||
995 |
// is_cold: Return true if the node should never be inlined. |
|
996 |
// This is true if any of the key metrics are extreme. |
|
997 |
bool WarmCallInfo::is_cold() const { |
|
998 |
if (count() < WarmCallMinCount) return true; |
|
999 |
if (profit() < WarmCallMinProfit) return true; |
|
1000 |
if (work() > WarmCallMaxWork) return true; |
|
1001 |
if (size() > WarmCallMaxSize) return true; |
|
1002 |
return false; |
|
1003 |
} |
|
1004 |
||
1005 |
// is_hot: Return true if the node should be inlined immediately. |
|
1006 |
// This is true if any of the key metrics are extreme. |
|
1007 |
bool WarmCallInfo::is_hot() const { |
|
1008 |
assert(!is_cold(), "eliminate is_cold cases before testing is_hot"); |
|
1009 |
if (count() >= HotCallCountThreshold) return true; |
|
1010 |
if (profit() >= HotCallProfitThreshold) return true; |
|
1011 |
if (work() <= HotCallTrivialWork) return true; |
|
1012 |
if (size() <= HotCallTrivialSize) return true; |
|
1013 |
return false; |
|
1014 |
} |
|
1015 |
||
1016 |
// compute_heat: |
|
1017 |
float WarmCallInfo::compute_heat() const { |
|
1018 |
assert(!is_cold(), "compute heat only on warm nodes"); |
|
1019 |
assert(!is_hot(), "compute heat only on warm nodes"); |
|
1020 |
int min_size = MAX2(0, (int)HotCallTrivialSize); |
|
1021 |
int max_size = MIN2(500, (int)WarmCallMaxSize); |
|
1022 |
float method_size = (size() - min_size) / MAX2(1, max_size - min_size); |
|
1023 |
float size_factor; |
|
1024 |
if (method_size < 0.05) size_factor = 4; // 2 sigmas better than avg. |
|
1025 |
else if (method_size < 0.15) size_factor = 2; // 1 sigma better than avg. |
|
1026 |
else if (method_size < 0.5) size_factor = 1; // better than avg. |
|
1027 |
else size_factor = 0.5; // worse than avg. |
|
1028 |
return (count() * profit() * size_factor); |
|
1029 |
} |
|
1030 |
||
1031 |
bool WarmCallInfo::warmer_than(WarmCallInfo* that) { |
|
1032 |
assert(this != that, "compare only different WCIs"); |
|
1033 |
assert(this->heat() != 0 && that->heat() != 0, "call compute_heat 1st"); |
|
1034 |
if (this->heat() > that->heat()) return true; |
|
1035 |
if (this->heat() < that->heat()) return false; |
|
1036 |
assert(this->heat() == that->heat(), "no NaN heat allowed"); |
|
1037 |
// Equal heat. Break the tie some other way. |
|
1038 |
if (!this->call() || !that->call()) return (address)this > (address)that; |
|
1039 |
return this->call()->_idx > that->call()->_idx; |
|
1040 |
} |
|
1041 |
||
1042 |
//#define UNINIT_NEXT ((WarmCallInfo*)badAddress) |
|
1043 |
#define UNINIT_NEXT ((WarmCallInfo*)NULL) |
|
1044 |
||
1045 |
WarmCallInfo* WarmCallInfo::insert_into(WarmCallInfo* head) { |
|
1046 |
assert(next() == UNINIT_NEXT, "not yet on any list"); |
|
1047 |
WarmCallInfo* prev_p = NULL; |
|
1048 |
WarmCallInfo* next_p = head; |
|
1049 |
while (next_p != NULL && next_p->warmer_than(this)) { |
|
1050 |
prev_p = next_p; |
|
1051 |
next_p = prev_p->next(); |
|
1052 |
} |
|
1053 |
// Install this between prev_p and next_p. |
|
1054 |
this->set_next(next_p); |
|
1055 |
if (prev_p == NULL) |
|
1056 |
head = this; |
|
1057 |
else |
|
1058 |
prev_p->set_next(this); |
|
1059 |
return head; |
|
1060 |
} |
|
1061 |
||
1062 |
WarmCallInfo* WarmCallInfo::remove_from(WarmCallInfo* head) { |
|
1063 |
WarmCallInfo* prev_p = NULL; |
|
1064 |
WarmCallInfo* next_p = head; |
|
1065 |
while (next_p != this) { |
|
1066 |
assert(next_p != NULL, "this must be in the list somewhere"); |
|
1067 |
prev_p = next_p; |
|
1068 |
next_p = prev_p->next(); |
|
1069 |
} |
|
1070 |
next_p = this->next(); |
|
1071 |
debug_only(this->set_next(UNINIT_NEXT)); |
|
1072 |
// Remove this from between prev_p and next_p. |
|
1073 |
if (prev_p == NULL) |
|
1074 |
head = next_p; |
|
1075 |
else |
|
1076 |
prev_p->set_next(next_p); |
|
1077 |
return head; |
|
1078 |
} |
|
1079 |
||
9099
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1080 |
WarmCallInfo WarmCallInfo::_always_hot(WarmCallInfo::MAX_VALUE(), WarmCallInfo::MAX_VALUE(), |
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1081 |
WarmCallInfo::MIN_VALUE(), WarmCallInfo::MIN_VALUE()); |
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1082 |
WarmCallInfo WarmCallInfo::_always_cold(WarmCallInfo::MIN_VALUE(), WarmCallInfo::MIN_VALUE(), |
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1083 |
WarmCallInfo::MAX_VALUE(), WarmCallInfo::MAX_VALUE()); |
1 | 1084 |
|
1085 |
WarmCallInfo* WarmCallInfo::always_hot() { |
|
9099
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1086 |
assert(_always_hot.is_hot(), "must always be hot"); |
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1087 |
return &_always_hot; |
1 | 1088 |
} |
1089 |
||
1090 |
WarmCallInfo* WarmCallInfo::always_cold() { |
|
9099
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1091 |
assert(_always_cold.is_cold(), "must always be cold"); |
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1092 |
return &_always_cold; |
1 | 1093 |
} |
1094 |
||
1095 |
||
1096 |
#ifndef PRODUCT |
|
1097 |
||
1098 |
void WarmCallInfo::print() const { |
|
1099 |
tty->print("%s : C=%6.1f P=%6.1f W=%6.1f S=%6.1f H=%6.1f -> %p", |
|
1100 |
is_cold() ? "cold" : is_hot() ? "hot " : "warm", |
|
1101 |
count(), profit(), work(), size(), compute_heat(), next()); |
|
1102 |
tty->cr(); |
|
1103 |
if (call() != NULL) call()->dump(); |
|
1104 |
} |
|
1105 |
||
1106 |
void print_wci(WarmCallInfo* ci) { |
|
1107 |
ci->print(); |
|
1108 |
} |
|
1109 |
||
1110 |
void WarmCallInfo::print_all() const { |
|
1111 |
for (const WarmCallInfo* p = this; p != NULL; p = p->next()) |
|
1112 |
p->print(); |
|
1113 |
} |
|
1114 |
||
1115 |
int WarmCallInfo::count_all() const { |
|
1116 |
int cnt = 0; |
|
1117 |
for (const WarmCallInfo* p = this; p != NULL; p = p->next()) |
|
1118 |
cnt++; |
|
1119 |
return cnt; |
|
1120 |
} |
|
1121 |
||
1122 |
#endif //PRODUCT |