8153503: Move remset scan iteration claim to remset local data structure

Reviewed-by: drwhite, mgerdin
This commit is contained in:
Thomas Schatzl 2016-04-18 16:51:14 +02:00
parent 2d6f4ee98f
commit d55089d82b
7 changed files with 189 additions and 197 deletions

View file

@ -38,7 +38,6 @@ void HeapRegionSetBase::verify_region(HeapRegion* hr) {
assert(!hr->is_free() || hr->is_empty(), "Free region %u is not empty for set %s", hr->hrm_index(), name());
assert(!hr->is_empty() || hr->is_free() || hr->is_archive(),
"Empty region %u is not free or archive for set %s", hr->hrm_index(), name());
assert(hr->rem_set()->verify_ready_for_par_iteration(), "Wrong iteration state %u", hr->hrm_index());
}
#endif