changeset 548:3a18c3dc7d98

6829013: G1: set the default value of G1VerifyConcMarkPrintRechable to false Summary: Turn off G1VerifyConcMarkPrintReachable by default to minimize the amount of verbose output we generate by default. Reviewed-by: jmasa
author tonyp
date Thu, 23 Apr 2009 16:58:16 -0400
parents 6f7f2fc3e1a1
children d1d334a18b5c
files src/share/vm/gc_implementation/g1/g1_globals.hpp src/share/vm/gc_implementation/g1/heapRegion.cpp
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/gc_implementation/g1/g1_globals.hpp	Thu Mar 26 08:51:32 2009 -0700
+++ b/src/share/vm/gc_implementation/g1/g1_globals.hpp	Thu Apr 23 16:58:16 2009 -0400
@@ -71,7 +71,7 @@
   develop(intx, G1MarkingVerboseLevel, 0,                                   \
           "Level (0-4) of verboseness of the marking code")                 \
                                                                             \
-  develop(bool, G1VerifyConcMarkPrintReachable, true,                       \
+  develop(bool, G1VerifyConcMarkPrintReachable, false,                      \
           "If conc mark verification fails, print reachable objects")       \
                                                                             \
   develop(bool, G1TraceMarkStackOverflow, false,                            \
--- a/src/share/vm/gc_implementation/g1/heapRegion.cpp	Thu Mar 26 08:51:32 2009 -0700
+++ b/src/share/vm/gc_implementation/g1/heapRegion.cpp	Thu Apr 23 16:58:16 2009 -0400
@@ -718,7 +718,7 @@
       vl_cl.failures()) {
     g1->concurrent_mark()->print_prev_bitmap_reachable();
   }
-  guarantee(!vl_cl.failures(), "should not have had any failures");
+  guarantee(!vl_cl.failures(), "region verification failed");
   guarantee(p == top(), "end of last object must match end of space");
 }