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
8273416: C2: assert(false) failed: bad AD file after JDK-8252372 with UseSSE={0,1} #5386
Conversation
|
@shipilev This pull request has been inactive for more than 8 weeks and will be automatically closed if another 8 weeks passes without any activity. To avoid this, simply add a new comment to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration! |
71f6005
to
7195504
Compare
@shipilev 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 67 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.
|
Thank you! /integrate |
Going to push as commit 89ade1d.
Your commit was automatically rebased without conflicts. |
See the bug report for reproducer and failure message. I think the newly added
CastDD
/CastFF
nodes should handle the extendedregDPR
/regFPR
(which includes FPU "registers") instead of justregD
/regF
to avoid this mismatch error whenUseSSE < 2
.Unfortunately, we cannot just use
reg*PR
operands in existing match rules, because those operands are defined asUseSSE < 2
, and using them as operands andideal_regs()
would break the matching onUseSSE >= 2
. Therefore I had to add another pair of matches.Additonal testing:
tier1
-XX:UseAVX=0 -XX:UseSSE=0
tier1
defaulttier1
defaultProgress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/5386/head:pull/5386
$ git checkout pull/5386
Update a local copy of the PR:
$ git checkout pull/5386
$ git pull https://git.openjdk.java.net/jdk pull/5386/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 5386
View PR using the GUI difftool:
$ git pr show -t 5386
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/5386.diff