JDK-8048179 : Early reclaim of large objects that are referenced by a few objects
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: 9
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2014-06-26
  • Updated: 2016-10-03
  • Resolved: 2015-01-07
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 8 JDK 9
8u60Fixed 9 b47Fixed
Related Reports
Relates :  
Relates :  
Relates :  
Relates :  
Sub Tasks
JDK-8166785 :  
Description
JDK-8027959 introduces early reclamation of large objects that have no incoming references at all.

Investigate relaxing this restriction (both effectiveness/time taken) by allowing reclamation of large objects with a few references (e.g. having only sparse table entries) - just iterate over them, and reclaim if we find out there are actually no references to it.

Most likely this results in additional objects to be reclaimed, as the remembered set entries may be stale already.