hotspot/src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.cpp
changeset 12379 2cf45b79ce3a
parent 11758 b1a0089f89d2
child 13195 be27e1b6a4b9
equal deleted inserted replaced
12378:ed44b9ecfa2f 12379:2cf45b79ce3a
   909     tty->print_cr("[Accumulated GC generation 1 time %3.7f secs]", time);
   909     tty->print_cr("[Accumulated GC generation 1 time %3.7f secs]", time);
   910   }
   910   }
   911 }
   911 }
   912 
   912 
   913 
   913 
   914 void ParallelScavengeHeap::verify(bool allow_dirty, bool silent, VerifyOption option /* ignored */) {
   914 void ParallelScavengeHeap::verify(bool silent, VerifyOption option /* ignored */) {
   915   // Why do we need the total_collections()-filter below?
   915   // Why do we need the total_collections()-filter below?
   916   if (total_collections() > 0) {
   916   if (total_collections() > 0) {
   917     if (!silent) {
   917     if (!silent) {
   918       gclog_or_tty->print("permanent ");
   918       gclog_or_tty->print("permanent ");
   919     }
   919     }
   920     perm_gen()->verify(allow_dirty);
   920     perm_gen()->verify();
   921 
   921 
   922     if (!silent) {
   922     if (!silent) {
   923       gclog_or_tty->print("tenured ");
   923       gclog_or_tty->print("tenured ");
   924     }
   924     }
   925     old_gen()->verify(allow_dirty);
   925     old_gen()->verify();
   926 
   926 
   927     if (!silent) {
   927     if (!silent) {
   928       gclog_or_tty->print("eden ");
   928       gclog_or_tty->print("eden ");
   929     }
   929     }
   930     young_gen()->verify(allow_dirty);
   930     young_gen()->verify();
   931   }
   931   }
   932 }
   932 }
   933 
   933 
   934 void ParallelScavengeHeap::print_heap_change(size_t prev_used) {
   934 void ParallelScavengeHeap::print_heap_change(size_t prev_used) {
   935   if (PrintGCDetails && Verbose) {
   935   if (PrintGCDetails && Verbose) {