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

8291473: Unify MemorySegment and MemoryAddress #694

Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8122f21
Initial push
mcimadamore Jul 18, 2022
32829bc
Minimize diffs
mcimadamore Jul 20, 2022
076d687
Further minimize diffs
mcimadamore Jul 20, 2022
39d5014
Simplify TestUpcallBase
mcimadamore Jul 20, 2022
41d2c14
Simplify TestUpcallHighArity
mcimadamore Jul 20, 2022
8c8a253
Merge branch 'foreign-memaccess+abi' into ffm_segment_unification
mcimadamore Jul 27, 2022
31fa30b
Tweak javadoc for MemorySegment::get(Address)
mcimadamore Jul 27, 2022
3942fec
Update src/java.base/share/classes/java/lang/foreign/package-info.java
mcimadamore Jul 28, 2022
0407106
Update src/java.base/share/classes/java/lang/foreign/ValueLayout.java
mcimadamore Jul 28, 2022
811f84f
Update src/java.base/share/classes/java/lang/foreign/VaList.java
mcimadamore Jul 28, 2022
118cf04
Update src/java.base/share/classes/jdk/internal/foreign/abi/AbstractL…
mcimadamore Jul 28, 2022
22f8e4c
Update src/java.base/share/classes/jdk/internal/foreign/abi/UpcallStu…
mcimadamore Jul 28, 2022
2312cb3
Update test/jdk/java/foreign/TestUpcallHighArity.java
mcimadamore Jul 28, 2022
18e7f60
Add missing copyright headers
mcimadamore Jul 28, 2022
3543e66
Improve upcall tests
mcimadamore Jul 28, 2022
b8e59b1
Re-add MemorySegment::segmentOffset/MemorySegment::asOverlappingSlice
mcimadamore Jul 28, 2022
5e6794d
Simplify BindingSpecializer::popType
mcimadamore Jul 28, 2022
dcfe28f
Simplify layout equality test
mcimadamore Jul 28, 2022
390c52f
Tweak ToSegment binding to work on long
mcimadamore Jul 28, 2022
98ece3e
Merge ToSegment into BoxAddress
mcimadamore Jul 28, 2022
142dd03
Drop references to MemoryAddress/Addressable
mcimadamore Jul 29, 2022
6de1fa7
Remove whitespace
mcimadamore Jul 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -52,9 +52,9 @@
* <ul>
* <li>It can be passed to a {@link Linker} to create a downcall method handle, which can then be used to call the foreign function at the segment's base address.</li>
* <li>It can be passed to an existing {@linkplain Linker#downcallHandle(FunctionDescriptor) downcall method handle}, as an argument to the underlying foreign function.</li>
* <li>It can be {@linkplain MemorySegment#set(ValueLayout.OfAddress, long, Addressable) stored} inside another memory segment.</li>
* <li>It can be {@linkplain MemorySegment#set(ValueLayout.OfAddress, long, MemorySegment) stored} inside another memory segment.</li>
* <li>It can be used to dereference memory associated with a global variable (this might require
* {@link MemorySegment#ofAddress(MemoryAddress, long, MemorySession) resizing} the segment first).</li>
* {@link MemorySegment#ofAddress(long, long, MemorySession) resizing} the segment first).</li>
* </ul>
*
* <h2 id="obtaining">Obtaining a symbol lookup</h2>
Original file line number Diff line number Diff line change
@@ -146,7 +146,7 @@ private static long alignmentOfContainer(GroupLayout ct) {
}

/**
* Takes a MethodHandle that takes an input buffer as a first argument (a MemoryAddress), and returns nothing,
* Takes a MethodHandle that takes an input buffer as a first argument (a MemorySegment), and returns nothing,
* and adapts it to return a MemorySegment, by allocating a MemorySegment for the input
* buffer, calling the target MethodHandle, and then returning the allocated MemorySegment.
*
@@ -161,22 +161,22 @@ public static MethodHandle adaptDowncallForIMR(MethodHandle handle, FunctionDesc
if (handle.type().returnType() != void.class)
throw new IllegalArgumentException("return expected to be void for in memory returns: " + handle.type());
if (handle.type().parameterType(2) != MemorySegment.class)
throw new IllegalArgumentException("MemoryAddress expected as third param: " + handle.type());
throw new IllegalArgumentException("MemorySegment expected as third param: " + handle.type());
if (cDesc.returnLayout().isEmpty())
throw new IllegalArgumentException("Return layout needed: " + cDesc);

MethodHandle ret = identity(MemorySegment.class); // (MemorySegment) MemorySegment
handle = collectArguments(ret, 1, handle); // (MemorySegment, Addressable, SegmentAllocator, MemoryAddress, ...) MemorySegment
handle = mergeArguments(handle, 0, 3); // (MemorySegment, Addressable, SegmentAllocator, ...) MemorySegment
handle = collectArguments(handle, 0, insertArguments(MH_ALLOC_BUFFER, 1, cDesc.returnLayout().get())); // (SegmentAllocator, Addressable, SegmentAllocator, ...) MemoryAddress
handle = mergeArguments(handle, 0, 2); // (SegmentAllocator, Addressable, ...) MemoryAddress
handle = swapArguments(handle, 0, 1); // (Addressable, SegmentAllocator, ...) MemoryAddress
handle = collectArguments(ret, 1, handle); // (MemorySegment, MemorySegment, SegmentAllocator, MemorySegment, ...) MemorySegment
handle = mergeArguments(handle, 0, 3); // (MemorySegment, MemorySegment, SegmentAllocator, ...) MemorySegment
handle = collectArguments(handle, 0, insertArguments(MH_ALLOC_BUFFER, 1, cDesc.returnLayout().get())); // (SegmentAllocator, MemorySegment, SegmentAllocator, ...) MemorySegment
handle = mergeArguments(handle, 0, 2); // (SegmentAllocator, MemorySegment, ...) MemorySegment
handle = swapArguments(handle, 0, 1); // (MemorySegment, SegmentAllocator, ...) MemorySegment
return handle;
}

/**
* Takes a MethodHandle that returns a MemorySegment, and adapts it to take an input buffer as a first argument
* (a MemoryAddress), and upon invocation, copies the contents of the returned MemorySegment into the input buffer
* (a MemorySegment), and upon invocation, copies the contents of the returned MemorySegment into the input buffer
* passed as the first argument.
*
* @param target the target handle to adapt
@@ -186,7 +186,7 @@ public static MethodHandle adaptUpcallForIMR(MethodHandle target, boolean dropRe
if (target.type().returnType() != MemorySegment.class)
throw new IllegalArgumentException("Must return MemorySegment for IMR");

target = collectArguments(MH_BUFFER_COPY, 1, target); // (MemoryAddress, ...) MemoryAddress
target = collectArguments(MH_BUFFER_COPY, 1, target); // (MemorySegment, ...) MemorySegment

if (dropReturn) { // no handling for return value, need to drop it
target = dropReturn(target);