src/share/vm/runtime/advancedThresholdPolicy.cpp

Fri, 11 Apr 2014 12:29:24 +0200

author
pliden
date
Fri, 11 Apr 2014 12:29:24 +0200
changeset 6906
581e70386ec9
parent 6649
7150b16fda52
child 6876
710a3c8b516e
child 7179
7301840ea20e
permissions
-rw-r--r--

8039147: Cleanup SuspendibleThreadSet
Reviewed-by: brutisso, tschatzl, mgerdin

iveresov@2630 1 /*
jiangli@4936 2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
iveresov@2890 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
iveresov@2890 4 *
iveresov@2890 5 * This code is free software; you can redistribute it and/or modify it
iveresov@2890 6 * under the terms of the GNU General Public License version 2 only, as
iveresov@2890 7 * published by the Free Software Foundation.
iveresov@2890 8 *
iveresov@2890 9 * This code is distributed in the hope that it will be useful, but WITHOUT
iveresov@2890 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
iveresov@2890 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
iveresov@2890 12 * version 2 for more details (a copy is included in the LICENSE file that
iveresov@2890 13 * accompanied this code).
iveresov@2890 14 *
iveresov@2890 15 * You should have received a copy of the GNU General Public License version
iveresov@2890 16 * 2 along with this work; if not, write to the Free Software Foundation,
iveresov@2890 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
iveresov@2890 18 *
iveresov@2890 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
iveresov@2890 20 * or visit www.oracle.com if you need additional information or have any
iveresov@2890 21 * questions.
iveresov@2890 22 *
iveresov@2890 23 */
iveresov@2630 24
iveresov@2630 25 #include "precompiled.hpp"
iveresov@2630 26 #include "runtime/advancedThresholdPolicy.hpp"
iveresov@2630 27 #include "runtime/simpleThresholdPolicy.inline.hpp"
iveresov@2630 28
iveresov@2630 29 #ifdef TIERED
iveresov@2630 30 // Print an event.
iveresov@2630 31 void AdvancedThresholdPolicy::print_specific(EventType type, methodHandle mh, methodHandle imh,
iveresov@2630 32 int bci, CompLevel level) {
twisti@4111 33 tty->print(" rate=");
iveresov@2630 34 if (mh->prev_time() == 0) tty->print("n/a");
iveresov@2630 35 else tty->print("%f", mh->rate());
iveresov@2630 36
twisti@4111 37 tty->print(" k=%.2lf,%.2lf", threshold_scale(CompLevel_full_profile, Tier3LoadFeedback),
twisti@4111 38 threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback));
iveresov@2630 39
iveresov@2630 40 }
iveresov@2630 41
iveresov@2630 42 void AdvancedThresholdPolicy::initialize() {
iveresov@2630 43 // Turn on ergonomic compiler count selection
iveresov@2630 44 if (FLAG_IS_DEFAULT(CICompilerCountPerCPU) && FLAG_IS_DEFAULT(CICompilerCount)) {
iveresov@2630 45 FLAG_SET_DEFAULT(CICompilerCountPerCPU, true);
iveresov@2630 46 }
iveresov@2630 47 int count = CICompilerCount;
iveresov@2630 48 if (CICompilerCountPerCPU) {
iveresov@2630 49 // Simple log n seems to grow too slowly for tiered, try something faster: log n * log log n
iveresov@2630 50 int log_cpu = log2_intptr(os::active_processor_count());
iveresov@2630 51 int loglog_cpu = log2_intptr(MAX2(log_cpu, 1));
iveresov@2630 52 count = MAX2(log_cpu * loglog_cpu, 1) * 3 / 2;
iveresov@2630 53 }
iveresov@2630 54
iveresov@2630 55 set_c1_count(MAX2(count / 3, 1));
anoll@6649 56 set_c2_count(MAX2(count - c1_count(), 1));
anoll@6649 57 FLAG_SET_ERGO(intx, CICompilerCount, c1_count() + c2_count());
iveresov@2630 58
iveresov@2630 59 // Some inlining tuning
iveresov@2630 60 #ifdef X86
iveresov@2630 61 if (FLAG_IS_DEFAULT(InlineSmallCode)) {
iveresov@2630 62 FLAG_SET_DEFAULT(InlineSmallCode, 2000);
iveresov@2630 63 }
iveresov@2630 64 #endif
iveresov@2630 65
iveresov@2630 66 #ifdef SPARC
iveresov@2630 67 if (FLAG_IS_DEFAULT(InlineSmallCode)) {
iveresov@2630 68 FLAG_SET_DEFAULT(InlineSmallCode, 2500);
iveresov@2630 69 }
iveresov@2630 70 #endif
iveresov@2630 71
anoll@5151 72 set_increase_threshold_at_ratio();
iveresov@2630 73 set_start_time(os::javaTimeMillis());
iveresov@2630 74 }
iveresov@2630 75
iveresov@2630 76 // update_rate() is called from select_task() while holding a compile queue lock.
coleenp@4037 77 void AdvancedThresholdPolicy::update_rate(jlong t, Method* m) {
jiangli@4936 78 JavaThread* THREAD = JavaThread::current();
iveresov@2630 79 if (is_old(m)) {
iveresov@2630 80 // We don't remove old methods from the queue,
iveresov@2630 81 // so we can just zero the rate.
jiangli@4936 82 m->set_rate(0, THREAD);
iveresov@2630 83 return;
iveresov@2630 84 }
iveresov@2630 85
iveresov@2630 86 // We don't update the rate if we've just came out of a safepoint.
iveresov@2630 87 // delta_s is the time since last safepoint in milliseconds.
iveresov@2630 88 jlong delta_s = t - SafepointSynchronize::end_of_last_safepoint();
iveresov@2630 89 jlong delta_t = t - (m->prev_time() != 0 ? m->prev_time() : start_time()); // milliseconds since the last measurement
iveresov@2630 90 // How many events were there since the last time?
iveresov@2630 91 int event_count = m->invocation_count() + m->backedge_count();
iveresov@2630 92 int delta_e = event_count - m->prev_event_count();
iveresov@2630 93
iveresov@2630 94 // We should be running for at least 1ms.
iveresov@2630 95 if (delta_s >= TieredRateUpdateMinTime) {
iveresov@2630 96 // And we must've taken the previous point at least 1ms before.
iveresov@2630 97 if (delta_t >= TieredRateUpdateMinTime && delta_e > 0) {
jiangli@4936 98 m->set_prev_time(t, THREAD);
jiangli@4936 99 m->set_prev_event_count(event_count, THREAD);
jiangli@4936 100 m->set_rate((float)delta_e / (float)delta_t, THREAD); // Rate is events per millisecond
iveresov@2630 101 } else
iveresov@2630 102 if (delta_t > TieredRateUpdateMaxTime && delta_e == 0) {
iveresov@2630 103 // If nothing happened for 25ms, zero the rate. Don't modify prev values.
jiangli@4936 104 m->set_rate(0, THREAD);
iveresov@2630 105 }
iveresov@2630 106 }
iveresov@2630 107 }
iveresov@2630 108
iveresov@2630 109 // Check if this method has been stale from a given number of milliseconds.
iveresov@2630 110 // See select_task().
coleenp@4037 111 bool AdvancedThresholdPolicy::is_stale(jlong t, jlong timeout, Method* m) {
iveresov@2630 112 jlong delta_s = t - SafepointSynchronize::end_of_last_safepoint();
iveresov@2630 113 jlong delta_t = t - m->prev_time();
iveresov@2630 114 if (delta_t > timeout && delta_s > timeout) {
iveresov@2630 115 int event_count = m->invocation_count() + m->backedge_count();
iveresov@2630 116 int delta_e = event_count - m->prev_event_count();
iveresov@2630 117 // Return true if there were no events.
iveresov@2630 118 return delta_e == 0;
iveresov@2630 119 }
iveresov@2630 120 return false;
iveresov@2630 121 }
iveresov@2630 122
iveresov@2630 123 // We don't remove old methods from the compile queue even if they have
iveresov@2630 124 // very low activity. See select_task().
coleenp@4037 125 bool AdvancedThresholdPolicy::is_old(Method* method) {
iveresov@2630 126 return method->invocation_count() > 50000 || method->backedge_count() > 500000;
iveresov@2630 127 }
iveresov@2630 128
coleenp@4037 129 double AdvancedThresholdPolicy::weight(Method* method) {
iveresov@2630 130 return (method->rate() + 1) * ((method->invocation_count() + 1) * (method->backedge_count() + 1));
iveresov@2630 131 }
iveresov@2630 132
iveresov@2630 133 // Apply heuristics and return true if x should be compiled before y
coleenp@4037 134 bool AdvancedThresholdPolicy::compare_methods(Method* x, Method* y) {
iveresov@2630 135 if (x->highest_comp_level() > y->highest_comp_level()) {
iveresov@2630 136 // recompilation after deopt
iveresov@2630 137 return true;
iveresov@2630 138 } else
iveresov@2630 139 if (x->highest_comp_level() == y->highest_comp_level()) {
iveresov@2630 140 if (weight(x) > weight(y)) {
iveresov@2630 141 return true;
iveresov@2630 142 }
iveresov@2630 143 }
iveresov@2630 144 return false;
iveresov@2630 145 }
iveresov@2630 146
iveresov@2630 147 // Is method profiled enough?
coleenp@4037 148 bool AdvancedThresholdPolicy::is_method_profiled(Method* method) {
coleenp@4037 149 MethodData* mdo = method->method_data();
iveresov@2630 150 if (mdo != NULL) {
iveresov@2630 151 int i = mdo->invocation_count_delta();
iveresov@2630 152 int b = mdo->backedge_count_delta();
iveresov@2630 153 return call_predicate_helper<CompLevel_full_profile>(i, b, 1);
iveresov@2630 154 }
iveresov@2630 155 return false;
iveresov@2630 156 }
iveresov@2630 157
iveresov@2630 158 // Called with the queue locked and with at least one element
iveresov@2630 159 CompileTask* AdvancedThresholdPolicy::select_task(CompileQueue* compile_queue) {
iveresov@2630 160 CompileTask *max_task = NULL;
coleenp@4142 161 Method* max_method = NULL;
iveresov@2630 162 jlong t = os::javaTimeMillis();
iveresov@2630 163 // Iterate through the queue and find a method with a maximum rate.
iveresov@2630 164 for (CompileTask* task = compile_queue->first(); task != NULL;) {
iveresov@2630 165 CompileTask* next_task = task->next();
coleenp@4037 166 Method* method = task->method();
coleenp@4037 167 MethodData* mdo = method->method_data();
coleenp@4037 168 update_rate(t, method);
iveresov@2630 169 if (max_task == NULL) {
iveresov@2630 170 max_task = task;
iveresov@2630 171 max_method = method;
iveresov@2630 172 } else {
iveresov@2630 173 // If a method has been stale for some time, remove it from the queue.
coleenp@4037 174 if (is_stale(t, TieredCompileTaskTimeout, method) && !is_old(method)) {
iveresov@2630 175 if (PrintTieredEvents) {
iveresov@2988 176 print_event(REMOVE_FROM_QUEUE, method, method, task->osr_bci(), (CompLevel)task->comp_level());
iveresov@2630 177 }
iveresov@2630 178 CompileTaskWrapper ctw(task); // Frees the task
iveresov@2630 179 compile_queue->remove(task);
iveresov@2630 180 method->clear_queued_for_compilation();
iveresov@2630 181 task = next_task;
iveresov@2630 182 continue;
iveresov@2630 183 }
iveresov@2630 184
iveresov@2630 185 // Select a method with a higher rate
coleenp@4037 186 if (compare_methods(method, max_method)) {
iveresov@2630 187 max_task = task;
iveresov@2630 188 max_method = method;
iveresov@2630 189 }
iveresov@2630 190 }
iveresov@2630 191 task = next_task;
iveresov@2630 192 }
iveresov@2630 193
iveresov@3035 194 if (max_task->comp_level() == CompLevel_full_profile && TieredStopAtLevel > CompLevel_full_profile
coleenp@4037 195 && is_method_profiled(max_method)) {
iveresov@2630 196 max_task->set_comp_level(CompLevel_limited_profile);
iveresov@2630 197 if (PrintTieredEvents) {
iveresov@2988 198 print_event(UPDATE_IN_QUEUE, max_method, max_method, max_task->osr_bci(), (CompLevel)max_task->comp_level());
iveresov@2630 199 }
iveresov@2630 200 }
iveresov@2630 201
iveresov@2630 202 return max_task;
iveresov@2630 203 }
iveresov@2630 204
iveresov@2630 205 double AdvancedThresholdPolicy::threshold_scale(CompLevel level, int feedback_k) {
iveresov@2630 206 double queue_size = CompileBroker::queue_size(level);
iveresov@2630 207 int comp_count = compiler_count(level);
iveresov@2630 208 double k = queue_size / (feedback_k * comp_count) + 1;
anoll@5151 209
anoll@5151 210 // Increase C1 compile threshold when the code cache is filled more
anoll@5151 211 // than specified by IncreaseFirstTierCompileThresholdAt percentage.
anoll@5151 212 // The main intention is to keep enough free space for C2 compiled code
anoll@5151 213 // to achieve peak performance if the code cache is under stress.
anoll@5151 214 if ((TieredStopAtLevel == CompLevel_full_optimization) && (level != CompLevel_full_optimization)) {
anoll@5151 215 double current_reverse_free_ratio = CodeCache::reverse_free_ratio();
anoll@5151 216 if (current_reverse_free_ratio > _increase_threshold_at_ratio) {
anoll@5151 217 k *= exp(current_reverse_free_ratio - _increase_threshold_at_ratio);
anoll@5151 218 }
anoll@5151 219 }
iveresov@2630 220 return k;
iveresov@2630 221 }
iveresov@2630 222
iveresov@2630 223 // Call and loop predicates determine whether a transition to a higher
iveresov@2630 224 // compilation level should be performed (pointers to predicate functions
iveresov@2630 225 // are passed to common()).
iveresov@2630 226 // Tier?LoadFeedback is basically a coefficient that determines of
iveresov@2630 227 // how many methods per compiler thread can be in the queue before
iveresov@2630 228 // the threshold values double.
iveresov@2630 229 bool AdvancedThresholdPolicy::loop_predicate(int i, int b, CompLevel cur_level) {
iveresov@2630 230 switch(cur_level) {
iveresov@2630 231 case CompLevel_none:
iveresov@2630 232 case CompLevel_limited_profile: {
iveresov@2630 233 double k = threshold_scale(CompLevel_full_profile, Tier3LoadFeedback);
iveresov@2630 234 return loop_predicate_helper<CompLevel_none>(i, b, k);
iveresov@2630 235 }
iveresov@2630 236 case CompLevel_full_profile: {
iveresov@2630 237 double k = threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback);
iveresov@2630 238 return loop_predicate_helper<CompLevel_full_profile>(i, b, k);
iveresov@2630 239 }
iveresov@2630 240 default:
iveresov@2630 241 return true;
iveresov@2630 242 }
iveresov@2630 243 }
iveresov@2630 244
iveresov@2630 245 bool AdvancedThresholdPolicy::call_predicate(int i, int b, CompLevel cur_level) {
iveresov@2630 246 switch(cur_level) {
iveresov@2630 247 case CompLevel_none:
iveresov@2630 248 case CompLevel_limited_profile: {
iveresov@2630 249 double k = threshold_scale(CompLevel_full_profile, Tier3LoadFeedback);
iveresov@2630 250 return call_predicate_helper<CompLevel_none>(i, b, k);
iveresov@2630 251 }
iveresov@2630 252 case CompLevel_full_profile: {
iveresov@2630 253 double k = threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback);
iveresov@2630 254 return call_predicate_helper<CompLevel_full_profile>(i, b, k);
iveresov@2630 255 }
iveresov@2630 256 default:
iveresov@2630 257 return true;
iveresov@2630 258 }
iveresov@2630 259 }
iveresov@2630 260
iveresov@2630 261 // If a method is old enough and is still in the interpreter we would want to
iveresov@2630 262 // start profiling without waiting for the compiled method to arrive.
iveresov@2630 263 // We also take the load on compilers into the account.
coleenp@4037 264 bool AdvancedThresholdPolicy::should_create_mdo(Method* method, CompLevel cur_level) {
iveresov@2630 265 if (cur_level == CompLevel_none &&
iveresov@2630 266 CompileBroker::queue_size(CompLevel_full_optimization) <=
iveresov@2630 267 Tier3DelayOn * compiler_count(CompLevel_full_optimization)) {
iveresov@2630 268 int i = method->invocation_count();
iveresov@2630 269 int b = method->backedge_count();
iveresov@2630 270 double k = Tier0ProfilingStartPercentage / 100.0;
iveresov@2630 271 return call_predicate_helper<CompLevel_none>(i, b, k) || loop_predicate_helper<CompLevel_none>(i, b, k);
iveresov@2630 272 }
iveresov@2630 273 return false;
iveresov@2630 274 }
iveresov@2630 275
iveresov@2988 276 // Inlining control: if we're compiling a profiled method with C1 and the callee
iveresov@2988 277 // is known to have OSRed in a C2 version, don't inline it.
iveresov@2988 278 bool AdvancedThresholdPolicy::should_not_inline(ciEnv* env, ciMethod* callee) {
iveresov@2988 279 CompLevel comp_level = (CompLevel)env->comp_level();
iveresov@2988 280 if (comp_level == CompLevel_full_profile ||
iveresov@2988 281 comp_level == CompLevel_limited_profile) {
iveresov@2988 282 return callee->highest_osr_comp_level() == CompLevel_full_optimization;
iveresov@2988 283 }
iveresov@2988 284 return false;
iveresov@2988 285 }
iveresov@2988 286
iveresov@2630 287 // Create MDO if necessary.
iveresov@3452 288 void AdvancedThresholdPolicy::create_mdo(methodHandle mh, JavaThread* THREAD) {
iveresov@2630 289 if (mh->is_native() || mh->is_abstract() || mh->is_accessor()) return;
iveresov@2630 290 if (mh->method_data() == NULL) {
coleenp@4037 291 Method::build_interpreter_method_data(mh, CHECK_AND_CLEAR);
iveresov@2630 292 }
iveresov@2630 293 }
iveresov@2630 294
iveresov@2630 295
iveresov@2630 296 /*
iveresov@2630 297 * Method states:
iveresov@2630 298 * 0 - interpreter (CompLevel_none)
iveresov@2630 299 * 1 - pure C1 (CompLevel_simple)
iveresov@2630 300 * 2 - C1 with invocation and backedge counting (CompLevel_limited_profile)
iveresov@2630 301 * 3 - C1 with full profiling (CompLevel_full_profile)
iveresov@2630 302 * 4 - C2 (CompLevel_full_optimization)
iveresov@2630 303 *
iveresov@2630 304 * Common state transition patterns:
iveresov@2630 305 * a. 0 -> 3 -> 4.
iveresov@2630 306 * The most common path. But note that even in this straightforward case
iveresov@2630 307 * profiling can start at level 0 and finish at level 3.
iveresov@2630 308 *
iveresov@2630 309 * b. 0 -> 2 -> 3 -> 4.
iveresov@2630 310 * This case occures when the load on C2 is deemed too high. So, instead of transitioning
iveresov@2630 311 * into state 3 directly and over-profiling while a method is in the C2 queue we transition to
iveresov@2630 312 * level 2 and wait until the load on C2 decreases. This path is disabled for OSRs.
iveresov@2630 313 *
iveresov@2630 314 * c. 0 -> (3->2) -> 4.
iveresov@2630 315 * In this case we enqueue a method for compilation at level 3, but the C1 queue is long enough
iveresov@2630 316 * to enable the profiling to fully occur at level 0. In this case we change the compilation level
iveresov@2630 317 * of the method to 2, because it'll allow it to run much faster without full profiling while c2
iveresov@2630 318 * is compiling.
iveresov@2630 319 *
iveresov@2630 320 * d. 0 -> 3 -> 1 or 0 -> 2 -> 1.
iveresov@2630 321 * After a method was once compiled with C1 it can be identified as trivial and be compiled to
iveresov@2630 322 * level 1. These transition can also occur if a method can't be compiled with C2 but can with C1.
iveresov@2630 323 *
iveresov@2630 324 * e. 0 -> 4.
iveresov@2630 325 * This can happen if a method fails C1 compilation (it will still be profiled in the interpreter)
iveresov@2630 326 * or because of a deopt that didn't require reprofiling (compilation won't happen in this case because
iveresov@2630 327 * the compiled version already exists).
iveresov@2630 328 *
iveresov@2630 329 * Note that since state 0 can be reached from any other state via deoptimization different loops
iveresov@2630 330 * are possible.
iveresov@2630 331 *
iveresov@2630 332 */
iveresov@2630 333
iveresov@2630 334 // Common transition function. Given a predicate determines if a method should transition to another level.
coleenp@4037 335 CompLevel AdvancedThresholdPolicy::common(Predicate p, Method* method, CompLevel cur_level, bool disable_feedback) {
iveresov@2630 336 CompLevel next_level = cur_level;
iveresov@2630 337 int i = method->invocation_count();
iveresov@2630 338 int b = method->backedge_count();
iveresov@2630 339
iveresov@3035 340 if (is_trivial(method)) {
iveresov@3035 341 next_level = CompLevel_simple;
iveresov@3035 342 } else {
iveresov@3035 343 switch(cur_level) {
iveresov@3035 344 case CompLevel_none:
iveresov@3035 345 // If we were at full profile level, would we switch to full opt?
iveresov@3035 346 if (common(p, method, CompLevel_full_profile, disable_feedback) == CompLevel_full_optimization) {
iveresov@3035 347 next_level = CompLevel_full_optimization;
iveresov@3035 348 } else if ((this->*p)(i, b, cur_level)) {
iveresov@3035 349 // C1-generated fully profiled code is about 30% slower than the limited profile
iveresov@3035 350 // code that has only invocation and backedge counters. The observation is that
iveresov@3035 351 // if C2 queue is large enough we can spend too much time in the fully profiled code
iveresov@3035 352 // while waiting for C2 to pick the method from the queue. To alleviate this problem
iveresov@3035 353 // we introduce a feedback on the C2 queue size. If the C2 queue is sufficiently long
iveresov@3035 354 // we choose to compile a limited profiled version and then recompile with full profiling
iveresov@3035 355 // when the load on C2 goes down.
iveresov@3035 356 if (!disable_feedback && CompileBroker::queue_size(CompLevel_full_optimization) >
iveresov@3035 357 Tier3DelayOn * compiler_count(CompLevel_full_optimization)) {
iveresov@3035 358 next_level = CompLevel_limited_profile;
iveresov@2630 359 } else {
iveresov@3035 360 next_level = CompLevel_full_profile;
iveresov@2630 361 }
iveresov@2630 362 }
iveresov@3035 363 break;
iveresov@3035 364 case CompLevel_limited_profile:
iveresov@3035 365 if (is_method_profiled(method)) {
iveresov@3035 366 // Special case: we got here because this method was fully profiled in the interpreter.
iveresov@3035 367 next_level = CompLevel_full_optimization;
iveresov@3035 368 } else {
coleenp@4037 369 MethodData* mdo = method->method_data();
iveresov@3035 370 if (mdo != NULL) {
iveresov@3035 371 if (mdo->would_profile()) {
iveresov@3035 372 if (disable_feedback || (CompileBroker::queue_size(CompLevel_full_optimization) <=
iveresov@3035 373 Tier3DelayOff * compiler_count(CompLevel_full_optimization) &&
iveresov@3035 374 (this->*p)(i, b, cur_level))) {
iveresov@3035 375 next_level = CompLevel_full_profile;
iveresov@3035 376 }
iveresov@3035 377 } else {
iveresov@2630 378 next_level = CompLevel_full_optimization;
iveresov@2630 379 }
iveresov@2630 380 }
iveresov@2630 381 }
iveresov@3035 382 break;
iveresov@3035 383 case CompLevel_full_profile:
iveresov@3035 384 {
coleenp@4037 385 MethodData* mdo = method->method_data();
iveresov@3035 386 if (mdo != NULL) {
iveresov@3035 387 if (mdo->would_profile()) {
iveresov@3035 388 int mdo_i = mdo->invocation_count_delta();
iveresov@3035 389 int mdo_b = mdo->backedge_count_delta();
iveresov@3035 390 if ((this->*p)(mdo_i, mdo_b, cur_level)) {
iveresov@3035 391 next_level = CompLevel_full_optimization;
iveresov@3035 392 }
iveresov@3035 393 } else {
iveresov@3035 394 next_level = CompLevel_full_optimization;
iveresov@3035 395 }
iveresov@3035 396 }
iveresov@3035 397 }
iveresov@3035 398 break;
iveresov@2630 399 }
iveresov@2630 400 }
iveresov@3035 401 return MIN2(next_level, (CompLevel)TieredStopAtLevel);
iveresov@2630 402 }
iveresov@2630 403
iveresov@2630 404 // Determine if a method should be compiled with a normal entry point at a different level.
coleenp@4037 405 CompLevel AdvancedThresholdPolicy::call_event(Method* method, CompLevel cur_level) {
iveresov@2987 406 CompLevel osr_level = MIN2((CompLevel) method->highest_osr_comp_level(),
iveresov@3035 407 common(&AdvancedThresholdPolicy::loop_predicate, method, cur_level, true));
iveresov@2630 408 CompLevel next_level = common(&AdvancedThresholdPolicy::call_predicate, method, cur_level);
iveresov@2630 409
iveresov@2630 410 // If OSR method level is greater than the regular method level, the levels should be
iveresov@2630 411 // equalized by raising the regular method level in order to avoid OSRs during each
iveresov@2630 412 // invocation of the method.
iveresov@2630 413 if (osr_level == CompLevel_full_optimization && cur_level == CompLevel_full_profile) {
coleenp@4037 414 MethodData* mdo = method->method_data();
iveresov@2630 415 guarantee(mdo != NULL, "MDO should not be NULL");
iveresov@2630 416 if (mdo->invocation_count() >= 1) {
iveresov@2630 417 next_level = CompLevel_full_optimization;
iveresov@2630 418 }
iveresov@2630 419 } else {
iveresov@2630 420 next_level = MAX2(osr_level, next_level);
iveresov@2630 421 }
iveresov@2630 422 return next_level;
iveresov@2630 423 }
iveresov@2630 424
iveresov@2630 425 // Determine if we should do an OSR compilation of a given method.
coleenp@4037 426 CompLevel AdvancedThresholdPolicy::loop_event(Method* method, CompLevel cur_level) {
iveresov@3035 427 CompLevel next_level = common(&AdvancedThresholdPolicy::loop_predicate, method, cur_level, true);
iveresov@2630 428 if (cur_level == CompLevel_none) {
iveresov@2630 429 // If there is a live OSR method that means that we deopted to the interpreter
iveresov@2630 430 // for the transition.
iveresov@2987 431 CompLevel osr_level = MIN2((CompLevel)method->highest_osr_comp_level(), next_level);
iveresov@2630 432 if (osr_level > CompLevel_none) {
iveresov@2630 433 return osr_level;
iveresov@2630 434 }
iveresov@2630 435 }
iveresov@2987 436 return next_level;
iveresov@2630 437 }
iveresov@2630 438
iveresov@2630 439 // Update the rate and submit compile
iveresov@3452 440 void AdvancedThresholdPolicy::submit_compile(methodHandle mh, int bci, CompLevel level, JavaThread* thread) {
iveresov@2630 441 int hot_count = (bci == InvocationEntryBci) ? mh->invocation_count() : mh->backedge_count();
iveresov@2630 442 update_rate(os::javaTimeMillis(), mh());
iveresov@3452 443 CompileBroker::compile_method(mh, bci, level, mh, hot_count, "tiered", thread);
iveresov@2630 444 }
iveresov@2630 445
iveresov@2630 446 // Handle the invocation event.
iveresov@2630 447 void AdvancedThresholdPolicy::method_invocation_event(methodHandle mh, methodHandle imh,
iveresov@3452 448 CompLevel level, nmethod* nm, JavaThread* thread) {
iveresov@2630 449 if (should_create_mdo(mh(), level)) {
iveresov@3452 450 create_mdo(mh, thread);
iveresov@2630 451 }
iveresov@2630 452 if (is_compilation_enabled() && !CompileBroker::compilation_is_in_queue(mh, InvocationEntryBci)) {
iveresov@2630 453 CompLevel next_level = call_event(mh(), level);
iveresov@2630 454 if (next_level != level) {
iveresov@3452 455 compile(mh, InvocationEntryBci, next_level, thread);
iveresov@2630 456 }
iveresov@2630 457 }
iveresov@2630 458 }
iveresov@2630 459
iveresov@2630 460 // Handle the back branch event. Notice that we can compile the method
iveresov@2630 461 // with a regular entry from here.
iveresov@2630 462 void AdvancedThresholdPolicy::method_back_branch_event(methodHandle mh, methodHandle imh,
iveresov@3452 463 int bci, CompLevel level, nmethod* nm, JavaThread* thread) {
iveresov@2630 464 if (should_create_mdo(mh(), level)) {
iveresov@3452 465 create_mdo(mh, thread);
iveresov@2630 466 }
iveresov@2988 467 // Check if MDO should be created for the inlined method
iveresov@2988 468 if (should_create_mdo(imh(), level)) {
iveresov@3452 469 create_mdo(imh, thread);
iveresov@2988 470 }
iveresov@2630 471
iveresov@2988 472 if (is_compilation_enabled()) {
iveresov@2988 473 CompLevel next_osr_level = loop_event(imh(), level);
iveresov@2988 474 CompLevel max_osr_level = (CompLevel)imh->highest_osr_comp_level();
iveresov@2988 475 // At the very least compile the OSR version
iveresov@3035 476 if (!CompileBroker::compilation_is_in_queue(imh, bci) && next_osr_level != level) {
iveresov@3452 477 compile(imh, bci, next_osr_level, thread);
iveresov@2630 478 }
iveresov@2630 479
iveresov@2988 480 // Use loop event as an opportunity to also check if there's been
iveresov@2988 481 // enough calls.
iveresov@2988 482 CompLevel cur_level, next_level;
iveresov@2988 483 if (mh() != imh()) { // If there is an enclosing method
iveresov@2988 484 guarantee(nm != NULL, "Should have nmethod here");
iveresov@2988 485 cur_level = comp_level(mh());
iveresov@2988 486 next_level = call_event(mh(), cur_level);
iveresov@2988 487
iveresov@2988 488 if (max_osr_level == CompLevel_full_optimization) {
iveresov@2988 489 // The inlinee OSRed to full opt, we need to modify the enclosing method to avoid deopts
iveresov@2988 490 bool make_not_entrant = false;
iveresov@2988 491 if (nm->is_osr_method()) {
iveresov@2988 492 // This is an osr method, just make it not entrant and recompile later if needed
iveresov@2988 493 make_not_entrant = true;
iveresov@2988 494 } else {
iveresov@2988 495 if (next_level != CompLevel_full_optimization) {
iveresov@2988 496 // next_level is not full opt, so we need to recompile the
iveresov@2988 497 // enclosing method without the inlinee
iveresov@2988 498 cur_level = CompLevel_none;
iveresov@2988 499 make_not_entrant = true;
iveresov@2988 500 }
iveresov@2988 501 }
iveresov@2988 502 if (make_not_entrant) {
iveresov@2988 503 if (PrintTieredEvents) {
iveresov@2988 504 int osr_bci = nm->is_osr_method() ? nm->osr_entry_bci() : InvocationEntryBci;
iveresov@2988 505 print_event(MAKE_NOT_ENTRANT, mh(), mh(), osr_bci, level);
iveresov@2988 506 }
iveresov@2988 507 nm->make_not_entrant();
iveresov@2988 508 }
iveresov@2988 509 }
iveresov@2988 510 if (!CompileBroker::compilation_is_in_queue(mh, InvocationEntryBci)) {
iveresov@2988 511 // Fix up next_level if necessary to avoid deopts
iveresov@2988 512 if (next_level == CompLevel_limited_profile && max_osr_level == CompLevel_full_profile) {
iveresov@2988 513 next_level = CompLevel_full_profile;
iveresov@2988 514 }
iveresov@2988 515 if (cur_level != next_level) {
iveresov@3452 516 compile(mh, InvocationEntryBci, next_level, thread);
iveresov@2988 517 }
iveresov@2988 518 }
iveresov@2988 519 } else {
iveresov@2988 520 cur_level = comp_level(imh());
iveresov@2988 521 next_level = call_event(imh(), cur_level);
iveresov@2988 522 if (!CompileBroker::compilation_is_in_queue(imh, bci) && next_level != cur_level) {
iveresov@3452 523 compile(imh, InvocationEntryBci, next_level, thread);
iveresov@2988 524 }
iveresov@2630 525 }
iveresov@2630 526 }
iveresov@2630 527 }
iveresov@2630 528
iveresov@2630 529 #endif // TIERED

mercurial