comparison src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp @ 1044:6270f80a7331

6890137: G1: revamp reachable object dump Summary: Revamp the reachable object dump debugging facility. Reviewed-by: jmasa, apetrusenko
author tonyp
date Wed, 30 Sep 2009 14:50:51 -0400
parents ff2402f6a50b
children fa2f65ebeb08
comparison
equal deleted inserted replaced
1043:fc06cd9b42c7 1044:6270f80a7331
2369 2369
2370 if (failures) { 2370 if (failures) {
2371 gclog_or_tty->print_cr("Heap:"); 2371 gclog_or_tty->print_cr("Heap:");
2372 print_on(gclog_or_tty, true /* extended */); 2372 print_on(gclog_or_tty, true /* extended */);
2373 gclog_or_tty->print_cr(""); 2373 gclog_or_tty->print_cr("");
2374 if (VerifyDuringGC && G1VerifyConcMarkPrintReachable) { 2374 if (VerifyDuringGC && G1VerifyDuringGCPrintReachable) {
2375 concurrent_mark()->print_prev_bitmap_reachable(); 2375 concurrent_mark()->print_reachable(use_prev_marking,
2376 "failed-verification");
2376 } 2377 }
2377 gclog_or_tty->flush(); 2378 gclog_or_tty->flush();
2378 } 2379 }
2379 guarantee(!failures, "there should not have been any failures"); 2380 guarantee(!failures, "there should not have been any failures");
2380 } else { 2381 } else {