Skip to content

Commit 81fda1b

Browse files
committedSep 30, 2022
8294569: Remove CardTable::_last_valid_index
Reviewed-by: tschatzl, kbarrett
1 parent 7c60e6d commit 81fda1b

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed
 

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

+3-4
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ void G1CardTable::initialize(G1RegionToSpaceMapper* mapper) {
5353
_byte_map_size = mapper->reserved().byte_size();
5454

5555
size_t num_cards = cards_required(_whole_heap.word_size());
56-
_last_valid_index = num_cards - 1;
5756

5857
HeapWord* low_bound = _whole_heap.start();
5958
HeapWord* high_bound = _whole_heap.end();
@@ -64,11 +63,11 @@ void G1CardTable::initialize(G1RegionToSpaceMapper* mapper) {
6463
_byte_map = (CardValue*) mapper->reserved().start();
6564
_byte_map_base = _byte_map - (uintptr_t(low_bound) >> _card_shift);
6665
assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");
67-
assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
66+
assert(byte_for(high_bound-1) <= &_byte_map[last_valid_index()], "Checking end of map");
6867

6968
log_trace(gc, barrier)("G1CardTable::G1CardTable: ");
70-
log_trace(gc, barrier)(" &_byte_map[0]: " PTR_FORMAT " &_byte_map[_last_valid_index]: " PTR_FORMAT,
71-
p2i(&_byte_map[0]), p2i(&_byte_map[_last_valid_index]));
69+
log_trace(gc, barrier)(" &_byte_map[0]: " PTR_FORMAT " &_byte_map[last_valid_index()]: " PTR_FORMAT,
70+
p2i(&_byte_map[0]), p2i(&_byte_map[last_valid_index()]));
7271
log_trace(gc, barrier)(" _byte_map_base: " PTR_FORMAT, p2i(_byte_map_base));
7372
}
7473

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

+4-6
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ size_t CardTable::compute_byte_map_size(size_t num_bytes) {
6969

7070
CardTable::CardTable(MemRegion whole_heap) :
7171
_whole_heap(whole_heap),
72-
_last_valid_index(0),
7372
_page_size(os::vm_page_size()),
7473
_byte_map_size(0),
7574
_byte_map(NULL),
@@ -90,7 +89,6 @@ CardTable::~CardTable() {
9089

9190
void CardTable::initialize() {
9291
size_t num_cards = cards_required(_whole_heap.word_size());
93-
_last_valid_index = num_cards - 1;
9492

9593
// each card takes 1 byte; + 1 for the guard card
9694
size_t num_bytes = num_cards + 1;
@@ -121,15 +119,15 @@ void CardTable::initialize() {
121119
_byte_map = (CardValue*) heap_rs.base();
122120
_byte_map_base = _byte_map - (uintptr_t(low_bound) >> _card_shift);
123121
assert(byte_for(low_bound) == &_byte_map[0], "Checking start of map");
124-
assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
122+
assert(byte_for(high_bound-1) <= &_byte_map[last_valid_index()], "Checking end of map");
125123

126124
CardValue* guard_card = &_byte_map[num_cards];
127125
assert(is_aligned(guard_card, _page_size), "must be on its own OS page");
128126
_guard_region = MemRegion((HeapWord*)guard_card, _page_size);
129127

130128
log_trace(gc, barrier)("CardTable::CardTable: ");
131-
log_trace(gc, barrier)(" &_byte_map[0]: " PTR_FORMAT " &_byte_map[_last_valid_index]: " PTR_FORMAT,
132-
p2i(&_byte_map[0]), p2i(&_byte_map[_last_valid_index]));
129+
log_trace(gc, barrier)(" &_byte_map[0]: " PTR_FORMAT " &_byte_map[last_valid_index()]: " PTR_FORMAT,
130+
p2i(&_byte_map[0]), p2i(&_byte_map[last_valid_index()]));
133131
log_trace(gc, barrier)(" _byte_map_base: " PTR_FORMAT, p2i(_byte_map_base));
134132
}
135133

@@ -295,7 +293,7 @@ void CardTable::resize_covered_region(MemRegion new_region) {
295293
} else {
296294
entry = byte_after(old_region.last());
297295
}
298-
assert(index_for(new_region.last()) <= _last_valid_index,
296+
assert(index_for(new_region.last()) <= last_valid_index(),
299297
"The guard card will be overwritten");
300298
// This line commented out cleans the newly expanded region and
301299
// not the aligned up expanded region.

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ class CardTable: public CHeapObj<mtGC> {
4444
// The declaration order of these const fields is important; see the
4545
// constructor before changing.
4646
const MemRegion _whole_heap; // the region covered by the card table
47-
size_t _last_valid_index; // index of the last valid element
4847
const size_t _page_size; // page size used when mapping _byte_map
4948
size_t _byte_map_size; // in bytes
5049
CardValue* _byte_map; // the card marking array
@@ -107,6 +106,9 @@ class CardTable: public CHeapObj<mtGC> {
107106
static uint _card_size;
108107
static uint _card_size_in_words;
109108

109+
size_t last_valid_index() const {
110+
return cards_required(_whole_heap.word_size()) - 1;
111+
}
110112
public:
111113
CardTable(MemRegion whole_heap);
112114
virtual ~CardTable();
@@ -127,7 +129,7 @@ class CardTable: public CHeapObj<mtGC> {
127129

128130
// Initialization utilities; covered_words is the size of the covered region
129131
// in, um, words.
130-
inline size_t cards_required(size_t covered_words) {
132+
inline size_t cards_required(size_t covered_words) const {
131133
assert(is_aligned(covered_words, _card_size_in_words), "precondition");
132134
return covered_words / _card_size_in_words;
133135
}

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

-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@
8888
nonstatic_field(BarrierSet::FakeRtti, _concrete_tag, BarrierSet::Name) \
8989
\
9090
nonstatic_field(CardTable, _whole_heap, const MemRegion) \
91-
nonstatic_field(CardTable, _last_valid_index, const size_t) \
9291
nonstatic_field(CardTable, _page_size, const size_t) \
9392
nonstatic_field(CardTable, _byte_map_size, const size_t) \
9493
nonstatic_field(CardTable, _byte_map, CardTable::CardValue*) \

0 commit comments

Comments
 (0)
Please sign in to comment.