8268328: Upstream: 8267989: Exceptions thrown during upcalls should be handled (Pt. 1) #4395
+82
−51
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
This is part 1 of a two part upstreaming process of the patch mentioned in the subject line. The patch was split into 2 in order to document 2 separate specification changes that arose from a change in the implementation, with 2 separate CSRs.
This patch changes the handling of method handles that might throw checked exceptions, by the var handle combinators found in
jdk.incubator.foreign.MemoryHandles
. Particularly, it makes the check more lenient towardsBoundMethodHandle
s that have fields that are method handles that might themselves throw exceptions, since it is not known whether the enclosing method handle catches such exceptions. For instance, if a target method handle is wrapped using thecatchException
combinator, which handles all exceptions thrown by that target, the current code will still reject such method handles, even though no checked exceptions can be thrown.The patch fixes this by instead wrapping method handles for which it is not possible to eagerly determine whether they throw exception using the
catchException
combinator, with an exception handler that catches checked exceptions and instead throws anIllegalStateException
with the original exception as the cause. (See also the CSR).The main motivation for doing this is having the ability to share the implementation with the
CLinker::upcallStub
API, which also wants to eagerly reject method handles that are determined to throw exceptions.See also the original review for the panama-foreign repo: openjdk/panama-foreign#543
Thanks,
Jorn
Testing:
jdk_foreign
test suite.Progress
Integration blocker
Issue
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/4395/head:pull/4395
$ git checkout pull/4395
Update a local copy of the PR:
$ git checkout pull/4395
$ git pull https://git.openjdk.java.net/jdk pull/4395/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 4395
View PR using the GUI difftool:
$ git pr show -t 4395
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/4395.diff