--- old/src/hotspot/share/gc/g1/heapRegionManager.cpp 2018-02-07 10:49:21.326985437 +0100 +++ new/src/hotspot/share/gc/g1/heapRegionManager.cpp 2018-02-07 10:49:20.872971620 +0100 @@ -242,9 +242,9 @@ continue; } guarantee(at(i) != NULL, "Tried to access region %u that has a NULL HeapRegion*", i); - bool res = blk->doHeapRegion(at(i)); + bool res = blk->do_heap_region(at(i)); if (res) { - blk->incomplete(); + blk->set_incomplete(); return; } } @@ -353,7 +353,7 @@ if (!hrclaimer->claim_region(index)) { continue; } - bool res = blk->doHeapRegion(r); + bool res = blk->do_heap_region(r); if (res) { return; }