8205050: ZGC: Incorrect use of RootAccess in ZHeapIterator

Reviewed-by: stefank, eosterlund
This commit is contained in:
Per Lidén 2018-06-15 13:31:50 +02:00
parent 57203871dd
commit ec4c0637f8

View File

@ -63,7 +63,7 @@ public:
virtual void do_oop(oop* p) {
// Load barrier needed here for the same reason we
// need fixup_partial_loads() in ZHeap::mark_end()
const oop obj = RootAccess<>::oop_load(p);
const oop obj = ZBarrier::load_barrier_on_oop_field(p);
_iter->push(obj);
_iter->drain(_cl);
}