Skip to content

Commit a8e3eab

Browse files
jaokimkstefanj
authored andcommittedNov 26, 2020
8245026: PsAdaptiveSizePolicy::_old_gen_policy_is_ready is unused
Reviewed-by: sjohanss, pliden
1 parent b1d1499 commit a8e3eab

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed
 

‎src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ PSAdaptiveSizePolicy::PSAdaptiveSizePolicy(size_t init_eden_size,
6060
_live_at_last_full_gc(init_promo_size),
6161
_change_old_gen_for_min_pauses(0),
6262
_change_young_gen_for_maj_pauses(0),
63-
_old_gen_policy_is_ready(false),
6463
_young_gen_size_increment_supplement(YoungGenerationSizeSupplement),
6564
_old_gen_size_increment_supplement(TenuredGenerationSizeSupplement)
6665
{
@@ -164,12 +163,6 @@ void PSAdaptiveSizePolicy::major_collection_end(size_t amount_live,
164163
// Update the amount live at the end of a full GC
165164
_live_at_last_full_gc = amount_live;
166165

167-
// The policy does not have enough data until at least some major collections
168-
// have been done.
169-
if (_avg_major_pause->count() >= AdaptiveSizePolicyReadyThreshold) {
170-
_old_gen_policy_is_ready = true;
171-
}
172-
173166
// Interval times use this timer to measure the interval that
174167
// the mutator runs. Reset after the GC pause has been measured.
175168
_major_timer.reset();

‎src/hotspot/share/gc/parallel/psAdaptiveSizePolicy.hpp

-6
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,6 @@ class PSAdaptiveSizePolicy : public AdaptiveSizePolicy {
106106
// increase/decrease the young generation for major pause time
107107
int _change_young_gen_for_maj_pauses;
108108

109-
110-
// Flag indicating that the adaptive policy is ready to use
111-
bool _old_gen_policy_is_ready;
112-
113109
// To facilitate faster growth at start up, supplement the normal
114110
// growth percentage for the young gen eden and the
115111
// old gen space for promotion with these value which decay
@@ -310,8 +306,6 @@ class PSAdaptiveSizePolicy : public AdaptiveSizePolicy {
310306
}
311307
float major_collection_slope() { return _major_collection_estimator->slope();}
312308

313-
bool old_gen_policy_is_ready() { return _old_gen_policy_is_ready; }
314-
315309
// Given the amount of live data in the heap, should we
316310
// perform a Full GC?
317311
bool should_full_GC(size_t live_in_old_gen);

0 commit comments

Comments
 (0)
Please sign in to comment.