@@ -48,19 +48,19 @@ static const char* partition_name(ShenandoahFreeSetPartitionId t) {
48
48
49
49
#ifndef PRODUCT
50
50
void ShenandoahRegionPartitions::dump_bitmap () const {
51
- log_info (gc)(" Mutator range [" SSIZE_FORMAT " , " SSIZE_FORMAT " ], Collector range [" SSIZE_FORMAT " , " SSIZE_FORMAT " ]" ,
52
- _leftmosts[int (ShenandoahFreeSetPartitionId::Mutator)],
53
- _rightmosts[int (ShenandoahFreeSetPartitionId::Mutator)],
54
- _leftmosts[int (ShenandoahFreeSetPartitionId::Collector)],
55
- _rightmosts[int (ShenandoahFreeSetPartitionId::Collector)]);
56
- log_info (gc)(" Empty Mutator range [" SSIZE_FORMAT " , " SSIZE_FORMAT
57
- " ], Empty Collector range [" SSIZE_FORMAT " , " SSIZE_FORMAT " ]" ,
58
- _leftmosts_empty[int (ShenandoahFreeSetPartitionId::Mutator)],
59
- _rightmosts_empty[int (ShenandoahFreeSetPartitionId::Mutator)],
60
- _leftmosts_empty[int (ShenandoahFreeSetPartitionId::Collector)],
61
- _rightmosts_empty[int (ShenandoahFreeSetPartitionId::Collector)]);
62
-
63
- log_info (gc)(" %6s: %18s %18s %18s" , " index" , " Mutator Bits" , " Collector Bits" , " NotFree Bits" );
51
+ log_debug (gc)(" Mutator range [" SSIZE_FORMAT " , " SSIZE_FORMAT " ], Collector range [" SSIZE_FORMAT " , " SSIZE_FORMAT " ]" ,
52
+ _leftmosts[int (ShenandoahFreeSetPartitionId::Mutator)],
53
+ _rightmosts[int (ShenandoahFreeSetPartitionId::Mutator)],
54
+ _leftmosts[int (ShenandoahFreeSetPartitionId::Collector)],
55
+ _rightmosts[int (ShenandoahFreeSetPartitionId::Collector)]);
56
+ log_debug (gc)(" Empty Mutator range [" SSIZE_FORMAT " , " SSIZE_FORMAT
57
+ " ], Empty Collector range [" SSIZE_FORMAT " , " SSIZE_FORMAT " ]" ,
58
+ _leftmosts_empty[int (ShenandoahFreeSetPartitionId::Mutator)],
59
+ _rightmosts_empty[int (ShenandoahFreeSetPartitionId::Mutator)],
60
+ _leftmosts_empty[int (ShenandoahFreeSetPartitionId::Collector)],
61
+ _rightmosts_empty[int (ShenandoahFreeSetPartitionId::Collector)]);
62
+
63
+ log_debug (gc)(" %6s: %18s %18s %18s" , " index" , " Mutator Bits" , " Collector Bits" , " NotFree Bits" );
64
64
dump_bitmap_range (0 , _max-1 );
65
65
}
66
66
@@ -83,8 +83,8 @@ void ShenandoahRegionPartitions::dump_bitmap_row(idx_t region_idx) const {
83
83
uintx collector_bits = _membership[int (ShenandoahFreeSetPartitionId::Collector)].bits_at (aligned_idx);
84
84
uintx free_bits = mutator_bits | collector_bits;
85
85
uintx notfree_bits = ~free_bits;
86
- log_info (gc)(SSIZE_FORMAT_W (6 ) " : " SIZE_FORMAT_X_0 " 0x" SIZE_FORMAT_X_0 " 0x" SIZE_FORMAT_X_0,
87
- aligned_idx, mutator_bits, collector_bits, notfree_bits);
86
+ log_debug (gc)(SSIZE_FORMAT_W (6 ) " : " SIZE_FORMAT_X_0 " 0x" SIZE_FORMAT_X_0 " 0x" SIZE_FORMAT_X_0,
87
+ aligned_idx, mutator_bits, collector_bits, notfree_bits);
88
88
}
89
89
#endif
90
90
@@ -1060,8 +1060,8 @@ void ShenandoahFreeSet::move_regions_from_collector_to_mutator(size_t max_xfer_r
1060
1060
}
1061
1061
1062
1062
size_t collector_xfer = collector_empty_xfer + collector_not_empty_xfer;
1063
- log_info (gc)(" At start of update refs, moving " SIZE_FORMAT " %s to Mutator free partition from Collector Reserve" ,
1064
- byte_size_in_proper_unit (collector_xfer), proper_unit_for_byte_size (collector_xfer));
1063
+ log_info (gc, ergo )(" At start of update refs, moving " SIZE_FORMAT " %s to Mutator free partition from Collector Reserve" ,
1064
+ byte_size_in_proper_unit (collector_xfer), proper_unit_for_byte_size (collector_xfer));
1065
1065
}
1066
1066
1067
1067
void ShenandoahFreeSet::prepare_to_rebuild (size_t &cset_regions) {
0 commit comments