RFR: 8313332: Simplify lazy jmethodID cache in InstanceKlass [v4]
Coleen Phillimore
coleenp at openjdk.org
Thu Apr 4 00:07:34 UTC 2024
> This change simplifies the code that grows the jmethodID cache in InstanceKlass. Instead of lazily, when there's a rare request for a jmethodID for an obsolete method, the jmethodID cache is grown during the RedefineClasses safepoint. The InstanceKlass's jmethodID cache is lazily allocated when there's a jmethodID allocated, so not every InstanceKlass has a cache, but the growth now only happens in a safepoint. This code will become racy with the potential change for deallocating jmethodIDs.
>
> Tested with tier1-4, vmTestbase/nsk/jvmti java/lang/instrument tests (in case they're not in tier1-4).
Coleen Phillimore has updated the pull request incrementally with one additional commit since the last revision:
Two more.
-------------
Changes:
- all: https://git.openjdk.org/jdk/pull/18549/files
- new: https://git.openjdk.org/jdk/pull/18549/files/26bd82d3..aab60e28
Webrevs:
- full: https://webrevs.openjdk.org/?repo=jdk&pr=18549&range=03
- incr: https://webrevs.openjdk.org/?repo=jdk&pr=18549&range=02-03
Stats: 2 lines in 1 file changed: 0 ins; 0 del; 2 mod
Patch: https://git.openjdk.org/jdk/pull/18549.diff
Fetch: git fetch https://git.openjdk.org/jdk.git pull/18549/head:pull/18549
PR: https://git.openjdk.org/jdk/pull/18549
More information about the serviceability-dev
mailing list