RFR: 8280554: resourcehogs/serviceability/sa/ClhsdbRegionDetailsScanOopsForG1.java can fail if GC is triggered

Chris Plummer cjplummer at openjdk.java.net
Fri Jan 28 04:34:38 UTC 2022


When using -Xcomp, the liveness of some objects the test allocates is more precisely known, allowing the objects to be collected before the test expects. This became an issue in the loom repo because it has changes that result in a full GC when the codecache is swept. This is fixed by using statics to reference the objects. Also, if a GC does happen, this seems to get rid of the Survivor region, so the test was updated to no longer check for it.

I'm choosing to fix this in the jdk repo rather than the loom repo since it is a latent bug that theoretically could occur even without the loom changes, and also to help reduce the amount of changes to be reviewed when loom is integrated into jdk.

-------------

Commit messages:
 - Make sure allocated objects are kept live.

Changes: https://git.openjdk.java.net/jdk/pull/7257/files
 Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=7257&range=00
  Issue: https://bugs.openjdk.java.net/browse/JDK-8280554
  Stats: 7 lines in 2 files changed: 2 ins; 2 del; 3 mod
  Patch: https://git.openjdk.java.net/jdk/pull/7257.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/7257/head:pull/7257

PR: https://git.openjdk.java.net/jdk/pull/7257


More information about the serviceability-dev mailing list