@@ -69,7 +69,6 @@ size_t CardTable::compute_byte_map_size(size_t num_bytes) {
69
69
70
70
CardTable::CardTable (MemRegion whole_heap) :
71
71
_whole_heap(whole_heap),
72
- _last_valid_index(0 ),
73
72
_page_size(os::vm_page_size()),
74
73
_byte_map_size(0 ),
75
74
_byte_map(NULL ),
@@ -90,7 +89,6 @@ CardTable::~CardTable() {
90
89
91
90
void CardTable::initialize () {
92
91
size_t num_cards = cards_required (_whole_heap.word_size ());
93
- _last_valid_index = num_cards - 1 ;
94
92
95
93
// each card takes 1 byte; + 1 for the guard card
96
94
size_t num_bytes = num_cards + 1 ;
@@ -121,15 +119,15 @@ void CardTable::initialize() {
121
119
_byte_map = (CardValue*) heap_rs.base ();
122
120
_byte_map_base = _byte_map - (uintptr_t (low_bound) >> _card_shift);
123
121
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" );
125
123
126
124
CardValue* guard_card = &_byte_map[num_cards];
127
125
assert (is_aligned (guard_card, _page_size), " must be on its own OS page" );
128
126
_guard_region = MemRegion ((HeapWord*)guard_card, _page_size);
129
127
130
128
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 () ]));
133
131
log_trace (gc, barrier)(" _byte_map_base: " PTR_FORMAT, p2i (_byte_map_base));
134
132
}
135
133
@@ -295,7 +293,7 @@ void CardTable::resize_covered_region(MemRegion new_region) {
295
293
} else {
296
294
entry = byte_after (old_region.last ());
297
295
}
298
- assert (index_for (new_region.last ()) <= _last_valid_index ,
296
+ assert (index_for (new_region.last ()) <= last_valid_index () ,
299
297
" The guard card will be overwritten" );
300
298
// This line commented out cleans the newly expanded region and
301
299
// not the aligned up expanded region.
0 commit comments