Class SwitchPointInvalidator
SwitchPoint and retires it on demand.
Call sites install the switch point returned by getSwitchPoint() in
guardWithTest chains. invalidate() retires the live switch
point so linked sites fall back and re-link; the next getSwitchPoint()
allocates a fresh one.
Bulk paths (category enter/leave, custom MetaClass events) should prefer
detachLive() and a single SwitchPoint.invalidateAll(SwitchPoint[])
over many individual invalidate() calls.
There is no permanent failover: stock invalidation is scoped to a single class, so deopt storms from a process-wide SwitchPoint do not apply and a simple replace-on-invalidate model is sufficient.
A process-wide registry tracks every live SwitchPoint so bulk retirement is O(live domains), and is skipped entirely while the registry is empty — e.g. classic-only bytecode never links an indy MOP guard. Registration precedes publication, so an empty (or entry-less) observation proves no guard chain holds a live SwitchPoint that the observer could have needed to retire.
Registry entries hold their invalidator strongly; the invalidator's owner is
responsible for retiring the domain when it is discarded (see the reclaim
anchor on ClassInfo's class-level domain), which is what removes the
entry. A guard chain keeps only the SwitchPoint's internal invoker alive,
not the SwitchPoint object, so the registry entry is what keeps a
still-installed guard retirable until its domain is explicitly retired.
- Since:
- 6.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an invalidator with no live SwitchPoint until the firstgetSwitchPoint()call. -
Method Summary
Modifier and TypeMethodDescriptionAtomically detaches the live switch point for bulkSwitchPoint.invalidateAll(java.lang.invoke.SwitchPoint[])without invalidating it yet.intReturns how many live switch points have been retired.Returns a live switch point to install in a call-site guard chain.voidInvalidates the current live switch point (if any) so linked sites re-link.static voidInvalidatesspwhen non-null and still valid.voidsetReclaimAnchor(Object anchor) Parksanchorso it stays strongly reachable while this invalidator is reachable.
-
Constructor Details
-
SwitchPointInvalidator
public SwitchPointInvalidator()Creates an invalidator with no live SwitchPoint until the firstgetSwitchPoint()call. Field initializers own all state.
-
-
Method Details
-
setReclaimAnchor
Parksanchorso it stays strongly reachable while this invalidator is reachable. SeereclaimAnchor.- Parameters:
anchor- the object to keep reachable (may benullto clear)
-
getSwitchPoint
Returns a live switch point to install in a call-site guard chain. Lazily allocates on first use after construction or after retirement.- Returns:
- a live switch point (never
null)
-
invalidate
public void invalidate()Invalidates the current live switch point (if any) so linked sites re-link. A subsequentgetSwitchPoint()allocates a fresh switch point. -
detachLive
Atomically detaches the live switch point for bulkSwitchPoint.invalidateAll(java.lang.invoke.SwitchPoint[])without invalidating it yet. The caller must invalidate any non-null return value.- Returns:
- the detached live switch point, or
nullif none was live
-
getRetirementCount
public int getRetirementCount()Returns how many live switch points have been retired.- Returns:
- the retirement count
-
invalidateIfLive
Invalidatesspwhen non-null and still valid.- Parameters:
sp- candidate switch point (may benull)
-