# HG changeset patch # User tonyp # Date 1240520296 14400 # Node ID 3a18c3dc7d982226a1f537d948c7b3df64055667 # Parent 6f7f2fc3e1a1c17468856ee2ca43a1f0ff7ea0e6 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 diff -r 6f7f2fc3e1a1 -r 3a18c3dc7d98 src/share/vm/gc_implementation/g1/g1_globals.hpp --- 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, \ diff -r 6f7f2fc3e1a1 -r 3a18c3dc7d98 src/share/vm/gc_implementation/g1/heapRegion.cpp --- 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"); }