--- old/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/VectorShuffle.java 2019-04-26 14:52:00.027087500 -0700 +++ new/src/jdk.incubator.vector/share/classes/jdk/incubator/vector/VectorShuffle.java 2019-04-26 14:51:59.431729900 -0700 @@ -105,6 +105,7 @@ * @param species shuffle species * @param f the lane index mapping function * @return a shuffle of mapped indexes + * @see Vector#shuffle(IntUnaryOperator) */ @ForceInline public static VectorShuffle shuffle(VectorSpecies species, IntUnaryOperator f) { @@ -123,6 +124,7 @@ * * @param species shuffle species * @return a shuffle of lane indexes + * @see Vector#shuffleIota() */ @ForceInline public static VectorShuffle shuffleIota(VectorSpecies species) { @@ -141,6 +143,7 @@ * @param species shuffle species * @param start starting value of sequence * @return a shuffle of lane indexes + * @see Vector#shuffleIota(int) */ @ForceInline public static VectorShuffle shuffleIota(VectorSpecies species, int start) { @@ -160,6 +163,7 @@ * @param species shuffle species * @param start starting value of sequence * @return a shuffle of lane indexes + * @see Vector#shuffleOffset(int) */ @ForceInline public static VectorShuffle shuffleOffset(VectorSpecies species, int start) { @@ -181,6 +185,7 @@ * {@code int} value * @throws IndexOutOfBoundsException if the number of int values is * {@code < species.length()} + * @see Vector#shuffleFromValues(int...) */ @ForceInline public static VectorShuffle fromValues(VectorSpecies species, int... ixs) { @@ -200,7 +205,8 @@ * @param offset the offset into the array * @return a shuffle loaded from the {@code int} array * @throws IndexOutOfBoundsException if {@code offset < 0}, or - * {@code offset > a.length - species.length()} + * {@code offset > ixs.length - species.length()} + * @see Vector#shuffleFromArray(int[], int) */ @ForceInline public static VectorShuffle fromArray(VectorSpecies species, int[] ixs, int offset) {