annotate src/share/vm/opto/callGenerator.cpp @ 8883:b9a918201d47

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