diff src/share/vm/runtime/thread.cpp @ 9071:68fe50d4f1d5

8011343: Add new flag for verifying the heap during startup Summary: Perform verification during VM startup under control of new flag and within a VMOperation. Reviewed-by: stefank, jmasa, brutisso
author johnc
date Fri, 05 Apr 2013 10:20:04 -0700
parents 24ef5fb05e0f
children 89e4d67fdd2a 6f817ce50129 b06ac540229e
line wrap: on
line diff
--- a/src/share/vm/runtime/thread.cpp	Thu Apr 04 21:15:43 2013 -0700
+++ b/src/share/vm/runtime/thread.cpp	Fri Apr 05 10:20:04 2013 -0700
@@ -3446,9 +3446,9 @@
   }
 
   assert (Universe::is_fully_initialized(), "not initialized");
-  if (VerifyBeforeGC && VerifyGCStartAt == 0) {
-    Universe::heap()->prepare_for_verify();
-    Universe::verify();   // make sure we're starting with a clean slate
+  if (VerifyDuringStartup) {
+    VM_Verify verify_op(false /* silent */);   // make sure we're starting with a clean slate
+    VMThread::execute(&verify_op);
   }
 
   EXCEPTION_MARK;