@@ -490,6 +490,8 @@ void GCTracer::PrintNVP() const {
490490 " promotion_rate=%.1f%% "
491491 " semi_space_copy_rate=%.1f%% "
492492 " new_space_allocation_throughput=%.1f "
493+ " unmapper_chunks=%d "
494+ " unmapper_delayed_chunks=%d "
493495 " context_disposal_rate=%.1f\n " ,
494496 duration, spent_in_mutator, current_.TypeName (true ),
495497 current_.reduce_memory , current_.scopes [Scope::HEAP_PROLOGUE],
@@ -517,6 +519,8 @@ void GCTracer::PrintNVP() const {
517519 AverageSurvivalRatio (), heap_->promotion_rate_ ,
518520 heap_->semi_space_copied_rate_ ,
519521 NewSpaceAllocationThroughputInBytesPerMillisecond (),
522+ heap_->memory_allocator ()->unmapper ()->NumberOfChunks (),
523+ heap_->memory_allocator ()->unmapper ()->NumberOfDelayedChunks (),
520524 ContextDisposalRateInMilliseconds ());
521525 break ;
522526 case Event::MINOR_MARK_COMPACTOR:
@@ -650,6 +654,8 @@ void GCTracer::PrintNVP() const {
650654 " promotion_rate=%.1f%% "
651655 " semi_space_copy_rate=%.1f%% "
652656 " new_space_allocation_throughput=%.1f "
657+ " unmapper_chunks=%d "
658+ " unmapper_delayed_chunks=%d "
653659 " context_disposal_rate=%.1f "
654660 " compaction_speed=%.f\n " ,
655661 duration, spent_in_mutator, current_.TypeName (true ),
@@ -726,6 +732,8 @@ void GCTracer::PrintNVP() const {
726732 AverageSurvivalRatio (), heap_->promotion_rate_ ,
727733 heap_->semi_space_copied_rate_ ,
728734 NewSpaceAllocationThroughputInBytesPerMillisecond (),
735+ heap_->memory_allocator ()->unmapper ()->NumberOfChunks (),
736+ heap_->memory_allocator ()->unmapper ()->NumberOfDelayedChunks (),
729737 ContextDisposalRateInMilliseconds (),
730738 CompactionSpeedInBytesPerMillisecond ());
731739 break ;
0 commit comments