src/hotspot/share/oops/methodData.cpp
changeset 50589 e5d741569070
parent 50429 83aec1d357d4
child 53278 4b469f5f4bf2
equal deleted inserted replaced
50588:1ab701eb7de4 50589:e5d741569070
  1215   _backedge_counter_start = 0;
  1215   _backedge_counter_start = 0;
  1216 
  1216 
  1217   // Set per-method invoke- and backedge mask.
  1217   // Set per-method invoke- and backedge mask.
  1218   double scale = 1.0;
  1218   double scale = 1.0;
  1219   CompilerOracle::has_option_value(_method, "CompileThresholdScaling", scale);
  1219   CompilerOracle::has_option_value(_method, "CompileThresholdScaling", scale);
  1220   _invoke_mask = right_n_bits(Arguments::scaled_freq_log(Tier0InvokeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
  1220   _invoke_mask = right_n_bits(CompilerConfig::scaled_freq_log(Tier0InvokeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
  1221   _backedge_mask = right_n_bits(Arguments::scaled_freq_log(Tier0BackedgeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
  1221   _backedge_mask = right_n_bits(CompilerConfig::scaled_freq_log(Tier0BackedgeNotifyFreqLog, scale)) << InvocationCounter::count_shift;
  1222 
  1222 
  1223   _tenure_traps = 0;
  1223   _tenure_traps = 0;
  1224   _num_loops = 0;
  1224   _num_loops = 0;
  1225   _num_blocks = 0;
  1225   _num_blocks = 0;
  1226   _would_profile = unknown;
  1226   _would_profile = unknown;