@@ -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],
@@ -520,6 +522,8 @@ void GCTracer::PrintNVP() const {
520522 AverageSurvivalRatio (), heap_->promotion_rate_ ,
521523 heap_->semi_space_copied_rate_ ,
522524 NewSpaceAllocationThroughputInBytesPerMillisecond (),
525+ heap_->memory_allocator ()->unmapper ()->NumberOfChunks (),
526+ heap_->memory_allocator ()->unmapper ()->NumberOfDelayedChunks (),
523527 ContextDisposalRateInMilliseconds ());
524528 break ;
525529 case Event::MINOR_MARK_COMPACTOR:
@@ -654,6 +658,8 @@ void GCTracer::PrintNVP() const {
654658 " promotion_rate=%.1f%% "
655659 " semi_space_copy_rate=%.1f%% "
656660 " new_space_allocation_throughput=%.1f "
661+ " unmapper_chunks=%d "
662+ " unmapper_delayed_chunks=%d "
657663 " context_disposal_rate=%.1f "
658664 " compaction_speed=%.f\n " ,
659665 duration, spent_in_mutator, current_.TypeName (true ),
@@ -731,6 +737,8 @@ void GCTracer::PrintNVP() const {
731737 AverageSurvivalRatio (), heap_->promotion_rate_ ,
732738 heap_->semi_space_copied_rate_ ,
733739 NewSpaceAllocationThroughputInBytesPerMillisecond (),
740+ heap_->memory_allocator ()->unmapper ()->NumberOfChunks (),
741+ heap_->memory_allocator ()->unmapper ()->NumberOfDelayedChunks (),
734742 ContextDisposalRateInMilliseconds (),
735743 CompactionSpeedInBytesPerMillisecond ());
736744 break ;
0 commit comments