RFR: 8353216: Improve VerifyMethodHandles for method handle linkers

Vladimir Ivanov vlivanov at openjdk.org
Fri Mar 28 22:55:21 UTC 2025


Add extra verification logic into `MethodHandle::invokeBasic/linkTo*` to ensure that holder classes are properly initialized.

The patch covers x86 and aarch64 platforms.

There are some differences in expectations between invocation modes.
While `invokeStatic` assumes a clinit barrier (and `invokeBasic` just requires the holder class to be fully initialized), other invocation modes can only expect that class initialization has been initiated (due to class initialization failures and premature publication, instances of partially initialized classes can be observed).   

Testing: hs-tier1 - hs-tier4

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

Commit messages:
 - No need to care about x86-32 anymore
 - A branch too far...
 - Specialize for linker type
 - Limit to concrete methods
 - Verify method holder

Changes: https://git.openjdk.org/jdk/pull/23950/files
  Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=23950&range=00
  Issue: https://bugs.openjdk.org/browse/JDK-8353216
  Stats: 109 lines in 4 files changed: 96 ins; 2 del; 11 mod
  Patch: https://git.openjdk.org/jdk/pull/23950.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/23950/head:pull/23950

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


More information about the hotspot-dev mailing list