Skip to content

Commit 918cf11

Browse files
committedAug 21, 2024
8338490: Serial: Move Generation::print_on to subclasses
Reviewed-by: gli
1 parent 80adea8 commit 918cf11

7 files changed

+28
-38
lines changed
 

‎src/hotspot/share/gc/serial/defNewGeneration.cpp

+9-6
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,15 @@ void DefNewGeneration::verify() {
846846
}
847847

848848
void DefNewGeneration::print_on(outputStream* st) const {
849-
Generation::print_on(st);
849+
st->print(" %-10s", name());
850+
851+
st->print(" total " SIZE_FORMAT "K, used " SIZE_FORMAT "K",
852+
capacity()/K, used()/K);
853+
st->print_cr(" [" PTR_FORMAT ", " PTR_FORMAT ", " PTR_FORMAT ")",
854+
p2i(_virtual_space.low_boundary()),
855+
p2i(_virtual_space.high()),
856+
p2i(_virtual_space.high_boundary()));
857+
850858
st->print(" eden");
851859
eden()->print_on(st);
852860
st->print(" from");
@@ -855,11 +863,6 @@ void DefNewGeneration::print_on(outputStream* st) const {
855863
to()->print_on(st);
856864
}
857865

858-
859-
const char* DefNewGeneration::name() const {
860-
return "def new generation";
861-
}
862-
863866
HeapWord* DefNewGeneration::allocate(size_t word_size) {
864867
// This is the slow-path allocation for the DefNewGeneration.
865868
// Most allocations are fast-path in compiled code.

‎src/hotspot/share/gc/serial/defNewGeneration.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,7 @@ class DefNewGeneration: public Generation {
234234
void update_counters();
235235

236236
// Printing
237-
virtual const char* name() const;
238-
virtual const char* short_name() const { return "DefNew"; }
237+
const char* name() const { return "DefNew"; }
239238

240239
void print_on(outputStream* st) const;
241240

‎src/hotspot/share/gc/serial/generation.cpp

-12
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,3 @@ Generation::Generation(ReservedSpace rs, size_t initial_size) :
5858
size_t Generation::max_capacity() const {
5959
return reserved().byte_size();
6060
}
61-
62-
void Generation::print() const { print_on(tty); }
63-
64-
void Generation::print_on(outputStream* st) const {
65-
st->print(" %-20s", name());
66-
st->print(" total " SIZE_FORMAT "K, used " SIZE_FORMAT "K",
67-
capacity()/K, used()/K);
68-
st->print_cr(" [" PTR_FORMAT ", " PTR_FORMAT ", " PTR_FORMAT ")",
69-
p2i(_virtual_space.low_boundary()),
70-
p2i(_virtual_space.high()),
71-
p2i(_virtual_space.high_boundary()));
72-
}

‎src/hotspot/share/gc/serial/generation.hpp

-7
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,6 @@ class Generation: public CHeapObj<mtGC> {
103103
return _reserved.contains(p);
104104
}
105105

106-
// Printing
107-
virtual const char* name() const = 0;
108-
virtual const char* short_name() const = 0;
109-
110-
virtual void print() const;
111-
virtual void print_on(outputStream* st) const;
112-
113106
virtual void verify() = 0;
114107

115108
public:

‎src/hotspot/share/gc/serial/serialHeap.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -882,12 +882,12 @@ void SerialHeap::verify(VerifyOption option /* ignored */) {
882882
}
883883

884884
void SerialHeap::print_on(outputStream* st) const {
885-
if (_young_gen != nullptr) {
886-
_young_gen->print_on(st);
887-
}
888-
if (_old_gen != nullptr) {
889-
_old_gen->print_on(st);
890-
}
885+
assert(_young_gen != nullptr, "precondition");
886+
assert(_old_gen != nullptr, "precondition");
887+
888+
_young_gen->print_on(st);
889+
_old_gen->print_on(st);
890+
891891
MetaspaceUtils::print_on(st);
892892
}
893893

@@ -908,7 +908,7 @@ void SerialHeap::print_heap_change(const PreGenGCValues& pre_gc_values) const {
908908
log_info(gc, heap)(HEAP_CHANGE_FORMAT" "
909909
HEAP_CHANGE_FORMAT" "
910910
HEAP_CHANGE_FORMAT,
911-
HEAP_CHANGE_FORMAT_ARGS(def_new_gen->short_name(),
911+
HEAP_CHANGE_FORMAT_ARGS(def_new_gen->name(),
912912
pre_gc_values.young_gen_used(),
913913
pre_gc_values.young_gen_capacity(),
914914
def_new_gen->used(),
@@ -924,7 +924,7 @@ void SerialHeap::print_heap_change(const PreGenGCValues& pre_gc_values) const {
924924
def_new_gen->from()->used(),
925925
def_new_gen->from()->capacity()));
926926
log_info(gc, heap)(HEAP_CHANGE_FORMAT,
927-
HEAP_CHANGE_FORMAT_ARGS(old_gen()->short_name(),
927+
HEAP_CHANGE_FORMAT_ARGS(old_gen()->name(),
928928
pre_gc_values.old_gen_used(),
929929
pre_gc_values.old_gen_capacity(),
930930
old_gen()->used(),

‎src/hotspot/share/gc/serial/tenuredGeneration.cpp

+9-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,15 @@ void TenuredGeneration::verify() {
440440
}
441441

442442
void TenuredGeneration::print_on(outputStream* st) const {
443-
Generation::print_on(st);
443+
st->print(" %-10s", name());
444+
445+
st->print(" total " SIZE_FORMAT "K, used " SIZE_FORMAT "K",
446+
capacity()/K, used()/K);
447+
st->print_cr(" [" PTR_FORMAT ", " PTR_FORMAT ", " PTR_FORMAT ")",
448+
p2i(_virtual_space.low_boundary()),
449+
p2i(_virtual_space.high()),
450+
p2i(_virtual_space.high_boundary()));
451+
444452
st->print(" the");
445453
_the_space->print_on(st);
446454
}

‎src/hotspot/share/gc/serial/tenuredGeneration.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,7 @@ class TenuredGeneration: public Generation {
121121
CardTableRS* remset);
122122

123123
// Printing
124-
const char* name() const { return "tenured generation"; }
125-
const char* short_name() const { return "Tenured"; }
124+
const char* name() const { return "Tenured"; }
126125

127126
// Iteration
128127
void object_iterate(ObjectClosure* blk);

0 commit comments

Comments
 (0)
Please sign in to comment.