-
Notifications
You must be signed in to change notification settings - Fork 5.8k
8352963: [REDO] Missing late inline cleanup causes compiler/vectorapi/VectorLogicalOpIdentityTest.java IR failure #24402
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
Conversation
…LogicalOpIdentityTest.java IR failure Co-authored-by: Vladimir Ivanov <vlivanov@openjdk.org> Reviewed-by: thartmann, vlivanov
👋 Welcome back dfenacci! A progress list of the required criteria for merging this PR into |
@dafedafe 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 289 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
|
if (IncrementalInlineMH) { | ||
CallGenerator::for_mh_late_inline(caller, callee, input_not_const); | ||
} else { | ||
CallGenerator::for_late_inline(callee, cg); |
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.
Would -XX:-IncrementalInlineMH
hit the very same assertion? Should we simply require IncrementalInlineMH
to delay inlining instead?
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.
Would -XX:-IncrementalInlineMH hit the very same assertion?
Indeed! 🤦♂️
Should we simply require IncrementalInlineMH to delay inlining instead?
Yes. I removed the non-MH late inline call as well.
Thanks @iwanowww!
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.
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!
Thank you for your reviews @iwanowww and @TobiHartmann. |
/integrate |
Going to push as commit d9f2e69.
Your commit was automatically rebased without conflicts. |
This PR is a REDO of JDK-8302459 (PR, backout triggered by a failing internal test).
There was an issue with
CallGenerator::for_method_handle_call
that could delay late inlining by creating a "generic"LateInlineCallGenerator
instead of a more specificLateInlineMHCallGenerator
:jdk/src/hotspot/share/opto/callGenerator.cpp
Line 991 in 74df384
While running IGVN this could be misinterpreted as non-MH late-inline
jdk/src/hotspot/share/opto/callnode.cpp
Lines 1088 to 1091 in c282fb9
eventually triggering
assert(!cg->method()->is_method_handle_intrinsic(), "required");
The fix involves creating a
LateInlineMHCallGenerator
instead. Here is what changed from the backed out PR:jdk/src/hotspot/share/opto/callGenerator.cpp
Lines 991 to 995 in c282fb9
Testing
Tier 1-4 (windows-x64, linux-x64/aarch64, and macosx-x64/aarch64; release and debug mode)
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/24402/head:pull/24402
$ git checkout pull/24402
Update a local copy of the PR:
$ git checkout pull/24402
$ git pull https://git.openjdk.org/jdk.git pull/24402/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 24402
View PR using the GUI difftool:
$ git pr show -t 24402
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/24402.diff
Using Webrev
Link to Webrev Comment