mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 03:54:33 +02:00
8026851: Remove unnecessary code in GenRemSet
Removed the GenRemSet::rem_set_name() since we only have one remset. Reviewed-by: stefank, mgerdin, tschatzl
This commit is contained in:
parent
f12f991935
commit
1123a5596c
4 changed files with 1 additions and 6 deletions
|
@ -320,7 +320,7 @@ G1CollectorPolicy::G1CollectorPolicy() :
|
||||||
|
|
||||||
void G1CollectorPolicy::initialize_flags() {
|
void G1CollectorPolicy::initialize_flags() {
|
||||||
_min_alignment = HeapRegion::GrainBytes;
|
_min_alignment = HeapRegion::GrainBytes;
|
||||||
size_t card_table_alignment = GenRemSet::max_alignment_constraint(rem_set_name());
|
size_t card_table_alignment = GenRemSet::max_alignment_constraint(GenRemSet::CardTable);
|
||||||
size_t page_size = UseLargePages ? os::large_page_size() : os::vm_page_size();
|
size_t page_size = UseLargePages ? os::large_page_size() : os::vm_page_size();
|
||||||
_max_alignment = MAX3(card_table_alignment, _min_alignment, page_size);
|
_max_alignment = MAX3(card_table_alignment, _min_alignment, page_size);
|
||||||
if (SurvivorRatio < 1) {
|
if (SurvivorRatio < 1) {
|
||||||
|
|
|
@ -665,8 +665,6 @@ public:
|
||||||
|
|
||||||
BarrierSet::Name barrier_set_name() { return BarrierSet::G1SATBCTLogging; }
|
BarrierSet::Name barrier_set_name() { return BarrierSet::G1SATBCTLogging; }
|
||||||
|
|
||||||
GenRemSet::Name rem_set_name() { return GenRemSet::CardTable; }
|
|
||||||
|
|
||||||
bool need_to_start_conc_mark(const char* source, size_t alloc_word_size = 0);
|
bool need_to_start_conc_mark(const char* source, size_t alloc_word_size = 0);
|
||||||
|
|
||||||
// Record the start and end of an evacuation pause.
|
// Record the start and end of an evacuation pause.
|
||||||
|
|
|
@ -105,7 +105,6 @@ bool CollectorPolicy::use_should_clear_all_soft_refs(bool v) {
|
||||||
|
|
||||||
GenRemSet* CollectorPolicy::create_rem_set(MemRegion whole_heap,
|
GenRemSet* CollectorPolicy::create_rem_set(MemRegion whole_heap,
|
||||||
int max_covered_regions) {
|
int max_covered_regions) {
|
||||||
assert(rem_set_name() == GenRemSet::CardTable, "unrecognized GenRemSet::Name");
|
|
||||||
return new CardTableRS(whole_heap, max_covered_regions);
|
return new CardTableRS(whole_heap, max_covered_regions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -151,7 +151,6 @@ class CollectorPolicy : public CHeapObj<mtGC> {
|
||||||
|
|
||||||
|
|
||||||
virtual BarrierSet::Name barrier_set_name() = 0;
|
virtual BarrierSet::Name barrier_set_name() = 0;
|
||||||
virtual GenRemSet::Name rem_set_name() = 0;
|
|
||||||
|
|
||||||
// Create the remembered set (to cover the given reserved region,
|
// Create the remembered set (to cover the given reserved region,
|
||||||
// allowing breaking up into at most "max_covered_regions").
|
// allowing breaking up into at most "max_covered_regions").
|
||||||
|
@ -303,7 +302,6 @@ class TwoGenerationCollectorPolicy : public GenCollectorPolicy {
|
||||||
|
|
||||||
int number_of_generations() { return 2; }
|
int number_of_generations() { return 2; }
|
||||||
BarrierSet::Name barrier_set_name() { return BarrierSet::CardTableModRef; }
|
BarrierSet::Name barrier_set_name() { return BarrierSet::CardTableModRef; }
|
||||||
GenRemSet::Name rem_set_name() { return GenRemSet::CardTable; }
|
|
||||||
|
|
||||||
virtual CollectorPolicy::Name kind() {
|
virtual CollectorPolicy::Name kind() {
|
||||||
return CollectorPolicy::TwoGenerationCollectorPolicyKind;
|
return CollectorPolicy::TwoGenerationCollectorPolicyKind;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue