There is a frequently occurring need to determine whether a Reference (still) refers to a given object, or whether it has been (possibly automatically) cleared. Sometimes automatic clearing detection is accomplished via the use of a ReferenceQueue, and noticing when the Reference shows up there. However, that's not always convenient. It also doesn't support testing whether some non-null object is the referent.
An oft-used alternative is to use Reference.get and compare the result with the value of interest. For example, a simple grep of the jdk forest found around 25 non-test comparisons of get() with null; not all of them are Reference.get, but many of them are.
However, such use of Reference.get interacts poorly with some GCs. For example, SATB collectors (such as G1 and Shenandoah) need to mark the referent of weak references when they are accessed, in order to maintain their invariants. When using such a collector, repeated checks using Reference::get could prevent a reference from *ever* being cleared, even though its referent object is only (weakly) reachable from the reference and occasionally, briefly, while performing those repeated checks.
Also, such use of Reference.get only works for SoftReference and WeakReference; it does not work for PhantomReference, since the referent is inaccessible for those. And for SoftReferences it has the problem of introducing a recent access, potentially extending the lifetime of the referent for all collectors.
This suggests we need a new operation for use in such situations. We propose the addition of the predicate Reference::refersTo for this purpose.
- csr for
-
JDK-8241029 (ref) Add Reference::refersTo predicate
-
- Closed
-
- duplicates
-
JDK-8191849 Add a method isCleared to java.lang.ref.Reference
-
- Closed
-
- relates to
-
JDK-8256015 Shenandoah: Add missing Shenandoah implementation in WB_isObjectInOldGen
-
- Resolved
-
-
JDK-8256167 Convert JDK use of `Reference::get` to `Reference::refersTo`
-
- Resolved
-
-
JDK-8240696 (ref) Reference.clear may extend the lifetime of the referent
-
- Resolved
-
-
JDK-8052260 Reference.isEnqueued() spec does not match the long-standing behavior returning true iff it's in the ref queue
-
- Resolved
-
-
JDK-8262841 Clarify the behavior of PhantomReference::refersTo
-
- Resolved
-
-
JDK-8256999 Add C2 intrinsic for Reference.refersTo and PhantomReference::refersTo
-
- Resolved
-