< prev index next >

src/share/vm/gc/parallel/psMarkSweep.cpp

Print this page
rev 13541 : 8184286: print_tracing_info() does not use Unified Logging for output
Reviewed-by:

*** 172,182 **** heap->pre_full_gc_dump(_gc_timer); TraceCollectorStats tcs(counters()); TraceMemoryManagerStats tms(true /* Full GC */,gc_cause); ! if (TraceOldGenTime) accumulated_time()->start(); // Let the size policy know we're starting size_policy->major_collection_begin(); CodeCache::gc_prologue(); --- 172,182 ---- heap->pre_full_gc_dump(_gc_timer); TraceCollectorStats tcs(counters()); TraceMemoryManagerStats tms(true /* Full GC */,gc_cause); ! if (log_is_enabled(Debug, gc, heap, exit)) accumulated_time()->start(); // Let the size policy know we're starting size_policy->major_collection_begin(); CodeCache::gc_prologue();
*** 341,351 **** heap->resize_all_tlabs(); // We collected the heap, recalculate the metaspace capacity MetaspaceGC::compute_new_size(); ! if (TraceOldGenTime) accumulated_time()->stop(); young_gen->print_used_change(young_gen_prev_used); old_gen->print_used_change(old_gen_prev_used); MetaspaceAux::print_metaspace_change(metadata_prev_used); --- 341,351 ---- heap->resize_all_tlabs(); // We collected the heap, recalculate the metaspace capacity MetaspaceGC::compute_new_size(); ! if (log_is_enabled(Debug, gc, heap, exit)) accumulated_time()->stop(); young_gen->print_used_change(young_gen_prev_used); old_gen->print_used_change(old_gen_prev_used); MetaspaceAux::print_metaspace_change(metadata_prev_used);
< prev index next >