-
Notifications
You must be signed in to change notification settings - Fork 6k
8286190: Add test to verify constant folding for Enum fields #8551
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
Conversation
👋 Welcome back shade! A progress list of the required criteria for merging this PR into |
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.
Nice find. So we are doing ENUM constant folding since JDK 14 and did not notice it ;)
Test is good. Thanks!
@shipilev 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 33 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. ➡️ To integrate this PR with the above commit message to the |
Mailing list message from John Rose on hotspot-compiler-dev: This reminds me that our enum switches do not allow constant folding, The root cause is that the T.S. open-codes the discrimination logic for So the T.S. should encapsulate switch discrimination logic so that a https://bugs.openjdk.java.net/browse/JDK-8161250 tracks this general These points relate to this bug only in that, if we had our ducks in a On 5 May 2022, at 8:45, Vladimir Kozlov wrote: |
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.
Looks good.
Thanks! /integrate |
Going to push as commit 080f3c5.
Your commit was automatically rebased without conflicts. |
There is the JDK-8161245 to make compilers trust Enum final fields. It was implicitly implemented by JDK-8234049, which added the wildcard trust for everything in java/lang:
jdk/src/hotspot/share/ci/ciField.cpp
Line 230 in c5a0687
It would be better to have the explicit test that verifies the constant folding of Enum fields indeed happens.
Additional testing:
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/8551/head:pull/8551
$ git checkout pull/8551
Update a local copy of the PR:
$ git checkout pull/8551
$ git pull https://git.openjdk.java.net/jdk pull/8551/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 8551
View PR using the GUI difftool:
$ git pr show -t 8551
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/8551.diff