--- old/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Byte128Vector.java 2019-04-11 15:39:36.204495900 -0700 +++ new/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Byte128Vector.java 2019-04-11 15:39:35.628655000 -0700 @@ -818,7 +818,7 @@ for (int i = 0; i < a.length; i++) { sa[i] = (int) a[i]; } - return ByteVector.shuffleFromArray(SPECIES, sa, 0); + return Shuffle.fromArray(SPECIES, sa, 0); } // Memory operations @@ -1279,7 +1279,7 @@ @ForceInline public boolean allTrue() { return VectorIntrinsics.test(BT_overflow, Byte128Mask.class, byte.class, LENGTH, - this, ByteVector.maskAllTrue(species()), + this, Mask.maskAllTrue(species()), (m, __) -> allTrueHelper(((Byte128Mask)m).getBits())); } } @@ -1343,7 +1343,7 @@ } @Override - public Byte128Shuffle rearrange(Vector.Shuffle o) { + public Byte128Shuffle rearrange(Shuffle o) { Byte128Shuffle s = (Byte128Shuffle) o; byte[] r = new byte[reorder.length]; for (int i = 0; i < reorder.length; i++) {