JDK-8295936 : x86_32 fails with -XX:+VerifyGraphEdges after JDK-8293979
  • Type: Bug
  • Component: hotspot
  • Sub-Component: runtime
  • Affected Version: 20
  • Priority: P4
  • Status: Resolved
  • Resolution: Duplicate
  • Submitted: 2022-10-26
  • Updated: 2022-10-26
  • Resolved: 2022-10-26
Related Reports
Duplicate :  
Relates :  
Description
```
$ CONF=linux-x86-server-fastdebug make images test TEST=compiler/c2/TestVerifyGraphEdges.java

...

TEST RESULT: Failed. Unexpected exit from test [exit code: 139]
```

It produces no hs_err, must be crashing somewhere outside the usual error handler reach.

The easier way to reproduce is:

```
$ build/linux-x86-server-fastdebug/images/jdk/bin/java -Xshare:on -Xbatch -Xcomp -XX:+VerifyGraphEdges
```

Doing `-Xshare:off` passes. Doing `-XX:-VerifyGraphEdges` passes.

Bisection points to JDK-8293979, so I am presuming this is a runtime, not compiler bug.
Comments
This looks like a stack overflow in verification code. Looks similar to JDK-8295867 then.
26-10-2022