src/share/vm/opto/callGenerator.cpp

Thu, 03 Jan 2013 15:09:55 -0800

author
kvn
date
Thu, 03 Jan 2013 15:09:55 -0800
changeset 4410
00af3a3a8df4
parent 4409
d092d1b31229
child 4414
5698813d45eb
permissions
-rw-r--r--

8005522: use fast-string instructions on x86 for zeroing
Summary: use 'rep stosb' instead of 'rep stosq' when fast-string operations are available.
Reviewed-by: twisti, roland

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

mercurial