--- old/src/hotspot/share/c1/c1_LIRGenerator.cpp 2018-05-03 12:25:33.000000000 -0700 +++ new/src/hotspot/share/c1/c1_LIRGenerator.cpp 2018-05-03 12:25:33.000000000 -0700 @@ -3248,7 +3248,7 @@ int freq_log = Tier23InlineeNotifyFreqLog; double scale; if (_method->has_option_value("CompileThresholdScaling", scale)) { - freq_log = Arguments::scaled_freq_log(freq_log, scale); + freq_log = CompilerConfig::scaled_freq_log(freq_log, scale); } increment_event_counter_impl(info, x->inlinee(), right_n_bits(freq_log), InvocationEntryBci, false, true); } @@ -3267,7 +3267,7 @@ // Increment the appropriate invocation/backedge counter and notify the runtime. double scale; if (_method->has_option_value("CompileThresholdScaling", scale)) { - freq_log = Arguments::scaled_freq_log(freq_log, scale); + freq_log = CompilerConfig::scaled_freq_log(freq_log, scale); } increment_event_counter_impl(info, info->scope()->method(), right_n_bits(freq_log), bci, backedge, true); }