RFR: 8375314: Parallel: Crash iterating over unloaded classes for ObjectCountAfterGC event

Thomas Schatzl tschatzl at openjdk.org
Wed Jan 21 09:21:04 UTC 2026


Hi all,

  please review this change that avoids crashes when gathering `ObjectCountAfterGC` JFR statisics.

The cause for the crash is that the code purges metaspace after class unloading/purging after https://bugs.openjdk.org/browse/JDK-8361404. The heap iteration code walks the heap with classes that were unloaded and purged, eventually crashing if for some reason the data is invalid due to metaspace purging potentially uncommitting memory.

Since it is somewhat ugly that we walk objects with dead klasses in them (as it was before the mentioned change), I moved the iteration to after the heap has been compacted, skipping filler objects that might be in there.

Unfortunately I did not manage to write a good reproducer.

Testing: gha, tier1-5, test case succeeding

Thanks,
  Thomas

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

Commit messages:
 - * kstefanj review
 - * add test
 - 8375314

Changes: https://git.openjdk.org/jdk/pull/29318/files
  Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=29318&range=00
  Issue: https://bugs.openjdk.org/browse/JDK-8375314
  Stats: 152 lines in 7 files changed: 136 ins; 11 del; 5 mod
  Patch: https://git.openjdk.org/jdk/pull/29318.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/29318/head:pull/29318

PR: https://git.openjdk.org/jdk/pull/29318


More information about the hotspot-gc-dev mailing list