-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8333265: De-duplicate method references in java.util.stream.FindOps #19477
Conversation
👋 Welcome back redestad! A progress list of the required criteria for merging this PR into |
@cl4es This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 980 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
Webrevs
|
Should we extract them to private static utility methods for potential laziness support in the future? |
Ideally we shouldn't have to do any of this. I thought such method references were already de-duplicated in javac - at least within the same compilation units - but I saw this in a startup profile and was surprised myself that the demonstrated manual de-duplication has an observable effect. |
Indeed, CallSites are created per indy instruction instead of per CP indy entry (required by JVMS); thus sharing instruction either in initializers or static methods would have the same effect. javac only deduplicates the CP entry. |
For constant method reference, the solution is to use a constant dynamic instead of an invokedynamic. |
Vicente filed a bug on javac to investigate this: https://bugs.openjdk.org/browse/JDK-8333278 I wouldn't mind using condy for constant aka non-capturing lambdas. I recall we had a prototype for that years ago, but switching over was shelved for some reason. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The intermediate Predicate
s and Supplier
s don’t need to be fields, and it’s probably better for them to be locals:
/contributor add @ExE-Boss |
@cl4es Syntax:
User names can only be used for users in the census associated with this repository. For other contributors you need to supply the full name and email address. |
Friendly reminder that this improvement needs a Reviewer. While it'd be great if javac can make this redundant this is adding overhead in the meantime, and the temporary workaround doesn't obfuscate the code. |
@cl4es This pull request has been inactive for more than 4 weeks and will be automatically closed if another 4 weeks passes without any activity. To avoid this, simply add a new comment to the pull request. Feel free to ask for assistance if you need help with progressing this pull request towards integration! |
@@ -60,4 +60,10 @@ public Long par_invoke() { | |||
return LongStream.range(0, size).parallel().boxed().findAny().get(); | |||
} | |||
|
|||
public static void main(String... args) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this driver necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cl4es Just wonder what your use case is for this addition. If this is accidentally committed, please remove it and I am glad with all other changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding a main
method in micros like these allow me to easily multi-purpose them as relatively clean, diagnostic startup microbenchmarks. It's something I've started adding to all micros I author. I guess I should do a write-up about it some time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the explanation.
@cl4es This pull request has been inactive for more than 8 weeks and will now be automatically closed. If you would like to continue working on this pull request in the future, feel free to reopen it! This can be done using the |
/integrate |
@cl4es This pull request has not yet been marked as ready for integration. |
/open |
@cl4es This pull request is now open |
/integrate |
Going to push as commit 47c8a6a.
Your commit was automatically rebased without conflicts. |
Extracting duplicate method references to static field reduce proxy class spinning and loading. In this case 2 less classes loaded when using
findAny()
on each type of stream.Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/19477/head:pull/19477
$ git checkout pull/19477
Update a local copy of the PR:
$ git checkout pull/19477
$ git pull https://git.openjdk.org/jdk.git pull/19477/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 19477
View PR using the GUI difftool:
$ git pr show -t 19477
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/19477.diff
Webrev
Link to Webrev Comment