author | tschatzl |
Wed, 28 Mar 2018 16:39:32 +0200 | |
changeset 49632 | 64f9ebc85e67 |
parent 49607 | acffe6ff3ae7 |
child 49643 | a3453bbd5418 |
permissions | -rw-r--r-- |
38076 | 1 |
/* |
49375 | 2 |
* Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved. |
38076 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "precompiled.hpp" |
|
26 |
#include "gc/g1/concurrentMarkThread.inline.hpp" |
|
27 |
#include "gc/g1/g1Analytics.hpp" |
|
28 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
|
29 |
#include "gc/g1/g1CollectionSet.hpp" |
|
30 |
#include "gc/g1/g1ConcurrentMark.hpp" |
|
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47681
diff
changeset
|
31 |
#include "gc/g1/g1ConcurrentRefine.hpp" |
38172
90f405aac699
8155524: HotCardCache shouldn't be part of ConcurrentG1Refine
kbarrett
parents:
38162
diff
changeset
|
32 |
#include "gc/g1/g1HotCardCache.hpp" |
38076 | 33 |
#include "gc/g1/g1IHOPControl.hpp" |
34 |
#include "gc/g1/g1GCPhaseTimes.hpp" |
|
35 |
#include "gc/g1/g1Policy.hpp" |
|
38186
ccaa890f8617
8155943: Move G1Eden/SurvivorRegions into their own source files
mgerdin
parents:
38185
diff
changeset
|
36 |
#include "gc/g1/g1SurvivorRegions.hpp" |
38076 | 37 |
#include "gc/g1/g1YoungGenSizer.hpp" |
38 |
#include "gc/g1/heapRegion.inline.hpp" |
|
39 |
#include "gc/g1/heapRegionRemSet.hpp" |
|
40 |
#include "gc/shared/gcPolicyCounters.hpp" |
|
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
41 |
#include "logging/logStream.hpp" |
38076 | 42 |
#include "runtime/arguments.hpp" |
43 |
#include "runtime/java.hpp" |
|
44 |
#include "runtime/mutexLocker.hpp" |
|
45 |
#include "utilities/debug.hpp" |
|
38162
4e2c3433a3ae
8150393: Maintain the set of survivor regions in an array between GCs
mgerdin
parents:
38107
diff
changeset
|
46 |
#include "utilities/growableArray.hpp" |
38076 | 47 |
#include "utilities/pair.hpp" |
48 |
||
49375 | 49 |
G1Policy::G1Policy(STWGCTimer* gc_timer) : |
38076 | 50 |
_predictor(G1ConfidencePercent / 100.0), |
51 |
_analytics(new G1Analytics(&_predictor)), |
|
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
52 |
_remset_tracker(), |
38076 | 53 |
_mmu_tracker(new G1MMUTrackerQueue(GCPauseIntervalMillis / 1000.0, MaxGCPauseMillis / 1000.0)), |
54 |
_ihop_control(create_ihop_control(&_predictor)), |
|
48117
d64722b0b371
8080345: With perm gen gone, perfdata counter sun.gc.policy.generations should be 2, not 3
ehelin
parents:
47789
diff
changeset
|
55 |
_policy_counters(new GCPolicyCounters("GarbageFirst", 1, 2)), |
38076 | 56 |
_young_list_fixed_length(0), |
38185
c432f8466c73
8155634: Clean out old logging and dead code from SurvRateGroup
mgerdin
parents:
38183
diff
changeset
|
57 |
_short_lived_surv_rate_group(new SurvRateGroup()), |
c432f8466c73
8155634: Clean out old logging and dead code from SurvRateGroup
mgerdin
parents:
38183
diff
changeset
|
58 |
_survivor_surv_rate_group(new SurvRateGroup()), |
38076 | 59 |
_reserve_factor((double) G1ReservePercent / 100.0), |
60 |
_reserve_regions(0), |
|
61 |
_rs_lengths_prediction(0), |
|
62 |
_bytes_allocated_in_old_since_last_gc(0), |
|
63 |
_initial_mark_to_mixed(), |
|
64 |
_collection_set(NULL), |
|
65 |
_g1(NULL), |
|
46795
623a5e42deb6
8173335: Improve logging for j.l.ref.reference processing
sangheki
parents:
41284
diff
changeset
|
66 |
_phase_times(new G1GCPhaseTimes(gc_timer, ParallelGCThreads)), |
38076 | 67 |
_tenuring_threshold(MaxTenuringThreshold), |
68 |
_max_survivor_regions(0), |
|
41284
b4276ec89d0d
8164482: [REDO] G1 does not implement millis_since_last_gc which is needed by RMI GC
jprovino
parents:
40914
diff
changeset
|
69 |
_survivors_age_table(true), |
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
70 |
_collection_pause_end_millis(os::javaTimeNanos() / NANOSECS_PER_MILLISEC) { |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
71 |
} |
38076 | 72 |
|
49375 | 73 |
G1Policy::~G1Policy() { |
38076 | 74 |
delete _ihop_control; |
75 |
} |
|
76 |
||
49375 | 77 |
G1CollectorState* G1Policy::collector_state() const { return _g1->collector_state(); } |
38076 | 78 |
|
49375 | 79 |
void G1Policy::init(G1CollectedHeap* g1h, G1CollectionSet* collection_set) { |
38076 | 80 |
_g1 = g1h; |
81 |
_collection_set = collection_set; |
|
82 |
||
83 |
assert(Heap_lock->owned_by_self(), "Locking discipline."); |
|
84 |
||
85 |
if (!adaptive_young_list_length()) { |
|
86 |
_young_list_fixed_length = _young_gen_sizer.min_desired_young_length(); |
|
87 |
} |
|
88 |
_young_gen_sizer.adjust_max_new_size(_g1->max_regions()); |
|
89 |
||
90 |
_free_regions_at_end_of_collection = _g1->num_free_regions(); |
|
91 |
||
92 |
update_young_list_max_and_target_length(); |
|
93 |
// We may immediately start allocating regions and placing them on the |
|
94 |
// collection set list. Initialize the per-collection set info |
|
95 |
_collection_set->start_incremental_building(); |
|
96 |
} |
|
97 |
||
49375 | 98 |
void G1Policy::note_gc_start() { |
38076 | 99 |
phase_times()->note_gc_start(); |
100 |
} |
|
101 |
||
49392
2956d0ece7a9
8199282: Remove ValueObj class for allocation subclassing for gc code
coleenp
parents:
49375
diff
changeset
|
102 |
class G1YoungLengthPredictor { |
40000 | 103 |
const bool _during_cm; |
104 |
const double _base_time_ms; |
|
105 |
const double _base_free_regions; |
|
106 |
const double _target_pause_time_ms; |
|
49375 | 107 |
const G1Policy* const _policy; |
38076 | 108 |
|
40000 | 109 |
public: |
110 |
G1YoungLengthPredictor(bool during_cm, |
|
111 |
double base_time_ms, |
|
112 |
double base_free_regions, |
|
113 |
double target_pause_time_ms, |
|
49375 | 114 |
const G1Policy* policy) : |
40000 | 115 |
_during_cm(during_cm), |
116 |
_base_time_ms(base_time_ms), |
|
117 |
_base_free_regions(base_free_regions), |
|
118 |
_target_pause_time_ms(target_pause_time_ms), |
|
119 |
_policy(policy) {} |
|
120 |
||
121 |
bool will_fit(uint young_length) const { |
|
122 |
if (young_length >= _base_free_regions) { |
|
123 |
// end condition 1: not enough space for the young regions |
|
124 |
return false; |
|
125 |
} |
|
38076 | 126 |
|
40000 | 127 |
const double accum_surv_rate = _policy->accum_yg_surv_rate_pred((int) young_length - 1); |
128 |
const size_t bytes_to_copy = |
|
129 |
(size_t) (accum_surv_rate * (double) HeapRegion::GrainBytes); |
|
130 |
const double copy_time_ms = |
|
131 |
_policy->analytics()->predict_object_copy_time_ms(bytes_to_copy, _during_cm); |
|
132 |
const double young_other_time_ms = _policy->analytics()->predict_young_other_time_ms(young_length); |
|
133 |
const double pause_time_ms = _base_time_ms + copy_time_ms + young_other_time_ms; |
|
134 |
if (pause_time_ms > _target_pause_time_ms) { |
|
135 |
// end condition 2: prediction is over the target pause time |
|
136 |
return false; |
|
137 |
} |
|
138 |
||
139 |
const size_t free_bytes = (_base_free_regions - young_length) * HeapRegion::GrainBytes; |
|
38076 | 140 |
|
40000 | 141 |
// When copying, we will likely need more bytes free than is live in the region. |
142 |
// Add some safety margin to factor in the confidence of our guess, and the |
|
143 |
// natural expected waste. |
|
144 |
// (100.0 / G1ConfidencePercent) is a scale factor that expresses the uncertainty |
|
145 |
// of the calculation: the lower the confidence, the more headroom. |
|
146 |
// (100 + TargetPLABWastePct) represents the increase in expected bytes during |
|
147 |
// copying due to anticipated waste in the PLABs. |
|
148 |
const double safety_factor = (100.0 / G1ConfidencePercent) * (100 + TargetPLABWastePct) / 100.0; |
|
149 |
const size_t expected_bytes_to_copy = (size_t)(safety_factor * bytes_to_copy); |
|
38076 | 150 |
|
40000 | 151 |
if (expected_bytes_to_copy > free_bytes) { |
152 |
// end condition 3: out-of-space |
|
153 |
return false; |
|
154 |
} |
|
155 |
||
156 |
// success! |
|
157 |
return true; |
|
38076 | 158 |
} |
40000 | 159 |
}; |
38076 | 160 |
|
49375 | 161 |
void G1Policy::record_new_heap_size(uint new_number_of_regions) { |
38076 | 162 |
// re-calculate the necessary reserve |
163 |
double reserve_regions_d = (double) new_number_of_regions * _reserve_factor; |
|
164 |
// We use ceiling so that if reserve_regions_d is > 0.0 (but |
|
165 |
// smaller than 1.0) we'll get 1. |
|
166 |
_reserve_regions = (uint) ceil(reserve_regions_d); |
|
167 |
||
168 |
_young_gen_sizer.heap_size_changed(new_number_of_regions); |
|
169 |
||
170 |
_ihop_control->update_target_occupancy(new_number_of_regions * HeapRegion::GrainBytes); |
|
171 |
} |
|
172 |
||
49375 | 173 |
uint G1Policy::calculate_young_list_desired_min_length(uint base_min_length) const { |
38076 | 174 |
uint desired_min_length = 0; |
175 |
if (adaptive_young_list_length()) { |
|
176 |
if (_analytics->num_alloc_rate_ms() > 3) { |
|
177 |
double now_sec = os::elapsedTime(); |
|
178 |
double when_ms = _mmu_tracker->when_max_gc_sec(now_sec) * 1000.0; |
|
179 |
double alloc_rate_ms = _analytics->predict_alloc_rate_ms(); |
|
180 |
desired_min_length = (uint) ceil(alloc_rate_ms * when_ms); |
|
181 |
} else { |
|
182 |
// otherwise we don't have enough info to make the prediction |
|
183 |
} |
|
184 |
} |
|
185 |
desired_min_length += base_min_length; |
|
186 |
// make sure we don't go below any user-defined minimum bound |
|
187 |
return MAX2(_young_gen_sizer.min_desired_young_length(), desired_min_length); |
|
188 |
} |
|
189 |
||
49375 | 190 |
uint G1Policy::calculate_young_list_desired_max_length() const { |
38076 | 191 |
// Here, we might want to also take into account any additional |
192 |
// constraints (i.e., user-defined minimum bound). Currently, we |
|
193 |
// effectively don't set this bound. |
|
194 |
return _young_gen_sizer.max_desired_young_length(); |
|
195 |
} |
|
196 |
||
49375 | 197 |
uint G1Policy::update_young_list_max_and_target_length() { |
38076 | 198 |
return update_young_list_max_and_target_length(_analytics->predict_rs_lengths()); |
199 |
} |
|
200 |
||
49375 | 201 |
uint G1Policy::update_young_list_max_and_target_length(size_t rs_lengths) { |
38076 | 202 |
uint unbounded_target_length = update_young_list_target_length(rs_lengths); |
203 |
update_max_gc_locker_expansion(); |
|
204 |
return unbounded_target_length; |
|
205 |
} |
|
206 |
||
49375 | 207 |
uint G1Policy::update_young_list_target_length(size_t rs_lengths) { |
38076 | 208 |
YoungTargetLengths young_lengths = young_list_target_lengths(rs_lengths); |
209 |
_young_list_target_length = young_lengths.first; |
|
210 |
return young_lengths.second; |
|
211 |
} |
|
212 |
||
49375 | 213 |
G1Policy::YoungTargetLengths G1Policy::young_list_target_lengths(size_t rs_lengths) const { |
38076 | 214 |
YoungTargetLengths result; |
215 |
||
216 |
// Calculate the absolute and desired min bounds first. |
|
217 |
||
218 |
// This is how many young regions we already have (currently: the survivors). |
|
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
219 |
const uint base_min_length = _g1->survivor_regions_count(); |
38076 | 220 |
uint desired_min_length = calculate_young_list_desired_min_length(base_min_length); |
221 |
// This is the absolute minimum young length. Ensure that we |
|
222 |
// will at least have one eden region available for allocation. |
|
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
223 |
uint absolute_min_length = base_min_length + MAX2(_g1->eden_regions_count(), (uint)1); |
38076 | 224 |
// If we shrank the young list target it should not shrink below the current size. |
225 |
desired_min_length = MAX2(desired_min_length, absolute_min_length); |
|
226 |
// Calculate the absolute and desired max bounds. |
|
227 |
||
228 |
uint desired_max_length = calculate_young_list_desired_max_length(); |
|
229 |
||
230 |
uint young_list_target_length = 0; |
|
231 |
if (adaptive_young_list_length()) { |
|
232 |
if (collector_state()->gcs_are_young()) { |
|
233 |
young_list_target_length = |
|
234 |
calculate_young_list_target_length(rs_lengths, |
|
235 |
base_min_length, |
|
236 |
desired_min_length, |
|
237 |
desired_max_length); |
|
238 |
} else { |
|
239 |
// Don't calculate anything and let the code below bound it to |
|
240 |
// the desired_min_length, i.e., do the next GC as soon as |
|
241 |
// possible to maximize how many old regions we can add to it. |
|
242 |
} |
|
243 |
} else { |
|
244 |
// The user asked for a fixed young gen so we'll fix the young gen |
|
245 |
// whether the next GC is young or mixed. |
|
246 |
young_list_target_length = _young_list_fixed_length; |
|
247 |
} |
|
248 |
||
249 |
result.second = young_list_target_length; |
|
250 |
||
251 |
// We will try our best not to "eat" into the reserve. |
|
252 |
uint absolute_max_length = 0; |
|
253 |
if (_free_regions_at_end_of_collection > _reserve_regions) { |
|
254 |
absolute_max_length = _free_regions_at_end_of_collection - _reserve_regions; |
|
255 |
} |
|
256 |
if (desired_max_length > absolute_max_length) { |
|
257 |
desired_max_length = absolute_max_length; |
|
258 |
} |
|
259 |
||
260 |
// Make sure we don't go over the desired max length, nor under the |
|
261 |
// desired min length. In case they clash, desired_min_length wins |
|
262 |
// which is why that test is second. |
|
263 |
if (young_list_target_length > desired_max_length) { |
|
264 |
young_list_target_length = desired_max_length; |
|
265 |
} |
|
266 |
if (young_list_target_length < desired_min_length) { |
|
267 |
young_list_target_length = desired_min_length; |
|
268 |
} |
|
269 |
||
270 |
assert(young_list_target_length > base_min_length, |
|
271 |
"we should be able to allocate at least one eden region"); |
|
272 |
assert(young_list_target_length >= absolute_min_length, "post-condition"); |
|
273 |
||
274 |
result.first = young_list_target_length; |
|
275 |
return result; |
|
276 |
} |
|
277 |
||
278 |
uint |
|
49375 | 279 |
G1Policy::calculate_young_list_target_length(size_t rs_lengths, |
38076 | 280 |
uint base_min_length, |
281 |
uint desired_min_length, |
|
282 |
uint desired_max_length) const { |
|
283 |
assert(adaptive_young_list_length(), "pre-condition"); |
|
284 |
assert(collector_state()->gcs_are_young(), "only call this for young GCs"); |
|
285 |
||
286 |
// In case some edge-condition makes the desired max length too small... |
|
287 |
if (desired_max_length <= desired_min_length) { |
|
288 |
return desired_min_length; |
|
289 |
} |
|
290 |
||
291 |
// We'll adjust min_young_length and max_young_length not to include |
|
292 |
// the already allocated young regions (i.e., so they reflect the |
|
293 |
// min and max eden regions we'll allocate). The base_min_length |
|
294 |
// will be reflected in the predictions by the |
|
295 |
// survivor_regions_evac_time prediction. |
|
296 |
assert(desired_min_length > base_min_length, "invariant"); |
|
297 |
uint min_young_length = desired_min_length - base_min_length; |
|
298 |
assert(desired_max_length > base_min_length, "invariant"); |
|
299 |
uint max_young_length = desired_max_length - base_min_length; |
|
300 |
||
40000 | 301 |
const double target_pause_time_ms = _mmu_tracker->max_gc_time() * 1000.0; |
302 |
const double survivor_regions_evac_time = predict_survivor_regions_evac_time(); |
|
303 |
const size_t pending_cards = _analytics->predict_pending_cards(); |
|
304 |
const size_t adj_rs_lengths = rs_lengths + _analytics->predict_rs_length_diff(); |
|
305 |
const size_t scanned_cards = _analytics->predict_card_num(adj_rs_lengths, /* gcs_are_young */ true); |
|
306 |
const double base_time_ms = |
|
38076 | 307 |
predict_base_elapsed_time_ms(pending_cards, scanned_cards) + |
308 |
survivor_regions_evac_time; |
|
40000 | 309 |
const uint available_free_regions = _free_regions_at_end_of_collection; |
310 |
const uint base_free_regions = |
|
311 |
available_free_regions > _reserve_regions ? available_free_regions - _reserve_regions : 0; |
|
38076 | 312 |
|
313 |
// Here, we will make sure that the shortest young length that |
|
314 |
// makes sense fits within the target pause time. |
|
315 |
||
40000 | 316 |
G1YoungLengthPredictor p(collector_state()->during_concurrent_mark(), |
317 |
base_time_ms, |
|
318 |
base_free_regions, |
|
319 |
target_pause_time_ms, |
|
320 |
this); |
|
321 |
if (p.will_fit(min_young_length)) { |
|
38076 | 322 |
// The shortest young length will fit into the target pause time; |
323 |
// we'll now check whether the absolute maximum number of young |
|
324 |
// regions will fit in the target pause time. If not, we'll do |
|
325 |
// a binary search between min_young_length and max_young_length. |
|
40000 | 326 |
if (p.will_fit(max_young_length)) { |
38076 | 327 |
// The maximum young length will fit into the target pause time. |
328 |
// We are done so set min young length to the maximum length (as |
|
329 |
// the result is assumed to be returned in min_young_length). |
|
330 |
min_young_length = max_young_length; |
|
331 |
} else { |
|
332 |
// The maximum possible number of young regions will not fit within |
|
333 |
// the target pause time so we'll search for the optimal |
|
334 |
// length. The loop invariants are: |
|
335 |
// |
|
336 |
// min_young_length < max_young_length |
|
337 |
// min_young_length is known to fit into the target pause time |
|
338 |
// max_young_length is known not to fit into the target pause time |
|
339 |
// |
|
340 |
// Going into the loop we know the above hold as we've just |
|
341 |
// checked them. Every time around the loop we check whether |
|
342 |
// the middle value between min_young_length and |
|
343 |
// max_young_length fits into the target pause time. If it |
|
344 |
// does, it becomes the new min. If it doesn't, it becomes |
|
345 |
// the new max. This way we maintain the loop invariants. |
|
346 |
||
347 |
assert(min_young_length < max_young_length, "invariant"); |
|
348 |
uint diff = (max_young_length - min_young_length) / 2; |
|
349 |
while (diff > 0) { |
|
350 |
uint young_length = min_young_length + diff; |
|
40000 | 351 |
if (p.will_fit(young_length)) { |
38076 | 352 |
min_young_length = young_length; |
353 |
} else { |
|
354 |
max_young_length = young_length; |
|
355 |
} |
|
356 |
assert(min_young_length < max_young_length, "invariant"); |
|
357 |
diff = (max_young_length - min_young_length) / 2; |
|
358 |
} |
|
359 |
// The results is min_young_length which, according to the |
|
360 |
// loop invariants, should fit within the target pause time. |
|
361 |
||
362 |
// These are the post-conditions of the binary search above: |
|
363 |
assert(min_young_length < max_young_length, |
|
364 |
"otherwise we should have discovered that max_young_length " |
|
365 |
"fits into the pause target and not done the binary search"); |
|
40000 | 366 |
assert(p.will_fit(min_young_length), |
38076 | 367 |
"min_young_length, the result of the binary search, should " |
368 |
"fit into the pause target"); |
|
40000 | 369 |
assert(!p.will_fit(min_young_length + 1), |
38076 | 370 |
"min_young_length, the result of the binary search, should be " |
371 |
"optimal, so no larger length should fit into the pause target"); |
|
372 |
} |
|
373 |
} else { |
|
374 |
// Even the minimum length doesn't fit into the pause time |
|
375 |
// target, return it as the result nevertheless. |
|
376 |
} |
|
377 |
return base_min_length + min_young_length; |
|
378 |
} |
|
379 |
||
49375 | 380 |
double G1Policy::predict_survivor_regions_evac_time() const { |
38076 | 381 |
double survivor_regions_evac_time = 0.0; |
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
382 |
const GrowableArray<HeapRegion*>* survivor_regions = _g1->survivor()->regions(); |
38162
4e2c3433a3ae
8150393: Maintain the set of survivor regions in an array between GCs
mgerdin
parents:
38107
diff
changeset
|
383 |
|
4e2c3433a3ae
8150393: Maintain the set of survivor regions in an array between GCs
mgerdin
parents:
38107
diff
changeset
|
384 |
for (GrowableArrayIterator<HeapRegion*> it = survivor_regions->begin(); |
4e2c3433a3ae
8150393: Maintain the set of survivor regions in an array between GCs
mgerdin
parents:
38107
diff
changeset
|
385 |
it != survivor_regions->end(); |
4e2c3433a3ae
8150393: Maintain the set of survivor regions in an array between GCs
mgerdin
parents:
38107
diff
changeset
|
386 |
++it) { |
4e2c3433a3ae
8150393: Maintain the set of survivor regions in an array between GCs
mgerdin
parents:
38107
diff
changeset
|
387 |
survivor_regions_evac_time += predict_region_elapsed_time_ms(*it, collector_state()->gcs_are_young()); |
38076 | 388 |
} |
389 |
return survivor_regions_evac_time; |
|
390 |
} |
|
391 |
||
49375 | 392 |
void G1Policy::revise_young_list_target_length_if_necessary(size_t rs_lengths) { |
38076 | 393 |
guarantee( adaptive_young_list_length(), "should not call this otherwise" ); |
394 |
||
395 |
if (rs_lengths > _rs_lengths_prediction) { |
|
396 |
// add 10% to avoid having to recalculate often |
|
397 |
size_t rs_lengths_prediction = rs_lengths * 1100 / 1000; |
|
398 |
update_rs_lengths_prediction(rs_lengths_prediction); |
|
399 |
||
400 |
update_young_list_max_and_target_length(rs_lengths_prediction); |
|
401 |
} |
|
402 |
} |
|
403 |
||
49375 | 404 |
void G1Policy::update_rs_lengths_prediction() { |
38076 | 405 |
update_rs_lengths_prediction(_analytics->predict_rs_lengths()); |
406 |
} |
|
407 |
||
49375 | 408 |
void G1Policy::update_rs_lengths_prediction(size_t prediction) { |
38076 | 409 |
if (collector_state()->gcs_are_young() && adaptive_young_list_length()) { |
410 |
_rs_lengths_prediction = prediction; |
|
411 |
} |
|
412 |
} |
|
413 |
||
49375 | 414 |
void G1Policy::record_full_collection_start() { |
38076 | 415 |
_full_collection_start_sec = os::elapsedTime(); |
416 |
// Release the future to-space so that it is available for compaction into. |
|
417 |
collector_state()->set_full_collection(true); |
|
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
418 |
cset_chooser()->clear(); |
38076 | 419 |
} |
420 |
||
49375 | 421 |
void G1Policy::record_full_collection_end() { |
38076 | 422 |
// Consider this like a collection pause for the purposes of allocation |
423 |
// since last pause. |
|
424 |
double end_sec = os::elapsedTime(); |
|
425 |
double full_gc_time_sec = end_sec - _full_collection_start_sec; |
|
426 |
double full_gc_time_ms = full_gc_time_sec * 1000.0; |
|
427 |
||
428 |
_analytics->update_recent_gc_times(end_sec, full_gc_time_ms); |
|
429 |
||
430 |
collector_state()->set_full_collection(false); |
|
431 |
||
432 |
// "Nuke" the heuristics that control the young/mixed GC |
|
433 |
// transitions and make sure we start with young GCs after the Full GC. |
|
434 |
collector_state()->set_gcs_are_young(true); |
|
435 |
collector_state()->set_last_young_gc(false); |
|
436 |
collector_state()->set_initiate_conc_mark_if_possible(need_to_start_conc_mark("end of Full GC", 0)); |
|
437 |
collector_state()->set_during_initial_mark_pause(false); |
|
438 |
collector_state()->set_in_marking_window(false); |
|
439 |
collector_state()->set_in_marking_window_im(false); |
|
440 |
||
441 |
_short_lived_surv_rate_group->start_adding_regions(); |
|
442 |
// also call this on any additional surv rate groups |
|
443 |
||
444 |
_free_regions_at_end_of_collection = _g1->num_free_regions(); |
|
445 |
// Reset survivors SurvRateGroup. |
|
446 |
_survivor_surv_rate_group->reset(); |
|
447 |
update_young_list_max_and_target_length(); |
|
448 |
update_rs_lengths_prediction(); |
|
449 |
||
450 |
_bytes_allocated_in_old_since_last_gc = 0; |
|
451 |
||
452 |
record_pause(FullGC, _full_collection_start_sec, end_sec); |
|
453 |
} |
|
454 |
||
49375 | 455 |
void G1Policy::record_collection_pause_start(double start_time_sec) { |
38076 | 456 |
// We only need to do this here as the policy will only be applied |
457 |
// to the GC we're about to start. so, no point is calculating this |
|
458 |
// every time we calculate / recalculate the target young length. |
|
459 |
update_survivors_policy(); |
|
460 |
||
461 |
assert(_g1->used() == _g1->recalculate_used(), |
|
462 |
"sanity, used: " SIZE_FORMAT " recalculate_used: " SIZE_FORMAT, |
|
463 |
_g1->used(), _g1->recalculate_used()); |
|
464 |
||
465 |
phase_times()->record_cur_collection_start_sec(start_time_sec); |
|
466 |
_pending_cards = _g1->pending_card_num(); |
|
467 |
||
468 |
_collection_set->reset_bytes_used_before(); |
|
469 |
_bytes_copied_during_gc = 0; |
|
470 |
||
471 |
collector_state()->set_last_gc_was_young(false); |
|
472 |
||
473 |
// do that for any other surv rate groups |
|
474 |
_short_lived_surv_rate_group->stop_adding_regions(); |
|
475 |
_survivors_age_table.clear(); |
|
476 |
||
39698
4016de4e596b
8159978: Use an array to store the collection set regions instead of linking through regions
tschatzl
parents:
38201
diff
changeset
|
477 |
assert(_g1->collection_set()->verify_young_ages(), "region age verification failed"); |
38076 | 478 |
} |
479 |
||
49375 | 480 |
void G1Policy::record_concurrent_mark_init_end(double mark_init_elapsed_time_ms) { |
38076 | 481 |
collector_state()->set_during_marking(true); |
482 |
assert(!collector_state()->initiate_conc_mark_if_possible(), "we should have cleared it by now"); |
|
483 |
collector_state()->set_during_initial_mark_pause(false); |
|
484 |
} |
|
485 |
||
49375 | 486 |
void G1Policy::record_concurrent_mark_remark_start() { |
38076 | 487 |
_mark_remark_start_sec = os::elapsedTime(); |
488 |
collector_state()->set_during_marking(false); |
|
489 |
} |
|
490 |
||
49375 | 491 |
void G1Policy::record_concurrent_mark_remark_end() { |
38076 | 492 |
double end_time_sec = os::elapsedTime(); |
493 |
double elapsed_time_ms = (end_time_sec - _mark_remark_start_sec)*1000.0; |
|
494 |
_analytics->report_concurrent_mark_remark_times_ms(elapsed_time_ms); |
|
495 |
_analytics->append_prev_collection_pause_end_ms(elapsed_time_ms); |
|
496 |
||
497 |
record_pause(Remark, _mark_remark_start_sec, end_time_sec); |
|
498 |
} |
|
499 |
||
49375 | 500 |
void G1Policy::record_concurrent_mark_cleanup_start() { |
38076 | 501 |
_mark_cleanup_start_sec = os::elapsedTime(); |
502 |
} |
|
503 |
||
49375 | 504 |
double G1Policy::average_time_ms(G1GCPhaseTimes::GCParPhases phase) const { |
38076 | 505 |
return phase_times()->average_time_ms(phase); |
506 |
} |
|
507 |
||
49375 | 508 |
double G1Policy::young_other_time_ms() const { |
38076 | 509 |
return phase_times()->young_cset_choice_time_ms() + |
39979 | 510 |
phase_times()->average_time_ms(G1GCPhaseTimes::YoungFreeCSet); |
38076 | 511 |
} |
512 |
||
49375 | 513 |
double G1Policy::non_young_other_time_ms() const { |
38076 | 514 |
return phase_times()->non_young_cset_choice_time_ms() + |
39979 | 515 |
phase_times()->average_time_ms(G1GCPhaseTimes::NonYoungFreeCSet); |
38076 | 516 |
} |
517 |
||
49375 | 518 |
double G1Policy::other_time_ms(double pause_time_ms) const { |
38107
aee6db99b6c7
8155087: Calculation in other_time_ms() is incorrect
sjohanss
parents:
38106
diff
changeset
|
519 |
return pause_time_ms - phase_times()->cur_collection_par_time_ms(); |
38076 | 520 |
} |
521 |
||
49375 | 522 |
double G1Policy::constant_other_time_ms(double pause_time_ms) const { |
39979 | 523 |
return other_time_ms(pause_time_ms) - phase_times()->total_free_cset_time_ms(); |
38076 | 524 |
} |
525 |
||
49375 | 526 |
CollectionSetChooser* G1Policy::cset_chooser() const { |
38076 | 527 |
return _collection_set->cset_chooser(); |
528 |
} |
|
529 |
||
49375 | 530 |
bool G1Policy::about_to_start_mixed_phase() const { |
47678 | 531 |
return _g1->concurrent_mark()->cm_thread()->during_cycle() || collector_state()->last_young_gc(); |
38076 | 532 |
} |
533 |
||
49375 | 534 |
bool G1Policy::need_to_start_conc_mark(const char* source, size_t alloc_word_size) { |
38076 | 535 |
if (about_to_start_mixed_phase()) { |
536 |
return false; |
|
537 |
} |
|
538 |
||
539 |
size_t marking_initiating_used_threshold = _ihop_control->get_conc_mark_start_threshold(); |
|
540 |
||
541 |
size_t cur_used_bytes = _g1->non_young_capacity_bytes(); |
|
542 |
size_t alloc_byte_size = alloc_word_size * HeapWordSize; |
|
543 |
size_t marking_request_bytes = cur_used_bytes + alloc_byte_size; |
|
544 |
||
545 |
bool result = false; |
|
546 |
if (marking_request_bytes > marking_initiating_used_threshold) { |
|
547 |
result = collector_state()->gcs_are_young() && !collector_state()->last_young_gc(); |
|
548 |
log_debug(gc, ergo, ihop)("%s occupancy: " SIZE_FORMAT "B allocation request: " SIZE_FORMAT "B threshold: " SIZE_FORMAT "B (%1.2f) source: %s", |
|
549 |
result ? "Request concurrent cycle initiation (occupancy higher than threshold)" : "Do not request concurrent cycle initiation (still doing mixed collections)", |
|
550 |
cur_used_bytes, alloc_byte_size, marking_initiating_used_threshold, (double) marking_initiating_used_threshold / _g1->capacity() * 100, source); |
|
551 |
} |
|
552 |
||
553 |
return result; |
|
554 |
} |
|
555 |
||
556 |
// Anything below that is considered to be zero |
|
557 |
#define MIN_TIMER_GRANULARITY 0.0000001 |
|
558 |
||
49375 | 559 |
void G1Policy::record_collection_pause_end(double pause_time_ms, size_t cards_scanned, size_t heap_used_bytes_before_gc) { |
38076 | 560 |
double end_time_sec = os::elapsedTime(); |
561 |
||
562 |
size_t cur_used_bytes = _g1->used(); |
|
563 |
assert(cur_used_bytes == _g1->recalculate_used(), "It should!"); |
|
564 |
bool last_pause_included_initial_mark = false; |
|
565 |
bool update_stats = !_g1->evacuation_failed(); |
|
566 |
||
567 |
record_pause(young_gc_pause_kind(), end_time_sec - pause_time_ms / 1000.0, end_time_sec); |
|
568 |
||
41284
b4276ec89d0d
8164482: [REDO] G1 does not implement millis_since_last_gc which is needed by RMI GC
jprovino
parents:
40914
diff
changeset
|
569 |
_collection_pause_end_millis = os::javaTimeNanos() / NANOSECS_PER_MILLISEC; |
b4276ec89d0d
8164482: [REDO] G1 does not implement millis_since_last_gc which is needed by RMI GC
jprovino
parents:
40914
diff
changeset
|
570 |
|
38076 | 571 |
last_pause_included_initial_mark = collector_state()->during_initial_mark_pause(); |
572 |
if (last_pause_included_initial_mark) { |
|
573 |
record_concurrent_mark_init_end(0.0); |
|
574 |
} else { |
|
575 |
maybe_start_marking(); |
|
576 |
} |
|
577 |
||
578 |
double app_time_ms = (phase_times()->cur_collection_start_sec() * 1000.0 - _analytics->prev_collection_pause_end_ms()); |
|
579 |
if (app_time_ms < MIN_TIMER_GRANULARITY) { |
|
580 |
// This usually happens due to the timer not having the required |
|
581 |
// granularity. Some Linuxes are the usual culprits. |
|
582 |
// We'll just set it to something (arbitrarily) small. |
|
583 |
app_time_ms = 1.0; |
|
584 |
} |
|
585 |
||
586 |
if (update_stats) { |
|
587 |
// We maintain the invariant that all objects allocated by mutator |
|
588 |
// threads will be allocated out of eden regions. So, we can use |
|
589 |
// the eden region number allocated since the previous GC to |
|
590 |
// calculate the application's allocate rate. The only exception |
|
591 |
// to that is humongous objects that are allocated separately. But |
|
592 |
// given that humongous object allocations do not really affect |
|
593 |
// either the pause's duration nor when the next pause will take |
|
594 |
// place we can safely ignore them here. |
|
595 |
uint regions_allocated = _collection_set->eden_region_length(); |
|
596 |
double alloc_rate_ms = (double) regions_allocated / app_time_ms; |
|
597 |
_analytics->report_alloc_rate_ms(alloc_rate_ms); |
|
598 |
||
599 |
double interval_ms = |
|
40523
20873f6704de
8164124: [BACKOUT] G1 does not implement millis_since_last_gc which is needed by RMI GC
jwilhelm
parents:
40328
diff
changeset
|
600 |
(end_time_sec - _analytics->last_known_gc_end_time_sec()) * 1000.0; |
38076 | 601 |
_analytics->update_recent_gc_times(end_time_sec, pause_time_ms); |
602 |
_analytics->compute_pause_time_ratio(interval_ms, pause_time_ms); |
|
603 |
} |
|
604 |
||
605 |
bool new_in_marking_window = collector_state()->in_marking_window(); |
|
606 |
bool new_in_marking_window_im = false; |
|
607 |
if (last_pause_included_initial_mark) { |
|
608 |
new_in_marking_window = true; |
|
609 |
new_in_marking_window_im = true; |
|
610 |
} |
|
611 |
||
612 |
if (collector_state()->last_young_gc()) { |
|
613 |
assert(!last_pause_included_initial_mark, "The last young GC is not allowed to be an initial mark GC"); |
|
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
614 |
// This has been the "last young GC" before we start doing mixed GCs. We already |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
615 |
// decided to start mixed GCs much earlier, so there is nothing to do except |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
616 |
// advancing the state. |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
617 |
collector_state()->set_gcs_are_young(false); |
38076 | 618 |
collector_state()->set_last_young_gc(false); |
619 |
} |
|
620 |
||
621 |
if (!collector_state()->last_gc_was_young()) { |
|
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
622 |
// This is a mixed GC. Here we decide whether to continue doing more |
38076 | 623 |
// mixed GCs or not. |
624 |
if (!next_gc_should_be_mixed("continue mixed GCs", |
|
625 |
"do not continue mixed GCs")) { |
|
626 |
collector_state()->set_gcs_are_young(true); |
|
627 |
||
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
628 |
clear_collection_set_candidates(); |
38076 | 629 |
maybe_start_marking(); |
630 |
} |
|
631 |
} |
|
632 |
||
633 |
_short_lived_surv_rate_group->start_adding_regions(); |
|
634 |
// Do that for any other surv rate groups |
|
635 |
||
38172
90f405aac699
8155524: HotCardCache shouldn't be part of ConcurrentG1Refine
kbarrett
parents:
38162
diff
changeset
|
636 |
double scan_hcc_time_ms = G1HotCardCache::default_use_cache() ? average_time_ms(G1GCPhaseTimes::ScanHCC) : 0.0; |
38076 | 637 |
|
638 |
if (update_stats) { |
|
639 |
double cost_per_card_ms = 0.0; |
|
640 |
if (_pending_cards > 0) { |
|
641 |
cost_per_card_ms = (average_time_ms(G1GCPhaseTimes::UpdateRS) - scan_hcc_time_ms) / (double) _pending_cards; |
|
642 |
_analytics->report_cost_per_card_ms(cost_per_card_ms); |
|
643 |
} |
|
644 |
_analytics->report_cost_scan_hcc(scan_hcc_time_ms); |
|
645 |
||
646 |
double cost_per_entry_ms = 0.0; |
|
647 |
if (cards_scanned > 10) { |
|
648 |
cost_per_entry_ms = average_time_ms(G1GCPhaseTimes::ScanRS) / (double) cards_scanned; |
|
649 |
_analytics->report_cost_per_entry_ms(cost_per_entry_ms, collector_state()->last_gc_was_young()); |
|
650 |
} |
|
651 |
||
652 |
if (_max_rs_lengths > 0) { |
|
653 |
double cards_per_entry_ratio = |
|
654 |
(double) cards_scanned / (double) _max_rs_lengths; |
|
655 |
_analytics->report_cards_per_entry_ratio(cards_per_entry_ratio, collector_state()->last_gc_was_young()); |
|
656 |
} |
|
657 |
||
658 |
// This is defensive. For a while _max_rs_lengths could get |
|
659 |
// smaller than _recorded_rs_lengths which was causing |
|
660 |
// rs_length_diff to get very large and mess up the RSet length |
|
661 |
// predictions. The reason was unsafe concurrent updates to the |
|
662 |
// _inc_cset_recorded_rs_lengths field which the code below guards |
|
663 |
// against (see CR 7118202). This bug has now been fixed (see CR |
|
664 |
// 7119027). However, I'm still worried that |
|
665 |
// _inc_cset_recorded_rs_lengths might still end up somewhat |
|
666 |
// inaccurate. The concurrent refinement thread calculates an |
|
667 |
// RSet's length concurrently with other CR threads updating it |
|
668 |
// which might cause it to calculate the length incorrectly (if, |
|
669 |
// say, it's in mid-coarsening). So I'll leave in the defensive |
|
670 |
// conditional below just in case. |
|
671 |
size_t rs_length_diff = 0; |
|
672 |
size_t recorded_rs_lengths = _collection_set->recorded_rs_lengths(); |
|
673 |
if (_max_rs_lengths > recorded_rs_lengths) { |
|
674 |
rs_length_diff = _max_rs_lengths - recorded_rs_lengths; |
|
675 |
} |
|
676 |
_analytics->report_rs_length_diff((double) rs_length_diff); |
|
677 |
||
678 |
size_t freed_bytes = heap_used_bytes_before_gc - cur_used_bytes; |
|
679 |
size_t copied_bytes = _collection_set->bytes_used_before() - freed_bytes; |
|
680 |
double cost_per_byte_ms = 0.0; |
|
681 |
||
682 |
if (copied_bytes > 0) { |
|
683 |
cost_per_byte_ms = average_time_ms(G1GCPhaseTimes::ObjCopy) / (double) copied_bytes; |
|
684 |
_analytics->report_cost_per_byte_ms(cost_per_byte_ms, collector_state()->in_marking_window()); |
|
685 |
} |
|
686 |
||
687 |
if (_collection_set->young_region_length() > 0) { |
|
688 |
_analytics->report_young_other_cost_per_region_ms(young_other_time_ms() / |
|
689 |
_collection_set->young_region_length()); |
|
690 |
} |
|
691 |
||
692 |
if (_collection_set->old_region_length() > 0) { |
|
693 |
_analytics->report_non_young_other_cost_per_region_ms(non_young_other_time_ms() / |
|
694 |
_collection_set->old_region_length()); |
|
695 |
} |
|
696 |
||
697 |
_analytics->report_constant_other_time_ms(constant_other_time_ms(pause_time_ms)); |
|
698 |
||
699 |
_analytics->report_pending_cards((double) _pending_cards); |
|
700 |
_analytics->report_rs_lengths((double) _max_rs_lengths); |
|
701 |
} |
|
702 |
||
703 |
collector_state()->set_in_marking_window(new_in_marking_window); |
|
704 |
collector_state()->set_in_marking_window_im(new_in_marking_window_im); |
|
705 |
_free_regions_at_end_of_collection = _g1->num_free_regions(); |
|
706 |
// IHOP control wants to know the expected young gen length if it were not |
|
707 |
// restrained by the heap reserve. Using the actual length would make the |
|
708 |
// prediction too small and the limit the young gen every time we get to the |
|
709 |
// predicted target occupancy. |
|
710 |
size_t last_unrestrained_young_length = update_young_list_max_and_target_length(); |
|
711 |
update_rs_lengths_prediction(); |
|
712 |
||
713 |
update_ihop_prediction(app_time_ms / 1000.0, |
|
714 |
_bytes_allocated_in_old_since_last_gc, |
|
715 |
last_unrestrained_young_length * HeapRegion::GrainBytes); |
|
716 |
_bytes_allocated_in_old_since_last_gc = 0; |
|
717 |
||
718 |
_ihop_control->send_trace_event(_g1->gc_tracer_stw()); |
|
719 |
||
720 |
// Note that _mmu_tracker->max_gc_time() returns the time in seconds. |
|
721 |
double update_rs_time_goal_ms = _mmu_tracker->max_gc_time() * MILLIUNITS * G1RSetUpdatingPauseTimePercent / 100.0; |
|
722 |
||
723 |
if (update_rs_time_goal_ms < scan_hcc_time_ms) { |
|
724 |
log_debug(gc, ergo, refine)("Adjust concurrent refinement thresholds (scanning the HCC expected to take longer than Update RS time goal)." |
|
725 |
"Update RS time goal: %1.2fms Scan HCC time: %1.2fms", |
|
726 |
update_rs_time_goal_ms, scan_hcc_time_ms); |
|
727 |
||
728 |
update_rs_time_goal_ms = 0; |
|
729 |
} else { |
|
730 |
update_rs_time_goal_ms -= scan_hcc_time_ms; |
|
731 |
} |
|
47789
a77a7d3bc4f6
8149127: Rename g1/concurrentMarkThread.* to g1/g1ConcurrentMarkThread.*
tschatzl
parents:
47681
diff
changeset
|
732 |
_g1->concurrent_refine()->adjust(average_time_ms(G1GCPhaseTimes::UpdateRS) - scan_hcc_time_ms, |
38076 | 733 |
phase_times()->sum_thread_work_items(G1GCPhaseTimes::UpdateRS), |
734 |
update_rs_time_goal_ms); |
|
735 |
||
736 |
cset_chooser()->verify(); |
|
737 |
} |
|
738 |
||
49375 | 739 |
G1IHOPControl* G1Policy::create_ihop_control(const G1Predictions* predictor){ |
38076 | 740 |
if (G1UseAdaptiveIHOP) { |
741 |
return new G1AdaptiveIHOPControl(InitiatingHeapOccupancyPercent, |
|
742 |
predictor, |
|
743 |
G1ReservePercent, |
|
744 |
G1HeapWastePercent); |
|
745 |
} else { |
|
746 |
return new G1StaticIHOPControl(InitiatingHeapOccupancyPercent); |
|
747 |
} |
|
748 |
} |
|
749 |
||
49375 | 750 |
void G1Policy::update_ihop_prediction(double mutator_time_s, |
38076 | 751 |
size_t mutator_alloc_bytes, |
752 |
size_t young_gen_size) { |
|
753 |
// Always try to update IHOP prediction. Even evacuation failures give information |
|
754 |
// about e.g. whether to start IHOP earlier next time. |
|
755 |
||
756 |
// Avoid using really small application times that might create samples with |
|
757 |
// very high or very low values. They may be caused by e.g. back-to-back gcs. |
|
758 |
double const min_valid_time = 1e-6; |
|
759 |
||
760 |
bool report = false; |
|
761 |
||
762 |
double marking_to_mixed_time = -1.0; |
|
763 |
if (!collector_state()->last_gc_was_young() && _initial_mark_to_mixed.has_result()) { |
|
764 |
marking_to_mixed_time = _initial_mark_to_mixed.last_marking_time(); |
|
765 |
assert(marking_to_mixed_time > 0.0, |
|
766 |
"Initial mark to mixed time must be larger than zero but is %.3f", |
|
767 |
marking_to_mixed_time); |
|
768 |
if (marking_to_mixed_time > min_valid_time) { |
|
769 |
_ihop_control->update_marking_length(marking_to_mixed_time); |
|
770 |
report = true; |
|
771 |
} |
|
772 |
} |
|
773 |
||
774 |
// As an approximation for the young gc promotion rates during marking we use |
|
775 |
// all of them. In many applications there are only a few if any young gcs during |
|
776 |
// marking, which makes any prediction useless. This increases the accuracy of the |
|
777 |
// prediction. |
|
778 |
if (collector_state()->last_gc_was_young() && mutator_time_s > min_valid_time) { |
|
779 |
_ihop_control->update_allocation_info(mutator_time_s, mutator_alloc_bytes, young_gen_size); |
|
780 |
report = true; |
|
781 |
} |
|
782 |
||
783 |
if (report) { |
|
784 |
report_ihop_statistics(); |
|
785 |
} |
|
786 |
} |
|
787 |
||
49375 | 788 |
void G1Policy::report_ihop_statistics() { |
38076 | 789 |
_ihop_control->print(); |
790 |
} |
|
791 |
||
49375 | 792 |
void G1Policy::print_phases() { |
38076 | 793 |
phase_times()->print(); |
794 |
} |
|
795 |
||
49375 | 796 |
double G1Policy::predict_yg_surv_rate(int age, SurvRateGroup* surv_rate_group) const { |
38076 | 797 |
TruncatedSeq* seq = surv_rate_group->get_seq(age); |
798 |
guarantee(seq->num() > 0, "There should be some young gen survivor samples available. Tried to access with age %d", age); |
|
799 |
double pred = _predictor.get_new_prediction(seq); |
|
800 |
if (pred > 1.0) { |
|
801 |
pred = 1.0; |
|
802 |
} |
|
803 |
return pred; |
|
804 |
} |
|
805 |
||
49375 | 806 |
double G1Policy::accum_yg_surv_rate_pred(int age) const { |
38076 | 807 |
return _short_lived_surv_rate_group->accum_surv_rate_pred(age); |
808 |
} |
|
809 |
||
49375 | 810 |
double G1Policy::predict_base_elapsed_time_ms(size_t pending_cards, |
38076 | 811 |
size_t scanned_cards) const { |
812 |
return |
|
813 |
_analytics->predict_rs_update_time_ms(pending_cards) + |
|
814 |
_analytics->predict_rs_scan_time_ms(scanned_cards, collector_state()->gcs_are_young()) + |
|
815 |
_analytics->predict_constant_other_time_ms(); |
|
816 |
} |
|
817 |
||
49375 | 818 |
double G1Policy::predict_base_elapsed_time_ms(size_t pending_cards) const { |
38076 | 819 |
size_t rs_length = _analytics->predict_rs_lengths() + _analytics->predict_rs_length_diff(); |
820 |
size_t card_num = _analytics->predict_card_num(rs_length, collector_state()->gcs_are_young()); |
|
821 |
return predict_base_elapsed_time_ms(pending_cards, card_num); |
|
822 |
} |
|
823 |
||
49375 | 824 |
size_t G1Policy::predict_bytes_to_copy(HeapRegion* hr) const { |
38076 | 825 |
size_t bytes_to_copy; |
826 |
if (hr->is_marked()) |
|
827 |
bytes_to_copy = hr->max_live_bytes(); |
|
828 |
else { |
|
829 |
assert(hr->is_young() && hr->age_in_surv_rate_group() != -1, "invariant"); |
|
830 |
int age = hr->age_in_surv_rate_group(); |
|
831 |
double yg_surv_rate = predict_yg_surv_rate(age, hr->surv_rate_group()); |
|
832 |
bytes_to_copy = (size_t) (hr->used() * yg_surv_rate); |
|
833 |
} |
|
834 |
return bytes_to_copy; |
|
835 |
} |
|
836 |
||
49375 | 837 |
double G1Policy::predict_region_elapsed_time_ms(HeapRegion* hr, |
38076 | 838 |
bool for_young_gc) const { |
839 |
size_t rs_length = hr->rem_set()->occupied(); |
|
840 |
// Predicting the number of cards is based on which type of GC |
|
841 |
// we're predicting for. |
|
842 |
size_t card_num = _analytics->predict_card_num(rs_length, for_young_gc); |
|
843 |
size_t bytes_to_copy = predict_bytes_to_copy(hr); |
|
844 |
||
845 |
double region_elapsed_time_ms = |
|
846 |
_analytics->predict_rs_scan_time_ms(card_num, collector_state()->gcs_are_young()) + |
|
847 |
_analytics->predict_object_copy_time_ms(bytes_to_copy, collector_state()->during_concurrent_mark()); |
|
848 |
||
849 |
// The prediction of the "other" time for this region is based |
|
850 |
// upon the region type and NOT the GC type. |
|
851 |
if (hr->is_young()) { |
|
852 |
region_elapsed_time_ms += _analytics->predict_young_other_time_ms(1); |
|
853 |
} else { |
|
854 |
region_elapsed_time_ms += _analytics->predict_non_young_other_time_ms(1); |
|
855 |
} |
|
856 |
return region_elapsed_time_ms; |
|
857 |
} |
|
858 |
||
49375 | 859 |
bool G1Policy::should_allocate_mutator_region() const { |
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
860 |
uint young_list_length = _g1->young_regions_count(); |
38076 | 861 |
uint young_list_target_length = _young_list_target_length; |
38106 | 862 |
return young_list_length < young_list_target_length; |
38076 | 863 |
} |
864 |
||
49375 | 865 |
bool G1Policy::can_expand_young_list() const { |
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
866 |
uint young_list_length = _g1->young_regions_count(); |
38076 | 867 |
uint young_list_max_length = _young_list_max_length; |
868 |
return young_list_length < young_list_max_length; |
|
869 |
} |
|
870 |
||
49375 | 871 |
bool G1Policy::adaptive_young_list_length() const { |
38076 | 872 |
return _young_gen_sizer.adaptive_young_list_length(); |
873 |
} |
|
874 |
||
49375 | 875 |
size_t G1Policy::desired_survivor_size() const { |
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
876 |
size_t const survivor_capacity = HeapRegion::GrainWords * _max_survivor_regions; |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
877 |
return (size_t)((((double)survivor_capacity) * TargetSurvivorRatio) / 100); |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
878 |
} |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
879 |
|
49375 | 880 |
void G1Policy::print_age_table() { |
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
881 |
_survivors_age_table.print_age_table(_tenuring_threshold); |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
882 |
} |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
883 |
|
49375 | 884 |
void G1Policy::update_max_gc_locker_expansion() { |
38076 | 885 |
uint expansion_region_num = 0; |
886 |
if (GCLockerEdenExpansionPercent > 0) { |
|
887 |
double perc = (double) GCLockerEdenExpansionPercent / 100.0; |
|
888 |
double expansion_region_num_d = perc * (double) _young_list_target_length; |
|
889 |
// We use ceiling so that if expansion_region_num_d is > 0.0 (but |
|
890 |
// less than 1.0) we'll get 1. |
|
891 |
expansion_region_num = (uint) ceil(expansion_region_num_d); |
|
892 |
} else { |
|
893 |
assert(expansion_region_num == 0, "sanity"); |
|
894 |
} |
|
895 |
_young_list_max_length = _young_list_target_length + expansion_region_num; |
|
896 |
assert(_young_list_target_length <= _young_list_max_length, "post-condition"); |
|
897 |
} |
|
898 |
||
899 |
// Calculates survivor space parameters. |
|
49375 | 900 |
void G1Policy::update_survivors_policy() { |
38076 | 901 |
double max_survivor_regions_d = |
902 |
(double) _young_list_target_length / (double) SurvivorRatio; |
|
903 |
// We use ceiling so that if max_survivor_regions_d is > 0.0 (but |
|
904 |
// smaller than 1.0) we'll get 1. |
|
905 |
_max_survivor_regions = (uint) ceil(max_survivor_regions_d); |
|
906 |
||
40914
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
907 |
_tenuring_threshold = _survivors_age_table.compute_tenuring_threshold(desired_survivor_size()); |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
908 |
if (UsePerfData) { |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
909 |
_policy_counters->tenuring_threshold()->set_value(_tenuring_threshold); |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
910 |
_policy_counters->desired_survivor_size()->set_value(desired_survivor_size() * oopSize); |
90c87069b39c
8164936: G1 age table printout contains contents from previous GC
tschatzl
parents:
40523
diff
changeset
|
911 |
} |
38076 | 912 |
} |
913 |
||
49375 | 914 |
bool G1Policy::force_initial_mark_if_outside_cycle(GCCause::Cause gc_cause) { |
38076 | 915 |
// We actually check whether we are marking here and not if we are in a |
916 |
// reclamation phase. This means that we will schedule a concurrent mark |
|
917 |
// even while we are still in the process of reclaiming memory. |
|
47678 | 918 |
bool during_cycle = _g1->concurrent_mark()->cm_thread()->during_cycle(); |
38076 | 919 |
if (!during_cycle) { |
920 |
log_debug(gc, ergo)("Request concurrent cycle initiation (requested by GC cause). GC cause: %s", GCCause::to_string(gc_cause)); |
|
921 |
collector_state()->set_initiate_conc_mark_if_possible(true); |
|
922 |
return true; |
|
923 |
} else { |
|
924 |
log_debug(gc, ergo)("Do not request concurrent cycle initiation (concurrent cycle already in progress). GC cause: %s", GCCause::to_string(gc_cause)); |
|
925 |
return false; |
|
926 |
} |
|
927 |
} |
|
928 |
||
49375 | 929 |
void G1Policy::initiate_conc_mark() { |
38076 | 930 |
collector_state()->set_during_initial_mark_pause(true); |
931 |
collector_state()->set_initiate_conc_mark_if_possible(false); |
|
932 |
} |
|
933 |
||
49375 | 934 |
void G1Policy::decide_on_conc_mark_initiation() { |
38076 | 935 |
// We are about to decide on whether this pause will be an |
936 |
// initial-mark pause. |
|
937 |
||
938 |
// First, collector_state()->during_initial_mark_pause() should not be already set. We |
|
939 |
// will set it here if we have to. However, it should be cleared by |
|
940 |
// the end of the pause (it's only set for the duration of an |
|
941 |
// initial-mark pause). |
|
942 |
assert(!collector_state()->during_initial_mark_pause(), "pre-condition"); |
|
943 |
||
944 |
if (collector_state()->initiate_conc_mark_if_possible()) { |
|
945 |
// We had noticed on a previous pause that the heap occupancy has |
|
946 |
// gone over the initiating threshold and we should start a |
|
947 |
// concurrent marking cycle. So we might initiate one. |
|
948 |
||
949 |
if (!about_to_start_mixed_phase() && collector_state()->gcs_are_young()) { |
|
950 |
// Initiate a new initial mark if there is no marking or reclamation going on. |
|
951 |
initiate_conc_mark(); |
|
952 |
log_debug(gc, ergo)("Initiate concurrent cycle (concurrent cycle initiation requested)"); |
|
953 |
} else if (_g1->is_user_requested_concurrent_full_gc(_g1->gc_cause())) { |
|
954 |
// Initiate a user requested initial mark. An initial mark must be young only |
|
955 |
// GC, so the collector state must be updated to reflect this. |
|
956 |
collector_state()->set_gcs_are_young(true); |
|
957 |
collector_state()->set_last_young_gc(false); |
|
958 |
||
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
959 |
// We might have ended up coming here about to start a mixed phase with a collection set |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
960 |
// active. The following remark might change the change the "evacuation efficiency" of |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
961 |
// the regions in this set, leading to failing asserts later. |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
962 |
// Since the concurrent cycle will recreate the collection set anyway, simply drop it here. |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
963 |
clear_collection_set_candidates(); |
38076 | 964 |
abort_time_to_mixed_tracking(); |
965 |
initiate_conc_mark(); |
|
966 |
log_debug(gc, ergo)("Initiate concurrent cycle (user requested concurrent cycle)"); |
|
967 |
} else { |
|
968 |
// The concurrent marking thread is still finishing up the |
|
969 |
// previous cycle. If we start one right now the two cycles |
|
970 |
// overlap. In particular, the concurrent marking thread might |
|
971 |
// be in the process of clearing the next marking bitmap (which |
|
972 |
// we will use for the next cycle if we start one). Starting a |
|
973 |
// cycle now will be bad given that parts of the marking |
|
974 |
// information might get cleared by the marking thread. And we |
|
975 |
// cannot wait for the marking thread to finish the cycle as it |
|
976 |
// periodically yields while clearing the next marking bitmap |
|
977 |
// and, if it's in a yield point, it's waiting for us to |
|
978 |
// finish. So, at this point we will not start a cycle and we'll |
|
979 |
// let the concurrent marking thread complete the last one. |
|
980 |
log_debug(gc, ergo)("Do not initiate concurrent cycle (concurrent cycle already in progress)"); |
|
981 |
} |
|
982 |
} |
|
983 |
} |
|
984 |
||
49375 | 985 |
void G1Policy::record_concurrent_mark_cleanup_end() { |
38076 | 986 |
cset_chooser()->rebuild(_g1->workers(), _g1->num_regions()); |
987 |
||
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
988 |
bool mixed_gc_pending = next_gc_should_be_mixed("request mixed gcs", "request young-only gcs"); |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
989 |
if (!mixed_gc_pending) { |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
990 |
clear_collection_set_candidates(); |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
991 |
abort_time_to_mixed_tracking(); |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
992 |
} |
49632
64f9ebc85e67
8197573: Remove concurrent cleanup and secondary free list handling
tschatzl
parents:
49607
diff
changeset
|
993 |
collector_state()->set_last_young_gc(mixed_gc_pending); |
64f9ebc85e67
8197573: Remove concurrent cleanup and secondary free list handling
tschatzl
parents:
49607
diff
changeset
|
994 |
collector_state()->set_in_marking_window(false); |
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
995 |
|
38076 | 996 |
double end_sec = os::elapsedTime(); |
997 |
double elapsed_time_ms = (end_sec - _mark_cleanup_start_sec) * 1000.0; |
|
998 |
_analytics->report_concurrent_mark_cleanup_times_ms(elapsed_time_ms); |
|
999 |
_analytics->append_prev_collection_pause_end_ms(elapsed_time_ms); |
|
1000 |
||
1001 |
record_pause(Cleanup, _mark_cleanup_start_sec, end_sec); |
|
1002 |
} |
|
1003 |
||
49375 | 1004 |
double G1Policy::reclaimable_bytes_percent(size_t reclaimable_bytes) const { |
47679
4cfcb7be4984
8189666: Replace various inlined percentage calculations with global percent_of()
tschatzl
parents:
47678
diff
changeset
|
1005 |
return percent_of(reclaimable_bytes, _g1->capacity()); |
38076 | 1006 |
} |
1007 |
||
49607
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1008 |
class G1ClearCollectionSetCandidateRemSets : public HeapRegionClosure { |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1009 |
virtual bool do_heap_region(HeapRegion* r) { |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1010 |
r->rem_set()->clear_locked(true /* only_cardset */); |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1011 |
return false; |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1012 |
} |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1013 |
}; |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1014 |
|
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1015 |
void G1Policy::clear_collection_set_candidates() { |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1016 |
// Clear remembered sets of remaining candidate regions and the actual candidate |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1017 |
// list. |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1018 |
G1ClearCollectionSetCandidateRemSets cl; |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1019 |
cset_chooser()->iterate(&cl); |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1020 |
cset_chooser()->clear(); |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1021 |
} |
acffe6ff3ae7
8180415: Rebuild remembered sets during the concurrent cycle
tschatzl
parents:
49412
diff
changeset
|
1022 |
|
49375 | 1023 |
void G1Policy::maybe_start_marking() { |
38076 | 1024 |
if (need_to_start_conc_mark("end of GC")) { |
1025 |
// Note: this might have already been set, if during the last |
|
1026 |
// pause we decided to start a cycle but at the beginning of |
|
1027 |
// this pause we decided to postpone it. That's OK. |
|
1028 |
collector_state()->set_initiate_conc_mark_if_possible(true); |
|
1029 |
} |
|
1030 |
} |
|
1031 |
||
49375 | 1032 |
G1Policy::PauseKind G1Policy::young_gc_pause_kind() const { |
38076 | 1033 |
assert(!collector_state()->full_collection(), "must be"); |
1034 |
if (collector_state()->during_initial_mark_pause()) { |
|
1035 |
assert(collector_state()->last_gc_was_young(), "must be"); |
|
1036 |
assert(!collector_state()->last_young_gc(), "must be"); |
|
1037 |
return InitialMarkGC; |
|
1038 |
} else if (collector_state()->last_young_gc()) { |
|
1039 |
assert(!collector_state()->during_initial_mark_pause(), "must be"); |
|
1040 |
assert(collector_state()->last_gc_was_young(), "must be"); |
|
1041 |
return LastYoungGC; |
|
1042 |
} else if (!collector_state()->last_gc_was_young()) { |
|
1043 |
assert(!collector_state()->during_initial_mark_pause(), "must be"); |
|
1044 |
assert(!collector_state()->last_young_gc(), "must be"); |
|
1045 |
return MixedGC; |
|
1046 |
} else { |
|
1047 |
assert(collector_state()->last_gc_was_young(), "must be"); |
|
1048 |
assert(!collector_state()->during_initial_mark_pause(), "must be"); |
|
1049 |
assert(!collector_state()->last_young_gc(), "must be"); |
|
1050 |
return YoungOnlyGC; |
|
1051 |
} |
|
1052 |
} |
|
1053 |
||
49375 | 1054 |
void G1Policy::record_pause(PauseKind kind, double start, double end) { |
38076 | 1055 |
// Manage the MMU tracker. For some reason it ignores Full GCs. |
1056 |
if (kind != FullGC) { |
|
1057 |
_mmu_tracker->add_pause(start, end); |
|
1058 |
} |
|
1059 |
// Manage the mutator time tracking from initial mark to first mixed gc. |
|
1060 |
switch (kind) { |
|
1061 |
case FullGC: |
|
1062 |
abort_time_to_mixed_tracking(); |
|
1063 |
break; |
|
1064 |
case Cleanup: |
|
1065 |
case Remark: |
|
1066 |
case YoungOnlyGC: |
|
1067 |
case LastYoungGC: |
|
1068 |
_initial_mark_to_mixed.add_pause(end - start); |
|
1069 |
break; |
|
1070 |
case InitialMarkGC: |
|
1071 |
_initial_mark_to_mixed.record_initial_mark_end(end); |
|
1072 |
break; |
|
1073 |
case MixedGC: |
|
1074 |
_initial_mark_to_mixed.record_mixed_gc_start(start); |
|
1075 |
break; |
|
1076 |
default: |
|
1077 |
ShouldNotReachHere(); |
|
1078 |
} |
|
1079 |
} |
|
1080 |
||
49375 | 1081 |
void G1Policy::abort_time_to_mixed_tracking() { |
38076 | 1082 |
_initial_mark_to_mixed.reset(); |
1083 |
} |
|
1084 |
||
49375 | 1085 |
bool G1Policy::next_gc_should_be_mixed(const char* true_action_str, |
38076 | 1086 |
const char* false_action_str) const { |
1087 |
if (cset_chooser()->is_empty()) { |
|
1088 |
log_debug(gc, ergo)("%s (candidate old regions not available)", false_action_str); |
|
1089 |
return false; |
|
1090 |
} |
|
1091 |
||
1092 |
// Is the amount of uncollected reclaimable space above G1HeapWastePercent? |
|
1093 |
size_t reclaimable_bytes = cset_chooser()->remaining_reclaimable_bytes(); |
|
47681
149745044e48
8189729: Change _perc suffixes in identifiers to _percent
tschatzl
parents:
47679
diff
changeset
|
1094 |
double reclaimable_percent = reclaimable_bytes_percent(reclaimable_bytes); |
38076 | 1095 |
double threshold = (double) G1HeapWastePercent; |
47681
149745044e48
8189729: Change _perc suffixes in identifiers to _percent
tschatzl
parents:
47679
diff
changeset
|
1096 |
if (reclaimable_percent <= threshold) { |
38076 | 1097 |
log_debug(gc, ergo)("%s (reclaimable percentage not over threshold). candidate old regions: %u reclaimable: " SIZE_FORMAT " (%1.2f) threshold: " UINTX_FORMAT, |
47681
149745044e48
8189729: Change _perc suffixes in identifiers to _percent
tschatzl
parents:
47679
diff
changeset
|
1098 |
false_action_str, cset_chooser()->remaining_regions(), reclaimable_bytes, reclaimable_percent, G1HeapWastePercent); |
38076 | 1099 |
return false; |
1100 |
} |
|
1101 |
log_debug(gc, ergo)("%s (candidate old regions available). candidate old regions: %u reclaimable: " SIZE_FORMAT " (%1.2f) threshold: " UINTX_FORMAT, |
|
47681
149745044e48
8189729: Change _perc suffixes in identifiers to _percent
tschatzl
parents:
47679
diff
changeset
|
1102 |
true_action_str, cset_chooser()->remaining_regions(), reclaimable_bytes, reclaimable_percent, G1HeapWastePercent); |
38076 | 1103 |
return true; |
1104 |
} |
|
1105 |
||
49375 | 1106 |
uint G1Policy::calc_min_old_cset_length() const { |
38076 | 1107 |
// The min old CSet region bound is based on the maximum desired |
1108 |
// number of mixed GCs after a cycle. I.e., even if some old regions |
|
1109 |
// look expensive, we should add them to the CSet anyway to make |
|
1110 |
// sure we go through the available old regions in no more than the |
|
1111 |
// maximum desired number of mixed GCs. |
|
1112 |
// |
|
1113 |
// The calculation is based on the number of marked regions we added |
|
1114 |
// to the CSet chooser in the first place, not how many remain, so |
|
1115 |
// that the result is the same during all mixed GCs that follow a cycle. |
|
1116 |
||
1117 |
const size_t region_num = (size_t) cset_chooser()->length(); |
|
1118 |
const size_t gc_num = (size_t) MAX2(G1MixedGCCountTarget, (uintx) 1); |
|
1119 |
size_t result = region_num / gc_num; |
|
1120 |
// emulate ceiling |
|
1121 |
if (result * gc_num < region_num) { |
|
1122 |
result += 1; |
|
1123 |
} |
|
1124 |
return (uint) result; |
|
1125 |
} |
|
1126 |
||
49375 | 1127 |
uint G1Policy::calc_max_old_cset_length() const { |
38076 | 1128 |
// The max old CSet region bound is based on the threshold expressed |
1129 |
// as a percentage of the heap size. I.e., it should bound the |
|
1130 |
// number of old regions added to the CSet irrespective of how many |
|
1131 |
// of them are available. |
|
1132 |
||
1133 |
const G1CollectedHeap* g1h = G1CollectedHeap::heap(); |
|
1134 |
const size_t region_num = g1h->num_regions(); |
|
1135 |
const size_t perc = (size_t) G1OldCSetRegionThresholdPercent; |
|
1136 |
size_t result = region_num * perc / 100; |
|
1137 |
// emulate ceiling |
|
1138 |
if (100 * result < region_num * perc) { |
|
1139 |
result += 1; |
|
1140 |
} |
|
1141 |
return (uint) result; |
|
1142 |
} |
|
1143 |
||
49375 | 1144 |
void G1Policy::finalize_collection_set(double target_pause_time_ms, G1SurvivorRegions* survivor) { |
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1145 |
double time_remaining_ms = _collection_set->finalize_young_part(target_pause_time_ms, survivor); |
38076 | 1146 |
_collection_set->finalize_old_part(time_remaining_ms); |
1147 |
} |
|
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1148 |
|
49375 | 1149 |
void G1Policy::transfer_survivors_to_cset(const G1SurvivorRegions* survivors) { |
38183
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1150 |
|
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1151 |
// Add survivor regions to SurvRateGroup. |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1152 |
note_start_adding_survivor_regions(); |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1153 |
finished_recalculating_age_indexes(true /* is_survivors */); |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1154 |
|
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1155 |
HeapRegion* last = NULL; |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1156 |
for (GrowableArrayIterator<HeapRegion*> it = survivors->regions()->begin(); |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1157 |
it != survivors->regions()->end(); |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1158 |
++it) { |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1159 |
HeapRegion* curr = *it; |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1160 |
set_region_survivor(curr); |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1161 |
|
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1162 |
// The region is a non-empty survivor so let's add it to |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1163 |
// the incremental collection set for the next evacuation |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1164 |
// pause. |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1165 |
_collection_set->add_survivor_regions(curr); |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1166 |
|
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1167 |
last = curr; |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1168 |
} |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1169 |
note_stop_adding_survivor_regions(); |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1170 |
|
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1171 |
// Don't clear the survivor list handles until the start of |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1172 |
// the next evacuation pause - we need it in order to re-tag |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1173 |
// the survivor regions from this evacuation pause as 'young' |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1174 |
// at the start of the next. |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1175 |
|
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1176 |
finished_recalculating_age_indexes(false /* is_survivors */); |
cb68e4923223
8150721: Don't explicitly manage G1 young regions in YoungList
mgerdin
parents:
38172
diff
changeset
|
1177 |
} |