New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8261071: AArch64: Refactor interpreter native wrappers #2413
8261071: AArch64: Refactor interpreter native wrappers #2413
Conversation
👋 Welcome back akozlov! A progress list of the required criteria for merging this PR into |
@AntonKozlov The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, that looks way better. Are all platform differences handled by Interpreter::local_offset_in_bytes() ?
Java local structure is very similar between CPUs. The function is a simple one:
|
@AntonKozlov This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 43 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@theRealAph) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
/integrate |
@AntonKozlov |
@VladimirKempik Only the author (@AntonKozlov) is allowed to issue the |
/sponsor |
@VladimirKempik @AntonKozlov Since your change was applied there have been 134 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit 682e78e. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Please review refactoring of interpreter signature handlers on aarch64. The main objective is to prepare for the new calling convention of macOS/AArch64, although this patch brings nothing from the new convention.
Tested with signature stress tests and tier1 on Linux/AArch64.
I have stared with a single function implementing SlowSignatureHandler (5ef1bd1#diff-1ff58ce70aeea7e9842d34e8d8fd9c94dd91182999d455618b2a171efd8f742cR164). The single function was compact but obscure. I was shuffling it until I eventually came to something similar of the initial approach with few pieces abstracted away.
The most notable changes in the final version should be
Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jdk pull/2413/head:pull/2413
$ git checkout pull/2413