-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
8272231 G1: Refactor G1CardSet::get_card_set to return G1CardSetHashTableValue* #5072
Conversation
👋 Welcome back iwalulya! A progress list of the required criteria for merging this PR into |
Webrevs
|
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.
Lgtm.
@walulyai 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 72 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 |
@@ -192,7 +192,7 @@ class G1CardSetHashTable : public CHeapObj<mtGCCardSet> { | |||
}; | |||
|
|||
class G1CardSetHashTableFound : public StackObj { | |||
G1CardSetHashTableValue* _value; | |||
G1CardSetHashTableValue* _value = nullptr; |
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.
Non-static data member initializers (http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2756.htm) have not (yet) been approved for use in HotSpot. Needs to be initialized in a constructor.
@@ -611,8 +609,7 @@ void G1CardSet::transfer_cards_in_howl(CardSetPtr parent_card_set, | |||
G1CardSetHowl* howling_array = card_set_ptr<G1CardSetHowl>(parent_card_set); | |||
Atomic::add(&howling_array->_num_entries, diff, memory_order_relaxed); | |||
|
|||
bool should_grow_table = false; | |||
G1CardSetHashTableValue* table_entry = get_or_add_card_set(card_region, &should_grow_table); | |||
G1CardSetHashTableValue* table_entry = get_card_set(card_region); |
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.
Maybe there should be an assert here that table_entry
is non-null.
Thanks @kimbarrett and @tschatzl for the reviews! /integrate |
Going to push as commit 0a03481.
Your commit was automatically rebased without conflicts. |
Hi all,
Please review this change to return G1CardSetHashTableValue* from G1CardSet::get_card_set. Consequently, we do not have to use G1CardSet::get_or_add_card_set in instances where we only need to get the table entry (such as in G1CardSet::transfer_cards_in_howl).
Testing: Tier 1-5.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/5072/head:pull/5072
$ git checkout pull/5072
Update a local copy of the PR:
$ git checkout pull/5072
$ git pull https://git.openjdk.java.net/jdk pull/5072/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 5072
View PR using the GUI difftool:
$ git pr show -t 5072
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/5072.diff