Skip VarHandle init when unaligned access is supported (#16664)#16676
Merged
Conversation
`initializeVarHandle()`. This made VarHandle code reachable even when Unsafe is available, causing Truffle/Polyglot native-image builds to fail with `MethodHandle.linkToStatic` blocklist violations (#16607). Restoring the original Unsafe guard fixes #16607, but also kills Use `isUnaligned()` as the guard instead. On platforms where unaligned access is known (x86, modern ARM), Unsafe already handles multi-byte access fine, so VarHandle isn't needed and VarHandleFactory stays unreachable. On platforms where UNALIGNED is unknown (exactly the case #16207 targets), VarHandle still gets initialized and works as before. Fixes #16607. Tested with the reporter's project (https://github.com/adamdickmeiss/vertx-graalvm-native-image-log4j): - Before: `=== Found 4 compilation blocklist violations ===` BUILD FAILURE - After: No violations, BUILD SUCCESS Co-authored-by: Chris Vest <christianvest_hansen@apple.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
initializeVarHandle(). This made VarHandle code reachable even whenUnsafe is available,
causing Truffle/Polyglot native-image builds to fail with
MethodHandle.linkToStaticblocklist violations (#16607).Restoring the original Unsafe guard fixes #16607, but also kills
Use
isUnaligned()as the guard instead. On platforms where unalignedaccess is known (x86, modern ARM), Unsafe already handles multi-byte
access fine, so VarHandle
isn't needed and VarHandleFactory stays unreachable.
On platforms where UNALIGNED is unknown (exactly the case #16207
targets), VarHandle still gets initialized and works as before.
Fixes #16607.
Tested with the reporter's project
(https://github.com/adamdickmeiss/vertx-graalvm-native-image-log4j):
=== Found 4 compilation blocklist violations ===BUILDFAILURE
Co-authored-by: Chris Vest christianvest_hansen@apple.com