Improved ARM64 code generation#9937
Merged
xavierleroy merged 4 commits intoocaml:trunkfrom Nov 26, 2020
Merged
Conversation
stedolan
reviewed
Nov 24, 2020
stedolan
reviewed
Nov 24, 2020
stedolan
approved these changes
Nov 24, 2020
…ions Now we recognize the full set of hardware supported immediate operands. `is_logical_immediate` was moved from Selection to Arch and made to work on nativeints. This is in preparation for future use in Emit.
Add a special case for immediates that can be loaded in one "or" instruction. Refactor the code that produces sequences of movz/movn/movk to be less redundant and to choose the shortest sequence between the "movz" sequence and the "movn" sequence.
3b7f1f8 to
5e15e3c
Compare
Contributor
Author
|
Thanks for the review. I rebased and am running a round of "precheck" CI. |
Contributor
Author
|
CI on ARM64 is happy. Merging! |
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.
This PR improves (marginally) the code generated by the ARM64 port.
The first commit recognizes the full set of hardware-supported immediate operands for logical operations. The code is slightly tricky but is similar to the code that CompCert uses when targeting ARM64.
The second commit tries to generate shorter instruction sequences for loading large integer constants. Again, it is inspired by CompCert for ARM64. It also reduces code duplication between determining the size of the instruction sequence and actually generating it.
The third commit recognizes the
sbfminstruction for sign extensions. This should improve a bit the code generated forint32arithmetic.