Skip to content

Commit d0c6724

Browse files
committedMar 30, 2022
Add comment explaining ZGC check in RelativizeDerivedOopClosure
1 parent 4b829a2 commit d0c6724

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
 

‎src/hotspot/share/gc/z/zMark.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ void ZMark::follow_array_object(objArrayOop obj, bool finalizable) {
282282

283283
void ZMark::follow_object(oop obj, bool finalizable) {
284284
if (ContinuationGCSupport::relativize_stack_chunk(obj)) {
285-
// Loom doesn't support mixing of finalizable marking and strong marking of chunks
285+
// Loom doesn't support mixing of finalizable marking and strong marking of
286+
// stack chunks. See: RelativizeDerivedOopClosure.
286287
ZMarkBarrierOopClosure<false /* finalizable */> cl;
287288
obj->oop_iterate(&cl);
288289
return;

‎src/hotspot/share/oops/stackChunkOop.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,18 @@ class RelativizeDerivedOopClosure : public DerivedOopClosure {
141141

142142
#if INCLUDE_ZGC
143143
if (UseZGC) {
144+
// This closure can be concurrently called from both GC marking and from
145+
// the mutator. For it to work it is important that the old base value is
146+
// used for the offset calculation below. As soon at the base oop has
147+
// been updated we must *not* proceed to run the code below this check.
148+
//
149+
// This code only works if there's only one possible transition from old
150+
// to good. This isn't necessarily for oops when objects are marked from
151+
// finalizers. In that case oops can go from old to finalizable_marked
152+
// to good. This breaks this check, because finalizable_marked are not
153+
// considered good, but it's also not the old value. To workaround this
154+
// we upgrade finalizable marking through stack chunks to be strong
155+
// marking. See: ZMark::follow_object.
144156
if (ZAddress::is_good(cast_from_oop<uintptr_t>(base))) {
145157
return;
146158
}

0 commit comments

Comments
 (0)
Please sign in to comment.