src/share/vm/opto/doCall.cpp

Tue, 09 Oct 2012 10:11:38 +0200

author
roland
date
Tue, 09 Oct 2012 10:11:38 +0200
changeset 4159
8e47bac5643a
parent 4115
e626685e9f6c
child 4205
a3ecd773a7b9
permissions
-rw-r--r--

7054512: Compress class pointers after perm gen removal
Summary: support of compress class pointers in the compilers.
Reviewed-by: kvn, twisti

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

mercurial