RFR: 8255662: ZGC: Unify nmethod closures in the heap iterator
Stefan Karlsson
stefank at openjdk.java.net
Mon Nov 2 16:21:05 UTC 2020
n the heap iterator, we use different nmethod closures to visit the on-stack nmethods and the rest that are visited if class unloading is turned off.
The rational is that the first set have already been processed and does not have to be fixed, so the code simply verifies that the nmethod has been processed and visits all the oops. The second set contains nmethods of the kind that has been entered and processed, and those that have not. Before visiting oops in those nmethods, we apply an nmethod barrier to ensure that it's safe to visit the oops.
The proposal is to get rid of this separation and simply apply the nmethod entry barrier on all visited nmethods. This will make it easier to reason about the safeness of visiting the oops.
-------------
Commit messages:
- Review 1 - hide ClassUnloading check
- ZGC: Unify nmethod closures in the heap iterator
Changes: https://git.openjdk.java.net/jdk/pull/1011/files
Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=1011&range=00
Issue: https://bugs.openjdk.java.net/browse/JDK-8255662
Stats: 39 lines in 3 files changed: 18 ins; 15 del; 6 mod
Patch: https://git.openjdk.java.net/jdk/pull/1011.diff
Fetch: git fetch https://git.openjdk.java.net/jdk pull/1011/head:pull/1011
PR: https://git.openjdk.java.net/jdk/pull/1011
More information about the hotspot-dev
mailing list