hotspot/src/share/vm/runtime/arguments.cpp
changeset 20290 2127dc70bce9
parent 20288 e2d549f40de9
child 20292 cc05f6bf3560
--- a/hotspot/src/share/vm/runtime/arguments.cpp	Fri Sep 27 08:39:19 2013 +0200
+++ b/hotspot/src/share/vm/runtime/arguments.cpp	Fri Sep 27 10:50:55 2013 +0200
@@ -1130,6 +1130,9 @@
     Tier3InvokeNotifyFreqLog = 0;
     Tier4InvocationThreshold = 0;
   }
+  if (FLAG_IS_DEFAULT(NmethodSweepFraction)) {
+    FLAG_SET_DEFAULT(NmethodSweepFraction, 1 + ReservedCodeCacheSize / (16 * M));
+  }
 }
 
 #if INCLUDE_ALL_GCS
@@ -2333,6 +2336,10 @@
                 (2*G)/M);
     status = false;
   }
+
+  status &= verify_interval(NmethodSweepFraction, 1, ReservedCodeCacheSize/K, "NmethodSweepFraction");
+  status &= verify_interval(NmethodSweepActivity, 0, 2000, "NmethodSweepActivity");
+
   return status;
 }