Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8296417: Make memory session a pure lifetime abstraction #750

Closed
Original file line number Diff line number Diff line change
@@ -25,7 +25,6 @@
package jdk.internal.foreign.abi;

import jdk.internal.foreign.NativeMemorySegmentImpl;
import jdk.internal.org.objectweb.asm.Handle;

import java.lang.foreign.Arena;
import java.lang.foreign.MemoryLayout;
Original file line number Diff line number Diff line change
@@ -43,15 +43,15 @@ public class AbstractVectorLoadStoreTest extends AbstractVectorTest {
ByteBuffer.allocateDirect(s)
.order(ByteOrder.nativeOrder())),
withToString("MS:RW:NE", (int s) ->
MemorySegment.allocateNative(s)
MemorySegment.allocateNative(s, MemorySession.implicit())
.asByteBuffer()
.order(ByteOrder.nativeOrder())
)
);

static final List<IntFunction<MemorySegment>> MEMORY_SEGMENT_GENERATORS = List.of(
withToString("HMS", (int s) ->
MemorySegment.allocateNative(s)
MemorySegment.allocateNative(s, MemorySession.implicit())
),
withToString("DMS", (int s) -> {
byte[] b = new byte[s];
@@ -60,4 +60,3 @@ public class AbstractVectorLoadStoreTest extends AbstractVectorTest {
);

}

16 changes: 8 additions & 8 deletions test/jdk/jdk/incubator/vector/Byte128VectorLoadStoreTests.java
Original file line number Diff line number Diff line change
@@ -479,8 +479,8 @@ static void loadStoreMemorySegment(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteProviderForIOOBE")
static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -508,8 +508,8 @@ static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer>

@Test(dataProvider = "byteByteProviderForIOOBE")
static void storeMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -572,8 +572,8 @@ static void loadStoreMemorySegmentMask(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

@@ -603,8 +603,8 @@ static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integ

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void storeMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

16 changes: 8 additions & 8 deletions test/jdk/jdk/incubator/vector/Byte256VectorLoadStoreTests.java
Original file line number Diff line number Diff line change
@@ -479,8 +479,8 @@ static void loadStoreMemorySegment(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteProviderForIOOBE")
static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -508,8 +508,8 @@ static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer>

@Test(dataProvider = "byteByteProviderForIOOBE")
static void storeMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -572,8 +572,8 @@ static void loadStoreMemorySegmentMask(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

@@ -603,8 +603,8 @@ static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integ

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void storeMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

16 changes: 8 additions & 8 deletions test/jdk/jdk/incubator/vector/Byte512VectorLoadStoreTests.java
Original file line number Diff line number Diff line change
@@ -479,8 +479,8 @@ static void loadStoreMemorySegment(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteProviderForIOOBE")
static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -508,8 +508,8 @@ static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer>

@Test(dataProvider = "byteByteProviderForIOOBE")
static void storeMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -572,8 +572,8 @@ static void loadStoreMemorySegmentMask(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

@@ -603,8 +603,8 @@ static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integ

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void storeMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

16 changes: 8 additions & 8 deletions test/jdk/jdk/incubator/vector/Byte64VectorLoadStoreTests.java
Original file line number Diff line number Diff line change
@@ -479,8 +479,8 @@ static void loadStoreMemorySegment(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteProviderForIOOBE")
static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -508,8 +508,8 @@ static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer>

@Test(dataProvider = "byteByteProviderForIOOBE")
static void storeMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -572,8 +572,8 @@ static void loadStoreMemorySegmentMask(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

@@ -603,8 +603,8 @@ static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integ

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void storeMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

16 changes: 8 additions & 8 deletions test/jdk/jdk/incubator/vector/ByteMaxVectorLoadStoreTests.java
Original file line number Diff line number Diff line change
@@ -486,8 +486,8 @@ static void loadStoreMemorySegment(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteProviderForIOOBE")
static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -515,8 +515,8 @@ static void loadMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer>

@Test(dataProvider = "byteByteProviderForIOOBE")
static void storeMemorySegmentIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());

int l = (int) a.byteSize();
int s = SPECIES.vectorByteSize();
@@ -579,8 +579,8 @@ static void loadStoreMemorySegmentMask(IntFunction<byte[]> fa,

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

@@ -610,8 +610,8 @@ static void loadMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integ

@Test(dataProvider = "byteByteMaskProviderForIOOBE")
static void storeMemorySegmentMaskIOOBE(IntFunction<byte[]> fa, IntFunction<Integer> fi, IntFunction<boolean[]> fm) {
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE);
MemorySegment a = toSegment(fa.apply(SPECIES.length()), i -> MemorySegment.allocateNative(i, Byte.SIZE, MemorySession.implicit()));
MemorySegment r = MemorySegment.allocateNative(a.byteSize(), Byte.SIZE, MemorySession.implicit());
boolean[] mask = fm.apply(SPECIES.length());
VectorMask<Byte> vmask = VectorMask.fromValues(SPECIES, mask);

Loading