-
Notifications
You must be signed in to change notification settings - Fork 75
8313241: Temporarily disable "malformed control flow" assert to reduce noise #146
Conversation
|
👋 Welcome back thartmann! A progress list of the required criteria for merging this PR into |
|
@TobiHartmann 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
|
chhagedorn
left a comment
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 and trivial.
|
Thanks, Christian! |
|
@TobiHartmann 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 no new commits pushed to the ➡️ To integrate this PR with the above commit message to the |
src/hotspot/share/opto/compile.cpp
Outdated
|
|
||
| // Recheck with a better notion of 'required_outcnt' | ||
| if (n->outcnt() != required_outcnt) { | ||
| DEBUG_ONLY( n->dump_bfs(1, 0, "-"); ); |
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.
May be remove dump node information too - it will pollute output.
|
Good catch, Vladimir. Removed. |
vnkozlov
left a comment
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.
Good
dcubed-ojdk
left a comment
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.
Thumbs up. Thanks for reducing the noise in the JDK21 CI!
|
Thanks for the reviews, Daniel and Vladimir. |
|
/integrate |
|
Going to push as commit f242c3b.
Your commit was automatically rebased without conflicts. |
|
@TobiHartmann Pushed as commit f242c3b. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
JDK-8303951 added asserts before several C2 compilation bailouts that we were never able to trigger in our testing. The "malformed control flow" assert now triggers regularly (see JDK-8308392 and JDK-8312980). Let's disable it in JDK 21 to reduce the noise in the CI.
I also reverted the problem listing done by JDK-8313208 because, as @AlanBateman noted in #145, it's too invasive.
Approval is pending.
Thanks,
Tobias
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk21.git pull/146/head:pull/146$ git checkout pull/146Update a local copy of the PR:
$ git checkout pull/146$ git pull https://git.openjdk.org/jdk21.git pull/146/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 146View PR using the GUI difftool:
$ git pr show -t 146Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk21/pull/146.diff
Webrev
Link to Webrev Comment