src/share/vm/opto/callGenerator.cpp

Mon, 30 Jul 2012 09:49:25 -0700

author
kvn
date
Mon, 30 Jul 2012 09:49:25 -0700
changeset 3971
6c5b7a6becc8
parent 3969
1d7922586cf6
child 4003
7a302948f5a4
permissions
-rw-r--r--

7187454: stack overflow in C2 compiler thread on Solaris x86
Summary: Added new FormatBufferResource class to use thread's resource area for error message buffer.
Reviewed-by: twisti

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

mercurial