Skip to content
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

Closed
wants to merge 27 commits into from

Conversation

dafedafe
Copy link
Contributor

@dafedafe dafedafe commented May 31, 2023

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):

case unwind_exception_id:
{ __ set_info("unwind_exception", dont_gc_arguments);
// note: no stubframe since we are about to leave the current
// activation and we are calling a leaf VM function only.
generate_unwind_exception(sasm);
}
break;

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 the void Runtime1::generate_unwind_exception which is the sole call of the unwind_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

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue

Issue

  • 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 (Bug - P4)

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

Sorry, something went wrong.

dafedafe added 14 commits May 15, 2023 08:21

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede
… -XX:TieredStopAtLevel=1,2,3

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede
…Exception set

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede
…k to JTReg test

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede
This reverts commit 9a3feac.

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede

Verified

This commit was signed with the committer’s verified signature.
robjtede Rob Ede

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
@bridgekeeper
Copy link

bridgekeeper bot commented May 31, 2023

👋 Welcome back dafedafe! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented May 31, 2023

@dafedafe The following label will be automatically applied to this pull request:

  • hotspot

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.

@openjdk openjdk bot added the hotspot hotspot-dev@openjdk.org label May 31, 2023
@dafedafe dafedafe changed the title JDK-8264899: C1: -XX:AbortVMOnException does not work with -Xcomp and -XX:TieredStopAtLevel=1,2,3 JDK-8264899: C1: -XX:AbortVMOnException does not work with C1: -XX:AbortVMOnException does not work if all methods in the call stack are compiled with C1 and there are no exception handlers Jun 12, 2023
@dafedafe dafedafe changed the title JDK-8264899: C1: -XX:AbortVMOnException does not work with C1: -XX:AbortVMOnException does not work if all methods in the call stack are compiled with C1 and there are no exception handlers 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 Jun 14, 2023
@dafedafe dafedafe marked this pull request as ready for review June 14, 2023 08:32
@openjdk openjdk bot added the rfr Pull request is ready for review label Jun 14, 2023
@mlbridge
Copy link

mlbridge bot commented Jun 14, 2023

Webrevs

Copy link
Member

@TobiHartmann TobiHartmann left a 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!

@openjdk
Copy link

openjdk bot commented Jun 14, 2023

@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:

8264899: C1: -XX:AbortVMOnException does not work if all methods in the call stack are compiled with C1 and there are no exception handlers

Reviewed-by: thartmann, amitkumar, fyang, mdoerr

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 master branch:

  • 658c337: 8309296: jdk/jfr/event/runtime/TestAgentEvent.java fails due to "missing" dynamic JavaAgent
  • 70e1c92: 8310297: assert(static_cast(result) == thing) with ctw
  • 574c6f0: 8310376: Extend SetupTarget macro with DIR parameter
  • 7ea22cd: 8310369: UTIL_ARG_WITH fails when arg is disabled
  • 01623f6: 8310133: Effectivelly final condition not enforced in guards for binding variables from the same case
  • a15db1a: 8302865: Illegal bytecode for break from if with instanceof pattern matching condition
  • 67fbd87: 8310143: RandomCommandsTest fails due to unexpected VM exit code after JDK-8282797
  • 9eed049: 8310321: make JDKOPT_CHECK_CODESIGN_PARAMS more verbose
  • 3faba07: 8307145: windowsaccessbridge.dll erroneously includes private methods in its C API
  • 886ac1c: 8308606: C2 SuperWord: remove alignment checks when not required
  • ... and 129 more: https://git.openjdk.org/jdk/compare/4d66d977450e083214da3dba6ad4ed851c6c1cb4...master

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 master branch, type /integrate in a new comment.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Jun 14, 2023
@dafedafe
Copy link
Contributor Author

This change includes changes in c1_Runtime for platforms (arm32, ppc, riscv, and s390) that I unfortunately couldn't test.
@RealFYang could you or someone you know please run some tests (e.g. tier1-3) for RISCV to make sure my change doesn't break anything? @bulasevich could I ask you the same for ARM32 and @TheRealMDoerr for PPC please? Thank you very much!

@dafedafe
Copy link
Contributor Author

@offamitkumar I noticed you have a few s390x commits. Could I ask you to run a few tests for s390? Thank you very much.

@offamitkumar
Copy link
Member

@dafedafe s390x tier1 test looks good. I have gone through the changes as well.

LGTM.

@offamitkumar
Copy link
Member

Hi @dafedafe, On Z15 machine, TestAbortVmOnException.java is failing with below error:

----------System.err:(36/2119)----------                                                                                                                    
 stdout: [#                                                                                                                                                 
# A fatal error has been detected by the Java Runtime Environment:                                                                                          
#                                                                                                                                                           
#  Internal Error (/home/amit/jdk/src/hotspot/share/oops/compressedOops.inline.hpp:138), pid=2449542, tid=2449543                                          
#  assert(!is_null(v)) failed: narrow klass value can never be zero
#
# JRE version: OpenJDK Runtime Environment (22.0) (fastdebug build 22-internal-adhoc.amit.jdk)                                                             
# Java VM: OpenJDK 64-Bit Server VM (fastdebug 22-internal-adhoc.amit.jdk, compiled mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, l$nux-s390x)
# Problematic frame:
# V  [libjvm.so+0x4bf1bc]  Runtime1::check_abort_on_vm_exception(oopDesc*)+0x83c                                                                           
#
# Core dump will be written. Default location: Core dumps may be processed with "/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h %e" (or dumping to $home/amit/jdk/build/linux-s390x-server-fastdebug/test-support/jtreg_test_hotspot_jtreg_runtime_ErrorHandling_TestAbortVmOnException_java/scratch/0/core.244$542)
#
# An error report file with more information is saved as:
# /home/amit/jdk/build/linux-s390x-server-fastdebug/test-support/jtreg_test_hotspot_jtreg_runtime_ErrorHandling_TestAbortVmOnException_java/scratch/0/hs_er$_pid2449542.log
[1.053s][warning][os] Loading hsdis library failed
#
# If you would like to submit a bug report, please visit:
#   https://bugreport.java.com/bugreport/crash.jsp
#
];
 stderr: []
 exitValue = 134

java.lang.RuntimeException: 'fatal error: Saw MyAbortException, aborting' missing from stdout/stderr                                                       
        at jdk.test.lib.process.OutputAnalyzer.shouldContain(OutputAnalyzer.java:221)                                                                      
        at TestAbortVmOnException.parseOutput(TestAbortVmOnException.java:76)
        at TestAbortVmOnException.main(TestAbortVmOnException.java:50)
        at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)                                           
        at java.base/java.lang.reflect.Method.invoke(Method.java:580)
        at com.sun.javatest.regtest.agent.MainActionHelper$AgentVMRunnable.run(MainActionHelper.java:333)                                                  
        at java.base/java.lang.Thread.run(Thread.java:1583)

JavaTest Message: Test threw exception: java.lang.RuntimeException
JavaTest Message: shutting down test

result: Failed. Execution failed: `main' threw exception: java.lang.RuntimeException: 'fatal error: Saw MyAbortException, aborting' missing from stdout/std$rr

@RealLucy you may want to look at it.

@dafedafe
Copy link
Contributor Author

Hi @dafedafe, On Z15 machine, TestAbortVmOnException.java is failing with below error:

----------System.err:(36/2119)----------                                                                                                                    
 stdout: [#                                                                                                                                                 
# A fatal error has been detected by the Java Runtime Environment:                                                                                          
#                                                                                                                                                           
#  Internal Error (/home/amit/jdk/src/hotspot/share/oops/compressedOops.inline.hpp:138), pid=2449542, tid=2449543                                          
#  assert(!is_null(v)) failed: narrow klass value can never be zero

@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.

Copy link
Member

@offamitkumar offamitkumar left a 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.

@bulasevich
Copy link
Contributor

@bulasevich could I ask you the same for ARM32

Hi @dafedafe, ARM32 tier1 tests are good. The new test works Ok.

@dafedafe
Copy link
Contributor Author

@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.

@offamitkumar thanks a lot for testing!

@dafedafe
Copy link
Contributor Author

@bulasevich could I ask you the same for ARM32

Hi @dafedafe, ARM32 tier1 tests are good. The new test works Ok.

@bulasevich thanks a lot for testing!

@dafedafe dafedafe requested a review from TheRealMDoerr June 21, 2023 06:56
Copy link
Contributor

@TheRealMDoerr TheRealMDoerr left a 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.

@dafedafe
Copy link
Contributor Author

@RealFYang @offamitkumar @TobiHartmann @TheRealMDoerr thanks a lot for your reviews!

@dafedafe
Copy link
Contributor Author

/integrate

@openjdk
Copy link

openjdk bot commented Jun 21, 2023

Going to push as commit 826dcb5.
Since your change was applied there have been 139 commits pushed to the master branch:

  • 658c337: 8309296: jdk/jfr/event/runtime/TestAgentEvent.java fails due to "missing" dynamic JavaAgent
  • 70e1c92: 8310297: assert(static_cast(result) == thing) with ctw
  • 574c6f0: 8310376: Extend SetupTarget macro with DIR parameter
  • 7ea22cd: 8310369: UTIL_ARG_WITH fails when arg is disabled
  • 01623f6: 8310133: Effectivelly final condition not enforced in guards for binding variables from the same case
  • a15db1a: 8302865: Illegal bytecode for break from if with instanceof pattern matching condition
  • 67fbd87: 8310143: RandomCommandsTest fails due to unexpected VM exit code after JDK-8282797
  • 9eed049: 8310321: make JDKOPT_CHECK_CODESIGN_PARAMS more verbose
  • 3faba07: 8307145: windowsaccessbridge.dll erroneously includes private methods in its C API
  • 886ac1c: 8308606: C2 SuperWord: remove alignment checks when not required
  • ... and 129 more: https://git.openjdk.org/jdk/compare/4d66d977450e083214da3dba6ad4ed851c6c1cb4...master

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot added the integrated Pull request has been integrated label Jun 21, 2023
@openjdk openjdk bot closed this Jun 21, 2023
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Jun 21, 2023
@openjdk
Copy link

openjdk bot commented Jun 21, 2023

@dafedafe Pushed as commit 826dcb5.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
hotspot hotspot-dev@openjdk.org integrated Pull request has been integrated
Development

Successfully merging this pull request may close these issues.

None yet

6 participants