src/hotspot/share/runtime/tieredThresholdPolicy.cpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File open Cdiff src/hotspot/share/runtime/tieredThresholdPolicy.cpp

src/hotspot/share/runtime/tieredThresholdPolicy.cpp

Print this page

        

*** 32,42 **** #include "runtime/safepointVerifiers.hpp" #include "runtime/tieredThresholdPolicy.hpp" #include "code/scopeDesc.hpp" #include "oops/method.inline.hpp" #if INCLUDE_JVMCI ! #include "jvmci/jvmciRuntime.hpp" #endif #ifdef TIERED #include "c1/c1_Compiler.hpp" --- 32,42 ---- #include "runtime/safepointVerifiers.hpp" #include "runtime/tieredThresholdPolicy.hpp" #include "code/scopeDesc.hpp" #include "oops/method.inline.hpp" #if INCLUDE_JVMCI ! #include "jvmci/jvmci.hpp" #endif #ifdef TIERED #include "c1/c1_Compiler.hpp"
*** 825,835 **** } else { next_level = MAX2(osr_level, next_level); } #if INCLUDE_JVMCI if (UseJVMCICompiler) { ! next_level = JVMCIRuntime::adjust_comp_level(method, false, next_level, thread); } #endif return next_level; } --- 825,835 ---- } else { next_level = MAX2(osr_level, next_level); } #if INCLUDE_JVMCI if (UseJVMCICompiler) { ! next_level = JVMCI::adjust_comp_level(method, false, next_level, thread); } #endif return next_level; }
*** 844,854 **** return osr_level; } } #if INCLUDE_JVMCI if (UseJVMCICompiler) { ! next_level = JVMCIRuntime::adjust_comp_level(method, true, next_level, thread); } #endif return next_level; } --- 844,854 ---- return osr_level; } } #if INCLUDE_JVMCI if (UseJVMCICompiler) { ! next_level = JVMCI::adjust_comp_level(method, true, next_level, thread); } #endif return next_level; }
src/hotspot/share/runtime/tieredThresholdPolicy.cpp
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File