JDK-8212911 : Unify and micro-optimize handling of non-in-collection set references in oop closures
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: 12
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2018-10-24
  • Updated: 2018-11-06
  • Resolved: 2018-10-31
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 12
12 b18Fixed
Related Reports
Blocks :  
Description
Currently in our various oop closures used during gc and during concurrent operation we use different methods to determine out-of-region references, and during GC we sometimes enqueue references and sometimes add remembered set entries directly.

Enqueuing references also determines whether the from-region is young for every reference - actually that can be determined per object already, and is often already available.