Patterns like `VectorMask.not(a.compare(VectorOperators.EQ, b))` can be optimized to `a.compare(VectorOperators.NE, b)`, which saves the `not` operation. This transformation can apply for all architectures.
- links to
-
Review(master) openjdk/jdk/24674