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

8268328: Upstream: 8267989: Exceptions thrown during upcalls should be handled (Pt. 1) #4395

Closed
wants to merge 1 commit into from

Conversation

JornVernee
Copy link
Member

@JornVernee JornVernee commented Jun 7, 2021

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 towards BoundMethodHandles 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 the catchException 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 an IllegalStateException 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

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed

Integration blocker

 ⚠️ The change requires a CSR request to be approved.

Issue

  • JDK-8268328: Upstream: 8267989: Exceptions thrown during upcalls should be handled (Pt. 1)

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

Sorry, something went wrong.

@bridgekeeper
Copy link

bridgekeeper bot commented Jun 7, 2021

👋 Welcome back jvernee! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Jun 7, 2021

@JornVernee The following labels will be automatically applied to this pull request:

  • core-libs
  • security

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command.

@openjdk openjdk bot added security security-dev@openjdk.org core-libs core-libs-dev@openjdk.org labels Jun 7, 2021
@JornVernee JornVernee changed the title 8268328: Upstream: 8267989: Exceptions thrown during upcalls should be handled 8268328: Upstream: 8267989: Exceptions thrown during upcalls should be handled (Pt. 1) Jun 7, 2021
@JornVernee JornVernee force-pushed the Upstream_Excp_Hndl branch from 93e41e1 to 656a170 Compare June 7, 2021 15:48
@JornVernee
Copy link
Member Author

/label remove security

@JornVernee
Copy link
Member Author

/csr

@openjdk openjdk bot removed the security security-dev@openjdk.org label Jun 7, 2021
@openjdk
Copy link

openjdk bot commented Jun 7, 2021

@JornVernee
The security label was successfully removed.

@openjdk openjdk bot added the csr Pull request needs approved CSR before integration label Jun 7, 2021
@openjdk
Copy link

openjdk bot commented Jun 7, 2021

@JornVernee this pull request will not be integrated until the CSR request JDK-8268336 for issue JDK-8268328 has been approved.

@JornVernee JornVernee marked this pull request as ready for review June 7, 2021 15:59
@openjdk openjdk bot added the rfr Pull request is ready for review label Jun 7, 2021
@mlbridge
Copy link

mlbridge bot commented Jun 7, 2021

Webrevs

@JornVernee
Copy link
Member Author

Deferred until a better solution is available.

@JornVernee JornVernee closed this Jun 8, 2021
@JornVernee JornVernee deleted the Upstream_Excp_Hndl branch December 5, 2022 20:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core-libs core-libs-dev@openjdk.org csr Pull request needs approved CSR before integration rfr Pull request is ready for review
Development

Successfully merging this pull request may close these issues.

None yet

1 participant