-
Bug
-
Resolution: Duplicate
-
P5
-
hs25, 8
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8031308 | 9 | Thomas Schatzl | P5 | Resolved | Fixed | b02 |
JDK-8045196 | 8u25 | Thomas Schatzl | P5 | Resolved | Fixed | b01 |
JDK-8031309 | 8u20 | Thomas Schatzl | P5 | Resolved | Fixed | b01 |
JDK-8053201 | emb-8u26 | Thomas Schatzl | P5 | Resolved | Fixed | b17 |
The scope of the GCTraceTime timer is too large for string table processing for the parallel scavange GC, expanding beyond it.
I.e. in psScavenge.cpp:
469 GCTraceTime tm("StringTable", false, false, &_gc_timer);
470 // Unlink any dead interned Strings and process the remaining live ones.
471 PSScavengeRootsClosure root_closure(promotion_manager);
472 StringTable::unlink_or_oops_do(&_is_alive_closure, &root_closure);
The fix is to put braces around this section.
Reported with this fix suggestion by J. Manson on the hotspot-dev list (http://mail.openjdk.java.net/pipermail/hotspot-dev/2013-October/011420.html)
ILW: L (user reported timings are wrong), M (only used with event tracing/JFR enabled), H (no workaround) -> P5
I.e. in psScavenge.cpp:
469 GCTraceTime tm("StringTable", false, false, &_gc_timer);
470 // Unlink any dead interned Strings and process the remaining live ones.
471 PSScavengeRootsClosure root_closure(promotion_manager);
472 StringTable::unlink_or_oops_do(&_is_alive_closure, &root_closure);
The fix is to put braces around this section.
Reported with this fix suggestion by J. Manson on the hotspot-dev list (http://mail.openjdk.java.net/pipermail/hotspot-dev/2013-October/011420.html)
ILW: L (user reported timings are wrong), M (only used with event tracing/JFR enabled), H (no workaround) -> P5
- backported by
-
JDK-8031308 PSScavenge accounts too large code section to StringTable unlink
-
- Resolved
-
-
JDK-8031309 PSScavenge accounts too large code section to StringTable unlink
-
- Resolved
-
-
JDK-8045196 PSScavenge accounts too large code section to StringTable unlink
-
- Resolved
-
-
JDK-8053201 PSScavenge accounts too large code section to StringTable unlink
-
- Resolved
-
- duplicates
-
JDK-8031308 PSScavenge accounts too large code section to StringTable unlink
-
- Resolved
-