hotspot/src/share/vm/gc_implementation/g1/collectionSetChooser.cpp
changeset 2344 f2e09ba7ceab
parent 1374 4c24294029a9
child 3261 c7d5aae8d3f7
equal deleted inserted replaced
2261:a93be5632119 2344:f2e09ba7ceab
   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",