JDK-8129558 : Coalesce dead objects during removal of self-forwarded pointers
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Affected Version: 9
  • Priority: P3
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2015-06-23
  • Updated: 2015-09-10
  • Resolved: 2015-07-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 9
9 b74Fixed
Related Reports
Relates :  
Description
During fixing up self-forwarded pointers created by evacuation failure we walk the heap object by object, fixing up BOT, mark bitmap object by object, both for dead and live objects.

It would be a lot faster to coalesce dead objects into single filler objects and do the BOT update/mark bitmap work on that scale. This significantly reduces the number of updates, increasing performance.