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
8264020: Optimize double negation elimination #3231
Conversation
For the double negation '-(-x)', c2 could reduce the redundant 'sub' through SubNode::Ideal. But every time when 'sub' is removed, there would generate two useless nodes SubNode(x, 0)[1] and AddNode(x, -0)[2], which would be removed by later phases but should have optimized better to 'x' itself without generating those new stuffs. This patch is a small fix for SubNode's Ideal, by leaving this special case to 'Identity' which handled double negation already[3]. [1] https://github.com/openjdk/jdk/blob/master/src/hotspot/share/opto/subnode.cpp#L238 [2] https://github.com/openjdk/jdk/blob/master/src/hotspot/share/opto/subnode.cpp#L181 [3] https://github.com/openjdk/jdk/blob/master/src/hotspot/share/opto/subnode.cpp#L55 Change-Id: I5597e43001a4593b32b1bb25d4a4bef0ba1bcc09
|
@theRealELiu 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. |
Webrevs
|
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.
Otherwise, looks good to me.
@theRealELiu This change now passes all automated pre-integration checks. 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 125 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 (@TobiHartmann, @chhagedorn) but any other Committer may sponsor as well.
|
Change-Id: I4c8f67f6277ded894af2572ff89b6b08f9187e11
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 for updating! Looks good to me.
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!
/integrate |
@theRealELiu |
/sponsor |
@nsjian @theRealELiu Since your change was applied there have been 131 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit f3726a8. |
For the double negation '-(-x)', c2 could reduce the redundant 'sub'
through SubNode::Ideal. But every time when 'sub' is removed, there
would generate two useless nodes SubNode(x, 0)[1] and AddNode(x, -0)[2],
which would be removed by later phases but should have optimized better
to 'x' itself without generating those new stuffs.
This patch is a small fix for SubNode's Ideal, by leaving this special
case to 'Identity' which handled double negation already[3].
[1] https://github.com/openjdk/jdk/blob/master/src/hotspot/share/opto/subnode.cpp#L238
[2] https://github.com/openjdk/jdk/blob/master/src/hotspot/share/opto/subnode.cpp#L181
[3] https://github.com/openjdk/jdk/blob/master/src/hotspot/share/opto/subnode.cpp#L55
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/3231/head:pull/3231
$ git checkout pull/3231
Update a local copy of the PR:
$ git checkout pull/3231
$ git pull https://git.openjdk.java.net/jdk pull/3231/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 3231
View PR using the GUI difftool:
$ git pr show -t 3231
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/3231.diff