[jdk20] RFR: 8299528: IR test: TestEor3AArch64.java fails on aarch64

Bhavana Kilambi bkilambi at openjdk.org
Thu Jan 5 10:44:38 UTC 2023


The IR test - TestEor3AArch64.java fails during IR verification as the IR nodes to be matched have not been updated to the newer IR framework introduced in the JDK source with this PR -
https://github.com/openjdk/jdk/pull/10695.

This patch updates the relevant IR nodes in the tests accordingly.

The test passes successfully on -
1. an aarch64 machine with vector size of 128-bit that supports the Neon eor3 instruction
2. an aarch64 simulator with vector size of 256-bit that supports the SVE2 feature which includes the SVE2 eor3 instruction.
Generation of IR Nodes - XOR3_NEON and XOR3_SVE have thus been verified on the above mentioned machines.

This is a trivial patch related to a test and has minimal impact with low risk and maybe considered to be merged with JDK20 in RDP1.

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

Commit messages:
 - 8299528: IR test: TestEor3AArch64.java fails on aarch64

Changes: https://git.openjdk.org/jdk20/pull/83/files
 Webrev: https://webrevs.openjdk.org/?repo=jdk20&pr=83&range=00
  Issue: https://bugs.openjdk.org/browse/JDK-8299528
  Stats: 16 lines in 2 files changed: 10 ins; 0 del; 6 mod
  Patch: https://git.openjdk.org/jdk20/pull/83.diff
  Fetch: git fetch https://git.openjdk.org/jdk20 pull/83/head:pull/83

PR: https://git.openjdk.org/jdk20/pull/83


More information about the hotspot-compiler-dev mailing list