8227277: HeapInspection::find_instances_at_safepoint walks dead objects

Reviewed-by: dholmes, kbarrett, tschatzl, coleenp
This commit is contained in:
Erik Österlund 2019-07-09 16:39:37 +02:00
parent 0f1ad36584
commit a577b1a972

View File

@ -792,8 +792,5 @@ void HeapInspection::find_instances_at_safepoint(Klass* k, GrowableArray<oop>* r
// Iterate over objects in the heap
FindInstanceClosure fic(k, result);
// If this operation encounters a bad object when using CMS,
// consider using safe_object_iterate() which avoids metadata
// objects that may contain bad references.
Universe::heap()->object_iterate(&fic);
Universe::heap()->safe_object_iterate(&fic);
}