Skip to content
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

8298061: vmTestbase/nsk/sysdict/vm/stress/btree/btree012/btree012.java failed with "fatal error: refcount has gone to zero" #3328

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/hotspot/share/classfile/placeholders.cpp
Original file line number Diff line number Diff line change
@@ -326,7 +326,12 @@ void PlaceholderTable::find_and_remove(unsigned int hash,
PlaceholderEntry *probe = get_entry(hash, name, loader_data);
if (probe != NULL) {
log(probe, "find_and_remove", action);
probe->remove_seen_thread(thread, action);

bool empty = probe->remove_seen_thread(thread, action);
if (empty && action == LOAD_SUPER) {
probe->set_supername(NULL);
}

// If no other threads using this entry, and this thread is not using this entry for other states
if ((probe->superThreadQ() == NULL) && (probe->loadInstanceThreadQ() == NULL)
&& (probe->defineThreadQ() == NULL) && (probe->definer() == NULL)) {
8 changes: 6 additions & 2 deletions src/hotspot/share/classfile/placeholders.hpp
Original file line number Diff line number Diff line change
@@ -142,8 +142,12 @@ class PlaceholderEntry : public HashtableEntry<Symbol*, mtClass> {

Symbol* supername() const { return _supername; }
void set_supername(Symbol* supername) {
_supername = supername;
if (_supername != NULL) _supername->increment_refcount();
if (supername != _supername) {
Copy link

Choose a reason for hiding this comment

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

Why isn't there an if (_supername == NULL) _supername->decrement_refcount(); before assigning the new supername?

Copy link
Member Author

Choose a reason for hiding this comment

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

Did you mean if (_supername != NULL)?
Later versions call Symbol::maybe_decrement_refcount(_supername); that acts like if (s != nullptr) s->decrement_refcount();.

Copy link
Member Author

@dchuyko dchuyko Mar 24, 2025

Choose a reason for hiding this comment

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

Also it turns out that checking for NULL may be not enough. PlaceholderEntry has no constructor, so members can contain garbage.

Copy link

Choose a reason for hiding this comment

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

I see. This is the old hashtable implementation.

Copy link
Member Author

Choose a reason for hiding this comment

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

Coleen, thanks for the review.

_supername = supername;
if (_supername != NULL) {
_supername->increment_refcount();
}
}
}

Thread* definer() const {return _definer; }