8373524: C2: no reachable node should have no use#28841
8373524: C2: no reachable node should have no use#28841rwestrel wants to merge 8 commits intoopenjdk:masterfrom
Conversation
|
👋 Welcome back roland! A progress list of the required criteria for merging this PR into |
|
@rwestrel 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 71 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 |
Webrevs
|
| @@ -0,0 +1,88 @@ | |||
| /* | |||
There was a problem hiding this comment.
Since this is about IGVN, you could move the test to compiler/igvn.
There was a problem hiding this comment.
Right. That makes sense. Done in the new commits.
Co-authored-by: Christian Hagedorn <christian.hagedorn@oracle.com>
…java Co-authored-by: Christian Hagedorn <christian.hagedorn@oracle.com>
mhaessig
left a comment
There was a problem hiding this comment.
Testing passed and the new changes look good as well.
|
@chhagedorn @mhaessig thanks for the reviews and testing. |
|
/integrate |
|
@rwestrel This pull request has not yet been marked as ready for integration. |
chhagedorn
left a comment
There was a problem hiding this comment.
Update looks good, thanks!
|
@chhagedorn thanks for re-approving. |
|
/integrate |
|
Going to push as commit e72f205.
Your commit was automatically rebased without conflicts. |
|
/backport :jdk26 |
|
@rwestrel the backport was successfully created on the branch backport-rwestrel-e72f205a-jdk26 in my personal fork of openjdk/jdk. To create a pull request with this backport targeting openjdk/jdk:jdk26, just click the following link: The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk: |
The failure occurs because
PhiNode::Idealusesset_reqto updatean input of a
Phi. That causes the previous input to be disconnectedbut because of the use of
set_req, the previous input that has nouse is not enqueued for
igvnto be reclaimed. The fix is to useset_req_Xinstead. I replaced uses ofset_reqwithset_req_XinPhiNode::Idealwhere I thought it made sense.Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/28841/head:pull/28841$ git checkout pull/28841Update a local copy of the PR:
$ git checkout pull/28841$ git pull https://git.openjdk.org/jdk.git pull/28841/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 28841View PR using the GUI difftool:
$ git pr show -t 28841Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/28841.diff
Using Webrev
Link to Webrev Comment