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

8267185: Add string deduplication support to ParallelGC #5085

Closed
Closed
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions src/hotspot/share/gc/parallel/parallelScavengeHeap.hpp
Original file line number Diff line number Diff line change
@@ -139,8 +139,8 @@ class ParallelScavengeHeap : public CollectedHeap {
// Returns JNI_OK on success
virtual jint initialize();

void safepoint_synchronize_begin();
void safepoint_synchronize_end();
virtual void safepoint_synchronize_begin();
virtual void safepoint_synchronize_end();

void post_initialize();
void update_counters();
11 changes: 3 additions & 8 deletions src/hotspot/share/gc/parallel/psCompactionManager.inline.hpp
Original file line number Diff line number Diff line change
@@ -110,15 +110,10 @@ inline void ParCompactionManager::mark_and_push(T* p) {
if (mark_bitmap()->is_unmarked(obj) && PSParallelCompact::mark_obj(obj)) {
push(obj);

if (StringDedup::is_enabled() && java_lang_String::is_instance_inlined(obj) &&
if (StringDedup::is_enabled() &&
java_lang_String::is_instance_inlined(obj) &&
psStringDedup::is_candidate_from_mark(obj)) {
// Evacuation of objects to old gen may fail and part of the young space is compacted within
// the space itself. In this case, we can have strings with age below the threshold deduplicated
// without being evacuated to the old gen. We rely on test_and_set_deduplication_requested
// to prevent multiple deduplication of such strings.
if (!java_lang_String::test_and_set_deduplication_requested(obj)) {
_string_dedup_requests.add(obj);
}
_string_dedup_requests.add(obj);
}
}
}
4 changes: 1 addition & 3 deletions src/hotspot/share/gc/parallel/psPromotionManager.inline.hpp
Original file line number Diff line number Diff line change
@@ -286,10 +286,8 @@ inline oop PSPromotionManager::copy_unmarked_to_survivor_space(oop o,
// we'll just push its contents
push_contents(new_obj);

if (psStringDedup::is_candidate_from_evacuation(o->klass(), new_obj->age(), new_obj_is_tenured)) {
if (!java_lang_String::test_and_set_deduplication_requested(o)) {
if (psStringDedup::is_candidate_from_evacuation(new_obj, new_obj_is_tenured)) {
_string_dedup_requests.add(o);

Choose a reason for hiding this comment

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

Update indentation? Or is github not showing the whitespace-only change?

Copy link
Member Author

Choose a reason for hiding this comment

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

Need to update the indentation! Thanks

}
}
}
return new_obj;
11 changes: 6 additions & 5 deletions src/hotspot/share/gc/parallel/psStringDedup.hpp
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@
#ifndef SHARE_GC_PARALLEL_PSSTRINGDEDUP_HPP
#define SHARE_GC_PARALLEL_PSSTRINGDEDUP_HPP

#include "classfile/javaClasses.inline.hpp"

Choose a reason for hiding this comment

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

".inline.hpp" files must not be included by ".hpp" files.

#include "gc/shared/stringdedup/stringDedup.hpp"
#include "memory/allStatic.hpp"
#include "oops/oopsHierarchy.hpp"
@@ -35,13 +36,13 @@ class psStringDedup : AllStatic {
// Candidate selection policy for young during evacuation.
// If to is young then age should be the new (survivor's) age.
// if to is old then age should be the age of the copied from object.
static bool is_candidate_from_evacuation(const Klass* klass,
uint age,
static bool is_candidate_from_evacuation(oop obj,

Choose a reason for hiding this comment

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

This comment was just copied from G1 and isn't right for this 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.

Leftover from an earlier version, fixed.

bool obj_is_tenured) {
return StringDedup::is_enabled_string(klass) &&
return StringDedup::is_enabled() &&
java_lang_String::is_instance_inlined(obj) &&
(obj_is_tenured ?
StringDedup::is_below_threshold_age(age) :
StringDedup::is_threshold_age(age));
StringDedup::is_below_threshold_age(obj->age()) :
StringDedup::is_threshold_age(obj->age()));
}
};
#endif // SHARE_GC_PARALLEL_PSSTRINGDEDUP_HPP
Original file line number Diff line number Diff line change
@@ -116,7 +116,7 @@ size_t StringDedup::Config::desired_table_size(size_t entry_count) {
bool StringDedup::Config::ergo_initialize() {
if (!UseStringDeduplication) {
return true;
} else if (UseEpsilonGC || UseSerialGC) {
} else if (!UseG1GC && !UseShenandoahGC && !UseZGC && !UseParallelGC) {
// String deduplication requested but not supported by the selected GC.
// Warn and force disable, but don't error except in debug build with
// incorrect default.