@@ -490,6 +490,8 @@ void GCTracer::PrintNVP() const {
490
490
" promotion_rate=%.1f%% "
491
491
" semi_space_copy_rate=%.1f%% "
492
492
" new_space_allocation_throughput=%.1f "
493
+ " unmapper_chunks=%d "
494
+ " unmapper_delayed_chunks=%d "
493
495
" context_disposal_rate=%.1f\n " ,
494
496
duration, spent_in_mutator, current_.TypeName (true ),
495
497
current_.reduce_memory , current_.scopes [Scope::HEAP_PROLOGUE],
@@ -517,6 +519,8 @@ void GCTracer::PrintNVP() const {
517
519
AverageSurvivalRatio (), heap_->promotion_rate_ ,
518
520
heap_->semi_space_copied_rate_ ,
519
521
NewSpaceAllocationThroughputInBytesPerMillisecond (),
522
+ heap_->memory_allocator ()->unmapper ()->NumberOfChunks (),
523
+ heap_->memory_allocator ()->unmapper ()->NumberOfDelayedChunks (),
520
524
ContextDisposalRateInMilliseconds ());
521
525
break ;
522
526
case Event::MINOR_MARK_COMPACTOR:
@@ -650,6 +654,8 @@ void GCTracer::PrintNVP() const {
650
654
" promotion_rate=%.1f%% "
651
655
" semi_space_copy_rate=%.1f%% "
652
656
" new_space_allocation_throughput=%.1f "
657
+ " unmapper_chunks=%d "
658
+ " unmapper_delayed_chunks=%d "
653
659
" context_disposal_rate=%.1f "
654
660
" compaction_speed=%.f\n " ,
655
661
duration, spent_in_mutator, current_.TypeName (true ),
@@ -726,6 +732,8 @@ void GCTracer::PrintNVP() const {
726
732
AverageSurvivalRatio (), heap_->promotion_rate_ ,
727
733
heap_->semi_space_copied_rate_ ,
728
734
NewSpaceAllocationThroughputInBytesPerMillisecond (),
735
+ heap_->memory_allocator ()->unmapper ()->NumberOfChunks (),
736
+ heap_->memory_allocator ()->unmapper ()->NumberOfDelayedChunks (),
729
737
ContextDisposalRateInMilliseconds (),
730
738
CompactionSpeedInBytesPerMillisecond ());
731
739
break ;
0 commit comments