--- old/src/share/vm/gc/g1/g1CollectedHeap.cpp 2017-07-20 16:27:40.237563974 +0200 +++ new/src/share/vm/gc/g1/g1CollectedHeap.cpp 2017-07-20 16:27:40.133560748 +0200 @@ -4944,7 +4944,7 @@ p2i(r->bottom()), r->rem_set()->occupied(), r->rem_set()->strong_code_roots_list_length(), - next_bitmap->isMarked(r->bottom()), + next_bitmap->is_marked(r->bottom()), g1h->is_humongous_reclaim_candidate(region_idx), obj->is_typeArray() ); @@ -4961,13 +4961,13 @@ p2i(r->bottom()), r->rem_set()->occupied(), r->rem_set()->strong_code_roots_list_length(), - next_bitmap->isMarked(r->bottom()), + next_bitmap->is_marked(r->bottom()), g1h->is_humongous_reclaim_candidate(region_idx), obj->is_typeArray() ); // Need to clear mark bit of the humongous object if already set. - if (next_bitmap->isMarked(r->bottom())) { + if (next_bitmap->is_marked(r->bottom())) { next_bitmap->clear(r->bottom()); } _humongous_objects_reclaimed++;