-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
Changes from 1 commit
b1fe77a
cd22f56
ba73d85
90dec08
bc1cca9
2f2a2cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
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.
Update indentation? Or is github not showing the whitespace-only change?
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.
Need to update the indentation! Thanks