src/hotspot/share/oops/methodData.cpp
changeset 50589 e5d741569070
parent 50429 83aec1d357d4
child 53278 4b469f5f4bf2
--- a/src/hotspot/share/oops/methodData.cpp	Fri Jun 15 08:28:08 2018 -0700
+++ b/src/hotspot/share/oops/methodData.cpp	Fri Jun 15 09:16:48 2018 -0700
@@ -1217,8 +1217,8 @@
   // Set per-method invoke- and backedge mask.
   double scale = 1.0;
   CompilerOracle::has_option_value(_method, "CompileThresholdScaling", scale);
-  _invoke_mask = right_n_bits(Arguments::scaled_freq_log(Tier0InvokeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
-  _backedge_mask = right_n_bits(Arguments::scaled_freq_log(Tier0BackedgeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
+  _invoke_mask = right_n_bits(CompilerConfig::scaled_freq_log(Tier0InvokeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
+  _backedge_mask = right_n_bits(CompilerConfig::scaled_freq_log(Tier0BackedgeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
 
   _tenure_traps = 0;
   _num_loops = 0;