-
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
JDK-8264899: C1: -XX:AbortVMOnException does not work if all methods in the call stack are compiled with C1 and there are no exception handlers #14240
Conversation
… -XX:TieredStopAtLevel=1,2,3
This reverts commit 9a3feac.
👋 Welcome back dafedafe! A progress list of the required criteria for merging this PR into |
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 to me!
@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 139 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 |
This change includes changes in |
@offamitkumar I noticed you have a few s390x commits. Could I ask you to run a few tests for s390? Thank you very much. |
@dafedafe s390x tier1 test looks good. I have gone through the changes as well. LGTM. |
Hi @dafedafe, On
@RealLucy you may want to look at it. |
@offamitkumar I think I used the wrong register for the exception oop. It should be fixed now. Could you please run the tests again? Thanks a lot. |
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.
@offamitkumar I think I used the wrong register for the exception oop. It should be fixed now.
Thanks, for fixing it. Testing done for tier1-test with fastdebug, slowdebug on Z15 machine. No new failure appeared.
Hi @dafedafe, ARM32 tier1 tests are good. The new test works Ok. |
@offamitkumar thanks a lot for testing! |
@bulasevich thanks a lot for testing! |
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.
PPC64 part looks good. Saving and restoring all registers is a bit of an overkill, but it's only a diagnostic feature. So, ok.
@RealFYang @offamitkumar @TobiHartmann @TheRealMDoerr thanks a lot for your reviews! |
/integrate |
Going to push as commit 826dcb5.
Your commit was automatically rebased without conflicts. |
Problem
The
AbortVMOnException
flag prints the stack trace instead of aborting when the code gets compiled with C1.This only happens when the exception gets unwound, all methods in the call stack are compiled with C1 and there are no exception handlers for that exception.
This happens here (for x86. Other platform's implementations are similar):
jdk/src/hotspot/cpu/x86/c1_Runtime1_x86.cpp
Lines 1209 to 1215 in 4d47069
Solution
To catch this situation, if
AbortVMOnException
is set, a call to check if there is a match is added when unwinding the exception. This is done in thevoid Runtime1::generate_unwind_exception
which is the sole call of theunwind_exception_id
case.On a few architectures a move instruction is needed (e.g.
__ mov(rscratch1, exception_oop)
) to copy the exception oop into a different register that doesn't conflict with the argument of the C calling convention. This is checked with asserts in most architectures but not for aarch64 (new enhancement issue: JDK-8310020).A regression test is added as well.
Testing
This fix includes changes for x86_32/64 and aarch64, which I could test thoroughly but also for arm, ppc, riscv, and s390 for which I would need some help with testing.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/14240/head:pull/14240
$ git checkout pull/14240
Update a local copy of the PR:
$ git checkout pull/14240
$ git pull https://git.openjdk.org/jdk.git pull/14240/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 14240
View PR using the GUI difftool:
$ git pr show -t 14240
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/14240.diff
Webrev
Link to Webrev Comment