src/share/vm/opto/doCall.cpp

Fri, 11 Mar 2011 07:50:51 -0800

author
kvn
date
Fri, 11 Mar 2011 07:50:51 -0800
changeset 2636
83f08886981c
parent 2314
f95d63e2154a
child 2687
3d58a4983660
permissions
-rw-r--r--

7026631: field _klass is incorrectly set for dual type of TypeAryPtr::OOPS
Summary: add missing check this->dual() != TypeAryPtr::OOPS into TypeAryPtr::klass().
Reviewed-by: never

duke@435 1 /*
trims@1907 2 * Copyright (c) 1998, 2010, 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/ciCPCache.hpp"
stefank@2314 27 #include "ci/ciCallSite.hpp"
stefank@2314 28 #include "ci/ciMethodHandle.hpp"
stefank@2314 29 #include "classfile/vmSymbols.hpp"
stefank@2314 30 #include "compiler/compileLog.hpp"
stefank@2314 31 #include "interpreter/linkResolver.hpp"
stefank@2314 32 #include "opto/addnode.hpp"
stefank@2314 33 #include "opto/callGenerator.hpp"
stefank@2314 34 #include "opto/cfgnode.hpp"
stefank@2314 35 #include "opto/mulnode.hpp"
stefank@2314 36 #include "opto/parse.hpp"
stefank@2314 37 #include "opto/rootnode.hpp"
stefank@2314 38 #include "opto/runtime.hpp"
stefank@2314 39 #include "opto/subnode.hpp"
stefank@2314 40 #include "prims/nativeLookup.hpp"
stefank@2314 41 #include "runtime/sharedRuntime.hpp"
duke@435 42
duke@435 43 #ifndef PRODUCT
duke@435 44 void trace_type_profile(ciMethod *method, int depth, int bci, ciMethod *prof_method, ciKlass *prof_klass, int site_count, int receiver_count) {
duke@435 45 if (TraceTypeProfile || PrintInlining || PrintOptoInlining) {
duke@435 46 tty->print(" ");
duke@435 47 for( int i = 0; i < depth; i++ ) tty->print(" ");
duke@435 48 if (!PrintOpto) {
duke@435 49 method->print_short_name();
duke@435 50 tty->print(" ->");
duke@435 51 }
duke@435 52 tty->print(" @ %d ", bci);
duke@435 53 prof_method->print_short_name();
duke@435 54 tty->print(" >>TypeProfile (%d/%d counts) = ", receiver_count, site_count);
duke@435 55 prof_klass->name()->print_symbol();
duke@435 56 tty->print_cr(" (%d bytes)", prof_method->code_size());
duke@435 57 }
duke@435 58 }
duke@435 59 #endif
duke@435 60
jrose@1592 61 CallGenerator* Compile::call_generator(ciMethod* call_method, int vtable_index, bool call_is_virtual,
jrose@1592 62 JVMState* jvms, bool allow_inline,
jrose@1592 63 float prof_factor) {
duke@435 64 CallGenerator* cg;
duke@435 65
duke@435 66 // Dtrace currently doesn't work unless all calls are vanilla
kvn@1215 67 if (env()->dtrace_method_probes()) {
duke@435 68 allow_inline = false;
duke@435 69 }
duke@435 70
duke@435 71 // Note: When we get profiling during stage-1 compiles, we want to pull
duke@435 72 // from more specific profile data which pertains to this inlining.
duke@435 73 // Right now, ignore the information in jvms->caller(), and do method[bci].
duke@435 74 ciCallProfile profile = jvms->method()->call_profile_at_bci(jvms->bci());
duke@435 75
duke@435 76 // See how many times this site has been invoked.
duke@435 77 int site_count = profile.count();
duke@435 78 int receiver_count = -1;
duke@435 79 if (call_is_virtual && UseTypeProfile && profile.has_receiver(0)) {
duke@435 80 // Receivers in the profile structure are ordered by call counts
duke@435 81 // so that the most called (major) receiver is profile.receiver(0).
duke@435 82 receiver_count = profile.receiver_count(0);
duke@435 83 }
duke@435 84
duke@435 85 CompileLog* log = this->log();
duke@435 86 if (log != NULL) {
duke@435 87 int rid = (receiver_count >= 0)? log->identify(profile.receiver(0)): -1;
kvn@1686 88 int r2id = (rid != -1 && profile.has_receiver(1))? log->identify(profile.receiver(1)):-1;
duke@435 89 log->begin_elem("call method='%d' count='%d' prof_factor='%g'",
duke@435 90 log->identify(call_method), site_count, prof_factor);
duke@435 91 if (call_is_virtual) log->print(" virtual='1'");
duke@435 92 if (allow_inline) log->print(" inline='1'");
duke@435 93 if (receiver_count >= 0) {
duke@435 94 log->print(" receiver='%d' receiver_count='%d'", rid, receiver_count);
duke@435 95 if (profile.has_receiver(1)) {
duke@435 96 log->print(" receiver2='%d' receiver2_count='%d'", r2id, profile.receiver_count(1));
duke@435 97 }
duke@435 98 }
duke@435 99 log->end_elem();
duke@435 100 }
duke@435 101
duke@435 102 // Special case the handling of certain common, profitable library
duke@435 103 // methods. If these methods are replaced with specialized code,
duke@435 104 // then we return it as the inlined version of the call.
duke@435 105 // We do this before the strict f.p. check below because the
duke@435 106 // intrinsics handle strict f.p. correctly.
duke@435 107 if (allow_inline) {
duke@435 108 cg = find_intrinsic(call_method, call_is_virtual);
duke@435 109 if (cg != NULL) return cg;
duke@435 110 }
duke@435 111
twisti@2178 112 // Do MethodHandle calls.
twisti@2178 113 // NOTE: This must happen before normal inlining logic below since
twisti@2178 114 // MethodHandle.invoke* are native methods which obviously don't
twisti@2178 115 // have bytecodes and so normal inlining fails.
twisti@2178 116 if (call_method->is_method_handle_invoke()) {
twisti@2178 117 if (jvms->method()->java_code_at_bci(jvms->bci()) != Bytecodes::_invokedynamic) {
twisti@2178 118 GraphKit kit(jvms);
twisti@2178 119 Node* n = kit.argument(0);
twisti@2178 120
twisti@2178 121 if (n->Opcode() == Op_ConP) {
twisti@2178 122 const TypeOopPtr* oop_ptr = n->bottom_type()->is_oopptr();
twisti@2178 123 ciObject* const_oop = oop_ptr->const_oop();
twisti@2178 124 ciMethodHandle* method_handle = const_oop->as_method_handle();
twisti@2178 125
twisti@2178 126 // Set the actually called method to have access to the class
twisti@2178 127 // and signature in the MethodHandleCompiler.
twisti@2178 128 method_handle->set_callee(call_method);
twisti@2178 129
twisti@2178 130 // Get an adapter for the MethodHandle.
twisti@2178 131 ciMethod* target_method = method_handle->get_method_handle_adapter();
twisti@2178 132
twisti@2178 133 CallGenerator* hit_cg = this->call_generator(target_method, vtable_index, false, jvms, true, prof_factor);
twisti@2178 134 if (hit_cg != NULL && hit_cg->is_inline())
twisti@2178 135 return hit_cg;
twisti@2178 136 }
twisti@2178 137
twisti@2178 138 return CallGenerator::for_direct_call(call_method);
twisti@2178 139 }
twisti@2178 140 else {
twisti@2178 141 // Get the MethodHandle from the CallSite.
twisti@2178 142 ciMethod* caller_method = jvms->method();
twisti@2178 143 ciBytecodeStream str(caller_method);
twisti@2178 144 str.force_bci(jvms->bci()); // Set the stream to the invokedynamic bci.
twisti@2178 145 ciCallSite* call_site = str.get_call_site();
twisti@2178 146 ciMethodHandle* method_handle = call_site->get_target();
twisti@2178 147
twisti@2178 148 // Set the actually called method to have access to the class
twisti@2178 149 // and signature in the MethodHandleCompiler.
twisti@2178 150 method_handle->set_callee(call_method);
twisti@2178 151
twisti@2178 152 // Get an adapter for the MethodHandle.
twisti@2178 153 ciMethod* target_method = method_handle->get_invokedynamic_adapter();
twisti@2178 154
twisti@2178 155 CallGenerator* hit_cg = this->call_generator(target_method, vtable_index, false, jvms, true, prof_factor);
twisti@2178 156 if (hit_cg != NULL && hit_cg->is_inline()) {
twisti@2178 157 CallGenerator* miss_cg = CallGenerator::for_dynamic_call(call_method);
twisti@2178 158 return CallGenerator::for_predicted_dynamic_call(method_handle, miss_cg, hit_cg, prof_factor);
twisti@2178 159 }
twisti@2178 160
twisti@2178 161 // If something failed, generate a normal dynamic call.
twisti@2178 162 return CallGenerator::for_dynamic_call(call_method);
twisti@2178 163 }
twisti@2178 164 }
twisti@2178 165
duke@435 166 // Do not inline strict fp into non-strict code, or the reverse
duke@435 167 bool caller_method_is_strict = jvms->method()->is_strict();
duke@435 168 if( caller_method_is_strict ^ call_method->is_strict() ) {
duke@435 169 allow_inline = false;
duke@435 170 }
duke@435 171
duke@435 172 // Attempt to inline...
duke@435 173 if (allow_inline) {
duke@435 174 // The profile data is only partly attributable to this caller,
duke@435 175 // scale back the call site information.
duke@435 176 float past_uses = jvms->method()->scale_count(site_count, prof_factor);
duke@435 177 // This is the number of times we expect the call code to be used.
duke@435 178 float expected_uses = past_uses;
duke@435 179
duke@435 180 // Try inlining a bytecoded method:
duke@435 181 if (!call_is_virtual) {
duke@435 182 InlineTree* ilt;
duke@435 183 if (UseOldInlining) {
duke@435 184 ilt = InlineTree::find_subtree_from_root(this->ilt(), jvms->caller(), jvms->method());
duke@435 185 } else {
duke@435 186 // Make a disembodied, stateless ILT.
duke@435 187 // TO DO: When UseOldInlining is removed, copy the ILT code elsewhere.
duke@435 188 float site_invoke_ratio = prof_factor;
duke@435 189 // Note: ilt is for the root of this parse, not the present call site.
jrose@1592 190 ilt = new InlineTree(this, jvms->method(), jvms->caller(), site_invoke_ratio, 0);
duke@435 191 }
duke@435 192 WarmCallInfo scratch_ci;
duke@435 193 if (!UseOldInlining)
duke@435 194 scratch_ci.init(jvms, call_method, profile, prof_factor);
duke@435 195 WarmCallInfo* ci = ilt->ok_to_inline(call_method, jvms, profile, &scratch_ci);
duke@435 196 assert(ci != &scratch_ci, "do not let this pointer escape");
duke@435 197 bool allow_inline = (ci != NULL && !ci->is_cold());
duke@435 198 bool require_inline = (allow_inline && ci->is_hot());
duke@435 199
duke@435 200 if (allow_inline) {
duke@435 201 CallGenerator* cg = CallGenerator::for_inline(call_method, expected_uses);
never@1515 202 if (require_inline && cg != NULL && should_delay_inlining(call_method, jvms)) {
never@1515 203 // Delay the inlining of this method to give us the
never@1515 204 // opportunity to perform some high level optimizations
never@1515 205 // first.
never@1515 206 return CallGenerator::for_late_inline(call_method, cg);
never@1515 207 }
duke@435 208 if (cg == NULL) {
duke@435 209 // Fall through.
duke@435 210 } else if (require_inline || !InlineWarmCalls) {
duke@435 211 return cg;
duke@435 212 } else {
duke@435 213 CallGenerator* cold_cg = call_generator(call_method, vtable_index, call_is_virtual, jvms, false, prof_factor);
duke@435 214 return CallGenerator::for_warm_call(ci, cold_cg, cg);
duke@435 215 }
duke@435 216 }
duke@435 217 }
duke@435 218
duke@435 219 // Try using the type profile.
duke@435 220 if (call_is_virtual && site_count > 0 && receiver_count > 0) {
duke@435 221 // The major receiver's count >= TypeProfileMajorReceiverPercent of site_count.
duke@435 222 bool have_major_receiver = (100.*profile.receiver_prob(0) >= (float)TypeProfileMajorReceiverPercent);
duke@435 223 ciMethod* receiver_method = NULL;
duke@435 224 if (have_major_receiver || profile.morphism() == 1 ||
duke@435 225 (profile.morphism() == 2 && UseBimorphicInlining)) {
duke@435 226 // receiver_method = profile.method();
duke@435 227 // Profiles do not suggest methods now. Look it up in the major receiver.
duke@435 228 receiver_method = call_method->resolve_invoke(jvms->method()->holder(),
duke@435 229 profile.receiver(0));
duke@435 230 }
duke@435 231 if (receiver_method != NULL) {
duke@435 232 // The single majority receiver sufficiently outweighs the minority.
duke@435 233 CallGenerator* hit_cg = this->call_generator(receiver_method,
duke@435 234 vtable_index, !call_is_virtual, jvms, allow_inline, prof_factor);
duke@435 235 if (hit_cg != NULL) {
duke@435 236 // Look up second receiver.
duke@435 237 CallGenerator* next_hit_cg = NULL;
duke@435 238 ciMethod* next_receiver_method = NULL;
duke@435 239 if (profile.morphism() == 2 && UseBimorphicInlining) {
duke@435 240 next_receiver_method = call_method->resolve_invoke(jvms->method()->holder(),
duke@435 241 profile.receiver(1));
duke@435 242 if (next_receiver_method != NULL) {
duke@435 243 next_hit_cg = this->call_generator(next_receiver_method,
duke@435 244 vtable_index, !call_is_virtual, jvms,
duke@435 245 allow_inline, prof_factor);
duke@435 246 if (next_hit_cg != NULL && !next_hit_cg->is_inline() &&
duke@435 247 have_major_receiver && UseOnlyInlinedBimorphic) {
duke@435 248 // Skip if we can't inline second receiver's method
duke@435 249 next_hit_cg = NULL;
duke@435 250 }
duke@435 251 }
duke@435 252 }
duke@435 253 CallGenerator* miss_cg;
kvn@1641 254 Deoptimization::DeoptReason reason = (profile.morphism() == 2) ?
kvn@1641 255 Deoptimization::Reason_bimorphic :
kvn@1641 256 Deoptimization::Reason_class_check;
duke@435 257 if (( profile.morphism() == 1 ||
duke@435 258 (profile.morphism() == 2 && next_hit_cg != NULL) ) &&
kvn@1641 259 !too_many_traps(jvms->method(), jvms->bci(), reason)
duke@435 260 ) {
duke@435 261 // Generate uncommon trap for class check failure path
duke@435 262 // in case of monomorphic or bimorphic virtual call site.
kvn@1641 263 miss_cg = CallGenerator::for_uncommon_trap(call_method, reason,
duke@435 264 Deoptimization::Action_maybe_recompile);
duke@435 265 } else {
duke@435 266 // Generate virtual call for class check failure path
duke@435 267 // in case of polymorphic virtual call site.
duke@435 268 miss_cg = CallGenerator::for_virtual_call(call_method, vtable_index);
duke@435 269 }
duke@435 270 if (miss_cg != NULL) {
duke@435 271 if (next_hit_cg != NULL) {
duke@435 272 NOT_PRODUCT(trace_type_profile(jvms->method(), jvms->depth(), jvms->bci(), next_receiver_method, profile.receiver(1), site_count, profile.receiver_count(1)));
duke@435 273 // We don't need to record dependency on a receiver here and below.
duke@435 274 // Whenever we inline, the dependency is added by Parse::Parse().
duke@435 275 miss_cg = CallGenerator::for_predicted_call(profile.receiver(1), miss_cg, next_hit_cg, PROB_MAX);
duke@435 276 }
duke@435 277 if (miss_cg != NULL) {
duke@435 278 NOT_PRODUCT(trace_type_profile(jvms->method(), jvms->depth(), jvms->bci(), receiver_method, profile.receiver(0), site_count, receiver_count));
duke@435 279 cg = CallGenerator::for_predicted_call(profile.receiver(0), miss_cg, hit_cg, profile.receiver_prob(0));
duke@435 280 if (cg != NULL) return cg;
duke@435 281 }
duke@435 282 }
duke@435 283 }
duke@435 284 }
duke@435 285 }
duke@435 286 }
duke@435 287
duke@435 288 // There was no special inlining tactic, or it bailed out.
duke@435 289 // Use a more generic tactic, like a simple call.
duke@435 290 if (call_is_virtual) {
duke@435 291 return CallGenerator::for_virtual_call(call_method, vtable_index);
duke@435 292 } else {
duke@435 293 // Class Hierarchy Analysis or Type Profile reveals a unique target,
duke@435 294 // or it is a static or special call.
never@1515 295 return CallGenerator::for_direct_call(call_method, should_delay_inlining(call_method, jvms));
duke@435 296 }
duke@435 297 }
duke@435 298
never@1515 299 // Return true for methods that shouldn't be inlined early so that
never@1515 300 // they are easier to analyze and optimize as intrinsics.
never@1515 301 bool Compile::should_delay_inlining(ciMethod* call_method, JVMState* jvms) {
never@1515 302 if (has_stringbuilder()) {
never@1515 303
never@1515 304 if ((call_method->holder() == C->env()->StringBuilder_klass() ||
never@1515 305 call_method->holder() == C->env()->StringBuffer_klass()) &&
never@1515 306 (jvms->method()->holder() == C->env()->StringBuilder_klass() ||
never@1515 307 jvms->method()->holder() == C->env()->StringBuffer_klass())) {
never@1515 308 // Delay SB calls only when called from non-SB code
never@1515 309 return false;
never@1515 310 }
never@1515 311
never@1515 312 switch (call_method->intrinsic_id()) {
never@1515 313 case vmIntrinsics::_StringBuilder_void:
never@1515 314 case vmIntrinsics::_StringBuilder_int:
never@1515 315 case vmIntrinsics::_StringBuilder_String:
never@1515 316 case vmIntrinsics::_StringBuilder_append_char:
never@1515 317 case vmIntrinsics::_StringBuilder_append_int:
never@1515 318 case vmIntrinsics::_StringBuilder_append_String:
never@1515 319 case vmIntrinsics::_StringBuilder_toString:
never@1515 320 case vmIntrinsics::_StringBuffer_void:
never@1515 321 case vmIntrinsics::_StringBuffer_int:
never@1515 322 case vmIntrinsics::_StringBuffer_String:
never@1515 323 case vmIntrinsics::_StringBuffer_append_char:
never@1515 324 case vmIntrinsics::_StringBuffer_append_int:
never@1515 325 case vmIntrinsics::_StringBuffer_append_String:
never@1515 326 case vmIntrinsics::_StringBuffer_toString:
never@1515 327 case vmIntrinsics::_Integer_toString:
never@1515 328 return true;
never@1515 329
never@1515 330 case vmIntrinsics::_String_String:
never@1515 331 {
never@1515 332 Node* receiver = jvms->map()->in(jvms->argoff() + 1);
never@1515 333 if (receiver->is_Proj() && receiver->in(0)->is_CallStaticJava()) {
never@1515 334 CallStaticJavaNode* csj = receiver->in(0)->as_CallStaticJava();
never@1515 335 ciMethod* m = csj->method();
never@1515 336 if (m != NULL &&
never@1515 337 (m->intrinsic_id() == vmIntrinsics::_StringBuffer_toString ||
never@1515 338 m->intrinsic_id() == vmIntrinsics::_StringBuilder_toString))
never@1515 339 // Delay String.<init>(new SB())
never@1515 340 return true;
never@1515 341 }
never@1515 342 return false;
never@1515 343 }
never@1515 344
never@1515 345 default:
never@1515 346 return false;
never@1515 347 }
never@1515 348 }
never@1515 349 return false;
never@1515 350 }
never@1515 351
duke@435 352
duke@435 353 // uncommon-trap call-sites where callee is unloaded, uninitialized or will not link
duke@435 354 bool Parse::can_not_compile_call_site(ciMethod *dest_method, ciInstanceKlass* klass) {
duke@435 355 // Additional inputs to consider...
duke@435 356 // bc = bc()
duke@435 357 // caller = method()
duke@435 358 // iter().get_method_holder_index()
duke@435 359 assert( dest_method->is_loaded(), "ciTypeFlow should not let us get here" );
duke@435 360 // Interface classes can be loaded & linked and never get around to
duke@435 361 // being initialized. Uncommon-trap for not-initialized static or
duke@435 362 // v-calls. Let interface calls happen.
twisti@1572 363 ciInstanceKlass* holder_klass = dest_method->holder();
never@2000 364 if (!holder_klass->is_being_initialized() &&
never@2000 365 !holder_klass->is_initialized() &&
duke@435 366 !holder_klass->is_interface()) {
duke@435 367 uncommon_trap(Deoptimization::Reason_uninitialized,
duke@435 368 Deoptimization::Action_reinterpret,
duke@435 369 holder_klass);
duke@435 370 return true;
duke@435 371 }
duke@435 372
duke@435 373 assert(dest_method->will_link(method()->holder(), klass, bc()), "dest_method: typeflow responsibility");
duke@435 374 return false;
duke@435 375 }
duke@435 376
duke@435 377
duke@435 378 //------------------------------do_call----------------------------------------
duke@435 379 // Handle your basic call. Inline if we can & want to, else just setup call.
duke@435 380 void Parse::do_call() {
duke@435 381 // It's likely we are going to add debug info soon.
duke@435 382 // Also, if we inline a guy who eventually needs debug info for this JVMS,
duke@435 383 // our contribution to it is cleaned up right here.
duke@435 384 kill_dead_locals();
duke@435 385
duke@435 386 // Set frequently used booleans
duke@435 387 bool is_virtual = bc() == Bytecodes::_invokevirtual;
duke@435 388 bool is_virtual_or_interface = is_virtual || bc() == Bytecodes::_invokeinterface;
duke@435 389 bool has_receiver = is_virtual_or_interface || bc() == Bytecodes::_invokespecial;
twisti@1572 390 bool is_invokedynamic = bc() == Bytecodes::_invokedynamic;
duke@435 391
duke@435 392 // Find target being called
duke@435 393 bool will_link;
duke@435 394 ciMethod* dest_method = iter().get_method(will_link);
duke@435 395 ciInstanceKlass* holder_klass = dest_method->holder();
duke@435 396 ciKlass* holder = iter().get_declared_method_holder();
duke@435 397 ciInstanceKlass* klass = ciEnv::get_instance_klass_for_declared_method_holder(holder);
duke@435 398
twisti@1572 399 int nargs = dest_method->arg_size();
twisti@1572 400 if (is_invokedynamic) nargs -= 1;
duke@435 401
duke@435 402 // uncommon-trap when callee is unloaded, uninitialized or will not link
duke@435 403 // bailout when too many arguments for register representation
duke@435 404 if (!will_link || can_not_compile_call_site(dest_method, klass)) {
duke@435 405 #ifndef PRODUCT
duke@435 406 if (PrintOpto && (Verbose || WizardMode)) {
duke@435 407 method()->print_name(); tty->print_cr(" can not compile call at bci %d to:", bci());
duke@435 408 dest_method->print_name(); tty->cr();
duke@435 409 }
duke@435 410 #endif
duke@435 411 return;
duke@435 412 }
duke@435 413 assert(holder_klass->is_loaded(), "");
twisti@1572 414 assert((dest_method->is_static() || is_invokedynamic) == !has_receiver , "must match bc");
duke@435 415 // Note: this takes into account invokeinterface of methods declared in java/lang/Object,
duke@435 416 // which should be invokevirtuals but according to the VM spec may be invokeinterfaces
duke@435 417 assert(holder_klass->is_interface() || holder_klass->super() == NULL || (bc() != Bytecodes::_invokeinterface), "must match bc");
duke@435 418 // Note: In the absence of miranda methods, an abstract class K can perform
duke@435 419 // an invokevirtual directly on an interface method I.m if K implements I.
duke@435 420
duke@435 421 // ---------------------
duke@435 422 // Does Class Hierarchy Analysis reveal only a single target of a v-call?
duke@435 423 // Then we may inline or make a static call, but become dependent on there being only 1 target.
duke@435 424 // Does the call-site type profile reveal only one receiver?
duke@435 425 // Then we may introduce a run-time check and inline on the path where it succeeds.
duke@435 426 // The other path may uncommon_trap, check for another receiver, or do a v-call.
duke@435 427
duke@435 428 // Choose call strategy.
duke@435 429 bool call_is_virtual = is_virtual_or_interface;
duke@435 430 int vtable_index = methodOopDesc::invalid_vtable_index;
duke@435 431 ciMethod* call_method = dest_method;
duke@435 432
duke@435 433 // Try to get the most accurate receiver type
duke@435 434 if (is_virtual_or_interface) {
duke@435 435 Node* receiver_node = stack(sp() - nargs);
duke@435 436 const TypeOopPtr* receiver_type = _gvn.type(receiver_node)->isa_oopptr();
duke@435 437 ciMethod* optimized_virtual_method = optimize_inlining(method(), bci(), klass, dest_method, receiver_type);
duke@435 438
duke@435 439 // Have the call been sufficiently improved such that it is no longer a virtual?
duke@435 440 if (optimized_virtual_method != NULL) {
duke@435 441 call_method = optimized_virtual_method;
duke@435 442 call_is_virtual = false;
duke@435 443 } else if (!UseInlineCaches && is_virtual && call_method->is_loaded()) {
duke@435 444 // We can make a vtable call at this site
duke@435 445 vtable_index = call_method->resolve_vtable_index(method()->holder(), klass);
duke@435 446 }
duke@435 447 }
duke@435 448
duke@435 449 // Note: It's OK to try to inline a virtual call.
duke@435 450 // The call generator will not attempt to inline a polymorphic call
duke@435 451 // unless it knows how to optimize the receiver dispatch.
duke@435 452 bool try_inline = (C->do_inlining() || InlineAccessors);
duke@435 453
duke@435 454 // ---------------------
duke@435 455 inc_sp(- nargs); // Temporarily pop args for JVM state of call
duke@435 456 JVMState* jvms = sync_jvms();
duke@435 457
duke@435 458 // ---------------------
duke@435 459 // Decide call tactic.
duke@435 460 // This call checks with CHA, the interpreter profile, intrinsics table, etc.
duke@435 461 // It decides whether inlining is desirable or not.
duke@435 462 CallGenerator* cg = C->call_generator(call_method, vtable_index, call_is_virtual, jvms, try_inline, prof_factor());
duke@435 463
duke@435 464 // ---------------------
duke@435 465 // Round double arguments before call
duke@435 466 round_double_arguments(dest_method);
duke@435 467
duke@435 468 #ifndef PRODUCT
duke@435 469 // bump global counters for calls
duke@435 470 count_compiled_calls(false/*at_method_entry*/, cg->is_inline());
duke@435 471
duke@435 472 // Record first part of parsing work for this call
duke@435 473 parse_histogram()->record_change();
duke@435 474 #endif // not PRODUCT
duke@435 475
duke@435 476 assert(jvms == this->jvms(), "still operating on the right JVMS");
duke@435 477 assert(jvms_in_sync(), "jvms must carry full info into CG");
duke@435 478
duke@435 479 // save across call, for a subsequent cast_not_null.
duke@435 480 Node* receiver = has_receiver ? argument(0) : NULL;
duke@435 481
duke@435 482 // Bump method data counters (We profile *before* the call is made
duke@435 483 // because exceptions don't return to the call site.)
duke@435 484 profile_call(receiver);
duke@435 485
duke@435 486 JVMState* new_jvms;
duke@435 487 if ((new_jvms = cg->generate(jvms)) == NULL) {
duke@435 488 // When inlining attempt fails (e.g., too many arguments),
duke@435 489 // it may contaminate the current compile state, making it
duke@435 490 // impossible to pull back and try again. Once we call
duke@435 491 // cg->generate(), we are committed. If it fails, the whole
duke@435 492 // compilation task is compromised.
duke@435 493 if (failing()) return;
duke@435 494 #ifndef PRODUCT
duke@435 495 if (PrintOpto || PrintOptoInlining || PrintInlining) {
duke@435 496 // Only one fall-back, so if an intrinsic fails, ignore any bytecodes.
duke@435 497 if (cg->is_intrinsic() && call_method->code_size() > 0) {
duke@435 498 tty->print("Bailed out of intrinsic, will not inline: ");
duke@435 499 call_method->print_name(); tty->cr();
duke@435 500 }
duke@435 501 }
duke@435 502 #endif
duke@435 503 // This can happen if a library intrinsic is available, but refuses
duke@435 504 // the call site, perhaps because it did not match a pattern the
duke@435 505 // intrinsic was expecting to optimize. The fallback position is
duke@435 506 // to call out-of-line.
duke@435 507 try_inline = false; // Inline tactic bailed out.
duke@435 508 cg = C->call_generator(call_method, vtable_index, call_is_virtual, jvms, try_inline, prof_factor());
duke@435 509 if ((new_jvms = cg->generate(jvms)) == NULL) {
duke@435 510 guarantee(failing(), "call failed to generate: calls should work");
duke@435 511 return;
duke@435 512 }
duke@435 513 }
duke@435 514
duke@435 515 if (cg->is_inline()) {
never@502 516 // Accumulate has_loops estimate
never@502 517 C->set_has_loops(C->has_loops() || call_method->has_loops());
duke@435 518 C->env()->notice_inlined_method(call_method);
duke@435 519 }
duke@435 520
duke@435 521 // Reset parser state from [new_]jvms, which now carries results of the call.
duke@435 522 // Return value (if any) is already pushed on the stack by the cg.
duke@435 523 add_exception_states_from(new_jvms);
duke@435 524 if (new_jvms->map()->control() == top()) {
duke@435 525 stop_and_kill_map();
duke@435 526 } else {
duke@435 527 assert(new_jvms->same_calls_as(jvms), "method/bci left unchanged");
duke@435 528 set_jvms(new_jvms);
duke@435 529 }
duke@435 530
duke@435 531 if (!stopped()) {
duke@435 532 // This was some sort of virtual call, which did a null check for us.
duke@435 533 // Now we can assert receiver-not-null, on the normal return path.
duke@435 534 if (receiver != NULL && cg->is_virtual()) {
duke@435 535 Node* cast = cast_not_null(receiver);
duke@435 536 // %%% assert(receiver == cast, "should already have cast the receiver");
duke@435 537 }
duke@435 538
duke@435 539 // Round double result after a call from strict to non-strict code
duke@435 540 round_double_result(dest_method);
duke@435 541
duke@435 542 // If the return type of the method is not loaded, assert that the
duke@435 543 // value we got is a null. Otherwise, we need to recompile.
duke@435 544 if (!dest_method->return_type()->is_loaded()) {
duke@435 545 #ifndef PRODUCT
duke@435 546 if (PrintOpto && (Verbose || WizardMode)) {
duke@435 547 method()->print_name(); tty->print_cr(" asserting nullness of result at bci: %d", bci());
duke@435 548 dest_method->print_name(); tty->cr();
duke@435 549 }
duke@435 550 #endif
duke@435 551 if (C->log() != NULL) {
duke@435 552 C->log()->elem("assert_null reason='return' klass='%d'",
duke@435 553 C->log()->identify(dest_method->return_type()));
duke@435 554 }
duke@435 555 // If there is going to be a trap, put it at the next bytecode:
duke@435 556 set_bci(iter().next_bci());
duke@435 557 do_null_assert(peek(), T_OBJECT);
duke@435 558 set_bci(iter().cur_bci()); // put it back
duke@435 559 }
duke@435 560 }
duke@435 561
duke@435 562 // Restart record of parsing work after possible inlining of call
duke@435 563 #ifndef PRODUCT
duke@435 564 parse_histogram()->set_initial_state(bc());
duke@435 565 #endif
duke@435 566 }
duke@435 567
duke@435 568 //---------------------------catch_call_exceptions-----------------------------
duke@435 569 // Put a Catch and CatchProj nodes behind a just-created call.
duke@435 570 // Send their caught exceptions to the proper handler.
duke@435 571 // This may be used after a call to the rethrow VM stub,
duke@435 572 // when it is needed to process unloaded exception classes.
duke@435 573 void Parse::catch_call_exceptions(ciExceptionHandlerStream& handlers) {
duke@435 574 // Exceptions are delivered through this channel:
duke@435 575 Node* i_o = this->i_o();
duke@435 576
duke@435 577 // Add a CatchNode.
duke@435 578 GrowableArray<int>* bcis = new (C->node_arena()) GrowableArray<int>(C->node_arena(), 8, 0, -1);
duke@435 579 GrowableArray<const Type*>* extypes = new (C->node_arena()) GrowableArray<const Type*>(C->node_arena(), 8, 0, NULL);
duke@435 580 GrowableArray<int>* saw_unloaded = new (C->node_arena()) GrowableArray<int>(C->node_arena(), 8, 0, 0);
duke@435 581
duke@435 582 for (; !handlers.is_done(); handlers.next()) {
duke@435 583 ciExceptionHandler* h = handlers.handler();
duke@435 584 int h_bci = h->handler_bci();
duke@435 585 ciInstanceKlass* h_klass = h->is_catch_all() ? env()->Throwable_klass() : h->catch_klass();
duke@435 586 // Do not introduce unloaded exception types into the graph:
duke@435 587 if (!h_klass->is_loaded()) {
duke@435 588 if (saw_unloaded->contains(h_bci)) {
duke@435 589 /* We've already seen an unloaded exception with h_bci,
duke@435 590 so don't duplicate. Duplication will cause the CatchNode to be
duke@435 591 unnecessarily large. See 4713716. */
duke@435 592 continue;
duke@435 593 } else {
duke@435 594 saw_unloaded->append(h_bci);
duke@435 595 }
duke@435 596 }
duke@435 597 const Type* h_extype = TypeOopPtr::make_from_klass(h_klass);
duke@435 598 // (We use make_from_klass because it respects UseUniqueSubclasses.)
duke@435 599 h_extype = h_extype->join(TypeInstPtr::NOTNULL);
duke@435 600 assert(!h_extype->empty(), "sanity");
duke@435 601 // Note: It's OK if the BCIs repeat themselves.
duke@435 602 bcis->append(h_bci);
duke@435 603 extypes->append(h_extype);
duke@435 604 }
duke@435 605
duke@435 606 int len = bcis->length();
duke@435 607 CatchNode *cn = new (C, 2) CatchNode(control(), i_o, len+1);
duke@435 608 Node *catch_ = _gvn.transform(cn);
duke@435 609
duke@435 610 // now branch with the exception state to each of the (potential)
duke@435 611 // handlers
duke@435 612 for(int i=0; i < len; i++) {
duke@435 613 // Setup JVM state to enter the handler.
duke@435 614 PreserveJVMState pjvms(this);
duke@435 615 // Locals are just copied from before the call.
duke@435 616 // Get control from the CatchNode.
duke@435 617 int handler_bci = bcis->at(i);
duke@435 618 Node* ctrl = _gvn.transform( new (C, 1) CatchProjNode(catch_, i+1,handler_bci));
duke@435 619 // This handler cannot happen?
duke@435 620 if (ctrl == top()) continue;
duke@435 621 set_control(ctrl);
duke@435 622
duke@435 623 // Create exception oop
duke@435 624 const TypeInstPtr* extype = extypes->at(i)->is_instptr();
duke@435 625 Node *ex_oop = _gvn.transform(new (C, 2) CreateExNode(extypes->at(i), ctrl, i_o));
duke@435 626
duke@435 627 // Handle unloaded exception classes.
duke@435 628 if (saw_unloaded->contains(handler_bci)) {
duke@435 629 // An unloaded exception type is coming here. Do an uncommon trap.
duke@435 630 #ifndef PRODUCT
duke@435 631 // We do not expect the same handler bci to take both cold unloaded
duke@435 632 // and hot loaded exceptions. But, watch for it.
duke@435 633 if (extype->is_loaded()) {
duke@435 634 tty->print_cr("Warning: Handler @%d takes mixed loaded/unloaded exceptions in ");
duke@435 635 method()->print_name(); tty->cr();
duke@435 636 } else if (PrintOpto && (Verbose || WizardMode)) {
duke@435 637 tty->print("Bailing out on unloaded exception type ");
duke@435 638 extype->klass()->print_name();
duke@435 639 tty->print(" at bci:%d in ", bci());
duke@435 640 method()->print_name(); tty->cr();
duke@435 641 }
duke@435 642 #endif
duke@435 643 // Emit an uncommon trap instead of processing the block.
duke@435 644 set_bci(handler_bci);
duke@435 645 push_ex_oop(ex_oop);
duke@435 646 uncommon_trap(Deoptimization::Reason_unloaded,
duke@435 647 Deoptimization::Action_reinterpret,
duke@435 648 extype->klass(), "!loaded exception");
duke@435 649 set_bci(iter().cur_bci()); // put it back
duke@435 650 continue;
duke@435 651 }
duke@435 652
duke@435 653 // go to the exception handler
duke@435 654 if (handler_bci < 0) { // merge with corresponding rethrow node
duke@435 655 throw_to_exit(make_exception_state(ex_oop));
duke@435 656 } else { // Else jump to corresponding handle
duke@435 657 push_ex_oop(ex_oop); // Clear stack and push just the oop.
duke@435 658 merge_exception(handler_bci);
duke@435 659 }
duke@435 660 }
duke@435 661
duke@435 662 // The first CatchProj is for the normal return.
duke@435 663 // (Note: If this is a call to rethrow_Java, this node goes dead.)
duke@435 664 set_control(_gvn.transform( new (C, 1) CatchProjNode(catch_, CatchProjNode::fall_through_index, CatchProjNode::no_handler_bci)));
duke@435 665 }
duke@435 666
duke@435 667
duke@435 668 //----------------------------catch_inline_exceptions--------------------------
duke@435 669 // Handle all exceptions thrown by an inlined method or individual bytecode.
duke@435 670 // Common case 1: we have no handler, so all exceptions merge right into
duke@435 671 // the rethrow case.
duke@435 672 // Case 2: we have some handlers, with loaded exception klasses that have
duke@435 673 // no subklasses. We do a Deutsch-Shiffman style type-check on the incoming
duke@435 674 // exception oop and branch to the handler directly.
duke@435 675 // Case 3: We have some handlers with subklasses or are not loaded at
duke@435 676 // compile-time. We have to call the runtime to resolve the exception.
duke@435 677 // So we insert a RethrowCall and all the logic that goes with it.
duke@435 678 void Parse::catch_inline_exceptions(SafePointNode* ex_map) {
duke@435 679 // Caller is responsible for saving away the map for normal control flow!
duke@435 680 assert(stopped(), "call set_map(NULL) first");
duke@435 681 assert(method()->has_exception_handlers(), "don't come here w/o work to do");
duke@435 682
duke@435 683 Node* ex_node = saved_ex_oop(ex_map);
duke@435 684 if (ex_node == top()) {
duke@435 685 // No action needed.
duke@435 686 return;
duke@435 687 }
duke@435 688 const TypeInstPtr* ex_type = _gvn.type(ex_node)->isa_instptr();
duke@435 689 NOT_PRODUCT(if (ex_type==NULL) tty->print_cr("*** Exception not InstPtr"));
duke@435 690 if (ex_type == NULL)
duke@435 691 ex_type = TypeOopPtr::make_from_klass(env()->Throwable_klass())->is_instptr();
duke@435 692
duke@435 693 // determine potential exception handlers
duke@435 694 ciExceptionHandlerStream handlers(method(), bci(),
duke@435 695 ex_type->klass()->as_instance_klass(),
duke@435 696 ex_type->klass_is_exact());
duke@435 697
duke@435 698 // Start executing from the given throw state. (Keep its stack, for now.)
duke@435 699 // Get the exception oop as known at compile time.
duke@435 700 ex_node = use_exception_state(ex_map);
duke@435 701
duke@435 702 // Get the exception oop klass from its header
duke@435 703 Node* ex_klass_node = NULL;
duke@435 704 if (has_ex_handler() && !ex_type->klass_is_exact()) {
duke@435 705 Node* p = basic_plus_adr( ex_node, ex_node, oopDesc::klass_offset_in_bytes());
kvn@599 706 ex_klass_node = _gvn.transform( LoadKlassNode::make(_gvn, immutable_memory(), p, TypeInstPtr::KLASS, TypeKlassPtr::OBJECT) );
duke@435 707
duke@435 708 // Compute the exception klass a little more cleverly.
duke@435 709 // Obvious solution is to simple do a LoadKlass from the 'ex_node'.
duke@435 710 // However, if the ex_node is a PhiNode, I'm going to do a LoadKlass for
duke@435 711 // each arm of the Phi. If I know something clever about the exceptions
duke@435 712 // I'm loading the class from, I can replace the LoadKlass with the
duke@435 713 // klass constant for the exception oop.
duke@435 714 if( ex_node->is_Phi() ) {
duke@435 715 ex_klass_node = new (C, ex_node->req()) PhiNode( ex_node->in(0), TypeKlassPtr::OBJECT );
duke@435 716 for( uint i = 1; i < ex_node->req(); i++ ) {
duke@435 717 Node* p = basic_plus_adr( ex_node->in(i), ex_node->in(i), oopDesc::klass_offset_in_bytes() );
kvn@599 718 Node* k = _gvn.transform( LoadKlassNode::make(_gvn, immutable_memory(), p, TypeInstPtr::KLASS, TypeKlassPtr::OBJECT) );
duke@435 719 ex_klass_node->init_req( i, k );
duke@435 720 }
duke@435 721 _gvn.set_type(ex_klass_node, TypeKlassPtr::OBJECT);
duke@435 722
duke@435 723 }
duke@435 724 }
duke@435 725
duke@435 726 // Scan the exception table for applicable handlers.
duke@435 727 // If none, we can call rethrow() and be done!
duke@435 728 // If precise (loaded with no subklasses), insert a D.S. style
duke@435 729 // pointer compare to the correct handler and loop back.
duke@435 730 // If imprecise, switch to the Rethrow VM-call style handling.
duke@435 731
duke@435 732 int remaining = handlers.count_remaining();
duke@435 733
duke@435 734 // iterate through all entries sequentially
duke@435 735 for (;!handlers.is_done(); handlers.next()) {
duke@435 736 ciExceptionHandler* handler = handlers.handler();
duke@435 737
duke@435 738 if (handler->is_rethrow()) {
duke@435 739 // If we fell off the end of the table without finding an imprecise
duke@435 740 // exception klass (and without finding a generic handler) then we
duke@435 741 // know this exception is not handled in this method. We just rethrow
duke@435 742 // the exception into the caller.
duke@435 743 throw_to_exit(make_exception_state(ex_node));
duke@435 744 return;
duke@435 745 }
duke@435 746
duke@435 747 // exception handler bci range covers throw_bci => investigate further
duke@435 748 int handler_bci = handler->handler_bci();
duke@435 749
duke@435 750 if (remaining == 1) {
duke@435 751 push_ex_oop(ex_node); // Push exception oop for handler
duke@435 752 #ifndef PRODUCT
duke@435 753 if (PrintOpto && WizardMode) {
duke@435 754 tty->print_cr(" Catching every inline exception bci:%d -> handler_bci:%d", bci(), handler_bci);
duke@435 755 }
duke@435 756 #endif
duke@435 757 merge_exception(handler_bci); // jump to handler
duke@435 758 return; // No more handling to be done here!
duke@435 759 }
duke@435 760
never@1779 761 // Get the handler's klass
never@1779 762 ciInstanceKlass* klass = handler->catch_klass();
duke@435 763
never@1779 764 if (!klass->is_loaded()) { // klass is not loaded?
never@1779 765 // fall through into catch_call_exceptions which will emit a
never@1779 766 // handler with an uncommon trap.
never@1779 767 break;
duke@435 768 }
duke@435 769
duke@435 770 if (klass->is_interface()) // should not happen, but...
duke@435 771 break; // bail out
duke@435 772
never@1779 773 // Check the type of the exception against the catch type
duke@435 774 const TypeKlassPtr *tk = TypeKlassPtr::make(klass);
duke@435 775 Node* con = _gvn.makecon(tk);
never@1779 776 Node* not_subtype_ctrl = gen_subtype_check(ex_klass_node, con);
never@1779 777 if (!stopped()) {
never@1779 778 PreserveJVMState pjvms(this);
never@1779 779 const TypeInstPtr* tinst = TypeOopPtr::make_from_klass_unique(klass)->cast_to_ptr_type(TypePtr::NotNull)->is_instptr();
never@1779 780 assert(klass->has_subklass() || tinst->klass_is_exact(), "lost exactness");
duke@435 781 Node* ex_oop = _gvn.transform(new (C, 2) CheckCastPPNode(control(), ex_node, tinst));
duke@435 782 push_ex_oop(ex_oop); // Push exception oop for handler
duke@435 783 #ifndef PRODUCT
duke@435 784 if (PrintOpto && WizardMode) {
duke@435 785 tty->print(" Catching inline exception bci:%d -> handler_bci:%d -- ", bci(), handler_bci);
duke@435 786 klass->print_name();
duke@435 787 tty->cr();
duke@435 788 }
duke@435 789 #endif
duke@435 790 merge_exception(handler_bci);
duke@435 791 }
never@1779 792 set_control(not_subtype_ctrl);
duke@435 793
duke@435 794 // Come here if exception does not match handler.
duke@435 795 // Carry on with more handler checks.
duke@435 796 --remaining;
duke@435 797 }
duke@435 798
duke@435 799 assert(!stopped(), "you should return if you finish the chain");
duke@435 800
duke@435 801 // Oops, need to call into the VM to resolve the klasses at runtime.
duke@435 802 // Note: This call must not deoptimize, since it is not a real at this bci!
duke@435 803 kill_dead_locals();
duke@435 804
duke@435 805 make_runtime_call(RC_NO_LEAF | RC_MUST_THROW,
duke@435 806 OptoRuntime::rethrow_Type(),
duke@435 807 OptoRuntime::rethrow_stub(),
duke@435 808 NULL, NULL,
duke@435 809 ex_node);
duke@435 810
duke@435 811 // Rethrow is a pure call, no side effects, only a result.
duke@435 812 // The result cannot be allocated, so we use I_O
duke@435 813
duke@435 814 // Catch exceptions from the rethrow
duke@435 815 catch_call_exceptions(handlers);
duke@435 816 }
duke@435 817
duke@435 818
duke@435 819 // (Note: Moved add_debug_info into GraphKit::add_safepoint_edges.)
duke@435 820
duke@435 821
duke@435 822 #ifndef PRODUCT
duke@435 823 void Parse::count_compiled_calls(bool at_method_entry, bool is_inline) {
duke@435 824 if( CountCompiledCalls ) {
duke@435 825 if( at_method_entry ) {
duke@435 826 // bump invocation counter if top method (for statistics)
duke@435 827 if (CountCompiledCalls && depth() == 1) {
duke@435 828 const TypeInstPtr* addr_type = TypeInstPtr::make(method());
duke@435 829 Node* adr1 = makecon(addr_type);
duke@435 830 Node* adr2 = basic_plus_adr(adr1, adr1, in_bytes(methodOopDesc::compiled_invocation_counter_offset()));
duke@435 831 increment_counter(adr2);
duke@435 832 }
duke@435 833 } else if (is_inline) {
duke@435 834 switch (bc()) {
duke@435 835 case Bytecodes::_invokevirtual: increment_counter(SharedRuntime::nof_inlined_calls_addr()); break;
duke@435 836 case Bytecodes::_invokeinterface: increment_counter(SharedRuntime::nof_inlined_interface_calls_addr()); break;
duke@435 837 case Bytecodes::_invokestatic:
jrose@1161 838 case Bytecodes::_invokedynamic:
duke@435 839 case Bytecodes::_invokespecial: increment_counter(SharedRuntime::nof_inlined_static_calls_addr()); break;
duke@435 840 default: fatal("unexpected call bytecode");
duke@435 841 }
duke@435 842 } else {
duke@435 843 switch (bc()) {
duke@435 844 case Bytecodes::_invokevirtual: increment_counter(SharedRuntime::nof_normal_calls_addr()); break;
duke@435 845 case Bytecodes::_invokeinterface: increment_counter(SharedRuntime::nof_interface_calls_addr()); break;
duke@435 846 case Bytecodes::_invokestatic:
jrose@1161 847 case Bytecodes::_invokedynamic:
duke@435 848 case Bytecodes::_invokespecial: increment_counter(SharedRuntime::nof_static_calls_addr()); break;
duke@435 849 default: fatal("unexpected call bytecode");
duke@435 850 }
duke@435 851 }
duke@435 852 }
duke@435 853 }
duke@435 854 #endif //PRODUCT
duke@435 855
duke@435 856
duke@435 857 // Identify possible target method and inlining style
duke@435 858 ciMethod* Parse::optimize_inlining(ciMethod* caller, int bci, ciInstanceKlass* klass,
duke@435 859 ciMethod *dest_method, const TypeOopPtr* receiver_type) {
duke@435 860 // only use for virtual or interface calls
duke@435 861
duke@435 862 // If it is obviously final, do not bother to call find_monomorphic_target,
duke@435 863 // because the class hierarchy checks are not needed, and may fail due to
duke@435 864 // incompletely loaded classes. Since we do our own class loading checks
duke@435 865 // in this module, we may confidently bind to any method.
duke@435 866 if (dest_method->can_be_statically_bound()) {
duke@435 867 return dest_method;
duke@435 868 }
duke@435 869
duke@435 870 // Attempt to improve the receiver
duke@435 871 bool actual_receiver_is_exact = false;
duke@435 872 ciInstanceKlass* actual_receiver = klass;
duke@435 873 if (receiver_type != NULL) {
duke@435 874 // Array methods are all inherited from Object, and are monomorphic.
duke@435 875 if (receiver_type->isa_aryptr() &&
duke@435 876 dest_method->holder() == env()->Object_klass()) {
duke@435 877 return dest_method;
duke@435 878 }
duke@435 879
duke@435 880 // All other interesting cases are instance klasses.
duke@435 881 if (!receiver_type->isa_instptr()) {
duke@435 882 return NULL;
duke@435 883 }
duke@435 884
duke@435 885 ciInstanceKlass *ikl = receiver_type->klass()->as_instance_klass();
duke@435 886 if (ikl->is_loaded() && ikl->is_initialized() && !ikl->is_interface() &&
never@802 887 (ikl == actual_receiver || ikl->is_subtype_of(actual_receiver))) {
duke@435 888 // ikl is a same or better type than the original actual_receiver,
duke@435 889 // e.g. static receiver from bytecodes.
duke@435 890 actual_receiver = ikl;
duke@435 891 // Is the actual_receiver exact?
duke@435 892 actual_receiver_is_exact = receiver_type->klass_is_exact();
duke@435 893 }
duke@435 894 }
duke@435 895
duke@435 896 ciInstanceKlass* calling_klass = caller->holder();
duke@435 897 ciMethod* cha_monomorphic_target = dest_method->find_monomorphic_target(calling_klass, klass, actual_receiver);
duke@435 898 if (cha_monomorphic_target != NULL) {
duke@435 899 assert(!cha_monomorphic_target->is_abstract(), "");
duke@435 900 // Look at the method-receiver type. Does it add "too much information"?
duke@435 901 ciKlass* mr_klass = cha_monomorphic_target->holder();
duke@435 902 const Type* mr_type = TypeInstPtr::make(TypePtr::BotPTR, mr_klass);
duke@435 903 if (receiver_type == NULL || !receiver_type->higher_equal(mr_type)) {
duke@435 904 // Calling this method would include an implicit cast to its holder.
duke@435 905 // %%% Not yet implemented. Would throw minor asserts at present.
duke@435 906 // %%% The most common wins are already gained by +UseUniqueSubclasses.
duke@435 907 // To fix, put the higher_equal check at the call of this routine,
duke@435 908 // and add a CheckCastPP to the receiver.
duke@435 909 if (TraceDependencies) {
duke@435 910 tty->print_cr("found unique CHA method, but could not cast up");
duke@435 911 tty->print(" method = ");
duke@435 912 cha_monomorphic_target->print();
duke@435 913 tty->cr();
duke@435 914 }
duke@435 915 if (C->log() != NULL) {
duke@435 916 C->log()->elem("missed_CHA_opportunity klass='%d' method='%d'",
duke@435 917 C->log()->identify(klass),
duke@435 918 C->log()->identify(cha_monomorphic_target));
duke@435 919 }
duke@435 920 cha_monomorphic_target = NULL;
duke@435 921 }
duke@435 922 }
duke@435 923 if (cha_monomorphic_target != NULL) {
duke@435 924 // Hardwiring a virtual.
duke@435 925 // If we inlined because CHA revealed only a single target method,
duke@435 926 // then we are dependent on that target method not getting overridden
duke@435 927 // by dynamic class loading. Be sure to test the "static" receiver
duke@435 928 // dest_method here, as opposed to the actual receiver, which may
duke@435 929 // falsely lead us to believe that the receiver is final or private.
duke@435 930 C->dependencies()->assert_unique_concrete_method(actual_receiver, cha_monomorphic_target);
duke@435 931 return cha_monomorphic_target;
duke@435 932 }
duke@435 933
duke@435 934 // If the type is exact, we can still bind the method w/o a vcall.
duke@435 935 // (This case comes after CHA so we can see how much extra work it does.)
duke@435 936 if (actual_receiver_is_exact) {
duke@435 937 // In case of evolution, there is a dependence on every inlined method, since each
duke@435 938 // such method can be changed when its class is redefined.
duke@435 939 ciMethod* exact_method = dest_method->resolve_invoke(calling_klass, actual_receiver);
duke@435 940 if (exact_method != NULL) {
duke@435 941 #ifndef PRODUCT
duke@435 942 if (PrintOpto) {
duke@435 943 tty->print(" Calling method via exact type @%d --- ", bci);
duke@435 944 exact_method->print_name();
duke@435 945 tty->cr();
duke@435 946 }
duke@435 947 #endif
duke@435 948 return exact_method;
duke@435 949 }
duke@435 950 }
duke@435 951
duke@435 952 return NULL;
duke@435 953 }

mercurial