author | iveresov |
Thu, 22 Jan 2015 11:25:23 -0800 | |
changeset 28723 | 0a36120cb225 |
parent 26945 | 981df0f8be4e |
child 29081 | c61eb4914428 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
25930 | 2 |
* Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
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" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13487
diff
changeset
|
28 |
#include "ci/ciObjArray.hpp" |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
29 |
#include "ci/ciMemberName.hpp" |
7397 | 30 |
#include "ci/ciMethodHandle.hpp" |
31 |
#include "classfile/javaClasses.hpp" |
|
32 |
#include "compiler/compileLog.hpp" |
|
33 |
#include "opto/addnode.hpp" |
|
34 |
#include "opto/callGenerator.hpp" |
|
35 |
#include "opto/callnode.hpp" |
|
23528 | 36 |
#include "opto/castnode.hpp" |
7397 | 37 |
#include "opto/cfgnode.hpp" |
38 |
#include "opto/parse.hpp" |
|
39 |
#include "opto/rootnode.hpp" |
|
40 |
#include "opto/runtime.hpp" |
|
41 |
#include "opto/subnode.hpp" |
|
1 | 42 |
|
43 |
||
44 |
// Utility function. |
|
45 |
const TypeFunc* CallGenerator::tf() const { |
|
46 |
return TypeFunc::make(method()); |
|
47 |
} |
|
48 |
||
49 |
//-----------------------------ParseGenerator--------------------------------- |
|
50 |
// Internal class which handles all direct bytecode traversal. |
|
51 |
class ParseGenerator : public InlineCallGenerator { |
|
52 |
private: |
|
53 |
bool _is_osr; |
|
54 |
float _expected_uses; |
|
55 |
||
56 |
public: |
|
57 |
ParseGenerator(ciMethod* method, float expected_uses, bool is_osr = false) |
|
58 |
: InlineCallGenerator(method) |
|
59 |
{ |
|
60 |
_is_osr = is_osr; |
|
61 |
_expected_uses = expected_uses; |
|
10509
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10503
diff
changeset
|
62 |
assert(InlineTree::check_can_parse(method) == NULL, "parse must be possible"); |
1 | 63 |
} |
64 |
||
65 |
virtual bool is_parse() const { return true; } |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
66 |
virtual JVMState* generate(JVMState* jvms); |
1 | 67 |
int is_osr() { return _is_osr; } |
68 |
||
69 |
}; |
|
70 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
71 |
JVMState* ParseGenerator::generate(JVMState* jvms) { |
1 | 72 |
Compile* C = Compile::current(); |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
73 |
C->print_inlining_update(this); |
1 | 74 |
|
75 |
if (is_osr()) { |
|
76 |
// The JVMS for a OSR has a single argument (see its TypeFunc). |
|
77 |
assert(jvms->depth() == 1, "no inline OSR"); |
|
78 |
} |
|
79 |
||
80 |
if (C->failing()) { |
|
81 |
return NULL; // bailing out of the compile; do not try to parse |
|
82 |
} |
|
83 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
84 |
Parse parser(jvms, method(), _expected_uses); |
1 | 85 |
// Grab signature for matching/allocation |
86 |
#ifdef ASSERT |
|
87 |
if (parser.tf() != (parser.depth() == 1 ? C->tf() : tf())) { |
|
88 |
MutexLockerEx ml(Compile_lock, Mutex::_no_safepoint_check_flag); |
|
89 |
assert(C->env()->system_dictionary_modification_counter_changed(), |
|
90 |
"Must invalidate if TypeFuncs differ"); |
|
91 |
} |
|
92 |
#endif |
|
93 |
||
94 |
GraphKit& exits = parser.exits(); |
|
95 |
||
96 |
if (C->failing()) { |
|
97 |
while (exits.pop_exception_state() != NULL) ; |
|
98 |
return NULL; |
|
99 |
} |
|
100 |
||
101 |
assert(exits.jvms()->same_calls_as(jvms), "sanity"); |
|
102 |
||
103 |
// Simply return the exit state of the parser, |
|
104 |
// augmented by any exceptional states. |
|
105 |
return exits.transfer_exceptions_into_jvms(); |
|
106 |
} |
|
107 |
||
108 |
//---------------------------DirectCallGenerator------------------------------ |
|
109 |
// Internal class which handles all out-of-line calls w/o receiver type checks. |
|
110 |
class DirectCallGenerator : public CallGenerator { |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
111 |
private: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
112 |
CallStaticJavaNode* _call_node; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
113 |
// Force separate memory and I/O projections for the exceptional |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
114 |
// paths to facilitate late inlinig. |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
115 |
bool _separate_io_proj; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
116 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
117 |
public: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
118 |
DirectCallGenerator(ciMethod* method, bool separate_io_proj) |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
119 |
: CallGenerator(method), |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
120 |
_separate_io_proj(separate_io_proj) |
1 | 121 |
{ |
122 |
} |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
123 |
virtual JVMState* generate(JVMState* jvms); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
124 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
125 |
CallStaticJavaNode* call_node() const { return _call_node; } |
1 | 126 |
}; |
127 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
128 |
JVMState* DirectCallGenerator::generate(JVMState* jvms) { |
1 | 129 |
GraphKit kit(jvms); |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
130 |
kit.C->print_inlining_update(this); |
1 | 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 |
||
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
139 |
CallStaticJavaNode *call = new CallStaticJavaNode(kit.C, tf(), target, method(), kit.bci()); |
12591
064b5c1aa88a
7162094: LateInlineCallGenerator::do_late_inline crashed on uninitialized _call_node
never
parents:
11193
diff
changeset
|
140 |
_call_node = call; // Save the call node in case we need it later |
1 | 141 |
if (!is_static) { |
142 |
// Make an explicit receiver null_check as part of this call. |
|
143 |
// Since we share a map with the caller, his JVMS gets adjusted. |
|
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
14132
diff
changeset
|
144 |
kit.null_check_receiver_before_call(method()); |
1 | 145 |
if (kit.stopped()) { |
146 |
// And dump it back to the caller, decorated with any exceptions: |
|
147 |
return kit.transfer_exceptions_into_jvms(); |
|
148 |
} |
|
149 |
// Mark the call node as virtual, sort of: |
|
150 |
call->set_optimized_virtual(true); |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
151 |
if (method()->is_method_handle_intrinsic() || |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
152 |
method()->is_compiled_lambda_form()) { |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
153 |
call->set_method_handle_invoke(true); |
4906 | 154 |
} |
1 | 155 |
} |
156 |
kit.set_arguments_for_java_call(call); |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
157 |
kit.set_edges_for_java_call(call, false, _separate_io_proj); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
158 |
Node* ret = kit.set_results_for_java_call(call, _separate_io_proj); |
1 | 159 |
kit.push_node(method()->return_type()->basic_type(), ret); |
160 |
return kit.transfer_exceptions_into_jvms(); |
|
161 |
} |
|
162 |
||
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
163 |
//--------------------------VirtualCallGenerator------------------------------ |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
4450
diff
changeset
|
164 |
// Internal class which handles all out-of-line calls checking receiver type. |
1 | 165 |
class VirtualCallGenerator : public CallGenerator { |
166 |
private: |
|
167 |
int _vtable_index; |
|
168 |
public: |
|
169 |
VirtualCallGenerator(ciMethod* method, int vtable_index) |
|
170 |
: CallGenerator(method), _vtable_index(vtable_index) |
|
171 |
{ |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13487
diff
changeset
|
172 |
assert(vtable_index == Method::invalid_vtable_index || |
1 | 173 |
vtable_index >= 0, "either invalid or usable"); |
174 |
} |
|
175 |
virtual bool is_virtual() const { return true; } |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
176 |
virtual JVMState* generate(JVMState* jvms); |
1 | 177 |
}; |
178 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
179 |
JVMState* VirtualCallGenerator::generate(JVMState* jvms) { |
1 | 180 |
GraphKit kit(jvms); |
181 |
Node* receiver = kit.argument(0); |
|
182 |
||
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
183 |
kit.C->print_inlining_update(this); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
184 |
|
1 | 185 |
if (kit.C->log() != NULL) { |
186 |
kit.C->log()->elem("virtual_call bci='%d'", jvms->bci()); |
|
187 |
} |
|
188 |
||
189 |
// If the receiver is a constant null, do not torture the system |
|
190 |
// by attempting to call through it. The compile will proceed |
|
191 |
// correctly, but may bail out in final_graph_reshaping, because |
|
192 |
// the call instruction will have a seemingly deficient out-count. |
|
193 |
// (The bailout says something misleading about an "infinite loop".) |
|
194 |
if (kit.gvn().type(receiver)->higher_equal(TypePtr::NULL_PTR)) { |
|
195 |
kit.inc_sp(method()->arg_size()); // restore arguments |
|
196 |
kit.uncommon_trap(Deoptimization::Reason_null_check, |
|
197 |
Deoptimization::Action_none, |
|
198 |
NULL, "null receiver"); |
|
199 |
return kit.transfer_exceptions_into_jvms(); |
|
200 |
} |
|
201 |
||
202 |
// Ideally we would unconditionally do a null check here and let it |
|
203 |
// be converted to an implicit check based on profile information. |
|
204 |
// However currently the conversion to implicit null checks in |
|
205 |
// Block::implicit_null_check() only looks for loads and stores, not calls. |
|
206 |
ciMethod *caller = kit.method(); |
|
207 |
ciMethodData *caller_md = (caller == NULL) ? NULL : caller->method_data(); |
|
22852
1063026e8cee
8028471: PPC64 (part 215): opto: Extend ImplicitNullCheck optimization.
goetz
parents:
21582
diff
changeset
|
208 |
if (!UseInlineCaches || !ImplicitNullChecks || !os::zero_page_read_protected() || |
1 | 209 |
((ImplicitNullCheckThreshold > 0) && caller_md && |
210 |
(caller_md->trap_count(Deoptimization::Reason_null_check) |
|
211 |
>= (uint)ImplicitNullCheckThreshold))) { |
|
212 |
// Make an explicit receiver null_check as part of this call. |
|
213 |
// Since we share a map with the caller, his JVMS gets adjusted. |
|
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
14132
diff
changeset
|
214 |
receiver = kit.null_check_receiver_before_call(method()); |
1 | 215 |
if (kit.stopped()) { |
216 |
// And dump it back to the caller, decorated with any exceptions: |
|
217 |
return kit.transfer_exceptions_into_jvms(); |
|
218 |
} |
|
219 |
} |
|
220 |
||
221 |
assert(!method()->is_static(), "virtual call must not be to static"); |
|
222 |
assert(!method()->is_final(), "virtual call should not be to final"); |
|
223 |
assert(!method()->is_private(), "virtual call should not be to private"); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13487
diff
changeset
|
224 |
assert(_vtable_index == Method::invalid_vtable_index || !UseInlineCaches, |
1 | 225 |
"no vtable calls if +UseInlineCaches "); |
226 |
address target = SharedRuntime::get_resolve_virtual_call_stub(); |
|
227 |
// Normal inline cache used for call |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
228 |
CallDynamicJavaNode *call = new CallDynamicJavaNode(tf(), target, method(), _vtable_index, kit.bci()); |
1 | 229 |
kit.set_arguments_for_java_call(call); |
230 |
kit.set_edges_for_java_call(call); |
|
231 |
Node* ret = kit.set_results_for_java_call(call); |
|
232 |
kit.push_node(method()->return_type()->basic_type(), ret); |
|
233 |
||
234 |
// Represent the effect of an implicit receiver null_check |
|
235 |
// as part of this call. Since we share a map with the caller, |
|
236 |
// his JVMS gets adjusted. |
|
237 |
kit.cast_not_null(receiver); |
|
238 |
return kit.transfer_exceptions_into_jvms(); |
|
239 |
} |
|
240 |
||
241 |
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
|
242 |
if (InlineTree::check_can_parse(m) != NULL) return NULL; |
1 | 243 |
return new ParseGenerator(m, expected_uses); |
244 |
} |
|
245 |
||
246 |
// As a special case, the JVMS passed to this CallGenerator is |
|
247 |
// for the method execution already in progress, not just the JVMS |
|
248 |
// of the caller. Thus, this CallGenerator cannot be mixed with others! |
|
249 |
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
|
250 |
if (InlineTree::check_can_parse(m) != NULL) return NULL; |
1 | 251 |
float past_uses = m->interpreter_invocation_count(); |
252 |
float expected_uses = past_uses; |
|
253 |
return new ParseGenerator(m, expected_uses, true); |
|
254 |
} |
|
255 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
256 |
CallGenerator* CallGenerator::for_direct_call(ciMethod* m, bool separate_io_proj) { |
1 | 257 |
assert(!m->is_abstract(), "for_direct_call mismatch"); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
258 |
return new DirectCallGenerator(m, separate_io_proj); |
1 | 259 |
} |
260 |
||
261 |
CallGenerator* CallGenerator::for_virtual_call(ciMethod* m, int vtable_index) { |
|
262 |
assert(!m->is_static(), "for_virtual_call mismatch"); |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
263 |
assert(!m->is_method_handle_intrinsic(), "should be a direct call"); |
1 | 264 |
return new VirtualCallGenerator(m, vtable_index); |
265 |
} |
|
266 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
267 |
// Allow inlining decisions to be delayed |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
268 |
class LateInlineCallGenerator : public DirectCallGenerator { |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
269 |
private: |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
270 |
// unique id for log compilation |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
271 |
jlong _unique_id; |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
272 |
|
15113 | 273 |
protected: |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
274 |
CallGenerator* _inline_cg; |
15113 | 275 |
virtual bool do_late_inline_check(JVMState* jvms) { return true; } |
276 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
277 |
public: |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
278 |
LateInlineCallGenerator(ciMethod* method, CallGenerator* inline_cg) : |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
279 |
DirectCallGenerator(method, true), _inline_cg(inline_cg), _unique_id(0) {} |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
280 |
|
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
281 |
virtual bool is_late_inline() const { return true; } |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
282 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
283 |
// Convert the CallStaticJava into an inline |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
284 |
virtual void do_late_inline(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
285 |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
286 |
virtual JVMState* generate(JVMState* jvms) { |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14621
diff
changeset
|
287 |
Compile *C = Compile::current(); |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14621
diff
changeset
|
288 |
|
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
289 |
C->log_inline_id(this); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
290 |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
291 |
// Record that this call site should be revisited once the main |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
292 |
// parse is finished. |
15113 | 293 |
if (!is_mh_late_inline()) { |
294 |
C->add_late_inline(this); |
|
295 |
} |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
296 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
297 |
// Emit the CallStaticJava and request separate projections so |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
298 |
// that the late inlining logic can distinguish between fall |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
299 |
// through and exceptional uses of the memory and io projections |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
300 |
// as is done for allocations and macro expansion. |
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
301 |
return DirectCallGenerator::generate(jvms); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
302 |
} |
15113 | 303 |
|
304 |
virtual void print_inlining_late(const char* msg) { |
|
305 |
CallNode* call = call_node(); |
|
306 |
Compile* C = Compile::current(); |
|
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
307 |
C->print_inlining_assert_ready(); |
15113 | 308 |
C->print_inlining(method(), call->jvms()->depth()-1, call->jvms()->bci(), msg); |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
309 |
C->print_inlining_move_to(this); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
310 |
C->print_inlining_update_delayed(this); |
15113 | 311 |
} |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
312 |
|
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
313 |
virtual void set_unique_id(jlong id) { |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
314 |
_unique_id = id; |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
315 |
} |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
316 |
|
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
317 |
virtual jlong unique_id() const { |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
318 |
return _unique_id; |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
319 |
} |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
320 |
}; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
321 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
322 |
void LateInlineCallGenerator::do_late_inline() { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
323 |
// Can't inline it |
17383 | 324 |
CallStaticJavaNode* call = call_node(); |
325 |
if (call == NULL || call->outcnt() == 0 || |
|
326 |
call->in(0) == NULL || call->in(0)->is_top()) { |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
327 |
return; |
15478
6e6f37256157
8007144: Incremental inlining mistakes some call sites for dead ones and doesn't inline them
roland
parents:
15118
diff
changeset
|
328 |
} |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
329 |
|
17383 | 330 |
const TypeTuple *r = call->tf()->domain(); |
15113 | 331 |
for (int i1 = 0; i1 < method()->arg_size(); i1++) { |
17383 | 332 |
if (call->in(TypeFunc::Parms + i1)->is_top() && r->field_at(TypeFunc::Parms + i1) != Type::HALF) { |
15113 | 333 |
assert(Compile::current()->inlining_incrementally(), "shouldn't happen during parsing"); |
334 |
return; |
|
335 |
} |
|
336 |
} |
|
337 |
||
17383 | 338 |
if (call->in(TypeFunc::Memory)->is_top()) { |
15113 | 339 |
assert(Compile::current()->inlining_incrementally(), "shouldn't happen during parsing"); |
340 |
return; |
|
341 |
} |
|
342 |
||
17383 | 343 |
Compile* C = Compile::current(); |
344 |
// Remove inlined methods from Compiler's lists. |
|
345 |
if (call->is_macro()) { |
|
346 |
C->remove_macro_node(call); |
|
347 |
} |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
348 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
349 |
// Make a clone of the JVMState that appropriate to use for driving a parse |
17383 | 350 |
JVMState* old_jvms = call->jvms(); |
351 |
JVMState* jvms = old_jvms->clone_shallow(C); |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
352 |
uint size = call->req(); |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
353 |
SafePointNode* map = new SafePointNode(size, jvms); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
354 |
for (uint i1 = 0; i1 < size; i1++) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
355 |
map->init_req(i1, call->in(i1)); |
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 |
// Make sure the state is a MergeMem for parsing. |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
359 |
if (!map->in(TypeFunc::Memory)->is_MergeMem()) { |
25930 | 360 |
Node* mem = MergeMemNode::make(map->in(TypeFunc::Memory)); |
14828
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14621
diff
changeset
|
361 |
C->initial_gvn()->set_type_bottom(mem); |
bb9dffedf46c
8005031: Some cleanup in c2 to prepare for incremental inlining support
roland
parents:
14621
diff
changeset
|
362 |
map->set_req(TypeFunc::Memory, mem); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
363 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
364 |
|
17383 | 365 |
uint nargs = method()->arg_size(); |
366 |
// blow away old call arguments |
|
367 |
Node* top = C->top(); |
|
368 |
for (uint i1 = 0; i1 < nargs; i1++) { |
|
369 |
map->set_req(TypeFunc::Parms + i1, top); |
|
370 |
} |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
371 |
jvms->set_map(map); |
17383 | 372 |
|
373 |
// Make enough space in the expression stack to transfer |
|
374 |
// the incoming arguments and return value. |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
375 |
map->ensure_stack(jvms, jvms->method()->max_stack()); |
17383 | 376 |
for (uint i1 = 0; i1 < nargs; i1++) { |
377 |
map->set_argument(jvms, i1, call->in(TypeFunc::Parms + i1)); |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
378 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
379 |
|
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
380 |
C->print_inlining_assert_ready(); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
381 |
|
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
382 |
C->print_inlining_move_to(this); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
383 |
|
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
384 |
C->log_late_inline(this); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
385 |
|
17383 | 386 |
// This check is done here because for_method_handle_inline() method |
387 |
// needs jvms for inlined state. |
|
15113 | 388 |
if (!do_late_inline_check(jvms)) { |
389 |
map->disconnect_inputs(NULL, C); |
|
390 |
return; |
|
391 |
} |
|
392 |
||
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
393 |
// Setup default node notes to be picked up by the inlining |
24479 | 394 |
Node_Notes* old_nn = C->node_notes_at(call->_idx); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
395 |
if (old_nn != NULL) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
396 |
Node_Notes* entry_nn = old_nn->clone(C); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
397 |
entry_nn->set_jvms(jvms); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
398 |
C->set_default_node_notes(entry_nn); |
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 |
|
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
401 |
// Now perform the inlining using the synthesized JVMState |
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
402 |
JVMState* new_jvms = _inline_cg->generate(jvms); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
403 |
if (new_jvms == NULL) return; // no change |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
404 |
if (C->failing()) return; |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
405 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
406 |
// Capture any exceptional control flow |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
407 |
GraphKit kit(new_jvms); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
408 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
409 |
// Find the result object |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
410 |
Node* result = C->top(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
411 |
int result_size = method()->return_type()->size(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
412 |
if (result_size != 0 && !kit.stopped()) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
413 |
result = (result_size == 1) ? kit.pop() : kit.pop_pair(); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
414 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
415 |
|
15113 | 416 |
C->set_has_loops(C->has_loops() || _inline_cg->method()->has_loops()); |
417 |
C->env()->notice_inlined_method(_inline_cg->method()); |
|
418 |
C->set_inlining_progress(true); |
|
419 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
420 |
kit.replace_call(call, result, true); |
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
421 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
422 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
423 |
|
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
424 |
CallGenerator* CallGenerator::for_late_inline(ciMethod* method, CallGenerator* inline_cg) { |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
425 |
return new LateInlineCallGenerator(method, inline_cg); |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
426 |
} |
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
427 |
|
15113 | 428 |
class LateInlineMHCallGenerator : public LateInlineCallGenerator { |
429 |
ciMethod* _caller; |
|
430 |
int _attempt; |
|
431 |
bool _input_not_const; |
|
432 |
||
433 |
virtual bool do_late_inline_check(JVMState* jvms); |
|
434 |
virtual bool already_attempted() const { return _attempt > 0; } |
|
435 |
||
436 |
public: |
|
437 |
LateInlineMHCallGenerator(ciMethod* caller, ciMethod* callee, bool input_not_const) : |
|
438 |
LateInlineCallGenerator(callee, NULL), _caller(caller), _attempt(0), _input_not_const(input_not_const) {} |
|
439 |
||
440 |
virtual bool is_mh_late_inline() const { return true; } |
|
441 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
442 |
virtual JVMState* generate(JVMState* jvms) { |
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
443 |
JVMState* new_jvms = LateInlineCallGenerator::generate(jvms); |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
444 |
|
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
445 |
Compile* C = Compile::current(); |
15113 | 446 |
if (_input_not_const) { |
447 |
// inlining won't be possible so no need to enqueue right now. |
|
448 |
call_node()->set_generator(this); |
|
449 |
} else { |
|
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
450 |
C->add_late_inline(this); |
15113 | 451 |
} |
452 |
return new_jvms; |
|
453 |
} |
|
454 |
}; |
|
455 |
||
456 |
bool LateInlineMHCallGenerator::do_late_inline_check(JVMState* jvms) { |
|
457 |
||
458 |
CallGenerator* cg = for_method_handle_inline(jvms, _caller, method(), _input_not_const); |
|
459 |
||
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
460 |
Compile::current()->print_inlining_update_delayed(this); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
461 |
|
15113 | 462 |
if (!_input_not_const) { |
463 |
_attempt++; |
|
464 |
} |
|
465 |
||
466 |
if (cg != NULL) { |
|
467 |
assert(!cg->is_late_inline() && cg->is_inline(), "we're doing late inlining"); |
|
468 |
_inline_cg = cg; |
|
469 |
Compile::current()->dec_number_of_mh_late_inlines(); |
|
470 |
return true; |
|
471 |
} |
|
472 |
||
473 |
call_node()->set_generator(this); |
|
474 |
return false; |
|
475 |
} |
|
476 |
||
477 |
CallGenerator* CallGenerator::for_mh_late_inline(ciMethod* caller, ciMethod* callee, bool input_not_const) { |
|
478 |
Compile::current()->inc_number_of_mh_late_inlines(); |
|
479 |
CallGenerator* cg = new LateInlineMHCallGenerator(caller, callee, input_not_const); |
|
480 |
return cg; |
|
481 |
} |
|
482 |
||
483 |
class LateInlineStringCallGenerator : public LateInlineCallGenerator { |
|
484 |
||
485 |
public: |
|
486 |
LateInlineStringCallGenerator(ciMethod* method, CallGenerator* inline_cg) : |
|
487 |
LateInlineCallGenerator(method, inline_cg) {} |
|
488 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
489 |
virtual JVMState* generate(JVMState* jvms) { |
15113 | 490 |
Compile *C = Compile::current(); |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
491 |
|
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
492 |
C->log_inline_id(this); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
493 |
|
15113 | 494 |
C->add_string_late_inline(this); |
495 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
496 |
JVMState* new_jvms = DirectCallGenerator::generate(jvms); |
15113 | 497 |
return new_jvms; |
498 |
} |
|
21099 | 499 |
|
500 |
virtual bool is_string_late_inline() const { return true; } |
|
15113 | 501 |
}; |
502 |
||
503 |
CallGenerator* CallGenerator::for_string_late_inline(ciMethod* method, CallGenerator* inline_cg) { |
|
504 |
return new LateInlineStringCallGenerator(method, inline_cg); |
|
505 |
} |
|
506 |
||
17383 | 507 |
class LateInlineBoxingCallGenerator : public LateInlineCallGenerator { |
508 |
||
509 |
public: |
|
510 |
LateInlineBoxingCallGenerator(ciMethod* method, CallGenerator* inline_cg) : |
|
511 |
LateInlineCallGenerator(method, inline_cg) {} |
|
512 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
513 |
virtual JVMState* generate(JVMState* jvms) { |
17383 | 514 |
Compile *C = Compile::current(); |
515 |
||
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
516 |
C->log_inline_id(this); |
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
517 |
|
17383 | 518 |
C->add_boxing_late_inline(this); |
519 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
520 |
JVMState* new_jvms = DirectCallGenerator::generate(jvms); |
17383 | 521 |
return new_jvms; |
522 |
} |
|
523 |
}; |
|
524 |
||
525 |
CallGenerator* CallGenerator::for_boxing_late_inline(ciMethod* method, CallGenerator* inline_cg) { |
|
526 |
return new LateInlineBoxingCallGenerator(method, inline_cg); |
|
527 |
} |
|
1 | 528 |
|
529 |
//---------------------------WarmCallGenerator-------------------------------- |
|
530 |
// Internal class which handles initial deferral of inlining decisions. |
|
531 |
class WarmCallGenerator : public CallGenerator { |
|
532 |
WarmCallInfo* _call_info; |
|
533 |
CallGenerator* _if_cold; |
|
534 |
CallGenerator* _if_hot; |
|
535 |
bool _is_virtual; // caches virtuality of if_cold |
|
536 |
bool _is_inline; // caches inline-ness of if_hot |
|
537 |
||
538 |
public: |
|
539 |
WarmCallGenerator(WarmCallInfo* ci, |
|
540 |
CallGenerator* if_cold, |
|
541 |
CallGenerator* if_hot) |
|
542 |
: CallGenerator(if_cold->method()) |
|
543 |
{ |
|
544 |
assert(method() == if_hot->method(), "consistent choices"); |
|
545 |
_call_info = ci; |
|
546 |
_if_cold = if_cold; |
|
547 |
_if_hot = if_hot; |
|
548 |
_is_virtual = if_cold->is_virtual(); |
|
549 |
_is_inline = if_hot->is_inline(); |
|
550 |
} |
|
551 |
||
552 |
virtual bool is_inline() const { return _is_inline; } |
|
553 |
virtual bool is_virtual() const { return _is_virtual; } |
|
554 |
virtual bool is_deferred() const { return true; } |
|
555 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
556 |
virtual JVMState* generate(JVMState* jvms); |
1 | 557 |
}; |
558 |
||
559 |
||
560 |
CallGenerator* CallGenerator::for_warm_call(WarmCallInfo* ci, |
|
561 |
CallGenerator* if_cold, |
|
562 |
CallGenerator* if_hot) { |
|
563 |
return new WarmCallGenerator(ci, if_cold, if_hot); |
|
564 |
} |
|
565 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
566 |
JVMState* WarmCallGenerator::generate(JVMState* jvms) { |
1 | 567 |
Compile* C = Compile::current(); |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
568 |
C->print_inlining_update(this); |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
569 |
|
1 | 570 |
if (C->log() != NULL) { |
571 |
C->log()->elem("warm_call bci='%d'", jvms->bci()); |
|
572 |
} |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
573 |
jvms = _if_cold->generate(jvms); |
1 | 574 |
if (jvms != NULL) { |
575 |
Node* m = jvms->map()->control(); |
|
576 |
if (m->is_CatchProj()) m = m->in(0); else m = C->top(); |
|
577 |
if (m->is_Catch()) m = m->in(0); else m = C->top(); |
|
578 |
if (m->is_Proj()) m = m->in(0); else m = C->top(); |
|
579 |
if (m->is_CallJava()) { |
|
580 |
_call_info->set_call(m->as_Call()); |
|
581 |
_call_info->set_hot_cg(_if_hot); |
|
582 |
#ifndef PRODUCT |
|
583 |
if (PrintOpto || PrintOptoInlining) { |
|
584 |
tty->print_cr("Queueing for warm inlining at bci %d:", jvms->bci()); |
|
585 |
tty->print("WCI: "); |
|
586 |
_call_info->print(); |
|
587 |
} |
|
588 |
#endif |
|
589 |
_call_info->set_heat(_call_info->compute_heat()); |
|
590 |
C->set_warm_calls(_call_info->insert_into(C->warm_calls())); |
|
591 |
} |
|
592 |
} |
|
593 |
return jvms; |
|
594 |
} |
|
595 |
||
596 |
void WarmCallInfo::make_hot() { |
|
4450
6d700b859b3e
6892658: C2 should optimize some stringbuilder patterns
never
parents:
1217
diff
changeset
|
597 |
Unimplemented(); |
1 | 598 |
} |
599 |
||
600 |
void WarmCallInfo::make_cold() { |
|
601 |
// No action: Just dequeue. |
|
602 |
} |
|
603 |
||
604 |
||
605 |
//------------------------PredictedCallGenerator------------------------------ |
|
606 |
// Internal class which handles all out-of-line calls checking receiver type. |
|
607 |
class PredictedCallGenerator : public CallGenerator { |
|
608 |
ciKlass* _predicted_receiver; |
|
609 |
CallGenerator* _if_missed; |
|
610 |
CallGenerator* _if_hit; |
|
611 |
float _hit_prob; |
|
612 |
||
613 |
public: |
|
614 |
PredictedCallGenerator(ciKlass* predicted_receiver, |
|
615 |
CallGenerator* if_missed, |
|
616 |
CallGenerator* if_hit, float hit_prob) |
|
617 |
: CallGenerator(if_missed->method()) |
|
618 |
{ |
|
619 |
// The call profile data may predict the hit_prob as extreme as 0 or 1. |
|
620 |
// Remove the extremes values from the range. |
|
621 |
if (hit_prob > PROB_MAX) hit_prob = PROB_MAX; |
|
622 |
if (hit_prob < PROB_MIN) hit_prob = PROB_MIN; |
|
623 |
||
624 |
_predicted_receiver = predicted_receiver; |
|
625 |
_if_missed = if_missed; |
|
626 |
_if_hit = if_hit; |
|
627 |
_hit_prob = hit_prob; |
|
628 |
} |
|
629 |
||
630 |
virtual bool is_virtual() const { return true; } |
|
631 |
virtual bool is_inline() const { return _if_hit->is_inline(); } |
|
632 |
virtual bool is_deferred() const { return _if_hit->is_deferred(); } |
|
633 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
634 |
virtual JVMState* generate(JVMState* jvms); |
1 | 635 |
}; |
636 |
||
637 |
||
638 |
CallGenerator* CallGenerator::for_predicted_call(ciKlass* predicted_receiver, |
|
639 |
CallGenerator* if_missed, |
|
640 |
CallGenerator* if_hit, |
|
641 |
float hit_prob) { |
|
642 |
return new PredictedCallGenerator(predicted_receiver, if_missed, if_hit, hit_prob); |
|
643 |
} |
|
644 |
||
645 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
646 |
JVMState* PredictedCallGenerator::generate(JVMState* jvms) { |
1 | 647 |
GraphKit kit(jvms); |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
648 |
kit.C->print_inlining_update(this); |
1 | 649 |
PhaseGVN& gvn = kit.gvn(); |
650 |
// We need an explicit receiver null_check before checking its type. |
|
651 |
// We share a map with the caller, so his JVMS gets adjusted. |
|
652 |
Node* receiver = kit.argument(0); |
|
653 |
CompileLog* log = kit.C->log(); |
|
654 |
if (log != NULL) { |
|
655 |
log->elem("predicted_call bci='%d' klass='%d'", |
|
656 |
jvms->bci(), log->identify(_predicted_receiver)); |
|
657 |
} |
|
658 |
||
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
14132
diff
changeset
|
659 |
receiver = kit.null_check_receiver_before_call(method()); |
1 | 660 |
if (kit.stopped()) { |
661 |
return kit.transfer_exceptions_into_jvms(); |
|
662 |
} |
|
663 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
664 |
// Make a copy of the replaced nodes in case we need to restore them |
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
665 |
ReplacedNodes replaced_nodes = kit.map()->replaced_nodes(); |
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
666 |
replaced_nodes.clone(); |
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
667 |
|
1 | 668 |
Node* exact_receiver = receiver; // will get updated in place... |
669 |
Node* slow_ctl = kit.type_check_receiver(receiver, |
|
670 |
_predicted_receiver, _hit_prob, |
|
671 |
&exact_receiver); |
|
672 |
||
673 |
SafePointNode* slow_map = NULL; |
|
674 |
JVMState* slow_jvms; |
|
675 |
{ PreserveJVMState pjvms(&kit); |
|
676 |
kit.set_control(slow_ctl); |
|
677 |
if (!kit.stopped()) { |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
678 |
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
|
679 |
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
|
680 |
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
|
681 |
assert(slow_jvms != NULL, "must be"); |
1 | 682 |
kit.add_exception_states_from(slow_jvms); |
683 |
kit.set_map(slow_jvms->map()); |
|
684 |
if (!kit.stopped()) |
|
685 |
slow_map = kit.stop(); |
|
686 |
} |
|
687 |
} |
|
688 |
||
1055
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
689 |
if (kit.stopped()) { |
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
690 |
// 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
|
691 |
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
|
692 |
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
|
693 |
} |
f4fb9fb08038
6731641: assert(m->adr_type() == mach->adr_type(),"matcher should not change adr type")
kvn
parents:
1
diff
changeset
|
694 |
|
1 | 695 |
// fall through if the instance exactly matches the desired type |
696 |
kit.replace_in_map(receiver, exact_receiver); |
|
697 |
||
698 |
// Make the hot call: |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
699 |
JVMState* new_jvms = _if_hit->generate(kit.sync_jvms()); |
1 | 700 |
if (new_jvms == NULL) { |
701 |
// Inline failed, so make a direct call. |
|
702 |
assert(_if_hit->is_inline(), "must have been a failed inline"); |
|
703 |
CallGenerator* cg = CallGenerator::for_direct_call(_if_hit->method()); |
|
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
704 |
new_jvms = cg->generate(kit.sync_jvms()); |
1 | 705 |
} |
706 |
kit.add_exception_states_from(new_jvms); |
|
707 |
kit.set_jvms(new_jvms); |
|
708 |
||
709 |
// Need to merge slow and fast? |
|
710 |
if (slow_map == NULL) { |
|
711 |
// The fast path is the only path remaining. |
|
712 |
return kit.transfer_exceptions_into_jvms(); |
|
713 |
} |
|
714 |
||
715 |
if (kit.stopped()) { |
|
716 |
// Inlined method threw an exception, so it's just the slow path after all. |
|
717 |
kit.set_jvms(slow_jvms); |
|
718 |
return kit.transfer_exceptions_into_jvms(); |
|
719 |
} |
|
720 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
721 |
// There are 2 branches and the replaced nodes are only valid on |
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
722 |
// one: restore the replaced nodes to what they were before the |
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
723 |
// branch. |
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
724 |
kit.map()->set_replaced_nodes(replaced_nodes); |
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
725 |
|
1 | 726 |
// Finish the diamond. |
727 |
kit.C->set_has_split_ifs(true); // Has chance for split-if optimization |
|
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
728 |
RegionNode* region = new RegionNode(3); |
1 | 729 |
region->init_req(1, kit.control()); |
730 |
region->init_req(2, slow_map->control()); |
|
731 |
kit.set_control(gvn.transform(region)); |
|
732 |
Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO); |
|
733 |
iophi->set_req(2, slow_map->i_o()); |
|
734 |
kit.set_i_o(gvn.transform(iophi)); |
|
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
735 |
// Merge memory |
1 | 736 |
kit.merge_memory(slow_map->merged_memory(), region, 2); |
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
737 |
// Transform new memory Phis. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
738 |
for (MergeMemStream mms(kit.merged_memory()); mms.next_non_empty();) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
739 |
Node* phi = mms.memory(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
740 |
if (phi->is_Phi() && phi->in(0) == region) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
741 |
mms.set_memory(gvn.transform(phi)); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
742 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
743 |
} |
1 | 744 |
uint tos = kit.jvms()->stkoff() + kit.sp(); |
745 |
uint limit = slow_map->req(); |
|
746 |
for (uint i = TypeFunc::Parms; i < limit; i++) { |
|
747 |
// Skip unused stack slots; fast forward to monoff(); |
|
748 |
if (i == tos) { |
|
749 |
i = kit.jvms()->monoff(); |
|
750 |
if( i >= limit ) break; |
|
751 |
} |
|
752 |
Node* m = kit.map()->in(i); |
|
753 |
Node* n = slow_map->in(i); |
|
754 |
if (m != n) { |
|
22799
83e58bac7980
8027422: assert(_gvn.type(obj)->higher_equal(tjp)) failed: cast_up is no longer needed
roland
parents:
22234
diff
changeset
|
755 |
const Type* t = gvn.type(m)->meet_speculative(gvn.type(n)); |
1 | 756 |
Node* phi = PhiNode::make(region, m, t); |
757 |
phi->set_req(2, n); |
|
758 |
kit.map()->set_req(i, gvn.transform(phi)); |
|
759 |
} |
|
760 |
} |
|
761 |
return kit.transfer_exceptions_into_jvms(); |
|
762 |
} |
|
763 |
||
764 |
||
15113 | 765 |
CallGenerator* CallGenerator::for_method_handle_call(JVMState* jvms, ciMethod* caller, ciMethod* callee, bool delayed_forbidden) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
766 |
assert(callee->is_method_handle_intrinsic() || |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
767 |
callee->is_compiled_lambda_form(), "for_method_handle_call mismatch"); |
15113 | 768 |
bool input_not_const; |
769 |
CallGenerator* cg = CallGenerator::for_method_handle_inline(jvms, caller, callee, input_not_const); |
|
770 |
Compile* C = Compile::current(); |
|
771 |
if (cg != NULL) { |
|
772 |
if (!delayed_forbidden && AlwaysIncrementalInline) { |
|
773 |
return CallGenerator::for_late_inline(callee, cg); |
|
774 |
} else { |
|
775 |
return cg; |
|
776 |
} |
|
777 |
} |
|
778 |
int bci = jvms->bci(); |
|
779 |
ciCallProfile profile = caller->call_profile_at_bci(bci); |
|
780 |
int call_site_count = caller->scale_count(profile.count()); |
|
781 |
||
782 |
if (IncrementalInline && call_site_count > 0 && |
|
783 |
(input_not_const || !C->inlining_incrementally() || C->over_inlining_cutoff())) { |
|
784 |
return CallGenerator::for_mh_late_inline(caller, callee, input_not_const); |
|
785 |
} else { |
|
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
786 |
// Out-of-line call. |
15113 | 787 |
return CallGenerator::for_direct_call(callee); |
788 |
} |
|
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
|
789 |
} |
d8de495d05e0
7108383: JSR 292: JRuby bench_define_method_methods.rb: assert(slow_jvms != NULL) failed: miss path must not
twisti
parents:
10986
diff
changeset
|
790 |
|
15113 | 791 |
CallGenerator* CallGenerator::for_method_handle_inline(JVMState* jvms, ciMethod* caller, ciMethod* callee, bool& input_not_const) { |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
792 |
GraphKit kit(jvms); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
793 |
PhaseGVN& gvn = kit.gvn(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
794 |
Compile* C = kit.C; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
795 |
vmIntrinsics::ID iid = callee->intrinsic_id(); |
15113 | 796 |
input_not_const = true; |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
797 |
switch (iid) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
798 |
case vmIntrinsics::_invokeBasic: |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
799 |
{ |
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
14132
diff
changeset
|
800 |
// Get MethodHandle receiver: |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
801 |
Node* receiver = kit.argument(0); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
802 |
if (receiver->Opcode() == Op_ConP) { |
15113 | 803 |
input_not_const = false; |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
804 |
const TypeOopPtr* oop_ptr = receiver->bottom_type()->is_oopptr(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
805 |
ciMethod* target = oop_ptr->const_oop()->as_method_handle()->get_vmtarget(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
806 |
guarantee(!target->is_method_handle_intrinsic(), "should not happen"); // XXX remove |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13487
diff
changeset
|
807 |
const int vtable_index = Method::invalid_vtable_index; |
21099 | 808 |
CallGenerator* cg = C->call_generator(target, vtable_index, false, jvms, true, PROB_ALWAYS, NULL, true, true); |
21582
6c76cdd733fe
8028159: C2: compiler stack overflow during inlining of @ForceInline methods
vlivanov
parents:
21099
diff
changeset
|
809 |
assert(cg == NULL || !cg->is_late_inline() || cg->is_mh_late_inline(), "no late inline here"); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
810 |
if (cg != NULL && cg->is_inline()) |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
811 |
return cg; |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
812 |
} else { |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
813 |
const char* msg = "receiver not constant"; |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
814 |
if (PrintInlining) C->print_inlining(callee, jvms->depth() - 1, jvms->bci(), msg); |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
815 |
C->log_inline_failure(msg); |
10514
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
816 |
} |
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
817 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
818 |
break; |
10514
e229a19078cf
7071307: MethodHandle bimorphic inlining should consider the frequency
never
parents:
10510
diff
changeset
|
819 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
820 |
case vmIntrinsics::_linkToVirtual: |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
821 |
case vmIntrinsics::_linkToStatic: |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
822 |
case vmIntrinsics::_linkToSpecial: |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
823 |
case vmIntrinsics::_linkToInterface: |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
824 |
{ |
14621
fd9265ab0f67
7172640: C2: instrinsic implementations in LibraryCallKit should use argument() instead of pop()
twisti
parents:
14132
diff
changeset
|
825 |
// Get MemberName argument: |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
826 |
Node* member_name = kit.argument(callee->arg_size() - 1); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
827 |
if (member_name->Opcode() == Op_ConP) { |
15113 | 828 |
input_not_const = false; |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
829 |
const TypeOopPtr* oop_ptr = member_name->bottom_type()->is_oopptr(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
830 |
ciMethod* target = oop_ptr->const_oop()->as_member_name()->get_vmtarget(); |
9975
82190b49ce14
7050554: JSR 292 - need optimization for selectAlternative
never
parents:
9099
diff
changeset
|
831 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
832 |
// In lamda forms we erase signature types to avoid resolving issues |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
833 |
// involving class loaders. When we optimize a method handle invoke |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
834 |
// to a direct call we must cast the receiver and arguments to its |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
835 |
// actual types. |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
836 |
ciSignature* signature = target->signature(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
837 |
const int receiver_skip = target->is_static() ? 0 : 1; |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
838 |
// Cast receiver to its type. |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
839 |
if (!target->is_static()) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
840 |
Node* arg = kit.argument(0); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
841 |
const TypeOopPtr* arg_type = arg->bottom_type()->isa_oopptr(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
842 |
const Type* sig_type = TypeOopPtr::make_from_klass(signature->accessing_klass()); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
843 |
if (arg_type != NULL && !arg_type->higher_equal(sig_type)) { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
844 |
Node* cast_obj = gvn.transform(new CheckCastPPNode(kit.control(), arg, sig_type)); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
845 |
kit.set_argument(0, cast_obj); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
846 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
847 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
848 |
// Cast reference arguments to its type. |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
849 |
for (int i = 0; i < signature->count(); i++) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
850 |
ciType* t = signature->type_at(i); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
851 |
if (t->is_klass()) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
852 |
Node* arg = kit.argument(receiver_skip + i); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
853 |
const TypeOopPtr* arg_type = arg->bottom_type()->isa_oopptr(); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
854 |
const Type* sig_type = TypeOopPtr::make_from_klass(t->as_klass()); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
855 |
if (arg_type != NULL && !arg_type->higher_equal(sig_type)) { |
24923
9631f7d691dc
8034812: remove IDX_INIT macro hack in Node class
thartmann
parents:
24479
diff
changeset
|
856 |
Node* cast_obj = gvn.transform(new CheckCastPPNode(kit.control(), arg, sig_type)); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
857 |
kit.set_argument(receiver_skip + i, cast_obj); |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
858 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
859 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
860 |
} |
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
861 |
|
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
862 |
// Try to get the most accurate receiver type |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
863 |
const bool is_virtual = (iid == vmIntrinsics::_linkToVirtual); |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
864 |
const bool is_virtual_or_interface = (is_virtual || iid == vmIntrinsics::_linkToInterface); |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
865 |
int vtable_index = Method::invalid_vtable_index; |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
866 |
bool call_does_dispatch = false; |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
867 |
|
21099 | 868 |
ciKlass* speculative_receiver_type = NULL; |
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
869 |
if (is_virtual_or_interface) { |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
870 |
ciInstanceKlass* klass = target->holder(); |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
871 |
Node* receiver_node = kit.argument(0); |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
872 |
const TypeOopPtr* receiver_type = gvn.type(receiver_node)->isa_oopptr(); |
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
873 |
// call_does_dispatch and vtable_index are out-parameters. They might be changed. |
25494
c18718ecf276
8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents:
24948
diff
changeset
|
874 |
// optimize_virtual_call() takes 2 different holder |
c18718ecf276
8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents:
24948
diff
changeset
|
875 |
// arguments for a corner case that doesn't apply here (see |
c18718ecf276
8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents:
24948
diff
changeset
|
876 |
// Parse::do_call()) |
c18718ecf276
8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents:
24948
diff
changeset
|
877 |
target = C->optimize_virtual_call(caller, jvms->bci(), klass, klass, |
c18718ecf276
8046542: [I.finalize() calls from methods compiled by C1 do not cause IllegalAccessError on Sparc
roland
parents:
24948
diff
changeset
|
878 |
target, receiver_type, is_virtual, |
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
879 |
call_does_dispatch, vtable_index); // out-parameters |
21099 | 880 |
// We lack profiling at this call but type speculation may |
881 |
// provide us with a type |
|
26945
981df0f8be4e
8059556: C2: crash while inlining MethodHandle invocation w/ null receiver
vlivanov
parents:
25930
diff
changeset
|
882 |
speculative_receiver_type = (receiver_type != NULL) ? receiver_type->speculative_type() : NULL; |
15118
1a1a6d1dfaab
8005418: JSR 292: virtual dispatch bug in 292 impl
twisti
parents:
15113
diff
changeset
|
883 |
} |
21099 | 884 |
CallGenerator* cg = C->call_generator(target, vtable_index, call_does_dispatch, jvms, true, PROB_ALWAYS, speculative_receiver_type, true, true); |
21582
6c76cdd733fe
8028159: C2: compiler stack overflow during inlining of @ForceInline methods
vlivanov
parents:
21099
diff
changeset
|
885 |
assert(cg == NULL || !cg->is_late_inline() || cg->is_mh_late_inline(), "no late inline here"); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
886 |
if (cg != NULL && cg->is_inline()) |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
887 |
return cg; |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
888 |
} else { |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
889 |
const char* msg = "member_name not constant"; |
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
890 |
if (PrintInlining) C->print_inlining(callee, jvms->depth() - 1, jvms->bci(), msg); |
24002
4e6a72032a99
8005079: fix LogCompilation for incremental inlining
roland
parents:
23846
diff
changeset
|
891 |
C->log_inline_failure(msg); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
892 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
893 |
} |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
894 |
break; |
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
895 |
|
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
896 |
default: |
13393
f0344cc50a90
7187454: stack overflow in C2 compiler thread on Solaris x86
kvn
parents:
13391
diff
changeset
|
897 |
fatal(err_msg_res("unexpected intrinsic %d: %s", iid, vmIntrinsics::name_at(iid))); |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
13107
diff
changeset
|
898 |
break; |
10265
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
899 |
} |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
900 |
return NULL; |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
901 |
} |
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
902 |
|
4c869854aebd
7071653: JSR 292: call site change notification should be pushed not pulled
twisti
parents:
9975
diff
changeset
|
903 |
|
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
904 |
//------------------------PredicatedIntrinsicGenerator------------------------------ |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
905 |
// Internal class which handles all predicated Intrinsic calls. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
906 |
class PredicatedIntrinsicGenerator : public CallGenerator { |
14132 | 907 |
CallGenerator* _intrinsic; |
908 |
CallGenerator* _cg; |
|
909 |
||
910 |
public: |
|
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
911 |
PredicatedIntrinsicGenerator(CallGenerator* intrinsic, |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
912 |
CallGenerator* cg) |
14132 | 913 |
: CallGenerator(cg->method()) |
914 |
{ |
|
915 |
_intrinsic = intrinsic; |
|
916 |
_cg = cg; |
|
917 |
} |
|
918 |
||
919 |
virtual bool is_virtual() const { return true; } |
|
920 |
virtual bool is_inlined() const { return true; } |
|
921 |
virtual bool is_intrinsic() const { return true; } |
|
922 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
923 |
virtual JVMState* generate(JVMState* jvms); |
14132 | 924 |
}; |
925 |
||
926 |
||
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
927 |
CallGenerator* CallGenerator::for_predicated_intrinsic(CallGenerator* intrinsic, |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
928 |
CallGenerator* cg) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
929 |
return new PredicatedIntrinsicGenerator(intrinsic, cg); |
14132 | 930 |
} |
931 |
||
932 |
||
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
933 |
JVMState* PredicatedIntrinsicGenerator::generate(JVMState* jvms) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
934 |
// The code we want to generate here is: |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
935 |
// if (receiver == NULL) |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
936 |
// uncommon_Trap |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
937 |
// if (predicate(0)) |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
938 |
// do_intrinsic(0) |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
939 |
// else |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
940 |
// if (predicate(1)) |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
941 |
// do_intrinsic(1) |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
942 |
// ... |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
943 |
// else |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
944 |
// do_java_comp |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
945 |
|
14132 | 946 |
GraphKit kit(jvms); |
947 |
PhaseGVN& gvn = kit.gvn(); |
|
948 |
||
949 |
CompileLog* log = kit.C->log(); |
|
950 |
if (log != NULL) { |
|
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
951 |
log->elem("predicated_intrinsic bci='%d' method='%d'", |
14132 | 952 |
jvms->bci(), log->identify(method())); |
953 |
} |
|
954 |
||
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
955 |
if (!method()->is_static()) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
956 |
// We need an explicit receiver null_check before checking its type in predicate. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
957 |
// We share a map with the caller, so his JVMS gets adjusted. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
958 |
Node* receiver = kit.null_check_receiver_before_call(method()); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
959 |
if (kit.stopped()) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
960 |
return kit.transfer_exceptions_into_jvms(); |
14132 | 961 |
} |
962 |
} |
|
963 |
||
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
964 |
int n_predicates = _intrinsic->predicates_count(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
965 |
assert(n_predicates > 0, "sanity"); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
966 |
|
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
967 |
JVMState** result_jvms = NEW_RESOURCE_ARRAY(JVMState*, (n_predicates+1)); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
968 |
|
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
969 |
// Region for normal compilation code if intrinsic failed. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
970 |
Node* slow_region = new RegionNode(1); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
971 |
|
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
972 |
int results = 0; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
973 |
for (int predicate = 0; (predicate < n_predicates) && !kit.stopped(); predicate++) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
974 |
#ifdef ASSERT |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
975 |
JVMState* old_jvms = kit.jvms(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
976 |
SafePointNode* old_map = kit.map(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
977 |
Node* old_io = old_map->i_o(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
978 |
Node* old_mem = old_map->memory(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
979 |
Node* old_exc = old_map->next_exception(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
980 |
#endif |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
981 |
Node* else_ctrl = _intrinsic->generate_predicate(kit.sync_jvms(), predicate); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
982 |
#ifdef ASSERT |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
983 |
// Assert(no_new_memory && no_new_io && no_new_exceptions) after generate_predicate. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
984 |
assert(old_jvms == kit.jvms(), "generate_predicate should not change jvm state"); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
985 |
SafePointNode* new_map = kit.map(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
986 |
assert(old_io == new_map->i_o(), "generate_predicate should not change i_o"); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
987 |
assert(old_mem == new_map->memory(), "generate_predicate should not change memory"); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
988 |
assert(old_exc == new_map->next_exception(), "generate_predicate should not add exceptions"); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
989 |
#endif |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
990 |
if (!kit.stopped()) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
991 |
PreserveJVMState pjvms(&kit); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
992 |
// Generate intrinsic code: |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
993 |
JVMState* new_jvms = _intrinsic->generate(kit.sync_jvms()); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
994 |
if (new_jvms == NULL) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
995 |
// Intrinsic failed, use normal compilation path for this predicate. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
996 |
slow_region->add_req(kit.control()); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
997 |
} else { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
998 |
kit.add_exception_states_from(new_jvms); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
999 |
kit.set_jvms(new_jvms); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1000 |
if (!kit.stopped()) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1001 |
result_jvms[results++] = kit.jvms(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1002 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1003 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1004 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1005 |
if (else_ctrl == NULL) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1006 |
else_ctrl = kit.C->top(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1007 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1008 |
kit.set_control(else_ctrl); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1009 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1010 |
if (!kit.stopped()) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1011 |
// Final 'else' after predicates. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1012 |
slow_region->add_req(kit.control()); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1013 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1014 |
if (slow_region->req() > 1) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1015 |
PreserveJVMState pjvms(&kit); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1016 |
// Generate normal compilation code: |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1017 |
kit.set_control(gvn.transform(slow_region)); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1018 |
JVMState* new_jvms = _cg->generate(kit.sync_jvms()); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1019 |
if (kit.failing()) |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1020 |
return NULL; // might happen because of NodeCountInliningCutoff |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1021 |
assert(new_jvms != NULL, "must be"); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1022 |
kit.add_exception_states_from(new_jvms); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1023 |
kit.set_jvms(new_jvms); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1024 |
if (!kit.stopped()) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1025 |
result_jvms[results++] = kit.jvms(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1026 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1027 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1028 |
|
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1029 |
if (results == 0) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1030 |
// All paths ended in uncommon traps. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1031 |
(void) kit.stop(); |
14132 | 1032 |
return kit.transfer_exceptions_into_jvms(); |
1033 |
} |
|
1034 |
||
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1035 |
if (results == 1) { // Only one path |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1036 |
kit.set_jvms(result_jvms[0]); |
14132 | 1037 |
return kit.transfer_exceptions_into_jvms(); |
1038 |
} |
|
1039 |
||
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1040 |
// Merge all paths. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1041 |
kit.C->set_has_split_ifs(true); // Has chance for split-if optimization |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1042 |
RegionNode* region = new RegionNode(results + 1); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1043 |
Node* iophi = PhiNode::make(region, kit.i_o(), Type::ABIO); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1044 |
for (int i = 0; i < results; i++) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1045 |
JVMState* jvms = result_jvms[i]; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1046 |
int path = i + 1; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1047 |
SafePointNode* map = jvms->map(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1048 |
region->init_req(path, map->control()); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1049 |
iophi->set_req(path, map->i_o()); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1050 |
if (i == 0) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1051 |
kit.set_jvms(jvms); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1052 |
} else { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1053 |
kit.merge_memory(map->merged_memory(), region, path); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1054 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1055 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1056 |
kit.set_control(gvn.transform(region)); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1057 |
kit.set_i_o(gvn.transform(iophi)); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1058 |
// Transform new memory Phis. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1059 |
for (MergeMemStream mms(kit.merged_memory()); mms.next_non_empty();) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1060 |
Node* phi = mms.memory(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1061 |
if (phi->is_Phi() && phi->in(0) == region) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1062 |
mms.set_memory(gvn.transform(phi)); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1063 |
} |
14132 | 1064 |
} |
1065 |
||
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1066 |
// Merge debug info. |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1067 |
Node** ins = NEW_RESOURCE_ARRAY(Node*, results); |
14132 | 1068 |
uint tos = kit.jvms()->stkoff() + kit.sp(); |
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1069 |
Node* map = kit.map(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1070 |
uint limit = map->req(); |
14132 | 1071 |
for (uint i = TypeFunc::Parms; i < limit; i++) { |
1072 |
// Skip unused stack slots; fast forward to monoff(); |
|
1073 |
if (i == tos) { |
|
1074 |
i = kit.jvms()->monoff(); |
|
1075 |
if( i >= limit ) break; |
|
1076 |
} |
|
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1077 |
Node* n = map->in(i); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1078 |
ins[0] = n; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1079 |
const Type* t = gvn.type(n); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1080 |
bool needs_phi = false; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1081 |
for (int j = 1; j < results; j++) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1082 |
JVMState* jvms = result_jvms[j]; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1083 |
Node* jmap = jvms->map(); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1084 |
Node* m = NULL; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1085 |
if (jmap->req() > i) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1086 |
m = jmap->in(i); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1087 |
if (m != n) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1088 |
needs_phi = true; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1089 |
t = t->meet_speculative(gvn.type(m)); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1090 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1091 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1092 |
ins[j] = m; |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1093 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1094 |
if (needs_phi) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1095 |
Node* phi = PhiNode::make(region, n, t); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1096 |
for (int j = 1; j < results; j++) { |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1097 |
phi->set_req(j + 1, ins[j]); |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1098 |
} |
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1099 |
map->set_req(i, gvn.transform(phi)); |
14132 | 1100 |
} |
1101 |
} |
|
24948
bc074f400757
8035605: Expand functionality of PredictedIntrinsicGenerator
kvn
parents:
24946
diff
changeset
|
1102 |
|
14132 | 1103 |
return kit.transfer_exceptions_into_jvms(); |
1104 |
} |
|
1105 |
||
1 | 1106 |
//-------------------------UncommonTrapCallGenerator----------------------------- |
1107 |
// Internal class which handles all out-of-line calls checking receiver type. |
|
1108 |
class UncommonTrapCallGenerator : public CallGenerator { |
|
1109 |
Deoptimization::DeoptReason _reason; |
|
1110 |
Deoptimization::DeoptAction _action; |
|
1111 |
||
1112 |
public: |
|
1113 |
UncommonTrapCallGenerator(ciMethod* m, |
|
1114 |
Deoptimization::DeoptReason reason, |
|
1115 |
Deoptimization::DeoptAction action) |
|
1116 |
: CallGenerator(m) |
|
1117 |
{ |
|
1118 |
_reason = reason; |
|
1119 |
_action = action; |
|
1120 |
} |
|
1121 |
||
1122 |
virtual bool is_virtual() const { ShouldNotReachHere(); return false; } |
|
1123 |
virtual bool is_trap() const { return true; } |
|
1124 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
1125 |
virtual JVMState* generate(JVMState* jvms); |
1 | 1126 |
}; |
1127 |
||
1128 |
||
1129 |
CallGenerator* |
|
1130 |
CallGenerator::for_uncommon_trap(ciMethod* m, |
|
1131 |
Deoptimization::DeoptReason reason, |
|
1132 |
Deoptimization::DeoptAction action) { |
|
1133 |
return new UncommonTrapCallGenerator(m, reason, action); |
|
1134 |
} |
|
1135 |
||
1136 |
||
24946
24b68ccf3fc4
8026796: Make replace_in_map() on parent maps generic
roland
parents:
24923
diff
changeset
|
1137 |
JVMState* UncommonTrapCallGenerator::generate(JVMState* jvms) { |
1 | 1138 |
GraphKit kit(jvms); |
23846
490ace57944d
8007988: PrintInlining output is inconsistent with incremental inlining
roland
parents:
23528
diff
changeset
|
1139 |
kit.C->print_inlining_update(this); |
1 | 1140 |
// Take the trap with arguments pushed on the stack. (Cf. null_check_receiver). |
1141 |
int nargs = method()->arg_size(); |
|
1142 |
kit.inc_sp(nargs); |
|
1143 |
assert(nargs <= kit.sp() && kit.sp() <= jvms->stk_size(), "sane sp w/ args pushed"); |
|
1144 |
if (_reason == Deoptimization::Reason_class_check && |
|
1145 |
_action == Deoptimization::Action_maybe_recompile) { |
|
1146 |
// Temp fix for 6529811 |
|
1147 |
// Don't allow uncommon_trap to override our decision to recompile in the event |
|
1148 |
// of a class cast failure for a monomorphic call as it will never let us convert |
|
1149 |
// the call to either bi-morphic or megamorphic and can lead to unc-trap loops |
|
1150 |
bool keep_exact_action = true; |
|
1151 |
kit.uncommon_trap(_reason, _action, NULL, "monomorphic vcall checkcast", false, keep_exact_action); |
|
1152 |
} else { |
|
1153 |
kit.uncommon_trap(_reason, _action); |
|
1154 |
} |
|
1155 |
return kit.transfer_exceptions_into_jvms(); |
|
1156 |
} |
|
1157 |
||
1158 |
// (Note: Moved hook_up_call to GraphKit::set_edges_for_java_call.) |
|
1159 |
||
1160 |
// (Node: Merged hook_up_exits into ParseGenerator::generate.) |
|
1161 |
||
1162 |
#define NODES_OVERHEAD_PER_METHOD (30.0) |
|
1163 |
#define NODES_PER_BYTECODE (9.5) |
|
1164 |
||
1165 |
void WarmCallInfo::init(JVMState* call_site, ciMethod* call_method, ciCallProfile& profile, float prof_factor) { |
|
1166 |
int call_count = profile.count(); |
|
1167 |
int code_size = call_method->code_size(); |
|
1168 |
||
1169 |
// Expected execution count is based on the historical count: |
|
1170 |
_count = call_count < 0 ? 1 : call_site->method()->scale_count(call_count, prof_factor); |
|
1171 |
||
1172 |
// Expected profit from inlining, in units of simple call-overheads. |
|
1173 |
_profit = 1.0; |
|
1174 |
||
1175 |
// Expected work performed by the call in units of call-overheads. |
|
1176 |
// %%% need an empirical curve fit for "work" (time in call) |
|
1177 |
float bytecodes_per_call = 3; |
|
1178 |
_work = 1.0 + code_size / bytecodes_per_call; |
|
1179 |
||
1180 |
// Expected size of compilation graph: |
|
1181 |
// -XX:+PrintParseStatistics once reported: |
|
1182 |
// Methods seen: 9184 Methods parsed: 9184 Nodes created: 1582391 |
|
1183 |
// Histogram of 144298 parsed bytecodes: |
|
1184 |
// %%% Need an better predictor for graph size. |
|
1185 |
_size = NODES_OVERHEAD_PER_METHOD + (NODES_PER_BYTECODE * code_size); |
|
1186 |
} |
|
1187 |
||
1188 |
// is_cold: Return true if the node should never be inlined. |
|
1189 |
// This is true if any of the key metrics are extreme. |
|
1190 |
bool WarmCallInfo::is_cold() const { |
|
1191 |
if (count() < WarmCallMinCount) return true; |
|
1192 |
if (profit() < WarmCallMinProfit) return true; |
|
1193 |
if (work() > WarmCallMaxWork) return true; |
|
1194 |
if (size() > WarmCallMaxSize) return true; |
|
1195 |
return false; |
|
1196 |
} |
|
1197 |
||
1198 |
// is_hot: Return true if the node should be inlined immediately. |
|
1199 |
// This is true if any of the key metrics are extreme. |
|
1200 |
bool WarmCallInfo::is_hot() const { |
|
1201 |
assert(!is_cold(), "eliminate is_cold cases before testing is_hot"); |
|
1202 |
if (count() >= HotCallCountThreshold) return true; |
|
1203 |
if (profit() >= HotCallProfitThreshold) return true; |
|
1204 |
if (work() <= HotCallTrivialWork) return true; |
|
1205 |
if (size() <= HotCallTrivialSize) return true; |
|
1206 |
return false; |
|
1207 |
} |
|
1208 |
||
1209 |
// compute_heat: |
|
1210 |
float WarmCallInfo::compute_heat() const { |
|
1211 |
assert(!is_cold(), "compute heat only on warm nodes"); |
|
1212 |
assert(!is_hot(), "compute heat only on warm nodes"); |
|
1213 |
int min_size = MAX2(0, (int)HotCallTrivialSize); |
|
1214 |
int max_size = MIN2(500, (int)WarmCallMaxSize); |
|
1215 |
float method_size = (size() - min_size) / MAX2(1, max_size - min_size); |
|
1216 |
float size_factor; |
|
1217 |
if (method_size < 0.05) size_factor = 4; // 2 sigmas better than avg. |
|
1218 |
else if (method_size < 0.15) size_factor = 2; // 1 sigma better than avg. |
|
1219 |
else if (method_size < 0.5) size_factor = 1; // better than avg. |
|
1220 |
else size_factor = 0.5; // worse than avg. |
|
1221 |
return (count() * profit() * size_factor); |
|
1222 |
} |
|
1223 |
||
1224 |
bool WarmCallInfo::warmer_than(WarmCallInfo* that) { |
|
1225 |
assert(this != that, "compare only different WCIs"); |
|
1226 |
assert(this->heat() != 0 && that->heat() != 0, "call compute_heat 1st"); |
|
1227 |
if (this->heat() > that->heat()) return true; |
|
1228 |
if (this->heat() < that->heat()) return false; |
|
1229 |
assert(this->heat() == that->heat(), "no NaN heat allowed"); |
|
1230 |
// Equal heat. Break the tie some other way. |
|
1231 |
if (!this->call() || !that->call()) return (address)this > (address)that; |
|
1232 |
return this->call()->_idx > that->call()->_idx; |
|
1233 |
} |
|
1234 |
||
1235 |
//#define UNINIT_NEXT ((WarmCallInfo*)badAddress) |
|
1236 |
#define UNINIT_NEXT ((WarmCallInfo*)NULL) |
|
1237 |
||
1238 |
WarmCallInfo* WarmCallInfo::insert_into(WarmCallInfo* head) { |
|
1239 |
assert(next() == UNINIT_NEXT, "not yet on any list"); |
|
1240 |
WarmCallInfo* prev_p = NULL; |
|
1241 |
WarmCallInfo* next_p = head; |
|
1242 |
while (next_p != NULL && next_p->warmer_than(this)) { |
|
1243 |
prev_p = next_p; |
|
1244 |
next_p = prev_p->next(); |
|
1245 |
} |
|
1246 |
// Install this between prev_p and next_p. |
|
1247 |
this->set_next(next_p); |
|
1248 |
if (prev_p == NULL) |
|
1249 |
head = this; |
|
1250 |
else |
|
1251 |
prev_p->set_next(this); |
|
1252 |
return head; |
|
1253 |
} |
|
1254 |
||
1255 |
WarmCallInfo* WarmCallInfo::remove_from(WarmCallInfo* head) { |
|
1256 |
WarmCallInfo* prev_p = NULL; |
|
1257 |
WarmCallInfo* next_p = head; |
|
1258 |
while (next_p != this) { |
|
1259 |
assert(next_p != NULL, "this must be in the list somewhere"); |
|
1260 |
prev_p = next_p; |
|
1261 |
next_p = prev_p->next(); |
|
1262 |
} |
|
1263 |
next_p = this->next(); |
|
1264 |
debug_only(this->set_next(UNINIT_NEXT)); |
|
1265 |
// Remove this from between prev_p and next_p. |
|
1266 |
if (prev_p == NULL) |
|
1267 |
head = next_p; |
|
1268 |
else |
|
1269 |
prev_p->set_next(next_p); |
|
1270 |
return head; |
|
1271 |
} |
|
1272 |
||
9099
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1273 |
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
|
1274 |
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
|
1275 |
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
|
1276 |
WarmCallInfo::MAX_VALUE(), WarmCallInfo::MAX_VALUE()); |
1 | 1277 |
|
1278 |
WarmCallInfo* WarmCallInfo::always_hot() { |
|
9099
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1279 |
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
|
1280 |
return &_always_hot; |
1 | 1281 |
} |
1282 |
||
1283 |
WarmCallInfo* WarmCallInfo::always_cold() { |
|
9099
bdeb610d3cb1
6909440: C2 fails with assertion (_always_cold->is_cold(),"must always be cold")
never
parents:
8676
diff
changeset
|
1284 |
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
|
1285 |
return &_always_cold; |
1 | 1286 |
} |
1287 |
||
1288 |
||
1289 |
#ifndef PRODUCT |
|
1290 |
||
1291 |
void WarmCallInfo::print() const { |
|
1292 |
tty->print("%s : C=%6.1f P=%6.1f W=%6.1f S=%6.1f H=%6.1f -> %p", |
|
1293 |
is_cold() ? "cold" : is_hot() ? "hot " : "warm", |
|
1294 |
count(), profit(), work(), size(), compute_heat(), next()); |
|
1295 |
tty->cr(); |
|
1296 |
if (call() != NULL) call()->dump(); |
|
1297 |
} |
|
1298 |
||
1299 |
void print_wci(WarmCallInfo* ci) { |
|
1300 |
ci->print(); |
|
1301 |
} |
|
1302 |
||
1303 |
void WarmCallInfo::print_all() const { |
|
1304 |
for (const WarmCallInfo* p = this; p != NULL; p = p->next()) |
|
1305 |
p->print(); |
|
1306 |
} |
|
1307 |
||
1308 |
int WarmCallInfo::count_all() const { |
|
1309 |
int cnt = 0; |
|
1310 |
for (const WarmCallInfo* p = this; p != NULL; p = p->next()) |
|
1311 |
cnt++; |
|
1312 |
return cnt; |
|
1313 |
} |
|
1314 |
||
1315 |
#endif //PRODUCT |