-
Enhancement
-
Resolution: Won't Fix
-
P4
-
21
For prompt evacuation of unpinned pinned regions (or evacuation failed regions) in JDK-8140326 we need to determine whether to keep their remembered sets or not.
The important metric here is live bytes, i.e. number of bytes live after evacuation failure.
TheJDK-8140326 change needs that metric at the start of the post evacuation phase (before post evacuation phase 1); currently we calculate this _in_ post evacuation phase 1 which is too late.
Change the code to use the existing marking infrastructure that collects live bytes for evacuation failed regions so that the result is available at the correct time forJDK-8140326
The important metric here is live bytes, i.e. number of bytes live after evacuation failure.
The
Change the code to use the existing marking infrastructure that collects live bytes for evacuation failed regions so that the result is available at the correct time for
- blocks
-
JDK-8140326 G1: Consider putting regions where evacuation failed into next collection set
-
- Resolved
-
- links to
-
Review openjdk/jdk/14118