< prev index next >

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

Print this page
rev 55891 : 8222897: [vector] Renaming of shift, rotate operations. Few other api changes.
Summary: Renaming of shift, rotate operations. Few other api changes.
Reviewed-by: jrose, briangoetz
rev 55894 : 8222897: [vector] Renaming of shift, rotate operations. Few other api changes.
Summary: Renaming of shift, rotate operations. Few other api changes.
Reviewed-by: jrose, briangoetz

*** 110,120 **** * @return a zero vector of given species */ @ForceInline @SuppressWarnings("unchecked") public static IntVector zero(VectorSpecies<Integer> species) { ! return VectorIntrinsics.broadcastCoerced((Class<IntVector>) species.boxType(), int.class, species.length(), 0, species, ((bits, s) -> ((IntSpecies)s).op(i -> (int)bits))); } /** --- 110,120 ---- * @return a zero vector of given species */ @ForceInline @SuppressWarnings("unchecked") public static IntVector zero(VectorSpecies<Integer> species) { ! return VectorIntrinsics.broadcastCoerced((Class<IntVector>) species.vectorType(), int.class, species.length(), 0, species, ((bits, s) -> ((IntSpecies)s).op(i -> (int)bits))); } /**
*** 140,150 **** @ForceInline @SuppressWarnings("unchecked") public static IntVector fromByteArray(VectorSpecies<Integer> species, byte[] a, int offset) { Objects.requireNonNull(a); offset = VectorIntrinsics.checkIndex(offset, a.length, species.bitSize() / Byte.SIZE); ! return VectorIntrinsics.load((Class<IntVector>) species.boxType(), int.class, species.length(), a, ((long) offset) + Unsafe.ARRAY_BYTE_BASE_OFFSET, a, offset, species, (c, idx, s) -> { ByteBuffer bbc = ByteBuffer.wrap(c, idx, a.length - idx).order(ByteOrder.nativeOrder()); IntBuffer tb = bbc.asIntBuffer(); --- 140,150 ---- @ForceInline @SuppressWarnings("unchecked") public static IntVector fromByteArray(VectorSpecies<Integer> species, byte[] a, int offset) { Objects.requireNonNull(a); offset = VectorIntrinsics.checkIndex(offset, a.length, species.bitSize() / Byte.SIZE); ! return VectorIntrinsics.load((Class<IntVector>) species.vectorType(), int.class, species.length(), a, ((long) offset) + Unsafe.ARRAY_BYTE_BASE_OFFSET, a, offset, species, (c, idx, s) -> { ByteBuffer bbc = ByteBuffer.wrap(c, idx, a.length - idx).order(ByteOrder.nativeOrder()); IntBuffer tb = bbc.asIntBuffer();
*** 198,208 **** @ForceInline @SuppressWarnings("unchecked") public static IntVector fromArray(VectorSpecies<Integer> species, int[] a, int offset){ Objects.requireNonNull(a); offset = VectorIntrinsics.checkIndex(offset, a.length, species.length()); ! return VectorIntrinsics.load((Class<IntVector>) species.boxType(), int.class, species.length(), a, (((long) offset) << ARRAY_SHIFT) + Unsafe.ARRAY_INT_BASE_OFFSET, a, offset, species, (c, idx, s) -> ((IntSpecies)s).op(n -> c[idx + n])); } --- 198,208 ---- @ForceInline @SuppressWarnings("unchecked") public static IntVector fromArray(VectorSpecies<Integer> species, int[] a, int offset){ Objects.requireNonNull(a); offset = VectorIntrinsics.checkIndex(offset, a.length, species.length()); ! return VectorIntrinsics.load((Class<IntVector>) species.vectorType(), int.class, species.length(), a, (((long) offset) << ARRAY_SHIFT) + Unsafe.ARRAY_INT_BASE_OFFSET, a, offset, species, (c, idx, s) -> ((IntSpecies)s).op(n -> c[idx + n])); }
*** 261,272 **** // Index vector: vix[0:n] = k -> a_offset + indexMap[i_offset + k] IntVector vix = IntVector.fromArray(IntVector.species(species.indexShape()), indexMap, i_offset).add(a_offset); vix = VectorIntrinsics.checkIndex(vix, a.length); ! return VectorIntrinsics.loadWithMap((Class<IntVector>) species.boxType(), int.class, species.length(), ! IntVector.species(species.indexShape()).boxType(), a, Unsafe.ARRAY_INT_BASE_OFFSET, vix, a, a_offset, indexMap, i_offset, species, (int[] c, int idx, int[] iMap, int idy, VectorSpecies<Integer> s) -> ((IntSpecies)s).op(n -> c[idx + iMap[idy+n]])); } --- 261,272 ---- // Index vector: vix[0:n] = k -> a_offset + indexMap[i_offset + k] IntVector vix = IntVector.fromArray(IntVector.species(species.indexShape()), indexMap, i_offset).add(a_offset); vix = VectorIntrinsics.checkIndex(vix, a.length); ! return VectorIntrinsics.loadWithMap((Class<IntVector>) species.vectorType(), int.class, species.length(), ! IntVector.species(species.indexShape()).vectorType(), a, Unsafe.ARRAY_INT_BASE_OFFSET, vix, a, a_offset, indexMap, i_offset, species, (int[] c, int idx, int[] iMap, int idy, VectorSpecies<Integer> s) -> ((IntSpecies)s).op(n -> c[idx + iMap[idy+n]])); }
*** 331,341 **** public static IntVector fromByteBuffer(VectorSpecies<Integer> species, ByteBuffer bb, int offset) { if (bb.order() != ByteOrder.nativeOrder()) { throw new IllegalArgumentException(); } offset = VectorIntrinsics.checkIndex(offset, bb.limit(), species.bitSize() / Byte.SIZE); ! return VectorIntrinsics.load((Class<IntVector>) species.boxType(), int.class, species.length(), U.getReference(bb, BYTE_BUFFER_HB), U.getLong(bb, BUFFER_ADDRESS) + offset, bb, offset, species, (c, idx, s) -> { ByteBuffer bbc = c.duplicate().position(idx).order(ByteOrder.nativeOrder()); IntBuffer tb = bbc.asIntBuffer(); --- 331,341 ---- public static IntVector fromByteBuffer(VectorSpecies<Integer> species, ByteBuffer bb, int offset) { if (bb.order() != ByteOrder.nativeOrder()) { throw new IllegalArgumentException(); } offset = VectorIntrinsics.checkIndex(offset, bb.limit(), species.bitSize() / Byte.SIZE); ! return VectorIntrinsics.load((Class<IntVector>) species.vectorType(), int.class, species.length(), U.getReference(bb, BYTE_BUFFER_HB), U.getLong(bb, BUFFER_ADDRESS) + offset, bb, offset, species, (c, idx, s) -> { ByteBuffer bbc = c.duplicate().position(idx).order(ByteOrder.nativeOrder()); IntBuffer tb = bbc.asIntBuffer();
*** 387,405 **** /** * Returns a vector where all lane elements are set to the primitive * value {@code e}. * * @param species species of the desired vector ! * @param e the value * @return a vector of vector where all lane elements are set to * the primitive value {@code e} */ @ForceInline @SuppressWarnings("unchecked") public static IntVector broadcast(VectorSpecies<Integer> species, int e) { return VectorIntrinsics.broadcastCoerced( ! (Class<IntVector>) species.boxType(), int.class, species.length(), e, species, ((bits, sp) -> ((IntSpecies)sp).op(i -> (int)bits))); } /** --- 387,405 ---- /** * Returns a vector where all lane elements are set to the primitive * value {@code e}. * * @param species species of the desired vector ! * @param e the value to be broadcasted * @return a vector of vector where all lane elements are set to * the primitive value {@code e} */ @ForceInline @SuppressWarnings("unchecked") public static IntVector broadcast(VectorSpecies<Integer> species, int e) { return VectorIntrinsics.broadcastCoerced( ! (Class<IntVector>) species.vectorType(), int.class, species.length(), e, species, ((bits, sp) -> ((IntSpecies)sp).op(i -> (int)bits))); } /**
*** 419,429 **** @ForceInline @SuppressWarnings("unchecked") public static IntVector scalars(VectorSpecies<Integer> species, int... es) { Objects.requireNonNull(es); int ix = VectorIntrinsics.checkIndex(0, es.length, species.length()); ! return VectorIntrinsics.load((Class<IntVector>) species.boxType(), int.class, species.length(), es, Unsafe.ARRAY_INT_BASE_OFFSET, es, ix, species, (c, idx, sp) -> ((IntSpecies)sp).op(n -> c[idx + n])); } --- 419,429 ---- @ForceInline @SuppressWarnings("unchecked") public static IntVector scalars(VectorSpecies<Integer> species, int... es) { Objects.requireNonNull(es); int ix = VectorIntrinsics.checkIndex(0, es.length, species.length()); ! return VectorIntrinsics.load((Class<IntVector>) species.vectorType(), int.class, species.length(), es, Unsafe.ARRAY_INT_BASE_OFFSET, es, ix, species, (c, idx, sp) -> ((IntSpecies)sp).op(n -> c[idx + n])); }
*** 797,825 **** /** * {@inheritDoc} */ @Override ! public abstract IntVector rotateEL(int i); /** * {@inheritDoc} */ @Override ! public abstract IntVector rotateER(int i); /** * {@inheritDoc} */ @Override ! public abstract IntVector shiftEL(int i); /** * {@inheritDoc} */ @Override ! public abstract IntVector shiftER(int i); /** * Bitwise ANDs this vector with an input vector. --- 797,825 ---- /** * {@inheritDoc} */ @Override ! public abstract IntVector rotateLanesLeft(int i); /** * {@inheritDoc} */ @Override ! public abstract IntVector rotateLanesRight(int i); /** * {@inheritDoc} */ @Override ! public abstract IntVector shiftLanesLeft(int i); /** * {@inheritDoc} */ @Override ! public abstract IntVector shiftLanesRight(int i); /** * Bitwise ANDs this vector with an input vector.
*** 994,1167 **** /** * Logically left shifts this vector by the broadcast of an input scalar. * <p> * This is a lane-wise binary operation which applies the primitive logical left shift ! * operation ({@code <<}) to each lane. * * @param s the input scalar; the number of the bits to left shift ! * @return the result of logically left shifting left this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftL(int s); /** * Logically left shifts this vector by the broadcast of an input scalar, * selecting lane elements controlled by a mask. * <p> * This is a lane-wise binary operation which applies the primitive logical left shift ! * operation ({@code <<}) to each lane. * * @param s the input scalar; the number of the bits to left shift * @param m the mask controlling lane selection * @return the result of logically left shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftL(int s, VectorMask<Integer> m); /** * Logically left shifts this vector by an input vector. * <p> * This is a lane-wise binary operation which applies the primitive logical left shift ! * operation ({@code <<}) to each lane. * * @param v the input vector * @return the result of logically left shifting this vector by the input * vector */ ! public abstract IntVector shiftL(Vector<Integer> v); /** * Logically left shifts this vector by an input vector, selecting lane * elements controlled by a mask. * <p> * This is a lane-wise binary operation which applies the primitive logical left shift ! * operation ({@code <<}) to each lane. * * @param v the input vector * @param m the mask controlling lane selection * @return the result of logically left shifting this vector by the input * vector */ ! public IntVector shiftL(Vector<Integer> v, VectorMask<Integer> m) { ! return bOp(v, m, (i, a, b) -> (int) (a << b)); } // logical, or unsigned, shift right /** * Logically right shifts (or unsigned right shifts) this vector by the * broadcast of an input scalar. * <p> * This is a lane-wise binary operation which applies the primitive logical right shift ! * operation ({@code >>>}) to each lane. * * @param s the input scalar; the number of the bits to right shift * @return the result of logically right shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftR(int s); /** * Logically right shifts (or unsigned right shifts) this vector by the * broadcast of an input scalar, selecting lane elements controlled by a * mask. * <p> * This is a lane-wise binary operation which applies the primitive logical right shift ! * operation ({@code >>>}) to each lane. * * @param s the input scalar; the number of the bits to right shift * @param m the mask controlling lane selection * @return the result of logically right shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftR(int s, VectorMask<Integer> m); /** * Logically right shifts (or unsigned right shifts) this vector by an * input vector. * <p> * This is a lane-wise binary operation which applies the primitive logical right shift ! * operation ({@code >>>}) to each lane. * * @param v the input vector * @return the result of logically right shifting this vector by the * input vector */ ! public abstract IntVector shiftR(Vector<Integer> v); /** * Logically right shifts (or unsigned right shifts) this vector by an * input vector, selecting lane elements controlled by a mask. * <p> * This is a lane-wise binary operation which applies the primitive logical right shift ! * operation ({@code >>>}) to each lane. * * @param v the input vector * @param m the mask controlling lane selection * @return the result of logically right shifting this vector by the * input vector */ ! public IntVector shiftR(Vector<Integer> v, VectorMask<Integer> m) { ! return bOp(v, m, (i, a, b) -> (int) (a >>> b)); } /** * Arithmetically right shifts (or signed right shifts) this vector by the * broadcast of an input scalar. * <p> * This is a lane-wise binary operation which applies the primitive arithmetic right ! * shift operation ({@code >>}) to each lane. * * @param s the input scalar; the number of the bits to right shift * @return the result of arithmetically right shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector aShiftR(int s); /** * Arithmetically right shifts (or signed right shifts) this vector by the * broadcast of an input scalar, selecting lane elements controlled by a * mask. * <p> * This is a lane-wise binary operation which applies the primitive arithmetic right ! * shift operation ({@code >>}) to each lane. * * @param s the input scalar; the number of the bits to right shift * @param m the mask controlling lane selection * @return the result of arithmetically right shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector aShiftR(int s, VectorMask<Integer> m); /** * Arithmetically right shifts (or signed right shifts) this vector by an * input vector. * <p> * This is a lane-wise binary operation which applies the primitive arithmetic right ! * shift operation ({@code >>}) to each lane. * * @param v the input vector * @return the result of arithmetically right shifting this vector by the * input vector */ ! public abstract IntVector aShiftR(Vector<Integer> v); /** * Arithmetically right shifts (or signed right shifts) this vector by an * input vector, selecting lane elements controlled by a mask. * <p> * This is a lane-wise binary operation which applies the primitive arithmetic right ! * shift operation ({@code >>}) to each lane. * * @param v the input vector * @param m the mask controlling lane selection * @return the result of arithmetically right shifting this vector by the * input vector */ ! public IntVector aShiftR(Vector<Integer> v, VectorMask<Integer> m) { ! return bOp(v, m, (i, a, b) -> (int) (a >> b)); } /** * Rotates left this vector by the broadcast of an input scalar. * <p> --- 994,1179 ---- /** * Logically left shifts this vector by the broadcast of an input scalar. * <p> * This is a lane-wise binary operation which applies the primitive logical left shift ! * operation ({@code <<}) to each lane to left shift the ! * element by shift value as specified by the input scalar. * * @param s the input scalar; the number of the bits to left shift ! * @return the result of logically left shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftLeft(int s); /** * Logically left shifts this vector by the broadcast of an input scalar, * selecting lane elements controlled by a mask. * <p> * This is a lane-wise binary operation which applies the primitive logical left shift ! * operation ({@code <<}) to each lane to left shift the ! * element by shift value as specified by the input scalar. * * @param s the input scalar; the number of the bits to left shift * @param m the mask controlling lane selection * @return the result of logically left shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftLeft(int s, VectorMask<Integer> m); /** * Logically left shifts this vector by an input vector. * <p> * This is a lane-wise binary operation which applies the primitive logical left shift ! * operation ({@code <<}) to each lane. For each lane of this vector, the ! * shift value is the corresponding lane of input vector. * * @param v the input vector * @return the result of logically left shifting this vector by the input * vector */ ! public abstract IntVector shiftLeft(Vector<Integer> v); /** * Logically left shifts this vector by an input vector, selecting lane * elements controlled by a mask. * <p> * This is a lane-wise binary operation which applies the primitive logical left shift ! * operation ({@code <<}) to each lane. For each lane of this vector, the ! * shift value is the corresponding lane of input vector. * * @param v the input vector * @param m the mask controlling lane selection * @return the result of logically left shifting this vector by the input * vector */ ! public IntVector shiftLeft(Vector<Integer> v, VectorMask<Integer> m) { ! return blend(shiftLeft(v), m); } // logical, or unsigned, shift right /** * Logically right shifts (or unsigned right shifts) this vector by the * broadcast of an input scalar. * <p> * This is a lane-wise binary operation which applies the primitive logical right shift ! * operation ({@code >>>}) to each lane to logically right shift the ! * element by shift value as specified by the input scalar. * * @param s the input scalar; the number of the bits to right shift * @return the result of logically right shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftRight(int s); /** * Logically right shifts (or unsigned right shifts) this vector by the * broadcast of an input scalar, selecting lane elements controlled by a * mask. * <p> * This is a lane-wise binary operation which applies the primitive logical right shift ! * operation ({@code >>}) to each lane to logically right shift the ! * element by shift value as specified by the input scalar. * * @param s the input scalar; the number of the bits to right shift * @param m the mask controlling lane selection * @return the result of logically right shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftRight(int s, VectorMask<Integer> m); /** * Logically right shifts (or unsigned right shifts) this vector by an * input vector. * <p> * This is a lane-wise binary operation which applies the primitive logical right shift ! * operation ({@code >>>}) to each lane. For each lane of this vector, the ! * shift value is the corresponding lane of input vector. * * @param v the input vector * @return the result of logically right shifting this vector by the * input vector */ ! public abstract IntVector shiftRight(Vector<Integer> v); /** * Logically right shifts (or unsigned right shifts) this vector by an * input vector, selecting lane elements controlled by a mask. * <p> * This is a lane-wise binary operation which applies the primitive logical right shift ! * operation ({@code >>>}) to each lane. For each lane of this vector, the ! * shift value is the corresponding lane of input vector. * * @param v the input vector * @param m the mask controlling lane selection * @return the result of logically right shifting this vector by the * input vector */ ! public IntVector shiftRight(Vector<Integer> v, VectorMask<Integer> m) { ! return blend(shiftRight(v), m); } /** * Arithmetically right shifts (or signed right shifts) this vector by the * broadcast of an input scalar. * <p> * This is a lane-wise binary operation which applies the primitive arithmetic right ! * shift operation ({@code >>}) to each lane to arithmetically ! * right shift the element by shift value as specified by the input scalar. * * @param s the input scalar; the number of the bits to right shift * @return the result of arithmetically right shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftArithmeticRight(int s); /** * Arithmetically right shifts (or signed right shifts) this vector by the * broadcast of an input scalar, selecting lane elements controlled by a * mask. * <p> * This is a lane-wise binary operation which applies the primitive arithmetic right ! * shift operation ({@code >>}) to each lane to arithmetically ! * right shift the element by shift value as specified by the input scalar. * * @param s the input scalar; the number of the bits to right shift * @param m the mask controlling lane selection * @return the result of arithmetically right shifting this vector by the * broadcast of an input scalar */ ! public abstract IntVector shiftArithmeticRight(int s, VectorMask<Integer> m); /** * Arithmetically right shifts (or signed right shifts) this vector by an * input vector. * <p> * This is a lane-wise binary operation which applies the primitive arithmetic right ! * shift operation ({@code >>}) to each lane. For each lane of this vector, the ! * shift value is the corresponding lane of input vector. * * @param v the input vector * @return the result of arithmetically right shifting this vector by the * input vector */ ! public abstract IntVector shiftArithmeticRight(Vector<Integer> v); /** * Arithmetically right shifts (or signed right shifts) this vector by an * input vector, selecting lane elements controlled by a mask. * <p> * This is a lane-wise binary operation which applies the primitive arithmetic right ! * shift operation ({@code >>}) to each lane. For each lane of this vector, the ! * shift value is the corresponding lane of input vector. * * @param v the input vector * @param m the mask controlling lane selection * @return the result of arithmetically right shifting this vector by the * input vector */ ! public IntVector shiftArithmeticRight(Vector<Integer> v, VectorMask<Integer> m) { ! return blend(shiftArithmeticRight(v), m); } /** * Rotates left this vector by the broadcast of an input scalar. * <p>
*** 1174,1185 **** * @param s the input scalar; the number of the bits to rotate left * @return the result of rotating left this vector by the broadcast of an * input scalar */ @ForceInline ! public final IntVector rotateL(int s) { ! return shiftL(s).or(shiftR(-s)); } /** * Rotates left this vector by the broadcast of an input scalar, selecting * lane elements controlled by a mask. --- 1186,1197 ---- * @param s the input scalar; the number of the bits to rotate left * @return the result of rotating left this vector by the broadcast of an * input scalar */ @ForceInline ! public final IntVector rotateLeft(int s) { ! return shiftLeft(s).or(shiftRight(-s)); } /** * Rotates left this vector by the broadcast of an input scalar, selecting * lane elements controlled by a mask.
*** 1194,1205 **** * @param m the mask controlling lane selection * @return the result of rotating left this vector by the broadcast of an * input scalar */ @ForceInline ! public final IntVector rotateL(int s, VectorMask<Integer> m) { ! return shiftL(s, m).or(shiftR(-s, m), m); } /** * Rotates right this vector by the broadcast of an input scalar. * <p> --- 1206,1217 ---- * @param m the mask controlling lane selection * @return the result of rotating left this vector by the broadcast of an * input scalar */ @ForceInline ! public final IntVector rotateLeft(int s, VectorMask<Integer> m) { ! return shiftLeft(s, m).or(shiftRight(-s, m), m); } /** * Rotates right this vector by the broadcast of an input scalar. * <p>
*** 1212,1223 **** * @param s the input scalar; the number of the bits to rotate right * @return the result of rotating right this vector by the broadcast of an * input scalar */ @ForceInline ! public final IntVector rotateR(int s) { ! return shiftR(s).or(shiftL(-s)); } /** * Rotates right this vector by the broadcast of an input scalar, selecting * lane elements controlled by a mask. --- 1224,1235 ---- * @param s the input scalar; the number of the bits to rotate right * @return the result of rotating right this vector by the broadcast of an * input scalar */ @ForceInline ! public final IntVector rotateRight(int s) { ! return shiftRight(s).or(shiftLeft(-s)); } /** * Rotates right this vector by the broadcast of an input scalar, selecting * lane elements controlled by a mask.
*** 1232,1243 **** * @param m the mask controlling lane selection * @return the result of rotating right this vector by the broadcast of an * input scalar */ @ForceInline ! public final IntVector rotateR(int s, VectorMask<Integer> m) { ! return shiftR(s, m).or(shiftL(-s, m), m); } /** * {@inheritDoc} */ --- 1244,1255 ---- * @param m the mask controlling lane selection * @return the result of rotating right this vector by the broadcast of an * input scalar */ @ForceInline ! public final IntVector rotateRight(int s, VectorMask<Integer> m) { ! return shiftRight(s, m).or(shiftLeft(-s, m), m); } /** * {@inheritDoc} */
*** 1271,1281 **** * operation ({@code +}) to lane elements, * and the identity value is {@code 0}. * * @return the addition of all the lane elements of this vector */ ! public abstract int addAll(); /** * Adds all lane elements of this vector, selecting lane elements * controlled by a mask. * <p> --- 1283,1293 ---- * operation ({@code +}) to lane elements, * and the identity value is {@code 0}. * * @return the addition of all the lane elements of this vector */ ! public abstract int addLanes(); /** * Adds all lane elements of this vector, selecting lane elements * controlled by a mask. * <p>
*** 1284,1305 **** * and the identity value is {@code 0}. * * @param m the mask controlling lane selection * @return the addition of the selected lane elements of this vector */ ! public abstract int addAll(VectorMask<Integer> m); /** * Multiplies all lane elements of this vector. * <p> * This is an associative cross-lane reduction operation which applies the * multiplication operation ({@code *}) to lane elements, * and the identity value is {@code 1}. * * @return the multiplication of all the lane elements of this vector */ ! public abstract int mulAll(); /** * Multiplies all lane elements of this vector, selecting lane elements * controlled by a mask. * <p> --- 1296,1317 ---- * and the identity value is {@code 0}. * * @param m the mask controlling lane selection * @return the addition of the selected lane elements of this vector */ ! public abstract int addLanes(VectorMask<Integer> m); /** * Multiplies all lane elements of this vector. * <p> * This is an associative cross-lane reduction operation which applies the * multiplication operation ({@code *}) to lane elements, * and the identity value is {@code 1}. * * @return the multiplication of all the lane elements of this vector */ ! public abstract int mulLanes(); /** * Multiplies all lane elements of this vector, selecting lane elements * controlled by a mask. * <p>
*** 1308,1318 **** * and the identity value is {@code 1}. * * @param m the mask controlling lane selection * @return the multiplication of all the lane elements of this vector */ ! public abstract int mulAll(VectorMask<Integer> m); /** * Returns the minimum lane element of this vector. * <p> * This is an associative cross-lane reduction operation which applies the operation --- 1320,1330 ---- * and the identity value is {@code 1}. * * @param m the mask controlling lane selection * @return the multiplication of all the lane elements of this vector */ ! public abstract int mulLanes(VectorMask<Integer> m); /** * Returns the minimum lane element of this vector. * <p> * This is an associative cross-lane reduction operation which applies the operation
*** 1320,1330 **** * and the identity value is * {@link Integer#MAX_VALUE}. * * @return the minimum lane element of this vector */ ! public abstract int minAll(); /** * Returns the minimum lane element of this vector, selecting lane elements * controlled by a mask. * <p> --- 1332,1342 ---- * and the identity value is * {@link Integer#MAX_VALUE}. * * @return the minimum lane element of this vector */ ! public abstract int minLanes(); /** * Returns the minimum lane element of this vector, selecting lane elements * controlled by a mask. * <p>
*** 1334,1344 **** * {@link Integer#MAX_VALUE}. * * @param m the mask controlling lane selection * @return the minimum lane element of this vector */ ! public abstract int minAll(VectorMask<Integer> m); /** * Returns the maximum lane element of this vector. * <p> * This is an associative cross-lane reduction operation which applies the operation --- 1346,1356 ---- * {@link Integer#MAX_VALUE}. * * @param m the mask controlling lane selection * @return the minimum lane element of this vector */ ! public abstract int minLanes(VectorMask<Integer> m); /** * Returns the maximum lane element of this vector. * <p> * This is an associative cross-lane reduction operation which applies the operation
*** 1346,1356 **** * and the identity value is * {@link Integer#MIN_VALUE}. * * @return the maximum lane element of this vector */ ! public abstract int maxAll(); /** * Returns the maximum lane element of this vector, selecting lane elements * controlled by a mask. * <p> --- 1358,1368 ---- * and the identity value is * {@link Integer#MIN_VALUE}. * * @return the maximum lane element of this vector */ ! public abstract int maxLanes(); /** * Returns the maximum lane element of this vector, selecting lane elements * controlled by a mask. * <p>
*** 1360,1381 **** * {@link Integer#MIN_VALUE}. * * @param m the mask controlling lane selection * @return the maximum lane element of this vector */ ! public abstract int maxAll(VectorMask<Integer> m); /** * Logically ORs all lane elements of this vector. * <p> * This is an associative cross-lane reduction operation which applies the logical OR * operation ({@code |}) to lane elements, * and the identity value is {@code 0}. * * @return the logical OR all the lane elements of this vector */ ! public abstract int orAll(); /** * Logically ORs all lane elements of this vector, selecting lane elements * controlled by a mask. * <p> --- 1372,1393 ---- * {@link Integer#MIN_VALUE}. * * @param m the mask controlling lane selection * @return the maximum lane element of this vector */ ! public abstract int maxLanes(VectorMask<Integer> m); /** * Logically ORs all lane elements of this vector. * <p> * This is an associative cross-lane reduction operation which applies the logical OR * operation ({@code |}) to lane elements, * and the identity value is {@code 0}. * * @return the logical OR all the lane elements of this vector */ ! public abstract int orLanes(); /** * Logically ORs all lane elements of this vector, selecting lane elements * controlled by a mask. * <p>
*** 1384,1405 **** * and the identity value is {@code 0}. * * @param m the mask controlling lane selection * @return the logical OR all the lane elements of this vector */ ! public abstract int orAll(VectorMask<Integer> m); /** * Logically ANDs all lane elements of this vector. * <p> * This is an associative cross-lane reduction operation which applies the logical AND * operation ({@code |}) to lane elements, * and the identity value is {@code -1}. * * @return the logical AND all the lane elements of this vector */ ! public abstract int andAll(); /** * Logically ANDs all lane elements of this vector, selecting lane elements * controlled by a mask. * <p> --- 1396,1417 ---- * and the identity value is {@code 0}. * * @param m the mask controlling lane selection * @return the logical OR all the lane elements of this vector */ ! public abstract int orLanes(VectorMask<Integer> m); /** * Logically ANDs all lane elements of this vector. * <p> * This is an associative cross-lane reduction operation which applies the logical AND * operation ({@code |}) to lane elements, * and the identity value is {@code -1}. * * @return the logical AND all the lane elements of this vector */ ! public abstract int andLanes(); /** * Logically ANDs all lane elements of this vector, selecting lane elements * controlled by a mask. * <p>
*** 1408,1429 **** * and the identity value is {@code -1}. * * @param m the mask controlling lane selection * @return the logical AND all the lane elements of this vector */ ! public abstract int andAll(VectorMask<Integer> m); /** * Logically XORs all lane elements of this vector. * <p> * This is an associative cross-lane reduction operation which applies the logical XOR * operation ({@code ^}) to lane elements, * and the identity value is {@code 0}. * * @return the logical XOR all the lane elements of this vector */ ! public abstract int xorAll(); /** * Logically XORs all lane elements of this vector, selecting lane elements * controlled by a mask. * <p> --- 1420,1441 ---- * and the identity value is {@code -1}. * * @param m the mask controlling lane selection * @return the logical AND all the lane elements of this vector */ ! public abstract int andLanes(VectorMask<Integer> m); /** * Logically XORs all lane elements of this vector. * <p> * This is an associative cross-lane reduction operation which applies the logical XOR * operation ({@code ^}) to lane elements, * and the identity value is {@code 0}. * * @return the logical XOR all the lane elements of this vector */ ! public abstract int xorLanes(); /** * Logically XORs all lane elements of this vector, selecting lane elements * controlled by a mask. * <p>
*** 1432,1442 **** * and the identity value is {@code 0}. * * @param m the mask controlling lane selection * @return the logical XOR all the lane elements of this vector */ ! public abstract int xorAll(VectorMask<Integer> m); // Type specific accessors /** * Gets the lane element at lane index {@code i} --- 1444,1454 ---- * and the identity value is {@code 0}. * * @param m the mask controlling lane selection * @return the logical XOR all the lane elements of this vector */ ! public abstract int xorLanes(VectorMask<Integer> m); // Type specific accessors /** * Gets the lane element at lane index {@code i}
*** 1575,1591 **** */ static final class IntSpecies extends AbstractSpecies<Integer> { final Function<int[], IntVector> vectorFactory; private IntSpecies(VectorShape shape, ! Class<?> boxType, Class<?> maskType, Function<int[], IntVector> vectorFactory, Function<boolean[], VectorMask<Integer>> maskFactory, Function<IntUnaryOperator, VectorShuffle<Integer>> shuffleFromArrayFactory, fShuffleFromArray<Integer> shuffleFromOpFactory) { ! super(shape, int.class, Integer.SIZE, boxType, maskType, maskFactory, shuffleFromArrayFactory, shuffleFromOpFactory); this.vectorFactory = vectorFactory; } interface FOp { --- 1587,1603 ---- */ static final class IntSpecies extends AbstractSpecies<Integer> { final Function<int[], IntVector> vectorFactory; private IntSpecies(VectorShape shape, ! Class<?> vectorType, Class<?> maskType, Function<int[], IntVector> vectorFactory, Function<boolean[], VectorMask<Integer>> maskFactory, Function<IntUnaryOperator, VectorShuffle<Integer>> shuffleFromArrayFactory, fShuffleFromArray<Integer> shuffleFromOpFactory) { ! super(shape, int.class, Integer.SIZE, vectorType, maskType, maskFactory, shuffleFromArrayFactory, shuffleFromOpFactory); this.vectorFactory = vectorFactory; } interface FOp {
< prev index next >