< prev index next > test/jdk/jdk/incubator/vector/Long64VectorLoadStoreTests.java
Print this page
/*
! * Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
/*
! * Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
*/
// -- This file was mechanically generated: Do not edit! -- //
import jdk.incubator.vector.LongVector;
import jdk.incubator.vector.VectorMask;
import jdk.incubator.vector.VectorSpecies;
import jdk.incubator.vector.VectorShuffle;
import jdk.internal.vm.annotation.DontInline;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
- import java.nio.ByteBuffer;
- import java.nio.LongBuffer;
import java.nio.ByteOrder;
- import java.nio.ReadOnlyBufferException;
import java.util.List;
import java.util.function.*;
@Test
public class Long64VectorLoadStoreTests extends AbstractVectorLoadStoreTest {
*
*/
// -- This file was mechanically generated: Do not edit! -- //
+ import jdk.incubator.foreign.MemorySegment;
+ import jdk.incubator.foreign.ResourceScope;
+ import jdk.incubator.foreign.ValueLayout;
import jdk.incubator.vector.LongVector;
import jdk.incubator.vector.VectorMask;
import jdk.incubator.vector.VectorSpecies;
import jdk.incubator.vector.VectorShuffle;
import jdk.internal.vm.annotation.DontInline;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import java.nio.ByteOrder;
import java.util.List;
import java.util.function.*;
@Test
public class Long64VectorLoadStoreTests extends AbstractVectorLoadStoreTest {
} catch (AssertionError e) {
Assert.assertEquals(r[i], mask[i % SPECIES.length()] ? a[i] : (long) 0, "at index #" + i);
}
}
- static void assertArraysEquals(byte[] r, byte[] a, boolean[] mask) {
- int i = 0;
- try {
- for (; i < a.length; i++) {
- Assert.assertEquals(r[i], mask[(i*8/SPECIES.elementSize()) % SPECIES.length()] ? a[i] : (byte) 0);
- }
- } catch (AssertionError e) {
- Assert.assertEquals(r[i], mask[(i*8/SPECIES.elementSize()) % SPECIES.length()] ? a[i] : (byte) 0, "at index #" + i);
- }
- }
-
static final List<IntFunction<long[]>> LONG_GENERATORS = List.of(
withToString("long[i * 5]", (int s) -> {
return fill(s * BUFFER_REPS,
i -> (long)(i * 5));
}),
withToString("l + speciesl + 1", (int l) -> {
return l + SPECIES.length() + 1;
})
);
! // Relative to byte[] array.length or ByteBuffer.limit()
static final List<IntFunction<Integer>> BYTE_INDEX_GENERATORS = List.of(
withToString("-1", (int l) -> {
return -1;
}),
withToString("l", (int l) -> {
withToString("l + speciesl + 1", (int l) -> {
return l + SPECIES.length() + 1;
})
);
! // Relative to byte[] array.length or MemorySegment.byteSize()
static final List<IntFunction<Integer>> BYTE_INDEX_GENERATORS = List.of(
withToString("-1", (int l) -> {
return -1;
}),
withToString("l", (int l) -> {
})).
toArray(Object[][]::new);
}
@DataProvider
! public Object[][] longByteBufferProvider() {
return LONG_GENERATORS.stream().
! flatMap(fa -> BYTE_BUFFER_GENERATORS.stream().
flatMap(fb -> BYTE_ORDER_VALUES.stream().map(bo -> {
return new Object[]{fa, fb, bo};
}))).
toArray(Object[][]::new);
}
@DataProvider
! public Object[][] longByteBufferMaskProvider() {
return BOOLEAN_MASK_GENERATORS.stream().
flatMap(fm -> LONG_GENERATORS.stream().
! flatMap(fa -> BYTE_BUFFER_GENERATORS.stream().
flatMap(fb -> BYTE_ORDER_VALUES.stream().map(bo -> {
return new Object[]{fa, fb, fm, bo};
})))).
toArray(Object[][]::new);
}
- @DataProvider
- public Object[][] longByteArrayProvider() {
- return LONG_GENERATORS.stream().
- flatMap(fa -> BYTE_ORDER_VALUES.stream().map(bo -> {
- return new Object[]{fa, bo};
- })).
- toArray(Object[][]::new);
- }
-
- @DataProvider
- public Object[][] longByteArrayMaskProvider() {
- return BOOLEAN_MASK_GENERATORS.stream().
- flatMap(fm -> LONG_GENERATORS.stream().
- flatMap(fa -> BYTE_ORDER_VALUES.stream().map(bo -> {
- return new Object[]{fa, fm, bo};
- }))).
- toArray(Object[][]::new);
- }
-
@DataProvider
public Object[][] longByteProviderForIOOBE() {
var f = LONG_GENERATORS.get(0);
return BYTE_INDEX_GENERATORS.stream().map(fi -> {
return new Object[] {f, fi};
})).
toArray(Object[][]::new);
}
@DataProvider
! public Object[][] longMemorySegmentProvider() {
return LONG_GENERATORS.stream().
! flatMap(fa -> MEMORY_SEGMENT_GENERATORS.stream().
flatMap(fb -> BYTE_ORDER_VALUES.stream().map(bo -> {
return new Object[]{fa, fb, bo};
}))).
toArray(Object[][]::new);
}
@DataProvider
! public Object[][] longMemorySegmentMaskProvider() {
return BOOLEAN_MASK_GENERATORS.stream().
flatMap(fm -> LONG_GENERATORS.stream().
! flatMap(fa -> MEMORY_SEGMENT_GENERATORS.stream().
flatMap(fb -> BYTE_ORDER_VALUES.stream().map(bo -> {
return new Object[]{fa, fb, fm, bo};
})))).
toArray(Object[][]::new);
}
@DataProvider
public Object[][] longByteProviderForIOOBE() {
var f = LONG_GENERATORS.get(0);
return BYTE_INDEX_GENERATORS.stream().map(fi -> {
return new Object[] {f, fi};
return new Object[] {f, fi, fm};
})).
toArray(Object[][]::new);
}
! static ByteBuffer toBuffer(long[] a, IntFunction<ByteBuffer> fb) {
! ByteBuffer bb = fb.apply(a.length * SPECIES.elementSize() / 8);
! for (long v : a) {
! bb.putLong(v);
}
! return bb.clear();
}
! static long[] bufferToArray(ByteBuffer bb) {
! LongBuffer db = bb.asLongBuffer();
- long[] d = new long[db.capacity()];
- db.get(0, d);
- return d;
- }
-
- static byte[] toByteArray(long[] a, IntFunction<byte[]> fb, ByteOrder bo) {
- byte[] b = fb.apply(a.length * SPECIES.elementSize() / 8);
- LongBuffer bb = ByteBuffer.wrap(b, 0, b.length).order(bo).asLongBuffer();
- for (long v : a) {
- bb.put(v);
- }
- return b;
}
interface ToLongF {
long apply(int i);
return new Object[] {f, fi, fm};
})).
toArray(Object[][]::new);
}
! static MemorySegment toSegment(long[] a, IntFunction<MemorySegment> fb) {
! MemorySegment ms = fb.apply(a.length * SPECIES.elementSize() / 8);
! for (int i = 0; i < a.length; i++) {
! ms.set(ValueLayout.JAVA_LONG, i * SPECIES.elementSize() / 8 , a[i]);
}
! return ms;
}
! static long[] segmentToArray(MemorySegment ms) {
! return ms.toArray(ValueLayout.JAVA_LONG);
}
interface ToLongF {
long apply(int i);
static void intoArray(LongVector v, long[] a, int i, VectorMask<Long> m) {
v.intoArray(a, i, m);
}
@DontInline
! static LongVector fromByteArray(byte[] a, int i, ByteOrder bo) {
! return LongVector.fromByteArray(SPECIES, a, i, bo);
- }
-
- @DontInline
- static LongVector fromByteArray(byte[] a, int i, ByteOrder bo, VectorMask<Long> m) {
- return LongVector.fromByteArray(SPECIES, a, i, bo, m);
- }
-
- @DontInline
- static void intoByteArray(LongVector v, byte[] a, int i, ByteOrder bo) {
- v.intoByteArray(a, i, bo);
- }
-
- @DontInline
- static void intoByteArray(LongVector v, byte[] a, int i, ByteOrder bo, VectorMask<Long> m) {
- v.intoByteArray(a, i, bo, m);
- }
-
- @DontInline
- static LongVector fromByteBuffer(ByteBuffer a, int i, ByteOrder bo) {
- return LongVector.fromByteBuffer(SPECIES, a, i, bo);
}
@DontInline
! static LongVector fromByteBuffer(ByteBuffer a, int i, ByteOrder bo, VectorMask<Long> m) {
! return LongVector.fromByteBuffer(SPECIES, a, i, bo, m);
}
@DontInline
! static void intoByteBuffer(LongVector v, ByteBuffer a, int i, ByteOrder bo) {
! v.intoByteBuffer(a, i, bo);
}
@DontInline
! static void intoByteBuffer(LongVector v, ByteBuffer a, int i, ByteOrder bo, VectorMask<Long> m) {
! v.intoByteBuffer(a, i, bo, m);
}
-
@Test(dataProvider = "longProvider")
static void loadStoreArray(IntFunction<long[]> fa) {
long[] a = fa.apply(SPECIES.length());
long[] r = new long[a.length];
static void intoArray(LongVector v, long[] a, int i, VectorMask<Long> m) {
v.intoArray(a, i, m);
}
@DontInline
! static LongVector fromMemorySegment(MemorySegment a, int i, ByteOrder bo) {
! return LongVector.fromMemorySegment(SPECIES, a, i, bo);
}
@DontInline
! static LongVector fromMemorySegment(MemorySegment a, int i, ByteOrder bo, VectorMask<Long> m) {
! return LongVector.fromMemorySegment(SPECIES, a, i, bo, m);
}
@DontInline
! static void intoMemorySegment(LongVector v, MemorySegment a, int i, ByteOrder bo) {
! v.intoMemorySegment(a, i, bo);
}
@DontInline
! static void intoMemorySegment(LongVector v, MemorySegment a, int i, ByteOrder bo, VectorMask<Long> m) {
! v.intoMemorySegment(a, i, bo, m);
}
@Test(dataProvider = "longProvider")
static void loadStoreArray(IntFunction<long[]> fa) {
long[] a = fa.apply(SPECIES.length());
long[] r = new long[a.length];
}
Assert.assertEquals(r, mask);
}
! @Test(dataProvider = "longByteBufferProvider")
! static void loadStoreByteBuffer(IntFunction<long[]> fa,
! IntFunction<ByteBuffer> fb,
! ByteOrder bo) {
! ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), fb);
! ByteBuffer r = fb.apply(a.limit());
! int l = a.limit();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromByteBuffer(SPECIES, a, i, bo);
! av.intoByteBuffer(r, i, bo);
}
}
! Assert.assertEquals(a.position(), 0, "Input buffer position changed");
! Assert.assertEquals(a.limit(), l, "Input buffer limit changed");
- Assert.assertEquals(r.position(), 0, "Result buffer position changed");
- Assert.assertEquals(r.limit(), l, "Result buffer limit changed");
- Assert.assertEquals(r, a, "Buffers not equal");
}
@Test(dataProvider = "longByteProviderForIOOBE")
! static void loadByteBufferIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi) {
! ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), ByteBuffer::allocateDirect);
! ByteBuffer r = ByteBuffer.allocateDirect(a.limit());
! int l = a.limit();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = fromByteBuffer(a, i, ByteOrder.nativeOrder());
! av.intoByteBuffer(r, i, ByteOrder.nativeOrder());
}
}
! int index = fi.apply(a.limit());
! boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, a.limit());
try {
! fromByteBuffer(a, index, ByteOrder.nativeOrder());
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
}
Assert.assertEquals(r, mask);
}
! @Test(dataProvider = "longMemorySegmentProvider")
! static void loadStoreMemorySegment(IntFunction<long[]> fa,
! IntFunction<MemorySegment> fb,
! ByteOrder bo) {
! MemorySegment a = toSegment(fa.apply(SPECIES.length()), fb);
! MemorySegment r = fb.apply((int) a.byteSize());
! int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromMemorySegment(SPECIES, a, i, bo);
! av.intoMemorySegment(r, i, bo);
}
}
! long m = r.mismatch(a);
! Assert.assertEquals(m, -1, "Segments not equal");
}
@Test(dataProvider = "longByteProviderForIOOBE")
! static void loadMemorySegmentIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi) {
! MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, ResourceScope.newImplicitScope()));
! MemorySegment r = MemorySegment.allocateNative(a.byteSize(), ResourceScope.newImplicitScope());
! int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = fromMemorySegment(a, i, ByteOrder.nativeOrder());
! av.intoMemorySegment(r, i, ByteOrder.nativeOrder());
}
}
! int index = fi.apply((int) a.byteSize());
! boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, (int) a.byteSize());
try {
! fromMemorySegment(a, index, ByteOrder.nativeOrder());
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
}
}
}
@Test(dataProvider = "longByteProviderForIOOBE")
! static void storeByteBufferIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi) {
! ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), ByteBuffer::allocateDirect);
! ByteBuffer r = ByteBuffer.allocateDirect(a.limit());
! int l = a.limit();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromByteBuffer(SPECIES, a, i, ByteOrder.nativeOrder());
! intoByteBuffer(av, r, i, ByteOrder.nativeOrder());
}
}
! int index = fi.apply(a.limit());
! boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, a.limit());
try {
! LongVector av = LongVector.fromByteBuffer(SPECIES, a, 0, ByteOrder.nativeOrder());
! intoByteBuffer(av, r, index, ByteOrder.nativeOrder());
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
Assert.fail("Unexpected IndexOutOfBoundsException");
}
}
}
!
! @Test(dataProvider = "longByteBufferMaskProvider")
! static void loadStoreByteBufferMask(IntFunction<long[]> fa,
! IntFunction<ByteBuffer> fb,
! IntFunction<boolean[]> fm,
- ByteOrder bo) {
long[] _a = fa.apply(SPECIES.length());
! ByteBuffer a = toBuffer(_a, fb);
! ByteBuffer r = fb.apply(a.limit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
! int l = a.limit();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromByteBuffer(SPECIES, a, i, bo, vmask);
! av.intoByteBuffer(r, i, bo);
}
}
! Assert.assertEquals(a.position(), 0, "Input buffer position changed");
- Assert.assertEquals(a.limit(), l, "Input buffer limit changed");
- Assert.assertEquals(r.position(), 0, "Result buffer position changed");
- Assert.assertEquals(r.limit(), l, "Result buffer limit changed");
- assertArraysEquals(bufferToArray(r), _a, mask);
! r = fb.apply(a.limit());
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromByteBuffer(SPECIES, a, i, bo);
! av.intoByteBuffer(r, i, bo, vmask);
}
}
! Assert.assertEquals(a.position(), 0, "Input buffer position changed");
- Assert.assertEquals(a.limit(), l, "Input buffer limit changed");
- Assert.assertEquals(r.position(), 0, "Result buffer position changed");
- Assert.assertEquals(r.limit(), l, "Result buffer limit changed");
- assertArraysEquals(bufferToArray(r), _a, mask);
}
@Test(dataProvider = "longByteMaskProviderForIOOBE")
! static void loadByteBufferMaskIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
! ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), ByteBuffer::allocateDirect);
! ByteBuffer r = ByteBuffer.allocateDirect(a.limit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
! int l = a.limit();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = fromByteBuffer(a, i, ByteOrder.nativeOrder(), vmask);
! av.intoByteBuffer(r, i, ByteOrder.nativeOrder());
}
}
! int index = fi.apply(a.limit());
! boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, a.limit(), SPECIES.elementSize() / 8);
try {
! fromByteBuffer(a, index, ByteOrder.nativeOrder(), vmask);
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
}
}
}
@Test(dataProvider = "longByteProviderForIOOBE")
! static void storeMemorySegmentIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi) {
! MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, ResourceScope.newImplicitScope()));
! MemorySegment r = MemorySegment.allocateNative(a.byteSize(), ResourceScope.newImplicitScope());
! int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromMemorySegment(SPECIES, a, i, ByteOrder.nativeOrder());
! intoMemorySegment(av, r, i, ByteOrder.nativeOrder());
}
}
! int index = fi.apply((int) a.byteSize());
! boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, (int) a.byteSize());
try {
! LongVector av = LongVector.fromMemorySegment(SPECIES, a, 0, ByteOrder.nativeOrder());
! intoMemorySegment(av, r, index, ByteOrder.nativeOrder());
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
Assert.fail("Unexpected IndexOutOfBoundsException");
}
}
}
! @Test(dataProvider = "longMemorySegmentMaskProvider")
! static void loadStoreMemorySegmentMask(IntFunction<long[]> fa,
! IntFunction<MemorySegment> fb,
! IntFunction<boolean[]> fm,
! ByteOrder bo) {
long[] _a = fa.apply(SPECIES.length());
! MemorySegment a = toSegment(_a, fb);
! MemorySegment r = fb.apply((int) a.byteSize());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
! int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromMemorySegment(SPECIES, a, i, bo, vmask);
! av.intoMemorySegment(r, i, bo);
}
}
! assertArraysEquals(segmentToArray(r), _a, mask);
! r = fb.apply((int) a.byteSize());
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromMemorySegment(SPECIES, a, i, bo);
! av.intoMemorySegment(r, i, bo, vmask);
}
}
! assertArraysEquals(segmentToArray(r), _a, mask);
}
@Test(dataProvider = "longByteMaskProviderForIOOBE")
! static void loadMemorySegmentMaskIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
! MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, ResourceScope.newImplicitScope()));
! MemorySegment r = MemorySegment.allocateNative(a.byteSize(), ResourceScope.newImplicitScope());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
! int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = fromMemorySegment(a, i, ByteOrder.nativeOrder(), vmask);
! av.intoMemorySegment(r, i, ByteOrder.nativeOrder());
}
}
! int index = fi.apply((int) a.byteSize());
! boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, (int) a.byteSize(), SPECIES.elementSize() / 8);
try {
! fromMemorySegment(a, index, ByteOrder.nativeOrder(), vmask);
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
}
}
}
@Test(dataProvider = "longByteMaskProviderForIOOBE")
! static void storeByteBufferMaskIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
! ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), ByteBuffer::allocateDirect);
! ByteBuffer r = ByteBuffer.allocateDirect(a.limit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
! int l = a.limit();
- int s = SPECIES.vectorByteSize();
-
- for (int ic = 0; ic < INVOC_COUNT; ic++) {
- for (int i = 0; i < l; i += s) {
- LongVector av = LongVector.fromByteBuffer(SPECIES, a, i, ByteOrder.nativeOrder());
- intoByteBuffer(av, r, i, ByteOrder.nativeOrder(), vmask);
- }
- }
-
- int index = fi.apply(a.limit());
- boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, a.limit(), SPECIES.elementSize() / 8);
- try {
- LongVector av = LongVector.fromByteBuffer(SPECIES, a, 0, ByteOrder.nativeOrder());
- intoByteBuffer(av, a, index, ByteOrder.nativeOrder(), vmask);
- if (shouldFail) {
- Assert.fail("Failed to throw IndexOutOfBoundsException");
- }
- } catch (IndexOutOfBoundsException e) {
- if (!shouldFail) {
- Assert.fail("Unexpected IndexOutOfBoundsException");
- }
- }
- }
-
-
- @Test(dataProvider = "longByteBufferProvider")
- static void loadStoreReadonlyByteBuffer(IntFunction<long[]> fa,
- IntFunction<ByteBuffer> fb,
- ByteOrder bo) {
- ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), fb).asReadOnlyBuffer();
-
- try {
- SPECIES.zero().intoByteBuffer(a, 0, bo);
- Assert.fail("ReadOnlyBufferException expected");
- } catch (ReadOnlyBufferException e) {
- }
-
- try {
- SPECIES.zero().intoByteBuffer(a, 0, bo, SPECIES.maskAll(true));
- Assert.fail("ReadOnlyBufferException expected");
- } catch (ReadOnlyBufferException e) {
- }
-
- try {
- SPECIES.zero().intoByteBuffer(a, 0, bo, SPECIES.maskAll(false));
- Assert.fail("ReadOnlyBufferException expected");
- } catch (ReadOnlyBufferException e) {
- }
-
- try {
- VectorMask<Long> m = SPECIES.shuffleFromOp(i -> i % 2 == 0 ? 1 : -1)
- .laneIsValid();
- SPECIES.zero().intoByteBuffer(a, 0, bo, m);
- Assert.fail("ReadOnlyBufferException expected");
- } catch (ReadOnlyBufferException e) {
- }
- }
-
-
- @Test(dataProvider = "longByteArrayProvider")
- static void loadStoreByteArray(IntFunction<long[]> fa,
- ByteOrder bo) {
- byte[] a = toByteArray(fa.apply(SPECIES.length()), byte[]::new, bo);
- byte[] r = new byte[a.length];
-
- int s = SPECIES.vectorByteSize();
- int l = a.length;
-
- for (int ic = 0; ic < INVOC_COUNT; ic++) {
- for (int i = 0; i < l; i += s) {
- LongVector av = LongVector.fromByteArray(SPECIES, a, i, bo);
- av.intoByteArray(r, i, bo);
- }
- }
- Assert.assertEquals(r, a, "Byte arrays not equal");
- }
-
- @Test(dataProvider = "longByteProviderForIOOBE")
- static void loadByteArrayIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi) {
- byte[] a = toByteArray(fa.apply(SPECIES.length()), byte[]::new, ByteOrder.nativeOrder());
- byte[] r = new byte[a.length];
-
int s = SPECIES.vectorByteSize();
- int l = a.length;
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = fromByteArray(a, i, ByteOrder.nativeOrder());
! av.intoByteArray(r, i, ByteOrder.nativeOrder());
}
}
! int index = fi.apply(a.length);
! boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, a.length);
try {
! fromByteArray(a, index, ByteOrder.nativeOrder());
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
Assert.fail("Unexpected IndexOutOfBoundsException");
}
}
}
! @Test(dataProvider = "longByteProviderForIOOBE")
! static void storeByteArrayIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi) {
! byte[] a = toByteArray(fa.apply(SPECIES.length()), byte[]::new, ByteOrder.nativeOrder());
! byte[] r = new byte[a.length];
!
- int s = SPECIES.vectorByteSize();
- int l = a.length;
-
- for (int ic = 0; ic < INVOC_COUNT; ic++) {
- for (int i = 0; i < l; i += s) {
- LongVector av = LongVector.fromByteArray(SPECIES, a, i, ByteOrder.nativeOrder());
- intoByteArray(av, r, i, ByteOrder.nativeOrder());
- }
- }
-
- int index = fi.apply(a.length);
- boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, a.length);
- try {
- LongVector av = LongVector.fromByteArray(SPECIES, a, 0, ByteOrder.nativeOrder());
- intoByteArray(av, r, index, ByteOrder.nativeOrder());
- if (shouldFail) {
- Assert.fail("Failed to throw IndexOutOfBoundsException");
- }
- } catch (IndexOutOfBoundsException e) {
- if (!shouldFail) {
- Assert.fail("Unexpected IndexOutOfBoundsException");
- }
- }
- }
-
-
- @Test(dataProvider = "longByteArrayMaskProvider")
- static void loadStoreByteArrayMask(IntFunction<long[]> fa,
- IntFunction<boolean[]> fm,
- ByteOrder bo) {
- byte[] a = toByteArray(fa.apply(SPECIES.length()), byte[]::new, bo);
- byte[] r = new byte[a.length];
- boolean[] mask = fm.apply(SPECIES.length());
- VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
-
- int s = SPECIES.vectorByteSize();
- int l = a.length;
-
- for (int ic = 0; ic < INVOC_COUNT; ic++) {
- for (int i = 0; i < l; i += s) {
- LongVector av = LongVector.fromByteArray(SPECIES, a, i, bo, vmask);
- av.intoByteArray(r, i, bo);
- }
- }
- assertArraysEquals(r, a, mask);
-
-
- r = new byte[a.length];
-
- for (int ic = 0; ic < INVOC_COUNT; ic++) {
- for (int i = 0; i < l; i += s) {
- LongVector av = LongVector.fromByteArray(SPECIES, a, i, bo);
- av.intoByteArray(r, i, bo, vmask);
- }
- }
- assertArraysEquals(r, a, mask);
- }
! @Test(dataProvider = "longByteMaskProviderForIOOBE")
! static void loadByteArrayMaskIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
! byte[] a = toByteArray(fa.apply(SPECIES.length()), byte[]::new, ByteOrder.nativeOrder());
! byte[] r = new byte[a.length];
- boolean[] mask = fm.apply(SPECIES.length());
- VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
! int s = SPECIES.vectorByteSize();
! int l = a.length;
! for (int ic = 0; ic < INVOC_COUNT; ic++) {
! for (int i = 0; i < l; i += s) {
! LongVector av = fromByteArray(a, i, ByteOrder.nativeOrder(), vmask);
! av.intoByteArray(r, i, ByteOrder.nativeOrder());
- }
- }
! int index = fi.apply(a.length);
! boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, a.length, SPECIES.elementSize() / 8);
! try {
! fromByteArray(a, index, ByteOrder.nativeOrder(), vmask);
! if (shouldFail) {
! Assert.fail("Failed to throw IndexOutOfBoundsException");
- }
- } catch (IndexOutOfBoundsException e) {
- if (!shouldFail) {
- Assert.fail("Unexpected IndexOutOfBoundsException");
- }
- }
}
- @Test(dataProvider = "longByteMaskProviderForIOOBE")
- static void storeByteArrayMaskIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
- byte[] a = toByteArray(fa.apply(SPECIES.length()), byte[]::new, ByteOrder.nativeOrder());
- byte[] r = new byte[a.length];
- boolean[] mask = fm.apply(SPECIES.length());
- VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
-
- int s = SPECIES.vectorByteSize();
- int l = a.length;
-
- for (int ic = 0; ic < INVOC_COUNT; ic++) {
- for (int i = 0; i < l; i += s) {
- LongVector av = LongVector.fromByteArray(SPECIES, a, i, ByteOrder.nativeOrder());
- intoByteArray(av, r, i, ByteOrder.nativeOrder(), vmask);
- }
- }
-
- int index = fi.apply(a.length);
- boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, a.length, SPECIES.elementSize() / 8);
- try {
- LongVector av = LongVector.fromByteArray(SPECIES, a, 0, ByteOrder.nativeOrder());
- intoByteArray(av, a, index, ByteOrder.nativeOrder(), vmask);
- if (shouldFail) {
- Assert.fail("Failed to throw IndexOutOfBoundsException");
- }
- } catch (IndexOutOfBoundsException e) {
- if (!shouldFail) {
- Assert.fail("Unexpected IndexOutOfBoundsException");
- }
- }
- }
@Test(dataProvider = "maskProvider")
static void loadStoreMask(IntFunction<boolean[]> fm) {
boolean[] a = fm.apply(SPECIES.length());
boolean[] r = new boolean[a.length];
}
}
}
@Test(dataProvider = "longByteMaskProviderForIOOBE")
! static void storeMemorySegmentMaskIOOBE(IntFunction<long[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
! MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, ResourceScope.newImplicitScope()));
! MemorySegment r = MemorySegment.allocateNative(a.byteSize(), ResourceScope.newImplicitScope());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Long> vmask = VectorMask.fromValues(SPECIES, mask);
! int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
! LongVector av = LongVector.fromMemorySegment(SPECIES, a, i, ByteOrder.nativeOrder());
! intoMemorySegment(av, r, i, ByteOrder.nativeOrder(), vmask);
}
}
! int index = fi.apply((int) a.byteSize());
! boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, (int) a.byteSize(), SPECIES.elementSize() / 8);
try {
! LongVector av = LongVector.fromMemorySegment(SPECIES, a, 0, ByteOrder.nativeOrder());
+ intoMemorySegment(av, a, index, ByteOrder.nativeOrder(), vmask);
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
Assert.fail("Unexpected IndexOutOfBoundsException");
}
}
}
! @Test(dataProvider = "longMemorySegmentProvider")
! static void loadStoreReadonlyMemorySegment(IntFunction<long[]> fa,
! IntFunction<MemorySegment> fb,
! ByteOrder bo) {
! MemorySegment a = toSegment(fa.apply(SPECIES.length()), fb).asReadOnly();
! Assert.assertThrows(
! UnsupportedOperationException.class,
! () -> SPECIES.zero().intoMemorySegment(a, 0, bo)
! );
! Assert.assertThrows(
! UnsupportedOperationException.class,
+ () -> SPECIES.zero().intoMemorySegment(a, 0, bo, SPECIES.maskAll(true))
+ );
! Assert.assertThrows(
! UnsupportedOperationException.class,
! () -> SPECIES.zero().intoMemorySegment(a, 0, bo, SPECIES.maskAll(false))
! );
! VectorMask<Long> m = SPECIES.shuffleFromOp(i -> i % 2 == 0 ? 1 : -1)
! .laneIsValid();
! Assert.assertThrows(
! UnsupportedOperationException.class,
! () -> SPECIES.zero().intoMemorySegment(a, 0, bo, m)
! );
}
@Test(dataProvider = "maskProvider")
static void loadStoreMask(IntFunction<boolean[]> fm) {
boolean[] a = fm.apply(SPECIES.length());
boolean[] r = new boolean[a.length];
}
}
Assert.assertEquals(r, a);
}
+
@Test
static void loadStoreShuffle() {
IntUnaryOperator fn = a -> a + 5;
for (int ic = 0; ic < INVOC_COUNT; ic++) {
var shuffle = VectorShuffle.fromOp(SPECIES, fn);
< prev index next >