--- old/src/share/vm/runtime/advancedThresholdPolicy.cpp 2014-04-14 10:01:26.963015908 +0200 +++ new/src/share/vm/runtime/advancedThresholdPolicy.cpp 2014-04-14 10:01:25.927015869 +0200 @@ -211,7 +211,7 @@ // The main intention is to keep enough free space for C2 compiled code // to achieve peak performance if the code cache is under stress. if ((TieredStopAtLevel == CompLevel_full_optimization) && (level != CompLevel_full_optimization)) { - double current_reverse_free_ratio = CodeCache::reverse_free_ratio(); + double current_reverse_free_ratio = CodeCache::reverse_free_ratio(CodeCache::get_code_blob_type(level)); if (current_reverse_free_ratio > _increase_threshold_at_ratio) { k *= exp(current_reverse_free_ratio - _increase_threshold_at_ratio); }