Skip to content

Conversation

iwanowww
Copy link
Contributor

@iwanowww iwanowww commented Oct 20, 2025

C2 performs access checks during inlining attempts through method handle
intrinsic calls. But there are no such checks happening at runtime when
executing the calls. (Access checks are performed when corresponding method
handle is resolved.) So, inlining may fail due to access checks failure while
the call always succeeds at runtime.

The fix is to skip access checks when inlining through method handle intrinsics.

Testing: hs-tier1 - hs-tier4


Progress

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue

Issue

  • JDK-8370251: C2: Inlining checks for method handle intrinsics are too strict (Enhancement - P4)

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/27908/head:pull/27908
$ git checkout pull/27908

Update a local copy of the PR:
$ git checkout pull/27908
$ git pull https://git.openjdk.org/jdk.git pull/27908/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 27908

View PR using the GUI difftool:
$ git pr show -t 27908

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/27908.diff

Using Webrev

Link to Webrev Comment

@bridgekeeper
Copy link

bridgekeeper bot commented Oct 20, 2025

👋 Welcome back vlivanov! 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 Oct 20, 2025

❗ This change is not yet ready to be integrated.
See the Progress checklist in the description for automated requirements.

@iwanowww iwanowww marked this pull request as ready for review October 20, 2025 21:04
@openjdk
Copy link

openjdk bot commented Oct 20, 2025

@iwanowww The following label will be automatically applied to this pull request:

  • hotspot-compiler

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

@openjdk openjdk bot added the rfr Pull request is ready for review label Oct 20, 2025
@mlbridge
Copy link

mlbridge bot commented Oct 20, 2025

Webrevs

receiver_method = callee->resolve_invoke(jvms->method()->holder(),
speculative_receiver_type);
speculative_receiver_type,
check_access);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you explain why only here you pass check_access and expect it is true in all other places?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar question, should we add an assert for check_access before the resolve_invoke in Compile::optimize_inlining?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you explain why only here you pass check_access and expect it is true in all other places?

@vnkozlov That's the only case which was overlooked in JDK-8062280. All other cases aren't exercised for MH intrinsic methods and the asserts are there to verify that. If they start to fail, it'll signal that there may be a missing optimization opportunity.

should we add an assert for check_access before the resolve_invoke in Compile::optimize_inlining?

@liach good question, it makes sense to separately take a closer look at this particular case. My first impression is check_access should be passed into resolve_invoke rather than asserting check_access == true before resolve_invoke.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

hotspot-compiler [email protected] rfr Pull request is ready for review

Development

Successfully merging this pull request may close these issues.

3 participants