-
Notifications
You must be signed in to change notification settings - Fork 5.8k
8300657: Remove null filtering in CLD oop handle area #12145
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
Conversation
👋 Welcome back eosterlund! A progress list of the required criteria for merging this PR into |
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.
Nice, and trivial. Thanks!
@fisk 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 23 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 |
Thanks for the review! |
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.
Seems fine.
Aside: Not obvious to me whether closures should be responsible for doing their own null checks or whether the framework should guarantee no nulls get passed to them. You could go either way of course, just depends on the number of closure types versus the number of closure call sites, as to which approach minimises the code. At runtime hopefully there is only ever one null check per data item.
Thanks for the review! We have discussed this policy before, and I think the general consensus is that checking inside of the closure is what we want to do for global roots. That is typically the case already, so this change aligns this policy a bit. |
/integrate |
Going to push as commit b2071f7.
Your commit was automatically rebased without conflicts. |
In the CLD oop handle area, there is a null check before calling do_oop. This is unnecessary, as the closures all perform the same null filtering. Since it's a raw access, it also causes trouble for generational ZGC.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/12145/head:pull/12145
$ git checkout pull/12145
Update a local copy of the PR:
$ git checkout pull/12145
$ git pull https://git.openjdk.org/jdk pull/12145/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 12145
View PR using the GUI difftool:
$ git pr show -t 12145
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/12145.diff