[foreign-memaccess+abi] RFR: 8315917: Passing struct by values seems under specified
Maurizio Cimadamore
mcimadamore at openjdk.org
Mon Sep 11 15:06:15 UTC 2023
On Mon, 11 Sep 2023 14:27:02 GMT, Jorn Vernee <jvernee at openjdk.org> wrote:
> As discussed in the JBS issue, the exceptions thrown by a downcall method handle for invalid by-value struct arguments are currently not specified.
>
> There are two cases in which we access a memory segment passed as an argument when unboxing it as part of a downcall handle invocation:
> 1. In the impl of the `BufferLoad` binding, where we call `MemorySegment::get`. This is on platforms that decompose the struct into registers, such as SysV.
> 2. In the impl of `Copy`, where we call `MemorySegment::copy`. This is on Windows where we need to copy a struct to implement by-value semantics.
>
> Since these by-value struct memory segments are given to us by the user, there can be various reasons why these segments can not be accessed, such as the scope already being closed, or the segment belonging to a different thread. The following exceptions may occur: `IllegalStateException`, `WrongThreadException`, `IndexOutOfBoundsException`, `UnsupportedOperationException`, and `IllegalArgumentException` (as specified by MS::get and MS::copy).
>
> Solution: update the specification of `Linker::downcallHandle` to specify that an exception thrown by MS::get or MS::copy might be thrown when invoking the downcall handle.
src/java.base/share/classes/java/lang/foreign/Linker.java line 573:
> 571: * representing the target address of the foreign function is the {@link MemorySegment#NULL} address. If an argument
> 572: * is a {@link MemorySegment}, whose corresponding layout is an {@linkplain GroupLayout group layout}, that needs to
> 573: * be accessed by the linker implementation, one of the exceptions specified by the
Suggestion:
* representing the target address of the foreign function is the {@link MemorySegment#NULL} address. If an argument
* is a {@link MemorySegment},whose corresponding layout is an {@linkplain GroupLayout group layout}, the linker might attempt to access the contents of the segment. As such, one of the exceptions specified by the
-------------
PR Review Comment: https://git.openjdk.org/panama-foreign/pull/881#discussion_r1321690529
More information about the panama-dev
mailing list