src/share/vm/opto/callGenerator.cpp

Wed, 27 Apr 2016 01:25:04 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:25:04 +0800
changeset 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/hotspot/
changeset: 6782:28b50d07f6f8
tag: jdk8u25-b17

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

mercurial