Skip to content

Commit 5a9490a

Browse files
committedJan 11, 2023
8299853: Serial: Use more concrete type for TenuredGeneration::_the_space
Reviewed-by: tschatzl, stefank
1 parent f857f8a commit 5a9490a

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ void TenuredGeneration::object_iterate(ObjectClosure* blk) {
486486

487487
void TenuredGeneration::complete_loaded_archive_space(MemRegion archive_space) {
488488
// Create the BOT for the archive space.
489-
TenuredSpace* space = (TenuredSpace*)_the_space;
489+
TenuredSpace* space = _the_space;
490490
space->initialize_threshold();
491491
HeapWord* start = archive_space.start();
492492
while (start < archive_space.end()) {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ class TenuredGeneration: public Generation {
6565

6666
void assert_correct_size_change_locking();
6767

68-
ContiguousSpace* _the_space; // Actual space holding objects
68+
TenuredSpace* _the_space; // Actual space holding objects
6969

7070
GenerationCounters* _gen_counters;
7171
CSpaceCounters* _space_counters;
7272

7373
// Accessing spaces
74-
ContiguousSpace* space() const { return _the_space; }
74+
TenuredSpace* space() const { return _the_space; }
7575

7676
// Attempt to expand the generation by "bytes". Expand by at a
7777
// minimum "expand_bytes". Return true if some amount (not

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
nonstatic_field(TenuredGeneration, _capacity_at_prologue, size_t) \
3838
nonstatic_field(TenuredGeneration, _used_at_prologue, size_t) \
3939
nonstatic_field(TenuredGeneration, _min_heap_delta_bytes, size_t) \
40-
nonstatic_field(TenuredGeneration, _the_space, ContiguousSpace*) \
40+
nonstatic_field(TenuredGeneration, _the_space, TenuredSpace*) \
4141
\
4242
nonstatic_field(DefNewGeneration, _old_gen, Generation*) \
4343
nonstatic_field(DefNewGeneration, _tenuring_threshold, uint) \

‎src/hotspot/share/gc/shared/cardTableRS.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void ClearNoncleanCardWrapper::do_MemRegion(MemRegion mr) {
111111
}
112112
}
113113

114-
void CardTableRS::younger_refs_in_space_iterate(ContiguousSpace* sp,
114+
void CardTableRS::younger_refs_in_space_iterate(TenuredSpace* sp,
115115
HeapWord* gen_boundary,
116116
OopIterateClosure* cl) {
117117
verify_used_region_at_save_marks(sp);
@@ -440,7 +440,7 @@ void CardTableRS::initialize() {
440440
CardTable::initialize();
441441
}
442442

443-
void CardTableRS::non_clean_card_iterate(ContiguousSpace* sp,
443+
void CardTableRS::non_clean_card_iterate(TenuredSpace* sp,
444444
HeapWord* gen_boundary,
445445
MemRegion mr,
446446
OopIterateClosure* cl,

‎src/hotspot/share/gc/shared/cardTableRS.hpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@
2929
#include "memory/memRegion.hpp"
3030
#include "oops/oop.hpp"
3131

32-
class ContiguousSpace;
3332
class DirtyCardToOopClosure;
3433
class Generation;
3534
class Space;
35+
class TenuredSpace;
36+
3637
// This RemSet uses a card table both as shared data structure
3738
// for a mod ref barrier set and for the rem set information.
3839

@@ -47,7 +48,7 @@ class CardTableRS : public CardTable {
4748
public:
4849
CardTableRS(MemRegion whole_heap);
4950

50-
void younger_refs_in_space_iterate(ContiguousSpace* sp, HeapWord* gen_boundary, OopIterateClosure* cl);
51+
void younger_refs_in_space_iterate(TenuredSpace* sp, HeapWord* gen_boundary, OopIterateClosure* cl);
5152

5253
virtual void verify_used_region_at_save_marks(Space* sp) const NOT_DEBUG_RETURN;
5354

@@ -70,7 +71,7 @@ class CardTableRS : public CardTable {
7071
// Iterate over the portion of the card-table which covers the given
7172
// region mr in the given space and apply cl to any dirty sub-regions
7273
// of mr. Clears the dirty cards as they are processed.
73-
void non_clean_card_iterate(ContiguousSpace* sp,
74+
void non_clean_card_iterate(TenuredSpace* sp,
7475
HeapWord* gen_boundary,
7576
MemRegion mr,
7677
OopIterateClosure* cl,

‎test/hotspot/jtreg/serviceability/sa/ClhsdbField.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static void main(String[] args) throws Exception {
5656
"field InstanceKlass _constants ConstantPool*",
5757
"field Klass _name Symbol*",
5858
"field JavaThread _osthread OSThread*",
59-
"field TenuredGeneration _the_space ContiguousSpace*",
59+
"field TenuredGeneration _the_space TenuredSpace*",
6060
"field VirtualSpace _low_boundary char*",
6161
"field MethodCounters _backedge_counter InvocationCounter",
6262
"field nmethod _entry_bci int",

0 commit comments

Comments
 (0)
Please sign in to comment.