Skip to content

Commit b27eedd

Browse files
committedMay 6, 2022
Merge
2 parents 2680595 + 2dd4dfd commit b27eedd

File tree

4 files changed

+1
-43
lines changed

4 files changed

+1
-43
lines changed
 

‎src/hotspot/share/gc/g1/g1CardSet.cpp

-9
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,6 @@ class G1CardSetHashTable : public CHeapObj<mtGCCardSet> {
295295
}
296296
}
297297

298-
void print(outputStream* os) {
299-
os->print("TBL " PTR_FORMAT " size %zu mem %zu ", p2i(&_table), _table.get_size_log2(Thread::current()), _table.get_mem_size(Thread::current()));
300-
}
301-
302298
void grow() {
303299
size_t new_limit = _table.get_size_log2(Thread::current()) + 1;
304300
_table.grow(Thread::current(), new_limit);
@@ -922,8 +918,3 @@ void G1CardSet::clear() {
922918
_num_occupied = 0;
923919
_mm->flush();
924920
}
925-
926-
void G1CardSet::print(outputStream* os) {
927-
_table->print(os);
928-
_mm->print(os);
929-
}

‎src/hotspot/share/gc/g1/g1CardSet.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,6 @@ class G1CardSet : public CHeapObj<mtGCCardSet> {
331331
// Clear the entire contents of this remembered set.
332332
void clear();
333333

334-
void print(outputStream* os);
335-
336334
// Iterate over the container, calling a method on every card or card range contained
337335
// in the card container.
338336
// For every container, first calls

‎src/hotspot/share/gc/g1/g1CardSetMemory.cpp

+1-27
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void G1CardSetAllocator::drop_all() {
5656

5757
size_t G1CardSetAllocator::mem_size() const {
5858
return sizeof(*this) +
59-
_segmented_array.num_segments() * sizeof(G1CardSetSegment) +
59+
num_segments() * sizeof(G1CardSetSegment) +
6060
_segmented_array.num_total_slots() * _segmented_array.slot_size();
6161
}
6262

@@ -71,25 +71,6 @@ uint G1CardSetAllocator::num_segments() const {
7171
return _segmented_array.num_segments();
7272
}
7373

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-
9374
G1CardSetMemoryManager::G1CardSetMemoryManager(G1CardSetConfiguration* config,
9475
G1CardSetFreePool* free_list_pool) : _config(config) {
9576

@@ -126,13 +107,6 @@ void G1CardSetMemoryManager::flush() {
126107
}
127108
}
128109

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-
136110
size_t G1CardSetMemoryManager::mem_size() const {
137111
size_t result = 0;
138112
for (uint i = 0; i < num_mem_object_types(); i++) {

‎src/hotspot/share/gc/g1/g1CardSetMemory.hpp

-5
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,9 @@ class G1CardSetAllocator {
8686
// Total memory allocated.
8787
size_t mem_size() const;
8888

89-
// Unused (but usable) memory.
9089
size_t unused_mem_size() const;
9190

9291
uint num_segments() const;
93-
94-
void print(outputStream* os);
9592
};
9693

9794
using G1CardSetFreePool = G1SegmentedArrayFreePool;
@@ -118,8 +115,6 @@ class G1CardSetMemoryManager : public CHeapObj<mtGCCardSet> {
118115

119116
void flush();
120117

121-
void print(outputStream* os);
122-
123118
size_t mem_size() const;
124119
size_t unused_mem_size() const;
125120

0 commit comments

Comments
 (0)
Please sign in to comment.