Skip to content

Commit d5b8ea8

Browse files
committedAug 22, 2024
8330981: ZGC: Should not dedup strings in the finalizer graph
Backport-of: 2f2dc2289bce47d8071a86215218f345cce71dba
1 parent 38eeb50 commit d5b8ea8

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
 

‎src/hotspot/share/gc/x/xMark.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,10 @@ void XMark::mark_and_follow(XMarkContext* context, XMarkStackEntry entry) {
367367
const oop obj = XOop::from_address(addr);
368368
follow_object(obj, finalizable);
369369

370-
// Try deduplicate
371-
try_deduplicate(context, obj);
370+
if (!finalizable) {
371+
// Try deduplicate
372+
try_deduplicate(context, obj);
373+
}
372374
}
373375
}
374376
}

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -457,8 +457,10 @@ void ZMark::mark_and_follow(ZMarkContext* context, ZMarkStackEntry entry) {
457457
const oop obj = to_oop(addr);
458458
follow_object(obj, finalizable);
459459

460-
// Try deduplicate
461-
try_deduplicate(context, obj);
460+
if (!finalizable) {
461+
// Try deduplicate
462+
try_deduplicate(context, obj);
463+
}
462464
}
463465
}
464466
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Aug 22, 2024

@openjdk-notifier[bot]
Please sign in to comment.