src/share/vm/gc_implementation/g1/concurrentMark.cpp

Print this page

        

*** 1200,1209 **** --- 1200,1212 ---- _remark_mark_times.add((mark_work_end - start) * 1000.0); _remark_weak_ref_times.add((now - mark_work_end) * 1000.0); _remark_times.add((now - start) * 1000.0); g1p->record_concurrent_mark_remark_end(); + + G1CMIsAliveClosure is_alive(g1h); + g1h->gc_tracer_cm()->report_object_count_after_gc(&is_alive); } // Base class of the closures that finalize and verify the // liveness counting data. class CMCountDataClosureBase: public HeapRegionClosure {