-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 13.0.6
-
Component/s: hotspot
The patch for JDK-8255269 incorrectly replaced the average copy time computation with the one from JDK 11. This line from the patch
double average_copy_time = average_time_ms(G1GCPhaseTimes::ObjCopy);
should be
double average_copy_time = average_time_ms(G1GCPhaseTimes::ObjCopy) + average_time_ms(G1GCPhaseTimes::OptObjCopy);
double average_copy_time = average_time_ms(G1GCPhaseTimes::ObjCopy);
should be
double average_copy_time = average_time_ms(G1GCPhaseTimes::ObjCopy) + average_time_ms(G1GCPhaseTimes::OptObjCopy);
- relates to
-
JDK-8255269 Unsigned overflow in g1Policy.cpp
-
- Resolved
-