@@ -56,7 +56,7 @@ void G1CardSetAllocator::drop_all() {
56
56
57
57
size_t G1CardSetAllocator::mem_size () const {
58
58
return sizeof (*this ) +
59
- _segmented_array. num_segments () * sizeof (G1CardSetSegment) +
59
+ num_segments () * sizeof (G1CardSetSegment) +
60
60
_segmented_array.num_total_slots () * _segmented_array.slot_size ();
61
61
}
62
62
@@ -71,25 +71,6 @@ uint G1CardSetAllocator::num_segments() const {
71
71
return _segmented_array.num_segments ();
72
72
}
73
73
74
- void G1CardSetAllocator::print (outputStream* os) {
75
- uint num_allocated_slots = _segmented_array.num_allocated_slots ();
76
- uint num_total_slots = _segmented_array.num_total_slots ();
77
- uint highest = _segmented_array.first_array_segment () != nullptr
78
- ? _segmented_array.first_array_segment ()->num_slots ()
79
- : 0 ;
80
- uint num_segments = _segmented_array.num_segments ();
81
- uint num_pending_slots = (uint )_free_slots_list.pending_count ();
82
- os->print (" MA " PTR_FORMAT " : %u slots pending (allocated %u total %u) used %.3f highest %u segments %u size %zu " ,
83
- p2i (this ),
84
- num_pending_slots,
85
- num_allocated_slots,
86
- num_total_slots,
87
- percent_of (num_allocated_slots - num_pending_slots, num_total_slots),
88
- highest,
89
- num_segments,
90
- mem_size ());
91
- }
92
-
93
74
G1CardSetMemoryManager::G1CardSetMemoryManager (G1CardSetConfiguration* config,
94
75
G1CardSetFreePool* free_list_pool) : _config(config) {
95
76
@@ -126,13 +107,6 @@ void G1CardSetMemoryManager::flush() {
126
107
}
127
108
}
128
109
129
- void G1CardSetMemoryManager::print (outputStream* os) {
130
- os->print_cr (" MM " PTR_FORMAT " size %zu" , p2i (this ), sizeof (*this ));
131
- for (uint i = 0 ; i < num_mem_object_types (); i++) {
132
- _allocators[i].print (os);
133
- }
134
- }
135
-
136
110
size_t G1CardSetMemoryManager::mem_size () const {
137
111
size_t result = 0 ;
138
112
for (uint i = 0 ; i < num_mem_object_types (); i++) {
0 commit comments