< prev index next > test/jdk/jdk/incubator/vector/Float64VectorLoadStoreTests.java
Print this page
/*
- * Copyright (c) 2018, 2021, Oracle and/or its affiliates. All rights reserved.
+ * 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.foreign.MemorySegment;
+ import jdk.incubator.foreign.ResourceScope;
+ import jdk.incubator.foreign.ValueLayout;
import jdk.incubator.vector.FloatVector;
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.FloatBuffer;
import java.nio.ByteOrder;
- import java.nio.ReadOnlyBufferException;
import java.util.List;
import java.util.function.*;
@Test
public class Float64VectorLoadStoreTests extends AbstractVectorLoadStoreTest {
} catch (AssertionError e) {
Assert.assertEquals(r[i], mask[i % SPECIES.length()] ? a[i] : (float) 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<float[]>> FLOAT_GENERATORS = List.of(
withToString("float[i * 5]", (int s) -> {
return fill(s * BUFFER_REPS,
i -> (float)(i * 5));
}),
withToString("l + speciesl + 1", (int l) -> {
return l + SPECIES.length() + 1;
})
);
- // Relative to byte[] array.length or ByteBuffer.limit()
+ // 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[][] floatByteBufferProvider() {
+ public Object[][] floatMemorySegmentProvider() {
return FLOAT_GENERATORS.stream().
- flatMap(fa -> BYTE_BUFFER_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[][] floatByteBufferMaskProvider() {
+ public Object[][] floatMemorySegmentMaskProvider() {
return BOOLEAN_MASK_GENERATORS.stream().
flatMap(fm -> FLOAT_GENERATORS.stream().
- flatMap(fa -> BYTE_BUFFER_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[][] floatByteArrayProvider() {
- return FLOAT_GENERATORS.stream().
- flatMap(fa -> BYTE_ORDER_VALUES.stream().map(bo -> {
- return new Object[]{fa, bo};
- })).
- toArray(Object[][]::new);
- }
-
- @DataProvider
- public Object[][] floatByteArrayMaskProvider() {
- return BOOLEAN_MASK_GENERATORS.stream().
- flatMap(fm -> FLOAT_GENERATORS.stream().
- flatMap(fa -> BYTE_ORDER_VALUES.stream().map(bo -> {
- return new Object[]{fa, fm, bo};
- }))).
- toArray(Object[][]::new);
- }
-
@DataProvider
public Object[][] floatByteProviderForIOOBE() {
var f = FLOAT_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(float[] a, IntFunction<ByteBuffer> fb) {
- ByteBuffer bb = fb.apply(a.length * SPECIES.elementSize() / 8);
- for (float v : a) {
- bb.putFloat(v);
+ static MemorySegment toSegment(float[] 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_FLOAT, i * SPECIES.elementSize() / 8 , a[i]);
}
- return bb.clear();
+ return ms;
}
- static float[] bufferToArray(ByteBuffer bb) {
- FloatBuffer db = bb.asFloatBuffer();
- float[] d = new float[db.capacity()];
- db.get(0, d);
- return d;
- }
-
- static byte[] toByteArray(float[] a, IntFunction<byte[]> fb, ByteOrder bo) {
- byte[] b = fb.apply(a.length * SPECIES.elementSize() / 8);
- FloatBuffer bb = ByteBuffer.wrap(b, 0, b.length).order(bo).asFloatBuffer();
- for (float v : a) {
- bb.put(v);
- }
- return b;
+ static float[] segmentToArray(MemorySegment ms) {
+ return ms.toArray(ValueLayout.JAVA_FLOAT);
}
interface ToFloatF {
float apply(int i);
static void intoArray(FloatVector v, float[] a, int i, VectorMask<Float> m) {
v.intoArray(a, i, m);
}
@DontInline
- static FloatVector fromByteArray(byte[] a, int i, ByteOrder bo) {
- return FloatVector.fromByteArray(SPECIES, a, i, bo);
- }
-
- @DontInline
- static FloatVector fromByteArray(byte[] a, int i, ByteOrder bo, VectorMask<Float> m) {
- return FloatVector.fromByteArray(SPECIES, a, i, bo, m);
- }
-
- @DontInline
- static void intoByteArray(FloatVector v, byte[] a, int i, ByteOrder bo) {
- v.intoByteArray(a, i, bo);
- }
-
- @DontInline
- static void intoByteArray(FloatVector v, byte[] a, int i, ByteOrder bo, VectorMask<Float> m) {
- v.intoByteArray(a, i, bo, m);
- }
-
- @DontInline
- static FloatVector fromByteBuffer(ByteBuffer a, int i, ByteOrder bo) {
- return FloatVector.fromByteBuffer(SPECIES, a, i, bo);
+ static FloatVector fromMemorySegment(MemorySegment a, int i, ByteOrder bo) {
+ return FloatVector.fromMemorySegment(SPECIES, a, i, bo);
}
@DontInline
- static FloatVector fromByteBuffer(ByteBuffer a, int i, ByteOrder bo, VectorMask<Float> m) {
- return FloatVector.fromByteBuffer(SPECIES, a, i, bo, m);
+ static FloatVector fromMemorySegment(MemorySegment a, int i, ByteOrder bo, VectorMask<Float> m) {
+ return FloatVector.fromMemorySegment(SPECIES, a, i, bo, m);
}
@DontInline
- static void intoByteBuffer(FloatVector v, ByteBuffer a, int i, ByteOrder bo) {
- v.intoByteBuffer(a, i, bo);
+ static void intoMemorySegment(FloatVector v, MemorySegment a, int i, ByteOrder bo) {
+ v.intoMemorySegment(a, i, bo);
}
@DontInline
- static void intoByteBuffer(FloatVector v, ByteBuffer a, int i, ByteOrder bo, VectorMask<Float> m) {
- v.intoByteBuffer(a, i, bo, m);
+ static void intoMemorySegment(FloatVector v, MemorySegment a, int i, ByteOrder bo, VectorMask<Float> m) {
+ v.intoMemorySegment(a, i, bo, m);
}
-
@Test(dataProvider = "floatProvider")
static void loadStoreArray(IntFunction<float[]> fa) {
float[] a = fa.apply(SPECIES.length());
float[] r = new float[a.length];
}
Assert.assertEquals(r, mask);
}
- @Test(dataProvider = "floatByteBufferProvider")
- static void loadStoreByteBuffer(IntFunction<float[]> fa,
- IntFunction<ByteBuffer> fb,
- ByteOrder bo) {
- ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), fb);
- ByteBuffer r = fb.apply(a.limit());
+ @Test(dataProvider = "floatMemorySegmentProvider")
+ static void loadStoreMemorySegment(IntFunction<float[]> fa,
+ IntFunction<MemorySegment> fb,
+ ByteOrder bo) {
+ MemorySegment a = toSegment(fa.apply(SPECIES.length()), fb);
+ MemorySegment r = fb.apply((int) a.byteSize());
- int l = a.limit();
+ 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) {
- FloatVector av = FloatVector.fromByteBuffer(SPECIES, a, i, bo);
- av.intoByteBuffer(r, i, bo);
+ FloatVector av = FloatVector.fromMemorySegment(SPECIES, a, i, bo);
+ av.intoMemorySegment(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");
+ long m = r.mismatch(a);
+ Assert.assertEquals(m, -1, "Segments not equal");
}
@Test(dataProvider = "floatByteProviderForIOOBE")
- static void loadByteBufferIOOBE(IntFunction<float[]> fa, IntFunction<Integer> fi) {
- ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), ByteBuffer::allocateDirect);
- ByteBuffer r = ByteBuffer.allocateDirect(a.limit());
+ static void loadMemorySegmentIOOBE(IntFunction<float[]> 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 = a.limit();
+ 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) {
- FloatVector av = fromByteBuffer(a, i, ByteOrder.nativeOrder());
- av.intoByteBuffer(r, i, ByteOrder.nativeOrder());
+ FloatVector av = fromMemorySegment(a, i, ByteOrder.nativeOrder());
+ av.intoMemorySegment(r, i, ByteOrder.nativeOrder());
}
}
- int index = fi.apply(a.limit());
- boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, a.limit());
+ int index = fi.apply((int) a.byteSize());
+ boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, (int) a.byteSize());
try {
- fromByteBuffer(a, index, ByteOrder.nativeOrder());
+ fromMemorySegment(a, index, ByteOrder.nativeOrder());
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
}
}
}
@Test(dataProvider = "floatByteProviderForIOOBE")
- static void storeByteBufferIOOBE(IntFunction<float[]> fa, IntFunction<Integer> fi) {
- ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), ByteBuffer::allocateDirect);
- ByteBuffer r = ByteBuffer.allocateDirect(a.limit());
+ static void storeMemorySegmentIOOBE(IntFunction<float[]> 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 = a.limit();
+ 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) {
- FloatVector av = FloatVector.fromByteBuffer(SPECIES, a, i, ByteOrder.nativeOrder());
- intoByteBuffer(av, r, i, ByteOrder.nativeOrder());
+ FloatVector av = FloatVector.fromMemorySegment(SPECIES, a, i, ByteOrder.nativeOrder());
+ intoMemorySegment(av, r, i, ByteOrder.nativeOrder());
}
}
- int index = fi.apply(a.limit());
- boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, a.limit());
+ int index = fi.apply((int) a.byteSize());
+ boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, (int) a.byteSize());
try {
- FloatVector av = FloatVector.fromByteBuffer(SPECIES, a, 0, ByteOrder.nativeOrder());
- intoByteBuffer(av, r, index, ByteOrder.nativeOrder());
+ FloatVector av = FloatVector.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 = "floatByteBufferMaskProvider")
- static void loadStoreByteBufferMask(IntFunction<float[]> fa,
- IntFunction<ByteBuffer> fb,
- IntFunction<boolean[]> fm,
- ByteOrder bo) {
+ @Test(dataProvider = "floatMemorySegmentMaskProvider")
+ static void loadStoreMemorySegmentMask(IntFunction<float[]> fa,
+ IntFunction<MemorySegment> fb,
+ IntFunction<boolean[]> fm,
+ ByteOrder bo) {
float[] _a = fa.apply(SPECIES.length());
- ByteBuffer a = toBuffer(_a, fb);
- ByteBuffer r = fb.apply(a.limit());
+ MemorySegment a = toSegment(_a, fb);
+ MemorySegment r = fb.apply((int) a.byteSize());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Float> vmask = VectorMask.fromValues(SPECIES, mask);
- int l = a.limit();
+ 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) {
- FloatVector av = FloatVector.fromByteBuffer(SPECIES, a, i, bo, vmask);
- av.intoByteBuffer(r, i, bo);
+ FloatVector av = FloatVector.fromMemorySegment(SPECIES, a, i, bo, vmask);
+ av.intoMemorySegment(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);
+ assertArraysEquals(segmentToArray(r), _a, mask);
- r = fb.apply(a.limit());
+ r = fb.apply((int) a.byteSize());
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
- FloatVector av = FloatVector.fromByteBuffer(SPECIES, a, i, bo);
- av.intoByteBuffer(r, i, bo, vmask);
+ FloatVector av = FloatVector.fromMemorySegment(SPECIES, a, i, bo);
+ av.intoMemorySegment(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);
+ assertArraysEquals(segmentToArray(r), _a, mask);
}
@Test(dataProvider = "floatByteMaskProviderForIOOBE")
- static void loadByteBufferMaskIOOBE(IntFunction<float[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
- ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), ByteBuffer::allocateDirect);
- ByteBuffer r = ByteBuffer.allocateDirect(a.limit());
+ static void loadMemorySegmentMaskIOOBE(IntFunction<float[]> 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<Float> vmask = VectorMask.fromValues(SPECIES, mask);
- int l = a.limit();
+ 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) {
- FloatVector av = fromByteBuffer(a, i, ByteOrder.nativeOrder(), vmask);
- av.intoByteBuffer(r, i, ByteOrder.nativeOrder());
+ FloatVector av = fromMemorySegment(a, i, ByteOrder.nativeOrder(), vmask);
+ av.intoMemorySegment(r, i, ByteOrder.nativeOrder());
}
}
- int index = fi.apply(a.limit());
- boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, a.limit(), SPECIES.elementSize() / 8);
+ int index = fi.apply((int) a.byteSize());
+ boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, (int) a.byteSize(), SPECIES.elementSize() / 8);
try {
- fromByteBuffer(a, index, ByteOrder.nativeOrder(), vmask);
+ fromMemorySegment(a, index, ByteOrder.nativeOrder(), vmask);
if (shouldFail) {
Assert.fail("Failed to throw IndexOutOfBoundsException");
}
} catch (IndexOutOfBoundsException e) {
if (!shouldFail) {
}
}
}
@Test(dataProvider = "floatByteMaskProviderForIOOBE")
- static void storeByteBufferMaskIOOBE(IntFunction<float[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
- ByteBuffer a = toBuffer(fa.apply(SPECIES.length()), ByteBuffer::allocateDirect);
- ByteBuffer r = ByteBuffer.allocateDirect(a.limit());
+ static void storeMemorySegmentMaskIOOBE(IntFunction<float[]> 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<Float> 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) {
- FloatVector av = FloatVector.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 {
- FloatVector av = FloatVector.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 = "floatByteBufferProvider")
- static void loadStoreReadonlyByteBuffer(IntFunction<float[]> 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<Float> 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 = "floatByteArrayProvider")
- static void loadStoreByteArray(IntFunction<float[]> 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) {
- FloatVector av = FloatVector.fromByteArray(SPECIES, a, i, bo);
- av.intoByteArray(r, i, bo);
- }
- }
- Assert.assertEquals(r, a, "Byte arrays not equal");
- }
-
- @Test(dataProvider = "floatByteProviderForIOOBE")
- static void loadByteArrayIOOBE(IntFunction<float[]> fa, IntFunction<Integer> fi) {
- byte[] a = toByteArray(fa.apply(SPECIES.length()), byte[]::new, ByteOrder.nativeOrder());
- byte[] r = new byte[a.length];
-
+ int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
- int l = a.length;
for (int ic = 0; ic < INVOC_COUNT; ic++) {
for (int i = 0; i < l; i += s) {
- FloatVector av = fromByteArray(a, i, ByteOrder.nativeOrder());
- av.intoByteArray(r, i, ByteOrder.nativeOrder());
+ FloatVector av = FloatVector.fromMemorySegment(SPECIES, a, i, ByteOrder.nativeOrder());
+ intoMemorySegment(av, r, i, ByteOrder.nativeOrder(), vmask);
}
}
- int index = fi.apply(a.length);
- boolean shouldFail = isIndexOutOfBounds(SPECIES.vectorByteSize(), index, a.length);
+ int index = fi.apply((int) a.byteSize());
+ boolean shouldFail = isIndexOutOfBoundsForMask(mask, index, (int) a.byteSize(), SPECIES.elementSize() / 8);
try {
- fromByteArray(a, index, ByteOrder.nativeOrder());
+ FloatVector av = FloatVector.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 = "floatByteProviderForIOOBE")
- static void storeByteArrayIOOBE(IntFunction<float[]> 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) {
- FloatVector av = FloatVector.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 {
- FloatVector av = FloatVector.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 = "floatByteArrayMaskProvider")
- static void loadStoreByteArrayMask(IntFunction<float[]> 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<Float> 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) {
- FloatVector av = FloatVector.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) {
- FloatVector av = FloatVector.fromByteArray(SPECIES, a, i, bo);
- av.intoByteArray(r, i, bo, vmask);
- }
- }
- assertArraysEquals(r, a, mask);
- }
+ @Test(dataProvider = "floatMemorySegmentProvider")
+ static void loadStoreReadonlyMemorySegment(IntFunction<float[]> fa,
+ IntFunction<MemorySegment> fb,
+ ByteOrder bo) {
+ MemorySegment a = toSegment(fa.apply(SPECIES.length()), fb).asReadOnly();
- @Test(dataProvider = "floatByteMaskProviderForIOOBE")
- static void loadByteArrayMaskIOOBE(IntFunction<float[]> 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<Float> vmask = VectorMask.fromValues(SPECIES, mask);
+ Assert.assertThrows(
+ UnsupportedOperationException.class,
+ () -> SPECIES.zero().intoMemorySegment(a, 0, bo)
+ );
- int s = SPECIES.vectorByteSize();
- int l = a.length;
+ Assert.assertThrows(
+ UnsupportedOperationException.class,
+ () -> SPECIES.zero().intoMemorySegment(a, 0, bo, SPECIES.maskAll(true))
+ );
- for (int ic = 0; ic < INVOC_COUNT; ic++) {
- for (int i = 0; i < l; i += s) {
- FloatVector av = fromByteArray(a, i, ByteOrder.nativeOrder(), vmask);
- av.intoByteArray(r, i, ByteOrder.nativeOrder());
- }
- }
+ Assert.assertThrows(
+ UnsupportedOperationException.class,
+ () -> SPECIES.zero().intoMemorySegment(a, 0, bo, SPECIES.maskAll(false))
+ );
- 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");
- }
- }
+ VectorMask<Float> m = SPECIES.shuffleFromOp(i -> i % 2 == 0 ? 1 : -1)
+ .laneIsValid();
+ Assert.assertThrows(
+ UnsupportedOperationException.class,
+ () -> SPECIES.zero().intoMemorySegment(a, 0, bo, m)
+ );
}
- @Test(dataProvider = "floatByteMaskProviderForIOOBE")
- static void storeByteArrayMaskIOOBE(IntFunction<float[]> 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<Float> 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) {
- FloatVector av = FloatVector.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 {
- FloatVector av = FloatVector.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];
}
}
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 >