-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8353341: C2: removal of a Mod[DF]Node crashes when the node is already dead #24375
8353341: C2: removal of a Mod[DF]Node crashes when the node is already dead #24375
Conversation
👋 Welcome back mchevalier! A progress list of the required criteria for merging this PR into |
@marc-chevalier 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 40 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. ➡️ To flag this PR as ready for integration with the above commit message, type |
@marc-chevalier 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.
Looks good to me!
test/hotspot/jtreg/compiler/c2/irTests/FPModWithoutControlProj.java
Outdated
Show resolved
Hide resolved
test/hotspot/jtreg/compiler/c2/irTests/FPModWithoutControlProj.java
Outdated
Show resolved
Hide resolved
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.
Looks good!
test/hotspot/jtreg/compiler/c2/irTests/FPModWithoutControlProj.java
Outdated
Show resolved
Hide resolved
test/hotspot/jtreg/compiler/c2/irTests/FPModWithoutControlProj.java
Outdated
Show resolved
Hide resolved
I've fixed everything, ready for next round. |
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 the updates, looks good!
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 to me too.
/integrate Thanks @chhagedorn and @TobiHartmann! |
@marc-chevalier |
/sponsor |
Going to push as commit 00a038e.
Your commit was automatically rebased without conflicts. |
@chhagedorn @marc-chevalier Pushed as commit 00a038e. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
If the Mod[DF]Node has no control projection when it's being removed (because its result is unused),
extract_projections
will fail an assert. So, let's skip the removal.But that should happen only when the nodes are already unreachable (control input being transitively top). At the end of the day, the node should be dropped. because of that, so there is no rush, and let dead node deletion do the job.
On the reduced reproducer, the crash is not common (even with
-XX:RepeatCompilation=300
, it might need more than a run to reproduce). So I've tried my fix on multiple thousands repeat compilations (by 300 packs) without a crash, and without having the modulo node alive at the end.For instance, that's what happen on the reproducer. Quickly, some big sub-graph is dead, but nodes stay a while in the graph:



Then:
And eventually, everything is removed, so the control projection is removed, and
extract_projections
doesn't like it.Thanks,
Marc
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/24375/head:pull/24375
$ git checkout pull/24375
Update a local copy of the PR:
$ git checkout pull/24375
$ git pull https://git.openjdk.org/jdk.git pull/24375/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 24375
View PR using the GUI difftool:
$ git pr show -t 24375
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/24375.diff
Using Webrev
Link to Webrev Comment