fix(aarch64): shift immhi bits of ADRP to account for immlo#121
Merged
CensoredUsername merged 1 commit intoFeb 11, 2026
Merged
Conversation
the immlo bits of the ADRP instruction on aarch64 must be shifted by 2, as the bottom two bits are stored in the immhi field. Similarly to how ADR works.
Owner
|
Thanks! I'll take a look at it. |
Owner
|
Looks correct, this also matches how the runtime processes ADRP relocations. Not sure what happened here. The blacklisted test is because the assembler I was using at the time as reference didn't like getting an immediate as the argument for ADRP so I couldn't validate it. Unfortunate that an error snuck in there. I'll rebase this to dev once I'm done with the relocation rework. |
Contributor
Author
|
Awesome, thanks. Happy to contribute |
Owner
|
The changes are live now in v5.0.0, thanks for the contribution! |
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.
the immlo bits of the ADRP instruction on aarch64 must be shifted by 2, as the bottom two bits are stored in the immhi field. Similarly to how ADR works.
There is also blacklisted
adrpwithin the testcase generator, I am not sure if it's because of this encoding issue or there was some other reason for it, probably worth a second look. (/tools/aarch64_emit_tests.py)I couldn't get the test suite to regenerate on my mac easily, so I didn't check it.