hotspot/src/share/vm/runtime/simpleThresholdPolicy.inline.hpp
changeset 46407 32baebe49efe
parent 46375 1b360c12efc7
equal deleted inserted replaced
44722:1407b19a2ddf 46407:32baebe49efe
    75       method->is_constant_getter()) {
    75       method->is_constant_getter()) {
    76     return true;
    76     return true;
    77   }
    77   }
    78 #if INCLUDE_JVMCI
    78 #if INCLUDE_JVMCI
    79   if (UseJVMCICompiler) {
    79   if (UseJVMCICompiler) {
    80     if (TieredCompilation && CompileBroker::compiler(CompLevel_full_optimization) != NULL &&
    80     AbstractCompiler* comp = CompileBroker::compiler(CompLevel_full_optimization);
    81         CompileBroker::compiler(CompLevel_full_optimization)->is_trivial(method)) {
    81     if (TieredCompilation && comp != NULL && comp->is_trivial(method)) {
    82       return true;
    82       return true;
    83     }
    83     }
    84   }
    84   }
    85 #endif
    85 #endif
    86   if (method->has_loops() || method->code_size() >= 15) {
    86   if (method->has_loops() || method->code_size() >= 15) {