1 /*
   2  * Copyright (c) 2010, 2025, 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  */
  24 
  25 #include "cds/aotLinkedClassBulkLoader.hpp"
  26 #include "code/scopeDesc.hpp"
  27 #include "compiler/compilationPolicy.hpp"
  28 #include "compiler/compileBroker.hpp"
  29 #include "compiler/compilerDefinitions.inline.hpp"
  30 #include "compiler/compilerOracle.hpp"
  31 #include "memory/resourceArea.hpp"
  32 #include "oops/method.inline.hpp"
  33 #include "oops/methodData.hpp"
  34 #include "oops/oop.inline.hpp"
  35 #include "oops/trainingData.hpp"
  36 #include "prims/jvmtiExport.hpp"
  37 #include "runtime/arguments.hpp"
  38 #include "runtime/deoptimization.hpp"
  39 #include "runtime/frame.hpp"
  40 #include "runtime/frame.inline.hpp"
  41 #include "runtime/globals_extension.hpp"
  42 #include "runtime/handles.inline.hpp"
  43 #include "runtime/safepoint.hpp"
  44 #include "runtime/safepointVerifiers.hpp"
  45 #ifdef COMPILER1
  46 #include "c1/c1_Compiler.hpp"
  47 #endif
  48 #ifdef COMPILER2
  49 #include "opto/c2compiler.hpp"
  50 #endif
  51 #if INCLUDE_JVMCI
  52 #include "jvmci/jvmci.hpp"
  53 #endif
  54 
  55 int64_t CompilationPolicy::_start_time = 0;
  56 int CompilationPolicy::_c1_count = 0;
  57 int CompilationPolicy::_c2_count = 0;
  58 double CompilationPolicy::_increase_threshold_at_ratio = 0;
  59 
  60 CompilationPolicy::TrainingReplayQueue CompilationPolicy::_training_replay_queue;
  61 
  62 void compilationPolicy_init() {
  63   CompilationPolicy::initialize();
  64 }
  65 
  66 int CompilationPolicy::compiler_count(CompLevel comp_level) {
  67   if (is_c1_compile(comp_level)) {
  68     return c1_count();
  69   } else if (is_c2_compile(comp_level)) {
  70     return c2_count();
  71   }
  72   return 0;
  73 }
  74 
  75 // Returns true if m must be compiled before executing it
  76 // This is intended to force compiles for methods (usually for
  77 // debugging) that would otherwise be interpreted for some reason.
  78 bool CompilationPolicy::must_be_compiled(const methodHandle& m, int comp_level) {
  79   // Don't allow Xcomp to cause compiles in replay mode
  80   if (ReplayCompiles) return false;
  81 
  82   if (m->has_compiled_code()) return false;       // already compiled
  83   if (!can_be_compiled(m, comp_level)) return false;
  84 
  85   return !UseInterpreter ||                                                                        // must compile all methods
  86          (AlwaysCompileLoopMethods && m->has_loops() && CompileBroker::should_compile_new_jobs()); // eagerly compile loop methods
  87 }
  88 
  89 void CompilationPolicy::maybe_compile_early(const methodHandle& m, TRAPS) {
  90   if (m->method_holder()->is_not_initialized()) {
  91     // 'is_not_initialized' means not only '!is_initialized', but also that
  92     // initialization has not been started yet ('!being_initialized')
  93     // Do not force compilation of methods in uninitialized classes.
  94     return;
  95   }
  96   if (!m->is_native() && MethodTrainingData::have_data()) {
  97     MethodTrainingData* mtd = MethodTrainingData::find_fast(m);
  98     if (mtd == nullptr) {
  99       return;              // there is no training data recorded for m
 100     }
 101     CompLevel cur_level = static_cast<CompLevel>(m->highest_comp_level());
 102     CompLevel next_level = trained_transition(m, cur_level, mtd, THREAD);
 103     if (next_level != cur_level && can_be_compiled(m, next_level) && !CompileBroker::compilation_is_in_queue(m)) {
 104       if (PrintTieredEvents) {
 105         print_event(FORCE_COMPILE, m(), m(), InvocationEntryBci, next_level);
 106       }
 107       CompileBroker::compile_method(m, InvocationEntryBci, next_level, 0, CompileTask::Reason_MustBeCompiled, THREAD);
 108       if (HAS_PENDING_EXCEPTION) {
 109         CLEAR_PENDING_EXCEPTION;
 110       }
 111     }
 112   }
 113 }
 114 
 115 void CompilationPolicy::compile_if_required(const methodHandle& m, TRAPS) {
 116   if (!THREAD->can_call_java() || THREAD->is_Compiler_thread()) {
 117     // don't force compilation, resolve was on behalf of compiler
 118     return;
 119   }
 120   if (m->method_holder()->is_not_initialized()) {
 121     // 'is_not_initialized' means not only '!is_initialized', but also that
 122     // initialization has not been started yet ('!being_initialized')
 123     // Do not force compilation of methods in uninitialized classes.
 124     // Note that doing this would throw an assert later,
 125     // in CompileBroker::compile_method.
 126     // We sometimes use the link resolver to do reflective lookups
 127     // even before classes are initialized.
 128     return;
 129   }
 130 
 131   if (must_be_compiled(m)) {
 132     // This path is unusual, mostly used by the '-Xcomp' stress test mode.
 133     CompLevel level = initial_compile_level(m);
 134     if (PrintTieredEvents) {
 135       print_event(FORCE_COMPILE, m(), m(), InvocationEntryBci, level);
 136     }
 137     CompileBroker::compile_method(m, InvocationEntryBci, level, 0, CompileTask::Reason_MustBeCompiled, THREAD);
 138   }
 139 }
 140 
 141 void CompilationPolicy::replay_training_at_init_impl(InstanceKlass* klass, TRAPS) {
 142   if (!klass->has_init_deps_processed()) {
 143     ResourceMark rm;
 144     log_debug(training)("Replay training: %s", klass->external_name());
 145 
 146     KlassTrainingData* ktd = KlassTrainingData::find(klass);
 147     if (ktd != nullptr) {
 148       guarantee(ktd->has_holder(), "");
 149       ktd->notice_fully_initialized(); // sets klass->has_init_deps_processed bit
 150       assert(klass->has_init_deps_processed(), "");
 151       if (AOTCompileEagerly) {
 152         ktd->iterate_comp_deps([&](CompileTrainingData* ctd) {
 153           if (ctd->init_deps_left() == 0) {
 154             MethodTrainingData* mtd = ctd->method();
 155             if (mtd->has_holder()) {
 156               const methodHandle mh(THREAD, const_cast<Method*>(mtd->holder()));
 157               CompilationPolicy::maybe_compile_early(mh, THREAD);
 158             }
 159           }
 160         });
 161       }
 162     }
 163   }
 164 }
 165 
 166 void CompilationPolicy::replay_training_at_init(InstanceKlass* klass, TRAPS) {
 167   assert(klass->is_initialized(), "");
 168   if (TrainingData::have_data() && klass->is_shared()) {
 169     _training_replay_queue.push(klass, TrainingReplayQueue_lock, THREAD);
 170   }
 171 }
 172 
 173 // For TrainingReplayQueue
 174 template<>
 175 void CompilationPolicyUtils::Queue<InstanceKlass>::print_on(outputStream* st) {
 176   int pos = 0;
 177   for (QueueNode* cur = _head; cur != nullptr; cur = cur->next()) {
 178     ResourceMark rm;
 179     InstanceKlass* ik = cur->value();
 180     st->print_cr("%3d: " INTPTR_FORMAT " %s", ++pos, p2i(ik), ik->external_name());
 181   }
 182 }
 183 
 184 void CompilationPolicy::replay_training_at_init_loop(TRAPS) {
 185   while (!CompileBroker::is_compilation_disabled_forever()) {
 186     InstanceKlass* ik = _training_replay_queue.pop(TrainingReplayQueue_lock, THREAD);
 187     if (ik != nullptr) {
 188       replay_training_at_init_impl(ik, THREAD);
 189     }
 190   }
 191 }
 192 
 193 static inline CompLevel adjust_level_for_compilability_query(CompLevel comp_level) {
 194   if (comp_level == CompLevel_any) {
 195      if (CompilerConfig::is_c1_only()) {
 196        comp_level = CompLevel_simple;
 197      } else if (CompilerConfig::is_c2_or_jvmci_compiler_only()) {
 198        comp_level = CompLevel_full_optimization;
 199      }
 200   }
 201   return comp_level;
 202 }
 203 
 204 // Returns true if m is allowed to be compiled
 205 bool CompilationPolicy::can_be_compiled(const methodHandle& m, int comp_level) {
 206   // allow any levels for WhiteBox
 207   assert(WhiteBoxAPI || comp_level == CompLevel_any || is_compile(comp_level), "illegal compilation level %d", comp_level);
 208 
 209   if (m->is_abstract()) return false;
 210   if (DontCompileHugeMethods && m->code_size() > HugeMethodLimit) return false;
 211 
 212   // Math intrinsics should never be compiled as this can lead to
 213   // monotonicity problems because the interpreter will prefer the
 214   // compiled code to the intrinsic version.  This can't happen in
 215   // production because the invocation counter can't be incremented
 216   // but we shouldn't expose the system to this problem in testing
 217   // modes.
 218   if (!AbstractInterpreter::can_be_compiled(m)) {
 219     return false;
 220   }
 221   comp_level = adjust_level_for_compilability_query((CompLevel) comp_level);
 222   if (comp_level == CompLevel_any || is_compile(comp_level)) {
 223     return !m->is_not_compilable(comp_level);
 224   }
 225   return false;
 226 }
 227 
 228 // Returns true if m is allowed to be osr compiled
 229 bool CompilationPolicy::can_be_osr_compiled(const methodHandle& m, int comp_level) {
 230   bool result = false;
 231   comp_level = adjust_level_for_compilability_query((CompLevel) comp_level);
 232   if (comp_level == CompLevel_any || is_compile(comp_level)) {
 233     result = !m->is_not_osr_compilable(comp_level);
 234   }
 235   return (result && can_be_compiled(m, comp_level));
 236 }
 237 
 238 bool CompilationPolicy::is_compilation_enabled() {
 239   // NOTE: CompileBroker::should_compile_new_jobs() checks for UseCompiler
 240   return CompileBroker::should_compile_new_jobs();
 241 }
 242 
 243 CompileTask* CompilationPolicy::select_task_helper(CompileQueue* compile_queue) {
 244   // Remove unloaded methods from the queue
 245   for (CompileTask* task = compile_queue->first(); task != nullptr; ) {
 246     CompileTask* next = task->next();
 247     if (task->is_unloaded()) {
 248       compile_queue->remove_and_mark_stale(task);
 249     }
 250     task = next;
 251   }
 252 #if INCLUDE_JVMCI
 253   if (UseJVMCICompiler && !BackgroundCompilation) {
 254     /*
 255      * In blocking compilation mode, the CompileBroker will make
 256      * compilations submitted by a JVMCI compiler thread non-blocking. These
 257      * compilations should be scheduled after all blocking compilations
 258      * to service non-compiler related compilations sooner and reduce the
 259      * chance of such compilations timing out.
 260      */
 261     for (CompileTask* task = compile_queue->first(); task != nullptr; task = task->next()) {
 262       if (task->is_blocking()) {
 263         return task;
 264       }
 265     }
 266   }
 267 #endif
 268   return compile_queue->first();
 269 }
 270 
 271 // Simple methods are as good being compiled with C1 as C2.
 272 // Determine if a given method is such a case.
 273 bool CompilationPolicy::is_trivial(const methodHandle& method) {
 274   if (method->is_accessor() ||
 275       method->is_constant_getter()) {
 276     return true;
 277   }
 278   return false;
 279 }
 280 
 281 bool CompilationPolicy::force_comp_at_level_simple(const methodHandle& method) {
 282   if (CompilationModeFlag::quick_internal()) {
 283 #if INCLUDE_JVMCI
 284     if (UseJVMCICompiler) {
 285       AbstractCompiler* comp = CompileBroker::compiler(CompLevel_full_optimization);
 286       if (comp != nullptr && comp->is_jvmci() && ((JVMCICompiler*) comp)->force_comp_at_level_simple(method)) {
 287         return true;
 288       }
 289     }
 290 #endif
 291   }
 292   return false;
 293 }
 294 
 295 CompLevel CompilationPolicy::comp_level(Method* method) {
 296   nmethod *nm = method->code();
 297   if (nm != nullptr && nm->is_in_use()) {
 298     return (CompLevel)nm->comp_level();
 299   }
 300   return CompLevel_none;
 301 }
 302 
 303 // Call and loop predicates determine whether a transition to a higher
 304 // compilation level should be performed (pointers to predicate functions
 305 // are passed to common()).
 306 // Tier?LoadFeedback is basically a coefficient that determines of
 307 // how many methods per compiler thread can be in the queue before
 308 // the threshold values double.
 309 class LoopPredicate : AllStatic {
 310 public:
 311   static bool apply_scaled(const methodHandle& method, CompLevel cur_level, int i, int b, double scale) {
 312     double threshold_scaling;
 313     if (CompilerOracle::has_option_value(method, CompileCommandEnum::CompileThresholdScaling, threshold_scaling)) {
 314       scale *= threshold_scaling;
 315     }
 316     switch(cur_level) {
 317     case CompLevel_none:
 318     case CompLevel_limited_profile:
 319       return b >= Tier3BackEdgeThreshold * scale;
 320     case CompLevel_full_profile:
 321       return b >= Tier4BackEdgeThreshold * scale;
 322     default:
 323       return true;
 324     }
 325   }
 326 
 327   static bool apply(const methodHandle& method, CompLevel cur_level, int i, int b) {
 328     double k = 1;
 329     switch(cur_level) {
 330     case CompLevel_none:
 331     // Fall through
 332     case CompLevel_limited_profile: {
 333       k = CompilationPolicy::threshold_scale(CompLevel_full_profile, Tier3LoadFeedback);
 334       break;
 335     }
 336     case CompLevel_full_profile: {
 337       k = CompilationPolicy::threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback);
 338       break;
 339     }
 340     default:
 341       return true;
 342     }
 343     return apply_scaled(method, cur_level, i, b, k);
 344   }
 345 };
 346 
 347 class CallPredicate : AllStatic {
 348 public:
 349   static bool apply_scaled(const methodHandle& method, CompLevel cur_level, int i, int b, double scale) {
 350     double threshold_scaling;
 351     if (CompilerOracle::has_option_value(method, CompileCommandEnum::CompileThresholdScaling, threshold_scaling)) {
 352       scale *= threshold_scaling;
 353     }
 354     switch(cur_level) {
 355     case CompLevel_none:
 356     case CompLevel_limited_profile:
 357       return (i >= Tier3InvocationThreshold * scale) ||
 358              (i >= Tier3MinInvocationThreshold * scale && i + b >= Tier3CompileThreshold * scale);
 359     case CompLevel_full_profile:
 360       return (i >= Tier4InvocationThreshold * scale) ||
 361              (i >= Tier4MinInvocationThreshold * scale && i + b >= Tier4CompileThreshold * scale);
 362     default:
 363      return true;
 364     }
 365   }
 366 
 367   static bool apply(const methodHandle& method, CompLevel cur_level, int i, int b) {
 368     double k = 1;
 369     switch(cur_level) {
 370     case CompLevel_none:
 371     case CompLevel_limited_profile: {
 372       k = CompilationPolicy::threshold_scale(CompLevel_full_profile, Tier3LoadFeedback);
 373       break;
 374     }
 375     case CompLevel_full_profile: {
 376       k = CompilationPolicy::threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback);
 377       break;
 378     }
 379     default:
 380       return true;
 381     }
 382     return apply_scaled(method, cur_level, i, b, k);
 383   }
 384 };
 385 
 386 double CompilationPolicy::threshold_scale(CompLevel level, int feedback_k) {
 387   int comp_count = compiler_count(level);
 388   if (comp_count > 0) {
 389     double queue_size = CompileBroker::queue_size(level);
 390     double k = (double)queue_size / ((double)feedback_k * (double)comp_count) + 1;
 391 
 392     // Increase C1 compile threshold when the code cache is filled more
 393     // than specified by IncreaseFirstTierCompileThresholdAt percentage.
 394     // The main intention is to keep enough free space for C2 compiled code
 395     // to achieve peak performance if the code cache is under stress.
 396     if (CompilerConfig::is_tiered() && !CompilationModeFlag::disable_intermediate() && is_c1_compile(level))  {
 397       double current_reverse_free_ratio = CodeCache::reverse_free_ratio();
 398       if (current_reverse_free_ratio > _increase_threshold_at_ratio) {
 399         k *= exp(current_reverse_free_ratio - _increase_threshold_at_ratio);
 400       }
 401     }
 402     return k;
 403   }
 404   return 1;
 405 }
 406 
 407 void CompilationPolicy::print_counters_on(outputStream* st, const char* prefix, Method* m) {
 408   int invocation_count = m->invocation_count();
 409   int backedge_count = m->backedge_count();
 410   MethodData* mdh = m->method_data();
 411   int mdo_invocations = 0, mdo_backedges = 0;
 412   int mdo_invocations_start = 0, mdo_backedges_start = 0;
 413   if (mdh != nullptr) {
 414     mdo_invocations = mdh->invocation_count();
 415     mdo_backedges = mdh->backedge_count();
 416     mdo_invocations_start = mdh->invocation_count_start();
 417     mdo_backedges_start = mdh->backedge_count_start();
 418   }
 419   st->print(" %stotal=%d,%d %smdo=%d(%d),%d(%d)", prefix,
 420     invocation_count, backedge_count, prefix,
 421     mdo_invocations, mdo_invocations_start,
 422     mdo_backedges, mdo_backedges_start);
 423   st->print(" %smax levels=%d,%d", prefix, m->highest_comp_level(), m->highest_osr_comp_level());
 424 }
 425 
 426 void CompilationPolicy::print_training_data_on(outputStream* st,  const char* prefix, Method* method) {
 427   methodHandle m(Thread::current(), method);
 428   st->print(" %smtd: ", prefix);
 429   MethodTrainingData* mtd = MethodTrainingData::find(m);
 430   if (mtd == nullptr) {
 431     st->print("null");
 432   } else {
 433     MethodData* md = mtd->final_profile();
 434     st->print("mdo=");
 435     if (md == nullptr) {
 436       st->print("null");
 437     } else {
 438       int mdo_invocations = md->invocation_count();
 439       int mdo_backedges = md->backedge_count();
 440       int mdo_invocations_start = md->invocation_count_start();
 441       int mdo_backedges_start = md->backedge_count_start();
 442       st->print("%d(%d), %d(%d)", mdo_invocations, mdo_invocations_start, mdo_backedges, mdo_backedges_start);
 443     }
 444     CompileTrainingData* ctd = mtd->last_toplevel_compile(CompLevel_full_optimization);
 445     st->print(", deps=");
 446     if (ctd == nullptr) {
 447       st->print("null");
 448     } else {
 449       st->print("%d", ctd->init_deps_left());
 450     }
 451   }
 452 }
 453 
 454 // Print an event.
 455 void CompilationPolicy::print_event_on(outputStream *st, EventType type, Method* m, Method* im, int bci, CompLevel level) {
 456   bool inlinee_event = m != im;
 457 
 458   st->print("%lf: [", os::elapsedTime());
 459 
 460   switch(type) {
 461   case CALL:
 462     st->print("call");
 463     break;
 464   case LOOP:
 465     st->print("loop");
 466     break;
 467   case COMPILE:
 468     st->print("compile");
 469     break;
 470   case FORCE_COMPILE:
 471     st->print("force-compile");
 472     break;
 473   case REMOVE_FROM_QUEUE:
 474     st->print("remove-from-queue");
 475     break;
 476   case UPDATE_IN_QUEUE:
 477     st->print("update-in-queue");
 478     break;
 479   case REPROFILE:
 480     st->print("reprofile");
 481     break;
 482   case MAKE_NOT_ENTRANT:
 483     st->print("make-not-entrant");
 484     break;
 485   default:
 486     st->print("unknown");
 487   }
 488 
 489   st->print(" level=%d ", level);
 490 
 491   ResourceMark rm;
 492   char *method_name = m->name_and_sig_as_C_string();
 493   st->print("[%s", method_name);
 494   if (inlinee_event) {
 495     char *inlinee_name = im->name_and_sig_as_C_string();
 496     st->print(" [%s]] ", inlinee_name);
 497   }
 498   else st->print("] ");
 499   st->print("@%d queues=%d,%d", bci, CompileBroker::queue_size(CompLevel_full_profile),
 500                                      CompileBroker::queue_size(CompLevel_full_optimization));
 501 
 502   st->print(" rate=");
 503   if (m->prev_time() == 0) st->print("n/a");
 504   else st->print("%f", m->rate());
 505 
 506   st->print(" k=%.2lf,%.2lf", threshold_scale(CompLevel_full_profile, Tier3LoadFeedback),
 507                               threshold_scale(CompLevel_full_optimization, Tier4LoadFeedback));
 508 
 509   if (type != COMPILE) {
 510     print_counters_on(st, "", m);
 511     if (inlinee_event) {
 512       print_counters_on(st, "inlinee ", im);
 513     }
 514     st->print(" compilable=");
 515     bool need_comma = false;
 516     if (!m->is_not_compilable(CompLevel_full_profile)) {
 517       st->print("c1");
 518       need_comma = true;
 519     }
 520     if (!m->is_not_osr_compilable(CompLevel_full_profile)) {
 521       if (need_comma) st->print(",");
 522       st->print("c1-osr");
 523       need_comma = true;
 524     }
 525     if (!m->is_not_compilable(CompLevel_full_optimization)) {
 526       if (need_comma) st->print(",");
 527       st->print("c2");
 528       need_comma = true;
 529     }
 530     if (!m->is_not_osr_compilable(CompLevel_full_optimization)) {
 531       if (need_comma) st->print(",");
 532       st->print("c2-osr");
 533     }
 534     st->print(" status=");
 535     if (m->queued_for_compilation()) {
 536       st->print("in-queue");
 537     } else st->print("idle");
 538 
 539     print_training_data_on(st, "", m);
 540     if (inlinee_event) {
 541       print_training_data_on(st, "inlinee ", im);
 542     }
 543   }
 544   st->print_cr("]");
 545 
 546 }
 547 
 548 void CompilationPolicy::print_event(EventType type, Method* m, Method* im, int bci, CompLevel level) {
 549   stringStream s;
 550   print_event_on(&s, type, m, im, bci, level);
 551   ResourceMark rm;
 552   tty->print("%s", s.as_string());
 553 }
 554 
 555 void CompilationPolicy::initialize() {
 556   if (!CompilerConfig::is_interpreter_only()) {
 557     int count = CICompilerCount;
 558     bool c1_only = CompilerConfig::is_c1_only();
 559     bool c2_only = CompilerConfig::is_c2_or_jvmci_compiler_only();
 560     int min_count = (c1_only || c2_only) ? 1 : 2;
 561 
 562 #ifdef _LP64
 563     // Turn on ergonomic compiler count selection
 564     if (FLAG_IS_DEFAULT(CICompilerCountPerCPU) && FLAG_IS_DEFAULT(CICompilerCount)) {
 565       FLAG_SET_DEFAULT(CICompilerCountPerCPU, true);
 566     }
 567     if (CICompilerCountPerCPU) {
 568       // Simple log n seems to grow too slowly for tiered, try something faster: log n * log log n
 569       int log_cpu = log2i(os::active_processor_count());
 570       int loglog_cpu = log2i(MAX2(log_cpu, 1));
 571       count = MAX2(log_cpu * loglog_cpu * 3 / 2, min_count);
 572       // Make sure there is enough space in the code cache to hold all the compiler buffers
 573       size_t c1_size = 0;
 574 #ifdef COMPILER1
 575       c1_size = Compiler::code_buffer_size();
 576 #endif
 577       size_t c2_size = 0;
 578 #ifdef COMPILER2
 579       c2_size = C2Compiler::initial_code_buffer_size();
 580 #endif
 581       size_t buffer_size = c1_only ? c1_size : (c1_size/3 + 2*c2_size/3);
 582       int max_count = (ReservedCodeCacheSize - (CodeCacheMinimumUseSpace DEBUG_ONLY(* 3))) / (int)buffer_size;
 583       if (count > max_count) {
 584         // Lower the compiler count such that all buffers fit into the code cache
 585         count = MAX2(max_count, min_count);
 586       }
 587       FLAG_SET_ERGO(CICompilerCount, count);
 588     }
 589 #else
 590     // On 32-bit systems, the number of compiler threads is limited to 3.
 591     // On these systems, the virtual address space available to the JVM
 592     // is usually limited to 2-4 GB (the exact value depends on the platform).
 593     // As the compilers (especially C2) can consume a large amount of
 594     // memory, scaling the number of compiler threads with the number of
 595     // available cores can result in the exhaustion of the address space
 596     /// available to the VM and thus cause the VM to crash.
 597     if (FLAG_IS_DEFAULT(CICompilerCount)) {
 598       count = 3;
 599       FLAG_SET_ERGO(CICompilerCount, count);
 600     }
 601 #endif
 602 
 603     if (c1_only) {
 604       // No C2 compiler threads are needed
 605       set_c1_count(count);
 606     } else if (c2_only) {
 607       // No C1 compiler threads are needed
 608       set_c2_count(count);
 609     } else {
 610 #if INCLUDE_JVMCI
 611       if (UseJVMCICompiler && UseJVMCINativeLibrary) {
 612         int libjvmci_count = MAX2((int) (count * JVMCINativeLibraryThreadFraction), 1);
 613         int c1_count = MAX2(count - libjvmci_count, 1);
 614         set_c2_count(libjvmci_count);
 615         set_c1_count(c1_count);
 616       } else
 617 #endif
 618       {
 619         set_c1_count(MAX2(count / 3, 1));
 620         set_c2_count(MAX2(count - c1_count(), 1));
 621       }
 622     }
 623     assert(count == c1_count() + c2_count(), "inconsistent compiler thread count");
 624     set_increase_threshold_at_ratio();
 625   } else {
 626     // Interpreter mode creates no compilers
 627     FLAG_SET_ERGO(CICompilerCount, 0);
 628   }
 629   set_start_time(nanos_to_millis(os::javaTimeNanos()));
 630 }
 631 
 632 
 633 #ifdef ASSERT
 634 bool CompilationPolicy::verify_level(CompLevel level) {
 635   if (TieredCompilation && level > TieredStopAtLevel) {
 636     return false;
 637   }
 638   // Check if there is a compiler to process the requested level
 639   if (!CompilerConfig::is_c1_enabled() && is_c1_compile(level)) {
 640     return false;
 641   }
 642   if (!CompilerConfig::is_c2_or_jvmci_compiler_enabled() && is_c2_compile(level)) {
 643     return false;
 644   }
 645 
 646   // Interpreter level is always valid.
 647   if (level == CompLevel_none) {
 648     return true;
 649   }
 650   if (CompilationModeFlag::normal()) {
 651     return true;
 652   } else if (CompilationModeFlag::quick_only()) {
 653     return level == CompLevel_simple;
 654   } else if (CompilationModeFlag::high_only()) {
 655     return level == CompLevel_full_optimization;
 656   } else if (CompilationModeFlag::high_only_quick_internal()) {
 657     return level == CompLevel_full_optimization || level == CompLevel_simple;
 658   }
 659   return false;
 660 }
 661 #endif
 662 
 663 
 664 CompLevel CompilationPolicy::highest_compile_level() {
 665   CompLevel level = CompLevel_none;
 666   // Setup the maximum level available for the current compiler configuration.
 667   if (!CompilerConfig::is_interpreter_only()) {
 668     if (CompilerConfig::is_c2_or_jvmci_compiler_enabled()) {
 669       level = CompLevel_full_optimization;
 670     } else if (CompilerConfig::is_c1_enabled()) {
 671       if (CompilerConfig::is_c1_simple_only()) {
 672         level = CompLevel_simple;
 673       } else {
 674         level = CompLevel_full_profile;
 675       }
 676     }
 677   }
 678   // Clamp the maximum level with TieredStopAtLevel.
 679   if (TieredCompilation) {
 680     level = MIN2(level, (CompLevel) TieredStopAtLevel);
 681   }
 682 
 683   // Fix it up if after the clamping it has become invalid.
 684   // Bring it monotonically down depending on the next available level for
 685   // the compilation mode.
 686   if (!CompilationModeFlag::normal()) {
 687     // a) quick_only - levels 2,3,4 are invalid; levels -1,0,1 are valid;
 688     // b) high_only - levels 1,2,3 are invalid; levels -1,0,4 are valid;
 689     // c) high_only_quick_internal - levels 2,3 are invalid; levels -1,0,1,4 are valid.
 690     if (CompilationModeFlag::quick_only()) {
 691       if (level == CompLevel_limited_profile || level == CompLevel_full_profile || level == CompLevel_full_optimization) {
 692         level = CompLevel_simple;
 693       }
 694     } else if (CompilationModeFlag::high_only()) {
 695       if (level == CompLevel_simple || level == CompLevel_limited_profile || level == CompLevel_full_profile) {
 696         level = CompLevel_none;
 697       }
 698     } else if (CompilationModeFlag::high_only_quick_internal()) {
 699       if (level == CompLevel_limited_profile || level == CompLevel_full_profile) {
 700         level = CompLevel_simple;
 701       }
 702     }
 703   }
 704 
 705   assert(verify_level(level), "Invalid highest compilation level: %d", level);
 706   return level;
 707 }
 708 
 709 CompLevel CompilationPolicy::limit_level(CompLevel level) {
 710   level = MIN2(level, highest_compile_level());
 711   assert(verify_level(level), "Invalid compilation level: %d", level);
 712   return level;
 713 }
 714 
 715 CompLevel CompilationPolicy::initial_compile_level(const methodHandle& method) {
 716   CompLevel level = CompLevel_any;
 717   if (CompilationModeFlag::normal()) {
 718     level = CompLevel_full_profile;
 719   } else if (CompilationModeFlag::quick_only()) {
 720     level = CompLevel_simple;
 721   } else if (CompilationModeFlag::high_only()) {
 722     level = CompLevel_full_optimization;
 723   } else if (CompilationModeFlag::high_only_quick_internal()) {
 724     if (force_comp_at_level_simple(method)) {
 725       level = CompLevel_simple;
 726     } else {
 727       level = CompLevel_full_optimization;
 728     }
 729   }
 730   assert(level != CompLevel_any, "Unhandled compilation mode");
 731   return limit_level(level);
 732 }
 733 
 734 // Set carry flags on the counters if necessary
 735 void CompilationPolicy::handle_counter_overflow(const methodHandle& method) {
 736   MethodCounters *mcs = method->method_counters();
 737   if (mcs != nullptr) {
 738     mcs->invocation_counter()->set_carry_on_overflow();
 739     mcs->backedge_counter()->set_carry_on_overflow();
 740   }
 741   MethodData* mdo = method->method_data();
 742   if (mdo != nullptr) {
 743     mdo->invocation_counter()->set_carry_on_overflow();
 744     mdo->backedge_counter()->set_carry_on_overflow();
 745   }
 746 }
 747 
 748 // Called with the queue locked and with at least one element
 749 CompileTask* CompilationPolicy::select_task(CompileQueue* compile_queue, JavaThread* THREAD) {
 750   CompileTask *max_blocking_task = nullptr;
 751   CompileTask *max_task = nullptr;
 752   Method* max_method = nullptr;
 753 
 754   int64_t t = nanos_to_millis(os::javaTimeNanos());
 755   // Iterate through the queue and find a method with a maximum rate.
 756   for (CompileTask* task = compile_queue->first(); task != nullptr;) {
 757     CompileTask* next_task = task->next();
 758     // If a method was unloaded or has been stale for some time, remove it from the queue.
 759     // Blocking tasks and tasks submitted from whitebox API don't become stale
 760     if (task->is_unloaded()) {
 761       compile_queue->remove_and_mark_stale(task);
 762       task = next_task;
 763       continue;
 764     }
 765     if (task->is_blocking() && task->compile_reason() == CompileTask::Reason_Whitebox) {
 766       // CTW tasks, submitted as blocking Whitebox requests, do not participate in rate
 767       // selection and/or any level adjustments. Just return them in order.
 768       return task;
 769     }
 770     Method* method = task->method();
 771     methodHandle mh(THREAD, method);
 772     if (task->can_become_stale() && is_stale(t, TieredCompileTaskTimeout, mh) && !is_old(mh)) {
 773       if (PrintTieredEvents) {
 774         print_event(REMOVE_FROM_QUEUE, method, method, task->osr_bci(), (CompLevel) task->comp_level());
 775       }
 776       method->clear_queued_for_compilation();
 777       compile_queue->remove_and_mark_stale(task);
 778       task = next_task;
 779       continue;
 780     }
 781     update_rate(t, mh);
 782     if (max_task == nullptr || compare_methods(method, max_method)) {
 783       // Select a method with the highest rate
 784       max_task = task;
 785       max_method = method;
 786     }
 787 
 788     if (task->is_blocking()) {
 789       if (max_blocking_task == nullptr || compare_methods(method, max_blocking_task->method())) {
 790         max_blocking_task = task;
 791       }
 792     }
 793 
 794     task = next_task;
 795   }
 796 
 797   if (max_blocking_task != nullptr) {
 798     // In blocking compilation mode, the CompileBroker will make
 799     // compilations submitted by a JVMCI compiler thread non-blocking. These
 800     // compilations should be scheduled after all blocking compilations
 801     // to service non-compiler related compilations sooner and reduce the
 802     // chance of such compilations timing out.
 803     max_task = max_blocking_task;
 804     max_method = max_task->method();
 805   }
 806 
 807   methodHandle max_method_h(THREAD, max_method);
 808 
 809   if (max_task != nullptr && max_task->comp_level() == CompLevel_full_profile && TieredStopAtLevel > CompLevel_full_profile &&
 810       max_method != nullptr && is_method_profiled(max_method_h) && !Arguments::is_compiler_only()) {
 811     max_task->set_comp_level(CompLevel_limited_profile);
 812 
 813     if (CompileBroker::compilation_is_complete(max_method_h, max_task->osr_bci(), CompLevel_limited_profile)) {
 814       if (PrintTieredEvents) {
 815         print_event(REMOVE_FROM_QUEUE, max_method, max_method, max_task->osr_bci(), (CompLevel)max_task->comp_level());
 816       }
 817       compile_queue->remove_and_mark_stale(max_task);
 818       max_method->clear_queued_for_compilation();
 819       return nullptr;
 820     }
 821 
 822     if (PrintTieredEvents) {
 823       print_event(UPDATE_IN_QUEUE, max_method, max_method, max_task->osr_bci(), (CompLevel)max_task->comp_level());
 824     }
 825   }
 826   return max_task;
 827 }
 828 
 829 void CompilationPolicy::reprofile(ScopeDesc* trap_scope, bool is_osr) {
 830   for (ScopeDesc* sd = trap_scope;; sd = sd->sender()) {
 831     if (PrintTieredEvents) {
 832       print_event(REPROFILE, sd->method(), sd->method(), InvocationEntryBci, CompLevel_none);
 833     }
 834     MethodData* mdo = sd->method()->method_data();
 835     if (mdo != nullptr) {
 836       mdo->reset_start_counters();
 837     }
 838     if (sd->is_top()) break;
 839   }
 840 }
 841 
 842 nmethod* CompilationPolicy::event(const methodHandle& method, const methodHandle& inlinee,
 843                                       int branch_bci, int bci, CompLevel comp_level, nmethod* nm, TRAPS) {
 844   if (PrintTieredEvents) {
 845     print_event(bci == InvocationEntryBci ? CALL : LOOP, method(), inlinee(), bci, comp_level);
 846   }
 847 
 848 #if INCLUDE_JVMCI
 849   if (EnableJVMCI && UseJVMCICompiler &&
 850       comp_level == CompLevel_full_optimization CDS_ONLY(&& !AOTLinkedClassBulkLoader::class_preloading_finished())) {
 851     return nullptr;
 852   }
 853 #endif
 854 
 855   if (comp_level == CompLevel_none &&
 856       JvmtiExport::can_post_interpreter_events() &&
 857       THREAD->is_interp_only_mode()) {
 858     return nullptr;
 859   }
 860   if (ReplayCompiles) {
 861     // Don't trigger other compiles in testing mode
 862     return nullptr;
 863   }
 864 
 865   handle_counter_overflow(method);
 866   if (method() != inlinee()) {
 867     handle_counter_overflow(inlinee);
 868   }
 869 
 870   if (bci == InvocationEntryBci) {
 871     method_invocation_event(method, inlinee, comp_level, nm, THREAD);
 872   } else {
 873     // method == inlinee if the event originated in the main method
 874     method_back_branch_event(method, inlinee, bci, comp_level, nm, THREAD);
 875     // Check if event led to a higher level OSR compilation
 876     CompLevel expected_comp_level = MIN2(CompLevel_full_optimization, static_cast<CompLevel>(comp_level + 1));
 877     if (!CompilationModeFlag::disable_intermediate() && inlinee->is_not_osr_compilable(expected_comp_level)) {
 878       // It's not possible to reach the expected level so fall back to simple.
 879       expected_comp_level = CompLevel_simple;
 880     }
 881     CompLevel max_osr_level = static_cast<CompLevel>(inlinee->highest_osr_comp_level());
 882     if (max_osr_level >= expected_comp_level) { // fast check to avoid locking in a typical scenario
 883       nmethod* osr_nm = inlinee->lookup_osr_nmethod_for(bci, expected_comp_level, false);
 884       assert(osr_nm == nullptr || osr_nm->comp_level() >= expected_comp_level, "lookup_osr_nmethod_for is broken");
 885       if (osr_nm != nullptr && osr_nm->comp_level() != comp_level) {
 886         // Perform OSR with new nmethod
 887         return osr_nm;
 888       }
 889     }
 890   }
 891   return nullptr;
 892 }
 893 
 894 // Check if the method can be compiled, change level if necessary
 895 void CompilationPolicy::compile(const methodHandle& mh, int bci, CompLevel level, TRAPS) {
 896   assert(verify_level(level), "Invalid compilation level requested: %d", level);
 897 
 898   if (level == CompLevel_none) {
 899     if (mh->has_compiled_code()) {
 900       // Happens when we switch to interpreter to profile.
 901       MutexLocker ml(Compile_lock);
 902       NoSafepointVerifier nsv;
 903       if (mh->has_compiled_code()) {
 904         mh->code()->make_not_used();
 905       }
 906       // Deoptimize immediately (we don't have to wait for a compile).
 907       JavaThread* jt = THREAD;
 908       RegisterMap map(jt,
 909                       RegisterMap::UpdateMap::skip,
 910                       RegisterMap::ProcessFrames::include,
 911                       RegisterMap::WalkContinuation::skip);
 912       frame fr = jt->last_frame().sender(&map);
 913       Deoptimization::deoptimize_frame(jt, fr.id());
 914     }
 915     return;
 916   }
 917 
 918   if (!CompilationModeFlag::disable_intermediate()) {
 919     // Check if the method can be compiled. If it cannot be compiled with C1, continue profiling
 920     // in the interpreter and then compile with C2 (the transition function will request that,
 921     // see common() ). If the method cannot be compiled with C2 but still can with C1, compile it with
 922     // pure C1.
 923     if ((bci == InvocationEntryBci && !can_be_compiled(mh, level))) {
 924       if (level == CompLevel_full_optimization && can_be_compiled(mh, CompLevel_simple)) {
 925         compile(mh, bci, CompLevel_simple, THREAD);
 926       }
 927       return;
 928     }
 929     if ((bci != InvocationEntryBci && !can_be_osr_compiled(mh, level))) {
 930       if (level == CompLevel_full_optimization && can_be_osr_compiled(mh, CompLevel_simple)) {
 931         nmethod* osr_nm = mh->lookup_osr_nmethod_for(bci, CompLevel_simple, false);
 932         if (osr_nm != nullptr && osr_nm->comp_level() > CompLevel_simple) {
 933           // Invalidate the existing OSR nmethod so that a compile at CompLevel_simple is permitted.
 934           osr_nm->make_not_entrant(nmethod::ChangeReason::OSR_invalidation_for_compiling_with_C1);
 935         }
 936         compile(mh, bci, CompLevel_simple, THREAD);
 937       }
 938       return;
 939     }
 940   }
 941   if (bci != InvocationEntryBci && mh->is_not_osr_compilable(level)) {
 942     return;
 943   }
 944   if (!CompileBroker::compilation_is_in_queue(mh)) {
 945     if (PrintTieredEvents) {
 946       print_event(COMPILE, mh(), mh(), bci, level);
 947     }
 948     int hot_count = (bci == InvocationEntryBci) ? mh->invocation_count() : mh->backedge_count();
 949     update_rate(nanos_to_millis(os::javaTimeNanos()), mh);
 950     CompileBroker::compile_method(mh, bci, level, hot_count, CompileTask::Reason_Tiered, THREAD);
 951   }
 952 }
 953 
 954 // update_rate() is called from select_task() while holding a compile queue lock.
 955 void CompilationPolicy::update_rate(int64_t t, const methodHandle& method) {
 956   // Skip update if counters are absent.
 957   // Can't allocate them since we are holding compile queue lock.
 958   if (method->method_counters() == nullptr)  return;
 959 
 960   if (is_old(method)) {
 961     // We don't remove old methods from the queue,
 962     // so we can just zero the rate.
 963     method->set_rate(0);
 964     return;
 965   }
 966 
 967   // We don't update the rate if we've just came out of a safepoint.
 968   // delta_s is the time since last safepoint in milliseconds.
 969   int64_t delta_s = t - SafepointTracing::end_of_last_safepoint_ms();
 970   int64_t delta_t = t - (method->prev_time() != 0 ? method->prev_time() : start_time()); // milliseconds since the last measurement
 971   // How many events were there since the last time?
 972   int event_count = method->invocation_count() + method->backedge_count();
 973   int delta_e = event_count - method->prev_event_count();
 974 
 975   // We should be running for at least 1ms.
 976   if (delta_s >= TieredRateUpdateMinTime) {
 977     // And we must've taken the previous point at least 1ms before.
 978     if (delta_t >= TieredRateUpdateMinTime && delta_e > 0) {
 979       method->set_prev_time(t);
 980       method->set_prev_event_count(event_count);
 981       method->set_rate((float)delta_e / (float)delta_t); // Rate is events per millisecond
 982     } else {
 983       if (delta_t > TieredRateUpdateMaxTime && delta_e == 0) {
 984         // If nothing happened for 25ms, zero the rate. Don't modify prev values.
 985         method->set_rate(0);
 986       }
 987     }
 988   }
 989 }
 990 
 991 // Check if this method has been stale for a given number of milliseconds.
 992 // See select_task().
 993 bool CompilationPolicy::is_stale(int64_t t, int64_t timeout, const methodHandle& method) {
 994   int64_t delta_s = t - SafepointTracing::end_of_last_safepoint_ms();
 995   int64_t delta_t = t - method->prev_time();
 996   if (delta_t > timeout && delta_s > timeout) {
 997     int event_count = method->invocation_count() + method->backedge_count();
 998     int delta_e = event_count - method->prev_event_count();
 999     // Return true if there were no events.
1000     return delta_e == 0;
1001   }
1002   return false;
1003 }
1004 
1005 // We don't remove old methods from the compile queue even if they have
1006 // very low activity. See select_task().
1007 bool CompilationPolicy::is_old(const methodHandle& method) {
1008   int i = method->invocation_count();
1009   int b = method->backedge_count();
1010   double k = TieredOldPercentage / 100.0;
1011 
1012   return CallPredicate::apply_scaled(method, CompLevel_none, i, b, k) || LoopPredicate::apply_scaled(method, CompLevel_none, i, b, k);
1013 }
1014 
1015 double CompilationPolicy::weight(Method* method) {
1016   return (double)(method->rate() + 1) * (method->invocation_count() + 1) * (method->backedge_count() + 1);
1017 }
1018 
1019 // Apply heuristics and return true if x should be compiled before y
1020 bool CompilationPolicy::compare_methods(Method* x, Method* y) {
1021   if (x->highest_comp_level() > y->highest_comp_level()) {
1022     // recompilation after deopt
1023     return true;
1024   } else
1025     if (x->highest_comp_level() == y->highest_comp_level()) {
1026       if (weight(x) > weight(y)) {
1027         return true;
1028       }
1029     }
1030   return false;
1031 }
1032 
1033 // Is method profiled enough?
1034 bool CompilationPolicy::is_method_profiled(const methodHandle& method) {
1035   MethodData* mdo = method->method_data();
1036   if (mdo != nullptr) {
1037     int i = mdo->invocation_count_delta();
1038     int b = mdo->backedge_count_delta();
1039     return CallPredicate::apply_scaled(method, CompLevel_full_profile, i, b, 1);
1040   }
1041   return false;
1042 }
1043 
1044 
1045 // Determine is a method is mature.
1046 bool CompilationPolicy::is_mature(MethodData* mdo) {
1047   if (Arguments::is_compiler_only()) {
1048     // Always report profiles as immature with -Xcomp
1049     return false;
1050   }
1051   methodHandle mh(Thread::current(), mdo->method());
1052   if (mdo != nullptr) {
1053     int i = mdo->invocation_count();
1054     int b = mdo->backedge_count();
1055     double k = ProfileMaturityPercentage / 100.0;
1056     return CallPredicate::apply_scaled(mh, CompLevel_full_profile, i, b, k) || LoopPredicate::apply_scaled(mh, CompLevel_full_profile, i, b, k);
1057   }
1058   return false;
1059 }
1060 
1061 // If a method is old enough and is still in the interpreter we would want to
1062 // start profiling without waiting for the compiled method to arrive.
1063 // We also take the load on compilers into the account.
1064 bool CompilationPolicy::should_create_mdo(const methodHandle& method, CompLevel cur_level) {
1065   if (cur_level != CompLevel_none || force_comp_at_level_simple(method) || CompilationModeFlag::quick_only() || !ProfileInterpreter) {
1066     return false;
1067   }
1068 
1069   if (TrainingData::have_data()) {
1070     MethodTrainingData* mtd = MethodTrainingData::find_fast(method);
1071     if (mtd != nullptr && mtd->saw_level(CompLevel_full_optimization)) {
1072       return true;
1073     }
1074   }
1075 
1076   if (is_old(method)) {
1077     return true;
1078   }
1079 
1080   int i = method->invocation_count();
1081   int b = method->backedge_count();
1082   double k = Tier0ProfilingStartPercentage / 100.0;
1083 
1084   // If the top level compiler is not keeping up, delay profiling.
1085   if (CompileBroker::queue_size(CompLevel_full_optimization) <= Tier0Delay * compiler_count(CompLevel_full_optimization)) {
1086     return CallPredicate::apply_scaled(method, CompLevel_none, i, b, k) || LoopPredicate::apply_scaled(method, CompLevel_none, i, b, k);
1087   }
1088   return false;
1089 }
1090 
1091 // Inlining control: if we're compiling a profiled method with C1 and the callee
1092 // is known to have OSRed in a C2 version, don't inline it.
1093 bool CompilationPolicy::should_not_inline(ciEnv* env, ciMethod* callee) {
1094   CompLevel comp_level = (CompLevel)env->comp_level();
1095   if (comp_level == CompLevel_full_profile ||
1096       comp_level == CompLevel_limited_profile) {
1097     return callee->highest_osr_comp_level() == CompLevel_full_optimization;
1098   }
1099   return false;
1100 }
1101 
1102 // Create MDO if necessary.
1103 void CompilationPolicy::create_mdo(const methodHandle& mh, JavaThread* THREAD) {
1104   if (mh->is_native() ||
1105       mh->is_abstract() ||
1106       mh->is_accessor() ||
1107       mh->is_constant_getter()) {
1108     return;
1109   }
1110   if (mh->method_data() == nullptr) {
1111     Method::build_profiling_method_data(mh, CHECK_AND_CLEAR);
1112   }
1113   if (ProfileInterpreter && THREAD->has_last_Java_frame()) {
1114     MethodData* mdo = mh->method_data();
1115     if (mdo != nullptr) {
1116       frame last_frame = THREAD->last_frame();
1117       if (last_frame.is_interpreted_frame() && mh == last_frame.interpreter_frame_method()) {
1118         int bci = last_frame.interpreter_frame_bci();
1119         address dp = mdo->bci_to_dp(bci);
1120         last_frame.interpreter_frame_set_mdp(dp);
1121       }
1122     }
1123   }
1124 }
1125 
1126 CompLevel CompilationPolicy::trained_transition_from_none(const methodHandle& method, CompLevel cur_level, MethodTrainingData* mtd, JavaThread* THREAD) {
1127   precond(mtd != nullptr);
1128   precond(cur_level == CompLevel_none);
1129 
1130   if (mtd->only_inlined() && !mtd->saw_level(CompLevel_full_optimization)) {
1131     return CompLevel_none;
1132   }
1133 
1134   bool training_has_profile = (mtd->final_profile() != nullptr);
1135   if (mtd->saw_level(CompLevel_full_optimization) && !training_has_profile) {
1136     return CompLevel_full_profile;
1137   }
1138 
1139   CompLevel highest_training_level = static_cast<CompLevel>(mtd->highest_top_level());
1140   switch (highest_training_level) {
1141     case CompLevel_limited_profile:
1142     case CompLevel_full_profile:
1143       return CompLevel_limited_profile;
1144     case CompLevel_simple:
1145       return CompLevel_simple;
1146     case CompLevel_none:
1147       return CompLevel_none;
1148     default:
1149       break;
1150   }
1151 
1152   // Now handle the case of level 4.
1153   assert(highest_training_level == CompLevel_full_optimization, "Unexpected compilation level: %d", highest_training_level);
1154   if (!training_has_profile) {
1155     // The method was a part of a level 4 compile, but don't have a stored profile,
1156     // we need to profile it.
1157     return CompLevel_full_profile;
1158   }
1159   const bool deopt = (static_cast<CompLevel>(method->highest_comp_level()) == CompLevel_full_optimization);
1160   // If we deopted, then we reprofile
1161   if (deopt && !is_method_profiled(method)) {
1162     return CompLevel_full_profile;
1163   }
1164 
1165   CompileTrainingData* ctd = mtd->last_toplevel_compile(CompLevel_full_optimization);
1166   assert(ctd != nullptr, "Should have CTD for CompLevel_full_optimization");
1167   // With SkipTier2IfPossible and all deps satisfied, go to level 4 immediately
1168   if (SkipTier2IfPossible && ctd->init_deps_left() == 0) {
1169     if (method->method_data() == nullptr) {
1170       create_mdo(method, THREAD);
1171     }
1172     return CompLevel_full_optimization;
1173   }
1174 
1175   // Otherwise go to level 2
1176   return CompLevel_limited_profile;
1177 }
1178 
1179 
1180 CompLevel CompilationPolicy::trained_transition_from_limited_profile(const methodHandle& method, CompLevel cur_level, MethodTrainingData* mtd, JavaThread* THREAD) {
1181   precond(mtd != nullptr);
1182   precond(cur_level == CompLevel_limited_profile);
1183 
1184   // One of the main reasons that we can get here is that we're waiting for the stored C2 code to become ready.
1185 
1186   // But first, check if we have a saved profile
1187   bool training_has_profile = (mtd->final_profile() != nullptr);
1188   if (!training_has_profile) {
1189     return CompLevel_full_profile;
1190   }
1191 
1192 
1193   assert(training_has_profile, "Have to have a profile to be here");
1194   // Check if the method is ready
1195   CompileTrainingData* ctd = mtd->last_toplevel_compile(CompLevel_full_optimization);
1196   if (ctd != nullptr && ctd->init_deps_left() == 0) {
1197     if (method->method_data() == nullptr) {
1198       create_mdo(method, THREAD);
1199     }
1200     return CompLevel_full_optimization;
1201   }
1202 
1203   // Otherwise stay at the current level
1204   return CompLevel_limited_profile;
1205 }
1206 
1207 
1208 CompLevel CompilationPolicy::trained_transition_from_full_profile(const methodHandle& method, CompLevel cur_level, MethodTrainingData* mtd, JavaThread* THREAD) {
1209   precond(mtd != nullptr);
1210   precond(cur_level == CompLevel_full_profile);
1211 
1212   CompLevel highest_training_level = static_cast<CompLevel>(mtd->highest_top_level());
1213   // We have method at the full profile level and we also know that it's possibly an important method.
1214   if (highest_training_level == CompLevel_full_optimization && !mtd->only_inlined()) {
1215     // Check if it is adequately profiled
1216     if (is_method_profiled(method)) {
1217       return CompLevel_full_optimization;
1218     }
1219   }
1220 
1221   // Otherwise stay at the current level
1222   return CompLevel_full_profile;
1223 }
1224 
1225 CompLevel CompilationPolicy::trained_transition(const methodHandle& method, CompLevel cur_level, MethodTrainingData* mtd, JavaThread* THREAD) {
1226   precond(MethodTrainingData::have_data());
1227 
1228   // If there is no training data recorded for this method, bail out.
1229   if (mtd == nullptr) {
1230     return cur_level;
1231   }
1232 
1233   CompLevel next_level = cur_level;
1234   switch(cur_level) {
1235     default: break;
1236     case CompLevel_none:
1237       next_level = trained_transition_from_none(method, cur_level, mtd, THREAD);
1238       break;
1239     case CompLevel_limited_profile:
1240       next_level = trained_transition_from_limited_profile(method, cur_level, mtd, THREAD);
1241       break;
1242     case CompLevel_full_profile:
1243       next_level = trained_transition_from_full_profile(method, cur_level, mtd, THREAD);
1244       break;
1245   }
1246 
1247   // We don't have any special strategies for the C2-only compilation modes, so just fix up the levels for now.
1248   if (CompilationModeFlag::high_only_quick_internal() && CompLevel_simple < next_level && next_level < CompLevel_full_optimization) {
1249     return CompLevel_none;
1250   }
1251   if (CompilationModeFlag::high_only() && next_level < CompLevel_full_optimization) {
1252     return CompLevel_none;
1253   }
1254   return (cur_level != next_level) ? limit_level(next_level) : cur_level;
1255 }
1256 
1257 /*
1258  * Method states:
1259  *   0 - interpreter (CompLevel_none)
1260  *   1 - pure C1 (CompLevel_simple)
1261  *   2 - C1 with invocation and backedge counting (CompLevel_limited_profile)
1262  *   3 - C1 with full profiling (CompLevel_full_profile)
1263  *   4 - C2 or Graal (CompLevel_full_optimization)
1264  *
1265  * Common state transition patterns:
1266  * a. 0 -> 3 -> 4.
1267  *    The most common path. But note that even in this straightforward case
1268  *    profiling can start at level 0 and finish at level 3.
1269  *
1270  * b. 0 -> 2 -> 3 -> 4.
1271  *    This case occurs when the load on C2 is deemed too high. So, instead of transitioning
1272  *    into state 3 directly and over-profiling while a method is in the C2 queue we transition to
1273  *    level 2 and wait until the load on C2 decreases. This path is disabled for OSRs.
1274  *
1275  * c. 0 -> (3->2) -> 4.
1276  *    In this case we enqueue a method for compilation at level 3, but the C1 queue is long enough
1277  *    to enable the profiling to fully occur at level 0. In this case we change the compilation level
1278  *    of the method to 2 while the request is still in-queue, because it'll allow it to run much faster
1279  *    without full profiling while c2 is compiling.
1280  *
1281  * d. 0 -> 3 -> 1 or 0 -> 2 -> 1.
1282  *    After a method was once compiled with C1 it can be identified as trivial and be compiled to
1283  *    level 1. These transition can also occur if a method can't be compiled with C2 but can with C1.
1284  *
1285  * e. 0 -> 4.
1286  *    This can happen if a method fails C1 compilation (it will still be profiled in the interpreter)
1287  *    or because of a deopt that didn't require reprofiling (compilation won't happen in this case because
1288  *    the compiled version already exists).
1289  *
1290  * Note that since state 0 can be reached from any other state via deoptimization different loops
1291  * are possible.
1292  *
1293  */
1294 
1295 // Common transition function. Given a predicate determines if a method should transition to another level.
1296 template<typename Predicate>
1297 CompLevel CompilationPolicy::common(const methodHandle& method, CompLevel cur_level, JavaThread* THREAD, bool disable_feedback) {
1298   CompLevel next_level = cur_level;
1299 
1300   if (force_comp_at_level_simple(method)) {
1301     next_level = CompLevel_simple;
1302   } else if (is_trivial(method) || method->is_native()) {
1303     // We do not care if there is profiling data for these methods, throw them to compiler.
1304     next_level = CompilationModeFlag::disable_intermediate() ? CompLevel_full_optimization : CompLevel_simple;
1305   } else if (MethodTrainingData::have_data()) {
1306     MethodTrainingData* mtd = MethodTrainingData::find_fast(method);
1307     if (mtd == nullptr) {
1308       // We haven't see compilations of this method in training. It's either very cold or the behavior changed.
1309       // Feed it to the standard TF with no profiling delay.
1310       next_level = standard_transition<Predicate>(method, cur_level, false /*delay_profiling*/, disable_feedback);
1311     } else {
1312       next_level = trained_transition(method, cur_level, mtd, THREAD);
1313       if (cur_level == next_level) {
1314         // trained_transtion() is going to return the same level if no startup/warmup optimizations apply.
1315         // In order to catch possible pathologies due to behavior change we feed the event to the regular
1316         // TF but with profiling delay.
1317         next_level = standard_transition<Predicate>(method, cur_level, true /*delay_profiling*/, disable_feedback);
1318       }
1319     }
1320   } else {
1321     next_level = standard_transition<Predicate>(method, cur_level, false /*delay_profiling*/, disable_feedback);
1322   }
1323   return (next_level != cur_level) ? limit_level(next_level) : next_level;
1324 }
1325 
1326 
1327 template<typename Predicate>
1328 CompLevel CompilationPolicy::standard_transition(const methodHandle& method, CompLevel cur_level, bool delay_profiling, bool disable_feedback) {
1329   CompLevel next_level = cur_level;
1330   switch(cur_level) {
1331   default: break;
1332   case CompLevel_none:
1333     next_level = transition_from_none<Predicate>(method, cur_level, delay_profiling, disable_feedback);
1334     break;
1335   case CompLevel_limited_profile:
1336     next_level = transition_from_limited_profile<Predicate>(method, cur_level, delay_profiling, disable_feedback);
1337     break;
1338   case CompLevel_full_profile:
1339     next_level = transition_from_full_profile<Predicate>(method, cur_level);
1340     break;
1341   }
1342   return next_level;
1343 }
1344 
1345 template<typename Predicate> static inline bool apply_predicate(const methodHandle& method, CompLevel cur_level, int i, int b, bool delay_profiling, double delay_profiling_scale) {
1346   if (delay_profiling) {
1347     return Predicate::apply_scaled(method, cur_level, i, b, delay_profiling_scale);
1348   } else {
1349     return Predicate::apply(method, cur_level, i, b);
1350   }
1351 }
1352 
1353 template<typename Predicate>
1354 CompLevel CompilationPolicy::transition_from_none(const methodHandle& method, CompLevel cur_level, bool delay_profiling, bool disable_feedback) {
1355   precond(cur_level == CompLevel_none);
1356   CompLevel next_level = cur_level;
1357   int i = method->invocation_count();
1358   int b = method->backedge_count();
1359   // If we were at full profile level, would we switch to full opt?
1360   if (transition_from_full_profile<Predicate>(method, CompLevel_full_profile) == CompLevel_full_optimization) {
1361     next_level = CompLevel_full_optimization;
1362   } else if (!CompilationModeFlag::disable_intermediate() && apply_predicate<Predicate>(method, cur_level, i, b, delay_profiling, Tier0ProfileDelayFactor)) {
1363     // C1-generated fully profiled code is about 30% slower than the limited profile
1364     // code that has only invocation and backedge counters. The observation is that
1365     // if C2 queue is large enough we can spend too much time in the fully profiled code
1366     // while waiting for C2 to pick the method from the queue. To alleviate this problem
1367     // we introduce a feedback on the C2 queue size. If the C2 queue is sufficiently long
1368     // we choose to compile a limited profiled version and then recompile with full profiling
1369     // when the load on C2 goes down.
1370     if (delay_profiling || (!disable_feedback && CompileBroker::queue_size(CompLevel_full_optimization) > Tier3DelayOn * compiler_count(CompLevel_full_optimization))) {
1371       next_level = CompLevel_limited_profile;
1372     } else {
1373       next_level = CompLevel_full_profile;
1374     }
1375   }
1376   return next_level;
1377 }
1378 
1379 template<typename Predicate>
1380 CompLevel CompilationPolicy::transition_from_full_profile(const methodHandle& method, CompLevel cur_level) {
1381   precond(cur_level == CompLevel_full_profile);
1382   CompLevel next_level = cur_level;
1383   MethodData* mdo = method->method_data();
1384   if (mdo != nullptr) {
1385     if (mdo->would_profile() || CompilationModeFlag::disable_intermediate()) {
1386       int mdo_i = mdo->invocation_count_delta();
1387       int mdo_b = mdo->backedge_count_delta();
1388       if (Predicate::apply(method, cur_level, mdo_i, mdo_b)) {
1389         next_level = CompLevel_full_optimization;
1390       }
1391     } else {
1392       next_level = CompLevel_full_optimization;
1393     }
1394   }
1395   return next_level;
1396 }
1397 
1398 template<typename Predicate>
1399 CompLevel CompilationPolicy::transition_from_limited_profile(const methodHandle& method, CompLevel cur_level, bool delay_profiling, bool disable_feedback) {
1400   precond(cur_level == CompLevel_limited_profile);
1401   CompLevel next_level = cur_level;
1402   int i = method->invocation_count();
1403   int b = method->backedge_count();
1404   MethodData* mdo = method->method_data();
1405   if (mdo != nullptr) {
1406     if (mdo->would_profile()) {
1407       if (disable_feedback || (CompileBroker::queue_size(CompLevel_full_optimization) <=
1408                               Tier3DelayOff * compiler_count(CompLevel_full_optimization) &&
1409                               apply_predicate<Predicate>(method, cur_level, i, b, delay_profiling, Tier2ProfileDelayFactor))) {
1410         next_level = CompLevel_full_profile;
1411       }
1412     } else {
1413       next_level = CompLevel_full_optimization;
1414     }
1415   } else {
1416     // If there is no MDO we need to profile
1417     if (disable_feedback || (CompileBroker::queue_size(CompLevel_full_optimization) <=
1418                             Tier3DelayOff * compiler_count(CompLevel_full_optimization) &&
1419                             apply_predicate<Predicate>(method, cur_level, i, b, delay_profiling, Tier2ProfileDelayFactor))) {
1420       next_level = CompLevel_full_profile;
1421     }
1422   }
1423   if (next_level == CompLevel_full_profile && is_method_profiled(method)) {
1424     next_level = CompLevel_full_optimization;
1425   }
1426   return next_level;
1427 }
1428 
1429 
1430 // Determine if a method should be compiled with a normal entry point at a different level.
1431 CompLevel CompilationPolicy::call_event(const methodHandle& method, CompLevel cur_level, JavaThread* THREAD) {
1432   CompLevel osr_level = MIN2((CompLevel) method->highest_osr_comp_level(), common<LoopPredicate>(method, cur_level, THREAD, true));
1433   CompLevel next_level = common<CallPredicate>(method, cur_level, THREAD, !TrainingData::have_data() && is_old(method));
1434 
1435   // If OSR method level is greater than the regular method level, the levels should be
1436   // equalized by raising the regular method level in order to avoid OSRs during each
1437   // invocation of the method.
1438   if (osr_level == CompLevel_full_optimization && cur_level == CompLevel_full_profile) {
1439     MethodData* mdo = method->method_data();
1440     guarantee(mdo != nullptr, "MDO should not be nullptr");
1441     if (mdo->invocation_count() >= 1) {
1442       next_level = CompLevel_full_optimization;
1443     }
1444   } else {
1445     next_level = MAX2(osr_level, next_level);
1446   }
1447 #if INCLUDE_JVMCI
1448   if (EnableJVMCI && UseJVMCICompiler &&
1449       next_level == CompLevel_full_optimization CDS_ONLY(&& !AOTLinkedClassBulkLoader::class_preloading_finished())) {
1450     next_level = cur_level;
1451   }
1452 #endif
1453   return next_level;
1454 }
1455 
1456 // Determine if we should do an OSR compilation of a given method.
1457 CompLevel CompilationPolicy::loop_event(const methodHandle& method, CompLevel cur_level, JavaThread* THREAD) {
1458   CompLevel next_level = common<LoopPredicate>(method, cur_level, THREAD, true);
1459   if (cur_level == CompLevel_none) {
1460     // If there is a live OSR method that means that we deopted to the interpreter
1461     // for the transition.
1462     CompLevel osr_level = MIN2((CompLevel)method->highest_osr_comp_level(), next_level);
1463     if (osr_level > CompLevel_none) {
1464       return osr_level;
1465     }
1466   }
1467   return next_level;
1468 }
1469 
1470 // Handle the invocation event.
1471 void CompilationPolicy::method_invocation_event(const methodHandle& mh, const methodHandle& imh,
1472                                                       CompLevel level, nmethod* nm, TRAPS) {
1473   if (should_create_mdo(mh, level)) {
1474     create_mdo(mh, THREAD);
1475   }
1476   CompLevel next_level = call_event(mh, level, THREAD);
1477   if (next_level != level) {
1478     if (is_compilation_enabled() && !CompileBroker::compilation_is_in_queue(mh)) {
1479       compile(mh, InvocationEntryBci, next_level, THREAD);
1480     }
1481   }
1482 }
1483 
1484 // Handle the back branch event. Notice that we can compile the method
1485 // with a regular entry from here.
1486 void CompilationPolicy::method_back_branch_event(const methodHandle& mh, const methodHandle& imh,
1487                                                      int bci, CompLevel level, nmethod* nm, TRAPS) {
1488   if (should_create_mdo(mh, level)) {
1489     create_mdo(mh, THREAD);
1490   }
1491   // Check if MDO should be created for the inlined method
1492   if (should_create_mdo(imh, level)) {
1493     create_mdo(imh, THREAD);
1494   }
1495 
1496   if (is_compilation_enabled()) {
1497     CompLevel next_osr_level = loop_event(imh, level, THREAD);
1498     CompLevel max_osr_level = (CompLevel)imh->highest_osr_comp_level();
1499     // At the very least compile the OSR version
1500     if (!CompileBroker::compilation_is_in_queue(imh) && (next_osr_level != level)) {
1501       compile(imh, bci, next_osr_level, CHECK);
1502     }
1503 
1504     // Use loop event as an opportunity to also check if there's been
1505     // enough calls.
1506     CompLevel cur_level, next_level;
1507     if (mh() != imh()) { // If there is an enclosing method
1508       {
1509         guarantee(nm != nullptr, "Should have nmethod here");
1510         cur_level = comp_level(mh());
1511         next_level = call_event(mh, cur_level, THREAD);
1512 
1513         if (max_osr_level == CompLevel_full_optimization) {
1514           // The inlinee OSRed to full opt, we need to modify the enclosing method to avoid deopts
1515           bool make_not_entrant = false;
1516           if (nm->is_osr_method()) {
1517             // This is an osr method, just make it not entrant and recompile later if needed
1518             make_not_entrant = true;
1519           } else {
1520             if (next_level != CompLevel_full_optimization) {
1521               // next_level is not full opt, so we need to recompile the
1522               // enclosing method without the inlinee
1523               cur_level = CompLevel_none;
1524               make_not_entrant = true;
1525             }
1526           }
1527           if (make_not_entrant) {
1528             if (PrintTieredEvents) {
1529               int osr_bci = nm->is_osr_method() ? nm->osr_entry_bci() : InvocationEntryBci;
1530               print_event(MAKE_NOT_ENTRANT, mh(), mh(), osr_bci, level);
1531             }
1532             nm->make_not_entrant(nmethod::ChangeReason::OSR_invalidation_back_branch);
1533           }
1534         }
1535         // Fix up next_level if necessary to avoid deopts
1536         if (next_level == CompLevel_limited_profile && max_osr_level == CompLevel_full_profile) {
1537           next_level = CompLevel_full_profile;
1538         }
1539         if (cur_level != next_level) {
1540           if (!CompileBroker::compilation_is_in_queue(mh)) {
1541             compile(mh, InvocationEntryBci, next_level, THREAD);
1542           }
1543         }
1544       }
1545     } else {
1546       cur_level = comp_level(mh());
1547       next_level = call_event(mh, cur_level, THREAD);
1548       if (next_level != cur_level) {
1549         if (!CompileBroker::compilation_is_in_queue(mh)) {
1550           compile(mh, InvocationEntryBci, next_level, THREAD);
1551         }
1552       }
1553     }
1554   }
1555 }
1556