--- old/src/hotspot/share/runtime/tieredThresholdPolicy.cpp 2019-03-28 11:23:25.000000000 -0700 +++ new/src/hotspot/share/runtime/tieredThresholdPolicy.cpp 2019-03-28 11:23:24.000000000 -0700 @@ -34,7 +34,7 @@ #include "code/scopeDesc.hpp" #include "oops/method.inline.hpp" #if INCLUDE_JVMCI -#include "jvmci/jvmciRuntime.hpp" +#include "jvmci/jvmci.hpp" #endif #ifdef TIERED @@ -827,7 +827,7 @@ } #if INCLUDE_JVMCI if (UseJVMCICompiler) { - next_level = JVMCIRuntime::adjust_comp_level(method, false, next_level, thread); + next_level = JVMCI::adjust_comp_level(method, false, next_level, thread); } #endif return next_level; @@ -846,7 +846,7 @@ } #if INCLUDE_JVMCI if (UseJVMCICompiler) { - next_level = JVMCIRuntime::adjust_comp_level(method, true, next_level, thread); + next_level = JVMCI::adjust_comp_level(method, true, next_level, thread); } #endif return next_level;