--- old/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Byte256Vector.java 2019-04-11 15:39:40.390569900 -0700 +++ new/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Byte256Vector.java 2019-04-11 15:39:39.759096900 -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, Byte256Mask.class, byte.class, LENGTH, - this, ByteVector.maskAllTrue(species()), + this, Mask.maskAllTrue(species()), (m, __) -> allTrueHelper(((Byte256Mask)m).getBits())); } } @@ -1343,7 +1343,7 @@ } @Override - public Byte256Shuffle rearrange(Vector.Shuffle o) { + public Byte256Shuffle rearrange(Shuffle o) { Byte256Shuffle s = (Byte256Shuffle) o; byte[] r = new byte[reorder.length]; for (int i = 0; i < reorder.length; i++) {