@@ -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],
@@ -520,6 +522,8 @@ void GCTracer::PrintNVP() const {
520
522
AverageSurvivalRatio (), heap_->promotion_rate_ ,
521
523
heap_->semi_space_copied_rate_ ,
522
524
NewSpaceAllocationThroughputInBytesPerMillisecond (),
525
+ heap_->memory_allocator ()->unmapper ()->NumberOfChunks (),
526
+ heap_->memory_allocator ()->unmapper ()->NumberOfDelayedChunks (),
523
527
ContextDisposalRateInMilliseconds ());
524
528
break ;
525
529
case Event::MINOR_MARK_COMPACTOR:
@@ -654,6 +658,8 @@ void GCTracer::PrintNVP() const {
654
658
" promotion_rate=%.1f%% "
655
659
" semi_space_copy_rate=%.1f%% "
656
660
" new_space_allocation_throughput=%.1f "
661
+ " unmapper_chunks=%d "
662
+ " unmapper_delayed_chunks=%d "
657
663
" context_disposal_rate=%.1f "
658
664
" compaction_speed=%.f\n " ,
659
665
duration, spent_in_mutator, current_.TypeName (true ),
@@ -731,6 +737,8 @@ void GCTracer::PrintNVP() const {
731
737
AverageSurvivalRatio (), heap_->promotion_rate_ ,
732
738
heap_->semi_space_copied_rate_ ,
733
739
NewSpaceAllocationThroughputInBytesPerMillisecond (),
740
+ heap_->memory_allocator ()->unmapper ()->NumberOfChunks (),
741
+ heap_->memory_allocator ()->unmapper ()->NumberOfDelayedChunks (),
734
742
ContextDisposalRateInMilliseconds (),
735
743
CompactionSpeedInBytesPerMillisecond ());
736
744
break ;
0 commit comments