src/share/vm/runtime/simpleThresholdPolicy.cpp

Wed, 17 Aug 2011 10:32:53 -0700

author
jcoomes
date
Wed, 17 Aug 2011 10:32:53 -0700
changeset 3057
24cee90e9453
parent 2988
2c359f27615c
child 3035
43f9d800f276
permissions
-rw-r--r--

6791672: enable 1G and larger pages on solaris
Reviewed-by: ysr, iveresov, johnc

     1 /*
     2  * Copyright (c) 2010, 2011, 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 "compiler/compileBroker.hpp"
    27 #include "memory/resourceArea.hpp"
    28 #include "runtime/arguments.hpp"
    29 #include "runtime/simpleThresholdPolicy.hpp"
    30 #include "runtime/simpleThresholdPolicy.inline.hpp"
    31 #include "code/scopeDesc.hpp"
    33 // Print an event.
    34 void SimpleThresholdPolicy::print_event(EventType type, methodHandle mh, methodHandle imh,
    35                                         int bci, CompLevel level) {
    36   bool inlinee_event = mh() != imh();
    38   ttyLocker tty_lock;
    39   tty->print("%lf: [", os::elapsedTime());
    41   int invocation_count = mh->invocation_count();
    42   int backedge_count = mh->backedge_count();
    43   switch(type) {
    44   case CALL:
    45     tty->print("call");
    46     break;
    47   case LOOP:
    48     tty->print("loop");
    49     break;
    50   case COMPILE:
    51     tty->print("compile");
    52     break;
    53   case REMOVE_FROM_QUEUE:
    54     tty->print("remove-from-queue");
    55     break;
    56   case UPDATE_IN_QUEUE:
    57     tty->print("update-in-queue");
    58     break;
    59   case REPROFILE:
    60     tty->print("reprofile");
    61     break;
    62   case MAKE_NOT_ENTRANT:
    63     tty->print("make-not-entrant");
    64     break;
    65   default:
    66     tty->print("unknown");
    67   }
    69   tty->print(" level: %d ", level);
    71   ResourceMark rm;
    72   char *method_name = mh->name_and_sig_as_C_string();
    73   tty->print("[%s", method_name);
    74   if (inlinee_event) {
    75     char *inlinee_name = imh->name_and_sig_as_C_string();
    76     tty->print(" [%s]] ", inlinee_name);
    77   }
    78   else tty->print("] ");
    79   tty->print("@%d queues: %d,%d", bci, CompileBroker::queue_size(CompLevel_full_profile),
    80                                        CompileBroker::queue_size(CompLevel_full_optimization));
    82   print_specific(type, mh, imh, bci, level);
    84   if (type != COMPILE) {
    85     methodDataHandle mdh = mh->method_data();
    86     int mdo_invocations = 0, mdo_backedges = 0;
    87     int mdo_invocations_start = 0, mdo_backedges_start = 0;
    88     if (mdh() != NULL) {
    89       mdo_invocations = mdh->invocation_count();
    90       mdo_backedges = mdh->backedge_count();
    91       mdo_invocations_start = mdh->invocation_count_start();
    92       mdo_backedges_start = mdh->backedge_count_start();
    93     }
    94     tty->print(" total: %d,%d mdo: %d(%d),%d(%d)",
    95                invocation_count, backedge_count,
    96                mdo_invocations, mdo_invocations_start,
    97                mdo_backedges, mdo_backedges_start);
    98     tty->print(" max levels: %d,%d",
    99                 mh->highest_comp_level(), mh->highest_osr_comp_level());
   100     if (inlinee_event) {
   101       tty->print(" inlinee max levels: %d,%d", imh->highest_comp_level(), imh->highest_osr_comp_level());
   102     }
   103     tty->print(" compilable: ");
   104     bool need_comma = false;
   105     if (!mh->is_not_compilable(CompLevel_full_profile)) {
   106       tty->print("c1");
   107       need_comma = true;
   108     }
   109     if (!mh->is_not_compilable(CompLevel_full_optimization)) {
   110       if (need_comma) tty->print(", ");
   111       tty->print("c2");
   112       need_comma = true;
   113     }
   114     if (!mh->is_not_osr_compilable()) {
   115       if (need_comma) tty->print(", ");
   116       tty->print("osr");
   117     }
   118     tty->print(" status:");
   119     if (mh->queued_for_compilation()) {
   120       tty->print(" in queue");
   121     } else tty->print(" idle");
   122   }
   123   tty->print_cr("]");
   124 }
   126 void SimpleThresholdPolicy::initialize() {
   127   if (FLAG_IS_DEFAULT(CICompilerCount)) {
   128     FLAG_SET_DEFAULT(CICompilerCount, 3);
   129   }
   130   int count = CICompilerCount;
   131   if (CICompilerCountPerCPU) {
   132     count = MAX2(log2_intptr(os::active_processor_count()), 1) * 3 / 2;
   133   }
   134   set_c1_count(MAX2(count / 3, 1));
   135   set_c2_count(MAX2(count - count / 3, 1));
   136 }
   138 void SimpleThresholdPolicy::set_carry_if_necessary(InvocationCounter *counter) {
   139   if (!counter->carry() && counter->count() > InvocationCounter::count_limit / 2) {
   140     counter->set_carry_flag();
   141   }
   142 }
   144 // Set carry flags on the counters if necessary
   145 void SimpleThresholdPolicy::handle_counter_overflow(methodOop method) {
   146   set_carry_if_necessary(method->invocation_counter());
   147   set_carry_if_necessary(method->backedge_counter());
   148   methodDataOop mdo = method->method_data();
   149   if (mdo != NULL) {
   150     set_carry_if_necessary(mdo->invocation_counter());
   151     set_carry_if_necessary(mdo->backedge_counter());
   152   }
   153 }
   155 // Called with the queue locked and with at least one element
   156 CompileTask* SimpleThresholdPolicy::select_task(CompileQueue* compile_queue) {
   157   return compile_queue->first();
   158 }
   160 void SimpleThresholdPolicy::reprofile(ScopeDesc* trap_scope, bool is_osr) {
   161   for (ScopeDesc* sd = trap_scope;; sd = sd->sender()) {
   162     if (PrintTieredEvents) {
   163       methodHandle mh(sd->method());
   164       print_event(REPROFILE, mh, mh, InvocationEntryBci, CompLevel_none);
   165     }
   166     methodDataOop mdo = sd->method()->method_data();
   167     if (mdo != NULL) {
   168       mdo->reset_start_counters();
   169     }
   170     if (sd->is_top()) break;
   171   }
   172 }
   174 nmethod* SimpleThresholdPolicy::event(methodHandle method, methodHandle inlinee,
   175                                       int branch_bci, int bci, CompLevel comp_level, nmethod* nm, TRAPS) {
   176   if (comp_level == CompLevel_none &&
   177       JvmtiExport::can_post_interpreter_events()) {
   178     assert(THREAD->is_Java_thread(), "Should be java thread");
   179     if (((JavaThread*)THREAD)->is_interp_only_mode()) {
   180       return NULL;
   181     }
   182   }
   183   nmethod *osr_nm = NULL;
   185   handle_counter_overflow(method());
   186   if (method() != inlinee()) {
   187     handle_counter_overflow(inlinee());
   188   }
   190   if (PrintTieredEvents) {
   191     print_event(bci == InvocationEntryBci ? CALL : LOOP, method, inlinee, bci, comp_level);
   192   }
   194   if (bci == InvocationEntryBci) {
   195     method_invocation_event(method, inlinee, comp_level, nm, THREAD);
   196   } else {
   197     method_back_branch_event(method, inlinee, bci, comp_level, nm, THREAD);
   198     // method == inlinee if the event originated in the main method
   199     int highest_level = inlinee->highest_osr_comp_level();
   200     if (highest_level > comp_level) {
   201       osr_nm = inlinee->lookup_osr_nmethod_for(bci, highest_level, false);
   202     }
   203   }
   204   return osr_nm;
   205 }
   207 // Check if the method can be compiled, change level if necessary
   208 void SimpleThresholdPolicy::compile(methodHandle mh, int bci, CompLevel level, TRAPS) {
   209   // Take the given ceiling into the account.
   210   // NOTE: You can set it to 1 to get a pure C1 version.
   211   if ((CompLevel)TieredStopAtLevel < level) {
   212     level = (CompLevel)TieredStopAtLevel;
   213   }
   214   if (level == CompLevel_none) {
   215     return;
   216   }
   217   // Check if the method can be compiled. If it cannot be compiled with C1, continue profiling
   218   // in the interpreter and then compile with C2 (the transition function will request that,
   219   // see common() ). If the method cannot be compiled with C2 but still can with C1, compile it with
   220   // pure C1.
   221   if (!can_be_compiled(mh, level)) {
   222     if (level == CompLevel_full_optimization && can_be_compiled(mh, CompLevel_simple)) {
   223         compile(mh, bci, CompLevel_simple, THREAD);
   224     }
   225     return;
   226   }
   227   if (bci != InvocationEntryBci && mh->is_not_osr_compilable()) {
   228     return;
   229   }
   230   if (PrintTieredEvents) {
   231     print_event(COMPILE, mh, mh, bci, level);
   232   }
   233   if (!CompileBroker::compilation_is_in_queue(mh, bci)) {
   234     submit_compile(mh, bci, level, THREAD);
   235   }
   236 }
   238 // Tell the broker to compile the method
   239 void SimpleThresholdPolicy::submit_compile(methodHandle mh, int bci, CompLevel level, TRAPS) {
   240   int hot_count = (bci == InvocationEntryBci) ? mh->invocation_count() : mh->backedge_count();
   241   CompileBroker::compile_method(mh, bci, level, mh, hot_count, "tiered", THREAD);
   242 }
   244 // Call and loop predicates determine whether a transition to a higher
   245 // compilation level should be performed (pointers to predicate functions
   246 // are passed to common() transition function).
   247 bool SimpleThresholdPolicy::loop_predicate(int i, int b, CompLevel cur_level) {
   248   switch(cur_level) {
   249   case CompLevel_none:
   250   case CompLevel_limited_profile: {
   251     return loop_predicate_helper<CompLevel_none>(i, b, 1.0);
   252   }
   253   case CompLevel_full_profile: {
   254     return loop_predicate_helper<CompLevel_full_profile>(i, b, 1.0);
   255   }
   256   default:
   257     return true;
   258   }
   259 }
   261 bool SimpleThresholdPolicy::call_predicate(int i, int b, CompLevel cur_level) {
   262   switch(cur_level) {
   263   case CompLevel_none:
   264   case CompLevel_limited_profile: {
   265     return call_predicate_helper<CompLevel_none>(i, b, 1.0);
   266   }
   267   case CompLevel_full_profile: {
   268     return call_predicate_helper<CompLevel_full_profile>(i, b, 1.0);
   269   }
   270   default:
   271     return true;
   272   }
   273 }
   275 // Determine is a method is mature.
   276 bool SimpleThresholdPolicy::is_mature(methodOop method) {
   277   if (is_trivial(method)) return true;
   278   methodDataOop mdo = method->method_data();
   279   if (mdo != NULL) {
   280     int i = mdo->invocation_count();
   281     int b = mdo->backedge_count();
   282     double k = ProfileMaturityPercentage / 100.0;
   283     return call_predicate_helper<CompLevel_full_profile>(i, b, k) ||
   284            loop_predicate_helper<CompLevel_full_profile>(i, b, k);
   285   }
   286   return false;
   287 }
   289 // Common transition function. Given a predicate determines if a method should transition to another level.
   290 CompLevel SimpleThresholdPolicy::common(Predicate p, methodOop method, CompLevel cur_level) {
   291   if (is_trivial(method)) return CompLevel_simple;
   293   CompLevel next_level = cur_level;
   294   int i = method->invocation_count();
   295   int b = method->backedge_count();
   297   switch(cur_level) {
   298   case CompLevel_none:
   299     // If we were at full profile level, would we switch to full opt?
   300     if (common(p, method, CompLevel_full_profile) == CompLevel_full_optimization) {
   301       next_level = CompLevel_full_optimization;
   302     } else if ((this->*p)(i, b, cur_level)) {
   303       next_level = CompLevel_full_profile;
   304     }
   305     break;
   306   case CompLevel_limited_profile:
   307   case CompLevel_full_profile:
   308     {
   309       methodDataOop mdo = method->method_data();
   310       if (mdo != NULL) {
   311         if (mdo->would_profile()) {
   312           int mdo_i = mdo->invocation_count_delta();
   313           int mdo_b = mdo->backedge_count_delta();
   314           if ((this->*p)(mdo_i, mdo_b, cur_level)) {
   315             next_level = CompLevel_full_optimization;
   316           }
   317         } else {
   318           next_level = CompLevel_full_optimization;
   319         }
   320       }
   321     }
   322     break;
   323   }
   324   return next_level;
   325 }
   327 // Determine if a method should be compiled with a normal entry point at a different level.
   328 CompLevel SimpleThresholdPolicy::call_event(methodOop method,  CompLevel cur_level) {
   329   CompLevel osr_level = MIN2((CompLevel) method->highest_osr_comp_level(),
   330                              common(&SimpleThresholdPolicy::loop_predicate, method, cur_level));
   331   CompLevel next_level = common(&SimpleThresholdPolicy::call_predicate, method, cur_level);
   333   // If OSR method level is greater than the regular method level, the levels should be
   334   // equalized by raising the regular method level in order to avoid OSRs during each
   335   // invocation of the method.
   336   if (osr_level == CompLevel_full_optimization && cur_level == CompLevel_full_profile) {
   337     methodDataOop mdo = method->method_data();
   338     guarantee(mdo != NULL, "MDO should not be NULL");
   339     if (mdo->invocation_count() >= 1) {
   340       next_level = CompLevel_full_optimization;
   341     }
   342   } else {
   343     next_level = MAX2(osr_level, next_level);
   344   }
   346   return next_level;
   347 }
   349 // Determine if we should do an OSR compilation of a given method.
   350 CompLevel SimpleThresholdPolicy::loop_event(methodOop method, CompLevel cur_level) {
   351   CompLevel next_level = common(&SimpleThresholdPolicy::loop_predicate, method, cur_level);
   352   if (cur_level == CompLevel_none) {
   353     // If there is a live OSR method that means that we deopted to the interpreter
   354     // for the transition.
   355     CompLevel osr_level = MIN2((CompLevel)method->highest_osr_comp_level(), next_level);
   356     if (osr_level > CompLevel_none) {
   357       return osr_level;
   358     }
   359   }
   360   return next_level;
   361 }
   364 // Handle the invocation event.
   365 void SimpleThresholdPolicy::method_invocation_event(methodHandle mh, methodHandle imh,
   366                                               CompLevel level, nmethod* nm, TRAPS) {
   367   if (is_compilation_enabled() && !CompileBroker::compilation_is_in_queue(mh, InvocationEntryBci)) {
   368     CompLevel next_level = call_event(mh(), level);
   369     if (next_level != level) {
   370       compile(mh, InvocationEntryBci, next_level, THREAD);
   371     }
   372   }
   373 }
   375 // Handle the back branch event. Notice that we can compile the method
   376 // with a regular entry from here.
   377 void SimpleThresholdPolicy::method_back_branch_event(methodHandle mh, methodHandle imh,
   378                                                      int bci, CompLevel level, nmethod* nm, TRAPS) {
   379   // If the method is already compiling, quickly bail out.
   380   if (is_compilation_enabled() && !CompileBroker::compilation_is_in_queue(mh, bci)) {
   381     // Use loop event as an opportinity to also check there's been
   382     // enough calls.
   383     CompLevel cur_level = comp_level(mh());
   384     CompLevel next_level = call_event(mh(), cur_level);
   385     CompLevel next_osr_level = loop_event(mh(), level);
   387     next_level = MAX2(next_level,
   388                       next_osr_level < CompLevel_full_optimization ? next_osr_level : cur_level);
   389     bool is_compiling = false;
   390     if (next_level != cur_level) {
   391       compile(mh, InvocationEntryBci, next_level, THREAD);
   392       is_compiling = true;
   393     }
   395     // Do the OSR version
   396     if (!is_compiling && next_osr_level != level) {
   397       compile(mh, bci, next_osr_level, THREAD);
   398     }
   399   }
   400 }

mercurial