Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2215464 | 8 | John Cuthbertson | P4 | Resolved | Fixed | b08 |
JDK-2214874 | 7u2 | John Cuthbertson | P4 | Closed | Fixed | b08 |
As part of 6484965, the following behavior was observed:
During root scanning of an initial mark pause, an object A is successfully forwarded by thread 1; thread 1 then proceeded to copy A to A'.
At the same time thread 2 sees that A has been forwarded, checks to see if A' has been marked (it has not yet), and successfully sets the bit for A' in the next marking bitmap.
After thread 1 has finished copying object A -> A', it calls mark_forwardee which checks to see if A' has been marked and it has.
The issue is that while thread 1 is copying A -> A', there is a window where if thread 2 attempts to get the size of A', it could see an unitialized object.
This has an implication for the preferred solution for 6484965. In the preferred solution, when an object is marked, we obtain its size in order to add to the marked bytes total.
The solution is to refactor the marking code in the G1 copy closures so that the thread that successfully for forwards and copies A is also responsible for marking A'.
During root scanning of an initial mark pause, an object A is successfully forwarded by thread 1; thread 1 then proceeded to copy A to A'.
At the same time thread 2 sees that A has been forwarded, checks to see if A' has been marked (it has not yet), and successfully sets the bit for A' in the next marking bitmap.
After thread 1 has finished copying object A -> A', it calls mark_forwardee which checks to see if A' has been marked and it has.
The issue is that while thread 1 is copying A -> A', there is a window where if thread 2 attempts to get the size of A', it could see an unitialized object.
This has an implication for the preferred solution for 6484965. In the preferred solution, when an object is marked, we obtain its size in order to add to the marked bytes total.
The solution is to refactor the marking code in the G1 copy closures so that the thread that successfully for forwards and copies A is also responsible for marking A'.
- backported by
-
JDK-2215464 G1: refactor marking code in evacuation pause copy closures
-
- Resolved
-
-
JDK-2214874 G1: refactor marking code in evacuation pause copy closures
-
- Closed
-
- relates to
-
JDK-7092412 G1: Some roots not marked during an initial mark that gets an evacuation failure
-
- Closed
-