comparison src/share/vm/gc_implementation/parallelScavenge/psMarkSweep.cpp @ 628:7bb995fbd3c0

Merge
author trims
date Thu, 12 Mar 2009 18:16:36 -0700
parents 0fbdb4381b99 c6c601a0f2d6
children 8b46c4d82093 148e5441d916
comparison
equal deleted inserted replaced
580:ce2272390558 628:7bb995fbd3c0
123 VerifyBeforeGC) { 123 VerifyBeforeGC) {
124 old_gen->verify_object_start_array(); 124 old_gen->verify_object_start_array();
125 perm_gen->verify_object_start_array(); 125 perm_gen->verify_object_start_array();
126 } 126 }
127 127
128 heap->pre_full_gc_dump();
129
128 // Filled in below to track the state of the young gen after the collection. 130 // Filled in below to track the state of the young gen after the collection.
129 bool eden_empty; 131 bool eden_empty;
130 bool survivors_empty; 132 bool survivors_empty;
131 bool young_gen_empty; 133 bool young_gen_empty;
132 134
361 363
362 if (PrintHeapAtGC) { 364 if (PrintHeapAtGC) {
363 Universe::print_heap_after_gc(); 365 Universe::print_heap_after_gc();
364 } 366 }
365 367
368 heap->post_full_gc_dump();
369
366 #ifdef TRACESPINNING 370 #ifdef TRACESPINNING
367 ParallelTaskTerminator::print_termination_counts(); 371 ParallelTaskTerminator::print_termination_counts();
368 #endif 372 #endif
369 } 373 }
370 374