comparison src/share/vm/gc_implementation/g1/heapRegion.cpp @ 745:2b6c55e36143

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 96b229c54d1e
children 20c6f43950b5
comparison
equal deleted inserted replaced
714:981375ca07b7 745:2b6c55e36143
716 if (G1VerifyConcMark && 716 if (G1VerifyConcMark &&
717 G1VerifyConcMarkPrintReachable && 717 G1VerifyConcMarkPrintReachable &&
718 vl_cl.failures()) { 718 vl_cl.failures()) {
719 g1->concurrent_mark()->print_prev_bitmap_reachable(); 719 g1->concurrent_mark()->print_prev_bitmap_reachable();
720 } 720 }
721 guarantee(!vl_cl.failures(), "should not have had any failures"); 721 guarantee(!vl_cl.failures(), "region verification failed");
722 guarantee(p == top(), "end of last object must match end of space"); 722 guarantee(p == top(), "end of last object must match end of space");
723 } 723 }
724 724
725 // G1OffsetTableContigSpace code; copied from space.cpp. Hope this can go 725 // G1OffsetTableContigSpace code; copied from space.cpp. Hope this can go
726 // away eventually. 726 // away eventually.