RFR: 8283056: show abstract machine code for all VM crashes

Doug Simon dnsimon at openjdk.java.net
Mon Mar 14 14:05:50 UTC 2022


On Mon, 14 Mar 2022 06:03:43 GMT, Tobias Hartmann <thartmann at openjdk.org> wrote:

> What about using -XX:CICrashAt and other flags that trigger asserts

`CICrashAt` triggers an assertion during compilation where as I need an assertion or guarantee in VM code called from JIT compiled code. To be completely reliable, this needs a runtime entry point to `assert`, `guarantee` or `fatal` that can be called from compiled code. JVMCI has such an entry point for `fatal` (`JVMCIRuntime::vm_message`) but without Graal in the JDK, it's hard to write a test that uses it. I've done such testing manually so am confident that it works.

-------------

PR: https://git.openjdk.java.net/jdk/pull/7791


More information about the hotspot-compiler-dev mailing list