QEMU-system ISA: rv64imafdcvh_zicbom_zicboz_zicntr_zicsr_zifencei_zihintntl_zihintpause_zihpm_zacas_zawrs_zfa_zca_zcd_zba_zbb_zbc_zbs_zvbb_zve32f_zve32x_zve64d_zve64f_zve64x_zvkb_sstc
$ make test TEST="compiler/vectorization/TestRotateByteAndShortVector.java" JTREG="VM_OPTIONS=-XX:+UnlockExperimentalVMOptions -XX:+UseZvbb"
```
STDOUT:
CompileCommand: compileonly TestRotateByteAndShortVector.testRotate* bool compileonly = true
For random generator using seed: -6075467526051532785
To re-run test with same seed value please add "-Djdk.test.lib.random.seed=-6075467526051532785" to command line.
warmup
Testing...
STDERR:
java.lang.RuntimeException: rol value = 101, shift = 2, error: expect -108 but result is -107
at TestRotateByteAndShortVector.runRotateLeftByteTest(TestRotateByteAndShortVector.java:88)
at TestRotateByteAndShortVector.main(TestRotateByteAndShortVector.java:56)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:565)
at com.sun.javatest.regtest.agent.MainWrapper$MainTask.run(MainWrapper.java:138)
at java.base/java.lang.Thread.run(Thread.java:1447)
JavaTest Message: Test threw exception: java.lang.RuntimeException: rol value = 101, shift = 2, error: expect -108 but result is -107
JavaTest Message: shutting down test
STATUS:Failed.`main' threw exception: java.lang.RuntimeException: rol value = 101, shift = 2, error: expect -108 but result is -107
```
Seems related to https://bugs.openjdk.org/browse/JDK-8320999 which implemented vector rotate left.
$ make test TEST="compiler/vectorization/TestRotateByteAndShortVector.java" JTREG="VM_OPTIONS=-XX:+UnlockExperimentalVMOptions -XX:+UseZvbb"
```
STDOUT:
CompileCommand: compileonly TestRotateByteAndShortVector.testRotate* bool compileonly = true
For random generator using seed: -6075467526051532785
To re-run test with same seed value please add "-Djdk.test.lib.random.seed=-6075467526051532785" to command line.
warmup
Testing...
STDERR:
java.lang.RuntimeException: rol value = 101, shift = 2, error: expect -108 but result is -107
at TestRotateByteAndShortVector.runRotateLeftByteTest(TestRotateByteAndShortVector.java:88)
at TestRotateByteAndShortVector.main(TestRotateByteAndShortVector.java:56)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:104)
at java.base/java.lang.reflect.Method.invoke(Method.java:565)
at com.sun.javatest.regtest.agent.MainWrapper$MainTask.run(MainWrapper.java:138)
at java.base/java.lang.Thread.run(Thread.java:1447)
JavaTest Message: Test threw exception: java.lang.RuntimeException: rol value = 101, shift = 2, error: expect -108 but result is -107
JavaTest Message: shutting down test
STATUS:Failed.`main' threw exception: java.lang.RuntimeException: rol value = 101, shift = 2, error: expect -108 but result is -107
```
Seems related to https://bugs.openjdk.org/browse/JDK-8320999 which implemented vector rotate left.
- caused by
-
JDK-8320999 RISC-V: C2 RotateLeftV
-
- Resolved
-
- relates to
-
JDK-8320999 RISC-V: C2 RotateLeftV
-
- Resolved
-
-
JDK-8353634 [TEST] delete TestRotateByteAndShortVector.java as it is not doing the right work
-
- Closed
-
- links to
-
Review(master) openjdk/jdk/24414