The Version table provides details related to the release that this issue/RFE will be addressed.
Unresolved : Release in which this issue/RFE will be addressed. Resolved: Release in which this issue/RFE has been resolved. Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.
EVALUATION
The bug is in the following code:
1258 size_t end_index = index + 1;
1259 while (index < g1h->n_regions()) {
1260 HeapRegion* chr = g1h->region_at(index);
1261 if (!chr->continuesHumongous()) {
1262 break;
1263 }
1264 end_index += 1;
1265 }
1266 _region_bm->par_at_put_range((BitMap::idx_t) index,
1267 (BitMap::idx_t) end_index, true);
On lines 1259 and 1260, index should have been end_index.