-
Notifications
You must be signed in to change notification settings - Fork 5.8k
8301992: Embed SymbolTable CHT node #12562
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
8301992: Embed SymbolTable CHT node #12562
Conversation
👋 Welcome back ccheung! A progress list of the required criteria for merging this PR into |
/contributor add @robehn |
@calvinccheung |
@calvinccheung The following label will be automatically applied to this pull request:
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. |
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.
This looks good - I have just a couple of changes that I think you should make.
@calvinccheung thanks! |
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.
This changes look great! thank you!
@calvinccheung 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 154 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 |
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.
This seems fine. I haven't actually observed us getting to this code, except maybe once, but you might as well keep it.
if (value.refcount() != PERM_REFCOUNT) { | ||
FreeHeap(memory); | ||
} else { | ||
MutexLocker ml(SymbolArena_lock, Mutex::_no_safepoint_check_flag); // Protect arena | ||
// Deleting permanent symbol should not occur very often (insert race condition), | ||
// so log it. | ||
log_trace_symboltable_helper(&value, "Freeing permanent symbol"); | ||
size_t alloc_size = _local_table->get_node_size() + value.byte_size() + value.effective_length(); | ||
if (!SymbolTable::arena()->Afree(memory, alloc_size)) { | ||
log_trace_symboltable_helper(&value, "Leaked permanent symbol"); | ||
} |
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.
We should avoid freeing if DumpSharedSpaces is true, so that the code is symmetrical with allocate_node_impl(). Maybe this:
#if INCLUDE_CDS
if (DumpSharedSpaces) {
// no deallocation is needed
} else
#endif
if (value.refcount() != PERM_REFCOUNT) {
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.
How about performing the above check at the beginning of the function, right after the assert statement as follows?
Let me know if the added assert is necessary.
--- a/src/hotspot/share/classfile/symbolTable.cpp
+++ b/src/hotspot/share/classfile/symbolTable.cpp
@@ -151,6 +151,13 @@ public:
// If #2, then the symbol is dead (refcount==0)
assert(value.is_permanent() || (value.refcount() == 1) || (value.refcount() == 0),
"refcount %d", value.refcount());
+#if INCLUDE_CDS
+ if (DumpSharedSpaces) {
+ assert(value.is_permanent(), "symbol should be permanent during CDS dumping");
+ // no deallocation is needed
+ return;
+ }
+#endif
if (value.refcount() == 1) {
value.decrement_refcount();
assert(value.refcount() == 0, "expected dead symbol");
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.
Currently, in allocate_node_impl()
there's no guarantee that the refcount is always permanent when DumpSharedSpaces is true.
During CDS dumping, some classes may be loaded by non-boot loaders, and their symbols may initially have a non-permanent count. Eventually, we force all the archived symbols to be permanent, but theoretically calls to free_node()
may happen before that.
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.
Ok. I've pushed a commit without the assert statement.
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
Going to push as commit 86b9fce.
Your commit was automatically rebased without conflicts. |
@calvinccheung Pushed as commit 86b9fce. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Please review this patch for embedding the Symbol inside a ConcurrentHashTable Node instead of having a pointer to a Symbol. This eliminates malloc/free for each Symbol.
This patch is co-authored by @robehn.
Passed tiers 1 - 4 testing.
Progress
Issue
Reviewers
Contributors
<rehn@openjdk.org>
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/12562/head:pull/12562
$ git checkout pull/12562
Update a local copy of the PR:
$ git checkout pull/12562
$ git pull https://git.openjdk.org/jdk pull/12562/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 12562
View PR using the GUI difftool:
$ git pr show -t 12562
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/12562.diff