< prev index next >

src/jdk.incubator.vector/share/classes/jdk/incubator/vector/Long64Vector.java

Print this page
rev 54658 : refactored mask and shuffle creation methods, moved classes to top-level

@@ -36,21 +36,21 @@
 import jdk.internal.vm.annotation.ForceInline;
 import static jdk.incubator.vector.VectorIntrinsics.*;
 
 @SuppressWarnings("cast")
 final class Long64Vector extends LongVector {
-    private static final Species<Long> SPECIES = LongVector.SPECIES_64;
+    private static final VectorSpecies<Long> SPECIES = LongVector.SPECIES_64;
 
     static final Long64Vector ZERO = new Long64Vector();
 
     static final int LENGTH = SPECIES.length();
 
     // Index vector species
     private static final IntVector.IntSpecies INDEX_SPECIES;
 
     static {
-        INDEX_SPECIES = (IntVector.IntSpecies) IntVector.species(Shape.S_64_BIT);
+        INDEX_SPECIES = (IntVector.IntSpecies) IntVector.species(VectorShape.S_64_BIT);
     }
 
     private final long[] vec; // Don't access directly, use getElements() instead.
 
     private long[] getElements() {

@@ -79,11 +79,11 @@
         }
         return new Long64Vector(res);
     }
 
     @Override
-    Long64Vector uOp(Mask<Long> o, FUnOp f) {
+    Long64Vector uOp(VectorMask<Long> o, FUnOp f) {
         long[] vec = getElements();
         long[] res = new long[length()];
         boolean[] mbits = ((Long64Mask)o).getBits();
         for (int i = 0; i < length(); i++) {
             res[i] = mbits[i] ? f.apply(i, vec[i]) : vec[i];

@@ -103,11 +103,11 @@
         }
         return new Long64Vector(res);
     }
 
     @Override
-    Long64Vector bOp(Vector<Long> o1, Mask<Long> o2, FBinOp f) {
+    Long64Vector bOp(Vector<Long> o1, VectorMask<Long> o2, FBinOp f) {
         long[] res = new long[length()];
         long[] vec1 = this.getElements();
         long[] vec2 = ((Long64Vector)o1).getElements();
         boolean[] mbits = ((Long64Mask)o2).getBits();
         for (int i = 0; i < length(); i++) {

@@ -129,11 +129,11 @@
         }
         return new Long64Vector(res);
     }
 
     @Override
-    Long64Vector tOp(Vector<Long> o1, Vector<Long> o2, Mask<Long> o3, FTriOp f) {
+    Long64Vector tOp(Vector<Long> o1, Vector<Long> o2, VectorMask<Long> o3, FTriOp f) {
         long[] res = new long[length()];
         long[] vec1 = getElements();
         long[] vec2 = ((Long64Vector)o1).getElements();
         long[] vec3 = ((Long64Vector)o2).getElements();
         boolean[] mbits = ((Long64Mask)o3).getBits();

@@ -152,11 +152,11 @@
         return v;
     }
 
     @Override
     @ForceInline
-    public <F> Vector<F> cast(Species<F> s) {
+    public <F> Vector<F> cast(VectorSpecies<F> s) {
         Objects.requireNonNull(s);
         if (s.length() != LENGTH)
             throw new IllegalArgumentException("Vector length this species length differ");
 
         return VectorIntrinsics.cast(

@@ -169,73 +169,73 @@
         );
     }
 
     @SuppressWarnings("unchecked")
     @ForceInline
-    private <F> Vector<F> castDefault(Species<F> s) {
+    private <F> Vector<F> castDefault(VectorSpecies<F> s) {
         int limit = s.length();
 
         Class<?> stype = s.elementType();
         if (stype == byte.class) {
             byte[] a = new byte[limit];
             for (int i = 0; i < limit; i++) {
                 a[i] = (byte) this.get(i);
             }
-            return (Vector) ByteVector.fromArray((Species<Byte>) s, a, 0);
+            return (Vector) ByteVector.fromArray((VectorSpecies<Byte>) s, a, 0);
         } else if (stype == short.class) {
             short[] a = new short[limit];
             for (int i = 0; i < limit; i++) {
                 a[i] = (short) this.get(i);
             }
-            return (Vector) ShortVector.fromArray((Species<Short>) s, a, 0);
+            return (Vector) ShortVector.fromArray((VectorSpecies<Short>) s, a, 0);
         } else if (stype == int.class) {
             int[] a = new int[limit];
             for (int i = 0; i < limit; i++) {
                 a[i] = (int) this.get(i);
             }
-            return (Vector) IntVector.fromArray((Species<Integer>) s, a, 0);
+            return (Vector) IntVector.fromArray((VectorSpecies<Integer>) s, a, 0);
         } else if (stype == long.class) {
             long[] a = new long[limit];
             for (int i = 0; i < limit; i++) {
                 a[i] = (long) this.get(i);
             }
-            return (Vector) LongVector.fromArray((Species<Long>) s, a, 0);
+            return (Vector) LongVector.fromArray((VectorSpecies<Long>) s, a, 0);
         } else if (stype == float.class) {
             float[] a = new float[limit];
             for (int i = 0; i < limit; i++) {
                 a[i] = (float) this.get(i);
             }
-            return (Vector) FloatVector.fromArray((Species<Float>) s, a, 0);
+            return (Vector) FloatVector.fromArray((VectorSpecies<Float>) s, a, 0);
         } else if (stype == double.class) {
             double[] a = new double[limit];
             for (int i = 0; i < limit; i++) {
                 a[i] = (double) this.get(i);
             }
-            return (Vector) DoubleVector.fromArray((Species<Double>) s, a, 0);
+            return (Vector) DoubleVector.fromArray((VectorSpecies<Double>) s, a, 0);
         } else {
             throw new UnsupportedOperationException("Bad lane type for casting.");
         }
     }
 
     @Override
     @ForceInline
     @SuppressWarnings("unchecked")
-    public <F> Vector<F> reinterpret(Species<F> s) {
+    public <F> Vector<F> reinterpret(VectorSpecies<F> s) {
         Objects.requireNonNull(s);
 
         if(s.elementType().equals(long.class)) {
-            return (Vector<F>) reshape((Species<Long>)s);
+            return (Vector<F>) reshape((VectorSpecies<Long>)s);
         }
         if(s.bitSize() == bitSize()) {
             return reinterpretType(s);
         }
 
         return defaultReinterpret(s);
     }
 
     @ForceInline
-    private <F> Vector<F> reinterpretType(Species<F> s) {
+    private <F> Vector<F> reinterpretType(VectorSpecies<F> s) {
         Objects.requireNonNull(s);
 
         Class<?> stype = s.elementType();
         if (stype == byte.class) {
             return VectorIntrinsics.reinterpret(

@@ -296,11 +296,11 @@
         }
     }
 
     @Override
     @ForceInline
-    public LongVector reshape(Species<Long> s) {
+    public LongVector reshape(VectorSpecies<Long> s) {
         Objects.requireNonNull(s);
         if (s.bitSize() == 64 && (s.boxType() == Long64Vector.class)) {
             return VectorIntrinsics.reinterpret(
                 Long64Vector.class,
                 long.class, LENGTH,

@@ -359,11 +359,11 @@
         return add((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public LongVector add(long o, Mask<Long> m) {
+    public LongVector add(long o, VectorMask<Long> m) {
         return add((Long64Vector)LongVector.broadcast(SPECIES, o), m);
     }
 
     @Override
     @ForceInline

@@ -371,11 +371,11 @@
         return sub((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public LongVector sub(long o, Mask<Long> m) {
+    public LongVector sub(long o, VectorMask<Long> m) {
         return sub((Long64Vector)LongVector.broadcast(SPECIES, o), m);
     }
 
     @Override
     @ForceInline

@@ -383,11 +383,11 @@
         return mul((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public LongVector mul(long o, Mask<Long> m) {
+    public LongVector mul(long o, VectorMask<Long> m) {
         return mul((Long64Vector)LongVector.broadcast(SPECIES, o), m);
     }
 
     @Override
     @ForceInline

@@ -401,47 +401,47 @@
         return max((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public Mask<Long> equal(long o) {
+    public VectorMask<Long> equal(long o) {
         return equal((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public Mask<Long> notEqual(long o) {
+    public VectorMask<Long> notEqual(long o) {
         return notEqual((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public Mask<Long> lessThan(long o) {
+    public VectorMask<Long> lessThan(long o) {
         return lessThan((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public Mask<Long> lessThanEq(long o) {
+    public VectorMask<Long> lessThanEq(long o) {
         return lessThanEq((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public Mask<Long> greaterThan(long o) {
+    public VectorMask<Long> greaterThan(long o) {
         return greaterThan((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public Mask<Long> greaterThanEq(long o) {
+    public VectorMask<Long> greaterThanEq(long o) {
         return greaterThanEq((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public LongVector blend(long o, Mask<Long> m) {
+    public LongVector blend(long o, VectorMask<Long> m) {
         return blend((Long64Vector)LongVector.broadcast(SPECIES, o), m);
     }
 
 
     @Override

@@ -450,11 +450,11 @@
         return and((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public LongVector and(long o, Mask<Long> m) {
+    public LongVector and(long o, VectorMask<Long> m) {
         return and((Long64Vector)LongVector.broadcast(SPECIES, o), m);
     }
 
     @Override
     @ForceInline

@@ -462,11 +462,11 @@
         return or((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public LongVector or(long o, Mask<Long> m) {
+    public LongVector or(long o, VectorMask<Long> m) {
         return or((Long64Vector)LongVector.broadcast(SPECIES, o), m);
     }
 
     @Override
     @ForceInline

@@ -474,11 +474,11 @@
         return xor((Long64Vector)LongVector.broadcast(SPECIES, o));
     }
 
     @Override
     @ForceInline
-    public LongVector xor(long o, Mask<Long> m) {
+    public LongVector xor(long o, VectorMask<Long> m) {
         return xor((Long64Vector)LongVector.broadcast(SPECIES, o), m);
     }
 
     @Override
     @ForceInline

@@ -488,11 +488,11 @@
 
     // Unary operations
 
     @ForceInline
     @Override
-    public Long64Vector neg(Mask<Long> m) {
+    public Long64Vector neg(VectorMask<Long> m) {
         return blend(neg(), m);
     }
 
     @Override
     @ForceInline

@@ -503,11 +503,11 @@
             v1 -> v1.uOp((i, a) -> (long) Math.abs(a)));
     }
 
     @ForceInline
     @Override
-    public Long64Vector abs(Mask<Long> m) {
+    public Long64Vector abs(VectorMask<Long> m) {
         return blend(abs(), m);
     }
 
 
     @Override

@@ -519,11 +519,11 @@
             v1 -> v1.uOp((i, a) -> (long) ~a));
     }
 
     @ForceInline
     @Override
-    public Long64Vector not(Mask<Long> m) {
+    public Long64Vector not(VectorMask<Long> m) {
         return blend(not(), m);
     }
     // Binary operations
 
     @Override

@@ -537,11 +537,11 @@
             (v1, v2) -> v1.bOp(v2, (i, a, b) -> (long)(a + b)));
     }
 
     @Override
     @ForceInline
-    public Long64Vector add(Vector<Long> v, Mask<Long> m) {
+    public Long64Vector add(Vector<Long> v, VectorMask<Long> m) {
         return blend(add(v), m);
     }
 
     @Override
     @ForceInline

@@ -554,11 +554,11 @@
             (v1, v2) -> v1.bOp(v2, (i, a, b) -> (long)(a - b)));
     }
 
     @Override
     @ForceInline
-    public Long64Vector sub(Vector<Long> v, Mask<Long> m) {
+    public Long64Vector sub(Vector<Long> v, VectorMask<Long> m) {
         return blend(sub(v), m);
     }
 
     @Override
     @ForceInline

@@ -571,11 +571,11 @@
             (v1, v2) -> v1.bOp(v2, (i, a, b) -> (long)(a * b)));
     }
 
     @Override
     @ForceInline
-    public Long64Vector mul(Vector<Long> v, Mask<Long> m) {
+    public Long64Vector mul(Vector<Long> v, VectorMask<Long> m) {
         return blend(mul(v), m);
     }
 
     @Override
     @ForceInline

@@ -588,11 +588,11 @@
             (v1, v2) -> v1.bOp(v2, (i, a, b) -> (long) Math.min(a, b)));
     }
 
     @Override
     @ForceInline
-    public Long64Vector min(Vector<Long> v, Mask<Long> m) {
+    public Long64Vector min(Vector<Long> v, VectorMask<Long> m) {
         return blend(min(v), m);
     }
 
     @Override
     @ForceInline

@@ -605,11 +605,11 @@
             (v1, v2) -> v1.bOp(v2, (i, a, b) -> (long) Math.max(a, b)));
         }
 
     @Override
     @ForceInline
-    public Long64Vector max(Vector<Long> v, Mask<Long> m) {
+    public Long64Vector max(Vector<Long> v, VectorMask<Long> m) {
         return blend(max(v), m);
     }
 
     @Override
     @ForceInline

@@ -644,23 +644,23 @@
             (v1, v2) -> v1.bOp(v2, (i, a, b) -> (long)(a ^ b)));
     }
 
     @Override
     @ForceInline
-    public Long64Vector and(Vector<Long> v, Mask<Long> m) {
+    public Long64Vector and(Vector<Long> v, VectorMask<Long> m) {
         return blend(and(v), m);
     }
 
     @Override
     @ForceInline
-    public Long64Vector or(Vector<Long> v, Mask<Long> m) {
+    public Long64Vector or(Vector<Long> v, VectorMask<Long> m) {
         return blend(or(v), m);
     }
 
     @Override
     @ForceInline
-    public Long64Vector xor(Vector<Long> v, Mask<Long> m) {
+    public Long64Vector xor(Vector<Long> v, VectorMask<Long> m) {
         return blend(xor(v), m);
     }
 
     @Override
     @ForceInline

@@ -671,11 +671,11 @@
             (v, i) -> v.uOp((__, a) -> (long) (a << i)));
     }
 
     @Override
     @ForceInline
-    public Long64Vector shiftL(int s, Mask<Long> m) {
+    public Long64Vector shiftL(int s, VectorMask<Long> m) {
         return blend(shiftL(s), m);
     }
 
     @Override
     @ForceInline

@@ -686,11 +686,11 @@
             (v, i) -> v.uOp((__, a) -> (long) (a >>> i)));
     }
 
     @Override
     @ForceInline
-    public Long64Vector shiftR(int s, Mask<Long> m) {
+    public Long64Vector shiftR(int s, VectorMask<Long> m) {
         return blend(shiftR(s), m);
     }
 
     @Override
     @ForceInline

@@ -701,11 +701,11 @@
             (v, i) -> v.uOp((__, a) -> (long) (a >> i)));
     }
 
     @Override
     @ForceInline
-    public Long64Vector aShiftR(int s, Mask<Long> m) {
+    public Long64Vector aShiftR(int s, VectorMask<Long> m) {
         return blend(aShiftR(s), m);
     }
 
     @Override
     @ForceInline

@@ -765,11 +765,11 @@
             v -> (long) v.rOp((long) -1, (i, a, b) -> (long) (a & b)));
     }
 
     @Override
     @ForceInline
-    public long andAll(Mask<Long> m) {
+    public long andAll(VectorMask<Long> m) {
         return blend((Long64Vector)LongVector.broadcast(SPECIES, (long) -1), m).andAll();
     }
 
     @Override
     @ForceInline

@@ -807,11 +807,11 @@
             v -> (long) v.rOp((long) 0, (i, a, b) -> (long) (a | b)));
     }
 
     @Override
     @ForceInline
-    public long orAll(Mask<Long> m) {
+    public long orAll(VectorMask<Long> m) {
         return blend((Long64Vector)LongVector.broadcast(SPECIES, (long) 0), m).orAll();
     }
 
     @Override
     @ForceInline

@@ -822,49 +822,49 @@
             v -> (long) v.rOp((long) 0, (i, a, b) -> (long) (a ^ b)));
     }
 
     @Override
     @ForceInline
-    public long xorAll(Mask<Long> m) {
+    public long xorAll(VectorMask<Long> m) {
         return blend((Long64Vector)LongVector.broadcast(SPECIES, (long) 0), m).xorAll();
     }
 
 
     @Override
     @ForceInline
-    public long addAll(Mask<Long> m) {
+    public long addAll(VectorMask<Long> m) {
         return blend((Long64Vector)LongVector.broadcast(SPECIES, (long) 0), m).addAll();
     }
 
 
     @Override
     @ForceInline
-    public long mulAll(Mask<Long> m) {
+    public long mulAll(VectorMask<Long> m) {
         return blend((Long64Vector)LongVector.broadcast(SPECIES, (long) 1), m).mulAll();
     }
 
     @Override
     @ForceInline
-    public long minAll(Mask<Long> m) {
+    public long minAll(VectorMask<Long> m) {
         return blend((Long64Vector)LongVector.broadcast(SPECIES, Long.MAX_VALUE), m).minAll();
     }
 
     @Override
     @ForceInline
-    public long maxAll(Mask<Long> m) {
+    public long maxAll(VectorMask<Long> m) {
         return blend((Long64Vector)LongVector.broadcast(SPECIES, Long.MIN_VALUE), m).maxAll();
     }
 
     @Override
     @ForceInline
-    public Shuffle<Long> toShuffle() {
+    public VectorShuffle<Long> toShuffle() {
         long[] a = toArray();
         int[] sa = new int[a.length];
         for (int i = 0; i < a.length; i++) {
             sa[i] = (int) a[i];
         }
-        return LongVector.shuffleFromArray(SPECIES, sa, 0);
+        return VectorShuffle.fromArray(SPECIES, sa, 0);
     }
 
     // Memory operations
 
     private static final int ARRAY_SHIFT         = 31 - Integer.numberOfLeadingZeros(Unsafe.ARRAY_LONG_INDEX_SCALE);

@@ -882,11 +882,11 @@
                                (arr, idx, v) -> v.forEach((i, e) -> arr[idx + i] = e));
     }
 
     @Override
     @ForceInline
-    public final void intoArray(long[] a, int ax, Mask<Long> m) {
+    public final void intoArray(long[] a, int ax, VectorMask<Long> m) {
         LongVector oldVal = LongVector.fromArray(SPECIES, a, ax);
         LongVector newVal = oldVal.blend(this, m);
         newVal.intoArray(a, ax);
     }
     @Override

@@ -895,11 +895,11 @@
         this.intoArray(a, ix + b[iy]);
     }
 
      @Override
      @ForceInline
-     public final void intoArray(long[] a, int ax, Mask<Long> m, int[] b, int iy) {
+     public final void intoArray(long[] a, int ax, VectorMask<Long> m, int[] b, int iy) {
          // @@@ This can result in out of bounds errors for unset mask lanes
          LongVector oldVal = LongVector.fromArray(SPECIES, a, ax, b, iy);
          LongVector newVal = oldVal.blend(this, m);
          newVal.intoArray(a, ax, b, iy);
      }

@@ -920,11 +920,11 @@
                                });
     }
 
     @Override
     @ForceInline
-    public final void intoByteArray(byte[] a, int ix, Mask<Long> m) {
+    public final void intoByteArray(byte[] a, int ix, VectorMask<Long> m) {
         Long64Vector oldVal = (Long64Vector) LongVector.fromByteArray(SPECIES, a, ix);
         Long64Vector newVal = oldVal.blend(this, m);
         newVal.intoByteArray(a, ix);
     }
 

@@ -949,11 +949,11 @@
                                });
     }
 
     @Override
     @ForceInline
-    public void intoByteBuffer(ByteBuffer bb, int ix, Mask<Long> m) {
+    public void intoByteBuffer(ByteBuffer bb, int ix, VectorMask<Long> m) {
         Long64Vector oldVal = (Long64Vector) LongVector.fromByteBuffer(SPECIES, bb, ix);
         Long64Vector newVal = oldVal.blend(this, m);
         newVal.intoByteBuffer(bb, ix);
     }
 

@@ -1074,11 +1074,11 @@
             f.apply(i, vec[i]);
         }
     }
 
     @Override
-    void forEach(Mask<Long> o, FUnCon f) {
+    void forEach(VectorMask<Long> o, FUnCon f) {
         boolean[] mbits = ((Long64Mask)o).getBits();
         forEach((i, a) -> {
             if (mbits[i]) { f.apply(i, a); }
         });
     }

@@ -1139,17 +1139,17 @@
     }
 
     @Override
     @ForceInline
     public Long64Vector rearrange(Vector<Long> v,
-                                  Shuffle<Long> s, Mask<Long> m) {
+                                  VectorShuffle<Long> s, VectorMask<Long> m) {
         return this.rearrange(s).blend(v.rearrange(s), m);
     }
 
     @Override
     @ForceInline
-    public Long64Vector rearrange(Shuffle<Long> o1) {
+    public Long64Vector rearrange(VectorShuffle<Long> o1) {
         Objects.requireNonNull(o1);
         Long64Shuffle s =  (Long64Shuffle)o1;
 
         return VectorIntrinsics.rearrangeOp(
             Long64Vector.class, Long64Shuffle.class, long.class, LENGTH,

@@ -1160,11 +1160,11 @@
             }));
     }
 
     @Override
     @ForceInline
-    public Long64Vector blend(Vector<Long> o1, Mask<Long> o2) {
+    public Long64Vector blend(Vector<Long> o1, VectorMask<Long> o2) {
         Objects.requireNonNull(o1);
         Objects.requireNonNull(o2);
         Long64Vector v = (Long64Vector)o1;
         Long64Mask   m = (Long64Mask)o2;
 

@@ -1244,22 +1244,22 @@
             }
             return new Long64Mask(res);
         }
 
         @Override
-        Long64Mask bOp(Mask<Long> o, MBinOp f) {
+        Long64Mask bOp(VectorMask<Long> o, MBinOp f) {
             boolean[] res = new boolean[species().length()];
             boolean[] bits = getBits();
             boolean[] mbits = ((Long64Mask)o).getBits();
             for (int i = 0; i < species().length(); i++) {
                 res[i] = f.apply(i, bits[i], mbits[i]);
             }
             return new Long64Mask(res);
         }
 
         @Override
-        public Species<Long> species() {
+        public VectorSpecies<Long> species() {
             return SPECIES;
         }
 
         @Override
         public Long64Vector toVector() {

@@ -1274,27 +1274,27 @@
         }
 
         @Override
         @ForceInline
         @SuppressWarnings("unchecked")
-        public <E> Mask<E> cast(Species<E> species) {
+        public <E> VectorMask<E> cast(VectorSpecies<E> species) {
             if (length() != species.length())
-                throw new IllegalArgumentException("Mask length and species length differ");
+                throw new IllegalArgumentException("VectorMask length and species length differ");
             Class<?> stype = species.elementType();
             boolean [] maskArray = toArray();
             if (stype == byte.class) {
-                return (Mask <E>) new Byte64Vector.Byte64Mask(maskArray);
+                return (VectorMask <E>) new Byte64Vector.Byte64Mask(maskArray);
             } else if (stype == short.class) {
-                return (Mask <E>) new Short64Vector.Short64Mask(maskArray);
+                return (VectorMask <E>) new Short64Vector.Short64Mask(maskArray);
             } else if (stype == int.class) {
-                return (Mask <E>) new Int64Vector.Int64Mask(maskArray);
+                return (VectorMask <E>) new Int64Vector.Int64Mask(maskArray);
             } else if (stype == long.class) {
-                return (Mask <E>) new Long64Vector.Long64Mask(maskArray);
+                return (VectorMask <E>) new Long64Vector.Long64Mask(maskArray);
             } else if (stype == float.class) {
-                return (Mask <E>) new Float64Vector.Float64Mask(maskArray);
+                return (VectorMask <E>) new Float64Vector.Float64Mask(maskArray);
             } else if (stype == double.class) {
-                return (Mask <E>) new Double64Vector.Double64Mask(maskArray);
+                return (VectorMask <E>) new Double64Vector.Double64Mask(maskArray);
             } else {
                 throw new UnsupportedOperationException("Bad lane type for casting.");
             }
         }
 

@@ -1311,21 +1311,21 @@
 
         // Binary operations
 
         @Override
         @ForceInline
-        public Long64Mask and(Mask<Long> o) {
+        public Long64Mask and(VectorMask<Long> o) {
             Objects.requireNonNull(o);
             Long64Mask m = (Long64Mask)o;
             return VectorIntrinsics.binaryOp(VECTOR_OP_AND, Long64Mask.class, long.class, LENGTH,
                                              this, m,
                                              (m1, m2) -> m1.bOp(m2, (i, a, b) -> a & b));
         }
 
         @Override
         @ForceInline
-        public Long64Mask or(Mask<Long> o) {
+        public Long64Mask or(VectorMask<Long> o) {
             Objects.requireNonNull(o);
             Long64Mask m = (Long64Mask)o;
             return VectorIntrinsics.binaryOp(VECTOR_OP_OR, Long64Mask.class, long.class, LENGTH,
                                              this, m,
                                              (m1, m2) -> m1.bOp(m2, (i, a, b) -> a | b));

@@ -1343,11 +1343,11 @@
 
         @Override
         @ForceInline
         public boolean allTrue() {
             return VectorIntrinsics.test(BT_overflow, Long64Mask.class, long.class, LENGTH,
-                                         this, LongVector.maskAllTrue(species()),
+                                         this, VectorMask.maskAllTrue(species()),
                                          (m, __) -> allTrueHelper(((Long64Mask)m).getBits()));
         }
     }
 
     // Shuffle

@@ -1368,11 +1368,11 @@
         public Long64Shuffle(IntUnaryOperator f) {
             super(f);
         }
 
         @Override
-        public Species<Long> species() {
+        public VectorSpecies<Long> species() {
             return SPECIES;
         }
 
         @Override
         public LongVector toVector() {

@@ -1384,45 +1384,45 @@
         }
 
         @Override
         @ForceInline
         @SuppressWarnings("unchecked")
-        public <F> Shuffle<F> cast(Species<F> species) {
+        public <F> VectorShuffle<F> cast(VectorSpecies<F> species) {
             if (length() != species.length())
                 throw new IllegalArgumentException("Shuffle length and species length differ");
             Class<?> stype = species.elementType();
             int [] shuffleArray = toArray();
             if (stype == byte.class) {
-                return (Shuffle<F>) new Byte64Vector.Byte64Shuffle(shuffleArray);
+                return (VectorShuffle<F>) new Byte64Vector.Byte64Shuffle(shuffleArray);
             } else if (stype == short.class) {
-                return (Shuffle<F>) new Short64Vector.Short64Shuffle(shuffleArray);
+                return (VectorShuffle<F>) new Short64Vector.Short64Shuffle(shuffleArray);
             } else if (stype == int.class) {
-                return (Shuffle<F>) new Int64Vector.Int64Shuffle(shuffleArray);
+                return (VectorShuffle<F>) new Int64Vector.Int64Shuffle(shuffleArray);
             } else if (stype == long.class) {
-                return (Shuffle<F>) new Long64Vector.Long64Shuffle(shuffleArray);
+                return (VectorShuffle<F>) new Long64Vector.Long64Shuffle(shuffleArray);
             } else if (stype == float.class) {
-                return (Shuffle<F>) new Float64Vector.Float64Shuffle(shuffleArray);
+                return (VectorShuffle<F>) new Float64Vector.Float64Shuffle(shuffleArray);
             } else if (stype == double.class) {
-                return (Shuffle<F>) new Double64Vector.Double64Shuffle(shuffleArray);
+                return (VectorShuffle<F>) new Double64Vector.Double64Shuffle(shuffleArray);
             } else {
                 throw new UnsupportedOperationException("Bad lane type for casting.");
             }
         }
 
         @Override
-        public Long64Shuffle rearrange(Vector.Shuffle<Long> o) {
+        public Long64Shuffle rearrange(VectorShuffle<Long> o) {
             Long64Shuffle s = (Long64Shuffle) o;
             byte[] r = new byte[reorder.length];
             for (int i = 0; i < reorder.length; i++) {
                 r[i] = reorder[s.reorder[i]];
             }
             return new Long64Shuffle(r);
         }
     }
 
-    // Species
+    // VectorSpecies
 
     @Override
-    public Species<Long> species() {
+    public VectorSpecies<Long> species() {
         return SPECIES;
     }
 }
< prev index next >