8294262: AArch64: compiler/vectorapi/TestReverseByteTransforms.java test failed on SVE machine

Reviewed-by: aph, njian
This commit is contained in:
Eric Liu 2022-10-11 01:37:20 +00:00
parent 4b17d28a6d
commit 9d116ec147

View File

@ -37,8 +37,12 @@ import jdk.test.lib.Utils;
/*
* @test
* @bug 8287794
* @summary Test various reverse bytes ideal transforms on X86(AVX2, AVX512) and AARCH64(NEON)
* @summary Test various reverse bytes ideal transforms on X86(AVX2, AVX512) and AArch64(NEON).
* For AArch64(SVE), we have a specific optimization,
* ReverseBytesV (ReverseBytesV X MASK) MASK => X, which eliminates both ReverseBytesV
* nodes. The test cases for AArch64(SVE) are in TestReverseByteTransformsSVE.java.
* @requires vm.compiler2.enabled
* @requires !(vm.cpu.features ~= ".*sve.*")
* @modules jdk.incubator.vector
* @library /test/lib /
* @run driver compiler.vectorapi.TestReverseByteTransforms