comparison src/share/vm/gc_implementation/g1/collectionSetChooser.cpp @ 677:96b229c54d1e

6543938: G1: remove the concept of popularity Reviewed-by: iveresov, tonyp
author apetrusenko
date Wed, 25 Mar 2009 13:10:54 -0700
parents 37f87013dfd8
children bd02caa94611
comparison
equal deleted inserted replaced
649:59f139e8a8d1 677:96b229c54d1e
275 printHeapRegion(HeapRegion *hr) { 275 printHeapRegion(HeapRegion *hr) {
276 if (hr->isHumongous()) 276 if (hr->isHumongous())
277 gclog_or_tty->print("H: "); 277 gclog_or_tty->print("H: ");
278 if (hr->in_collection_set()) 278 if (hr->in_collection_set())
279 gclog_or_tty->print("CS: "); 279 gclog_or_tty->print("CS: ");
280 if (hr->popular())
281 gclog_or_tty->print("pop: ");
282 gclog_or_tty->print_cr("Region " PTR_FORMAT " (%s%s) " 280 gclog_or_tty->print_cr("Region " PTR_FORMAT " (%s%s) "
283 "[" PTR_FORMAT ", " PTR_FORMAT"] " 281 "[" PTR_FORMAT ", " PTR_FORMAT"] "
284 "Used: " SIZE_FORMAT "K, garbage: " SIZE_FORMAT "K.", 282 "Used: " SIZE_FORMAT "K, garbage: " SIZE_FORMAT "K.",
285 hr, hr->is_young() ? "Y " : " ", 283 hr, hr->is_young() ? "Y " : " ",
286 hr->is_marked()? "M1" : "M0", 284 hr->is_marked()? "M1" : "M0",