RFR: 8291048: x86: compiler/c2/irTests/TestAutoVectorization2DArray.java fails with lower SSE
Jie Fu
jiefu at openjdk.org
Tue Jul 26 23:22:52 UTC 2022
On Tue, 26 Jul 2022 17:24:38 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:
> [JDK-8289801](https://bugs.openjdk.org/browse/JDK-8289801) whitelisted the UseSSE/UseAVX flags, but missed update in the test. So when we test x86_32 with lower SSE, it fails, as no `LoadVector`/etc nodes are getting emitted.
>
> Additional testing:
> - [x] Linux x86_32 fastdebug `c2/irTests` with `-XX:UseAVX=0 -XX:UseSSE=0` (now passes)
> - [x] Linux x86_32 fastdebug `c2/irTests` with `-XX:UseAVX=0 -XX:UseSSE=1` (now passes)
> - [x] Linux x86_32 fastdebug `c2/irTests` with `-XX:UseAVX=0 -XX:UseSSE=2` (still passes)
> - [x] Linux x86_32 fastdebug `c2/irTests` default (still passes)
> - [x] Linux x86_64 fastdebug `c2/irTests` with `-XX:UseAVX=0 -XX:UseSSE=0` (still passes)
> - [x] Linux x86_64 fastdebug `c2/irTests` with `-XX:UseAVX=0 -XX:UseSSE=1` (still passes)
> - [x] Linux x86_64 fastdebug `c2/irTests` with `-XX:UseAVX=0 -XX:UseSSE=2` (still passes)
> - [x] Linux x86_64 fastdebug `c2/irTests` default (still passes)
Marked as reviewed by jiefu (Reviewer).
-------------
PR: https://git.openjdk.org/jdk/pull/9646
More information about the hotspot-compiler-dev
mailing list