author | tschatzl |
Wed, 25 Nov 2015 14:43:29 +0100 | |
changeset 34300 | 6075c1e0e913 |
parent 33216 | 8ecefd0f0d10 |
child 35061 | be6025ebffea |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
30764 | 2 |
* Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved. |
1374 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5350
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5350
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5350
diff
changeset
|
21 |
* questions. |
1374 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
30764 | 26 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
30764
diff
changeset
|
27 |
#include "gc/g1/g1Predictions.hpp" |
30764 | 28 |
#include "gc/g1/heapRegion.hpp" |
29 |
#include "gc/g1/survRateGroup.hpp" |
|
7397 | 30 |
#include "memory/allocation.hpp" |
1374 | 31 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
30764
diff
changeset
|
32 |
SurvRateGroup::SurvRateGroup(G1Predictions* predictor, |
1374 | 33 |
const char* name, |
34 |
size_t summary_surv_rates_len) : |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
30764
diff
changeset
|
35 |
_predictor(predictor), _name(name), |
1374 | 36 |
_summary_surv_rates_len(summary_surv_rates_len), |
37 |
_summary_surv_rates_max_len(0), |
|
2009 | 38 |
_summary_surv_rates(NULL), |
39 |
_surv_rate(NULL), |
|
40 |
_accum_surv_rate_pred(NULL), |
|
12117 | 41 |
_surv_rate_pred(NULL), |
42 |
_stats_arrays_length(0) { |
|
2009 | 43 |
reset(); |
1374 | 44 |
if (summary_surv_rates_len > 0) { |
45 |
size_t length = summary_surv_rates_len; |
|
13195 | 46 |
_summary_surv_rates = NEW_C_HEAP_ARRAY(NumberSeq*, length, mtGC); |
12117 | 47 |
for (size_t i = 0; i < length; ++i) { |
48 |
_summary_surv_rates[i] = new NumberSeq(); |
|
1374 | 49 |
} |
50 |
} |
|
51 |
||
52 |
start_adding_regions(); |
|
53 |
} |
|
54 |
||
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
30764
diff
changeset
|
55 |
double SurvRateGroup::get_new_prediction(TruncatedSeq const* seq) const { |
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
30764
diff
changeset
|
56 |
return _predictor->get_new_prediction(seq); |
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
30764
diff
changeset
|
57 |
} |
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
30764
diff
changeset
|
58 |
|
12117 | 59 |
void SurvRateGroup::reset() { |
2009 | 60 |
_all_regions_allocated = 0; |
61 |
_setup_seq_num = 0; |
|
62 |
_last_pred = 0.0; |
|
63 |
// the following will set up the arrays with length 1 |
|
64 |
_region_num = 1; |
|
12117 | 65 |
|
66 |
// The call to stop_adding_regions() will use "new" to refill |
|
67 |
// the _surv_rate_pred array, so we need to make sure to call |
|
68 |
// "delete". |
|
69 |
for (size_t i = 0; i < _stats_arrays_length; ++i) { |
|
70 |
delete _surv_rate_pred[i]; |
|
71 |
} |
|
72 |
_stats_arrays_length = 0; |
|
73 |
||
2009 | 74 |
stop_adding_regions(); |
75 |
guarantee( _stats_arrays_length == 1, "invariant" ); |
|
76 |
guarantee( _surv_rate_pred[0] != NULL, "invariant" ); |
|
77 |
_surv_rate_pred[0]->add(0.4); |
|
78 |
all_surviving_words_recorded(false); |
|
79 |
_region_num = 0; |
|
80 |
} |
|
81 |
||
33215 | 82 |
void SurvRateGroup::start_adding_regions() { |
2009 | 83 |
_setup_seq_num = _stats_arrays_length; |
5350
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
2105
diff
changeset
|
84 |
_region_num = 0; |
1374 | 85 |
} |
86 |
||
33215 | 87 |
void SurvRateGroup::stop_adding_regions() { |
2009 | 88 |
if (_region_num > _stats_arrays_length) { |
1374 | 89 |
double* old_surv_rate = _surv_rate; |
90 |
double* old_accum_surv_rate_pred = _accum_surv_rate_pred; |
|
91 |
TruncatedSeq** old_surv_rate_pred = _surv_rate_pred; |
|
92 |
||
13195 | 93 |
_surv_rate = NEW_C_HEAP_ARRAY(double, _region_num, mtGC); |
94 |
_accum_surv_rate_pred = NEW_C_HEAP_ARRAY(double, _region_num, mtGC); |
|
95 |
_surv_rate_pred = NEW_C_HEAP_ARRAY(TruncatedSeq*, _region_num, mtGC); |
|
1374 | 96 |
|
12117 | 97 |
for (size_t i = 0; i < _stats_arrays_length; ++i) { |
1374 | 98 |
_surv_rate_pred[i] = old_surv_rate_pred[i]; |
12117 | 99 |
} |
2009 | 100 |
for (size_t i = _stats_arrays_length; i < _region_num; ++i) { |
1374 | 101 |
_surv_rate_pred[i] = new TruncatedSeq(10); |
102 |
} |
|
103 |
||
2009 | 104 |
_stats_arrays_length = _region_num; |
1374 | 105 |
|
12117 | 106 |
if (old_surv_rate != NULL) { |
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
24424
diff
changeset
|
107 |
FREE_C_HEAP_ARRAY(double, old_surv_rate); |
12117 | 108 |
} |
109 |
if (old_accum_surv_rate_pred != NULL) { |
|
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
24424
diff
changeset
|
110 |
FREE_C_HEAP_ARRAY(double, old_accum_surv_rate_pred); |
12117 | 111 |
} |
112 |
if (old_surv_rate_pred != NULL) { |
|
27880
afb974a04396
8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents:
24424
diff
changeset
|
113 |
FREE_C_HEAP_ARRAY(TruncatedSeq*, old_surv_rate_pred); |
12117 | 114 |
} |
1374 | 115 |
} |
116 |
||
12117 | 117 |
for (size_t i = 0; i < _stats_arrays_length; ++i) { |
1374 | 118 |
_surv_rate[i] = 0.0; |
12117 | 119 |
} |
1374 | 120 |
} |
121 |
||
33215 | 122 |
int SurvRateGroup::next_age_index() { |
2009 | 123 |
++_region_num; |
1374 | 124 |
return (int) ++_all_regions_allocated; |
125 |
} |
|
126 |
||
33215 | 127 |
void SurvRateGroup::record_surviving_words(int age_in_group, size_t surv_words) { |
2009 | 128 |
guarantee( 0 <= age_in_group && (size_t) age_in_group < _region_num, |
1374 | 129 |
"pre-condition" ); |
130 |
guarantee( _surv_rate[age_in_group] <= 0.00001, |
|
131 |
"should only update each slot once" ); |
|
132 |
||
133 |
double surv_rate = (double) surv_words / (double) HeapRegion::GrainWords; |
|
134 |
_surv_rate[age_in_group] = surv_rate; |
|
135 |
_surv_rate_pred[age_in_group]->add(surv_rate); |
|
136 |
if ((size_t)age_in_group < _summary_surv_rates_len) { |
|
137 |
_summary_surv_rates[age_in_group]->add(surv_rate); |
|
138 |
if ((size_t)(age_in_group+1) > _summary_surv_rates_max_len) |
|
139 |
_summary_surv_rates_max_len = age_in_group+1; |
|
140 |
} |
|
141 |
} |
|
142 |
||
33216
8ecefd0f0d10
8138750: Remove dead code in survivor rate group
tschatzl
parents:
33215
diff
changeset
|
143 |
void SurvRateGroup::all_surviving_words_recorded(bool update_predictors) { |
8ecefd0f0d10
8138750: Remove dead code in survivor rate group
tschatzl
parents:
33215
diff
changeset
|
144 |
if (update_predictors && _region_num > 0) { // conservative |
2009 | 145 |
double surv_rate = _surv_rate_pred[_region_num-1]->last(); |
146 |
for (size_t i = _region_num; i < _stats_arrays_length; ++i) { |
|
1374 | 147 |
guarantee( _surv_rate[i] <= 0.00001, |
148 |
"the slot should not have been updated" ); |
|
149 |
_surv_rate_pred[i]->add(surv_rate); |
|
150 |
} |
|
151 |
} |
|
152 |
||
153 |
double accum = 0.0; |
|
154 |
double pred = 0.0; |
|
2009 | 155 |
for (size_t i = 0; i < _stats_arrays_length; ++i) { |
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
30764
diff
changeset
|
156 |
pred = get_new_prediction(_surv_rate_pred[i]); |
1374 | 157 |
if (pred > 1.0) pred = 1.0; |
158 |
accum += pred; |
|
159 |
_accum_surv_rate_pred[i] = accum; |
|
160 |
} |
|
161 |
_last_pred = pred; |
|
162 |
} |
|
163 |
||
164 |
#ifndef PRODUCT |
|
33215 | 165 |
void SurvRateGroup::print() { |
24092
e274d864545a
8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents:
13195
diff
changeset
|
166 |
gclog_or_tty->print_cr("Surv Rate Group: %s (" SIZE_FORMAT " entries)", |
5350
cccf0925702e
6819061: G1: eliminate serial Other times that are proportional to the collection set length
johnc
parents:
2105
diff
changeset
|
167 |
_name, _region_num); |
2009 | 168 |
for (size_t i = 0; i < _region_num; ++i) { |
24092
e274d864545a
8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents:
13195
diff
changeset
|
169 |
gclog_or_tty->print_cr(" age " SIZE_FORMAT_W(4) " surv rate %6.2lf %% pred %6.2lf %%", |
33215 | 170 |
i, _surv_rate[i] * 100.0, |
171 |
_predictor->get_new_prediction(_surv_rate_pred[i]) * 100.0); |
|
1374 | 172 |
} |
173 |
} |
|
174 |
||
175 |
void |
|
176 |
SurvRateGroup::print_surv_rate_summary() { |
|
177 |
size_t length = _summary_surv_rates_max_len; |
|
178 |
if (length == 0) |
|
179 |
return; |
|
180 |
||
24424
2658d7834c6e
8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents:
24092
diff
changeset
|
181 |
gclog_or_tty->cr(); |
24092
e274d864545a
8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents:
13195
diff
changeset
|
182 |
gclog_or_tty->print_cr("%s Rate Summary (for up to age " SIZE_FORMAT ")", _name, length-1); |
1374 | 183 |
gclog_or_tty->print_cr(" age range survival rate (avg) samples (avg)"); |
184 |
gclog_or_tty->print_cr(" ---------------------------------------------------------"); |
|
185 |
||
186 |
size_t index = 0; |
|
187 |
size_t limit = MIN2((int) length, 10); |
|
188 |
while (index < limit) { |
|
24092
e274d864545a
8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents:
13195
diff
changeset
|
189 |
gclog_or_tty->print_cr(" " SIZE_FORMAT_W(4) |
33215 | 190 |
" %6.2lf%% %6.2lf", |
191 |
index, _summary_surv_rates[index]->avg() * 100.0, |
|
192 |
(double) _summary_surv_rates[index]->num()); |
|
1374 | 193 |
++index; |
194 |
} |
|
195 |
||
196 |
gclog_or_tty->print_cr(" ---------------------------------------------------------"); |
|
197 |
||
198 |
int num = 0; |
|
199 |
double sum = 0.0; |
|
200 |
int samples = 0; |
|
201 |
while (index < length) { |
|
202 |
++num; |
|
203 |
sum += _summary_surv_rates[index]->avg() * 100.0; |
|
204 |
samples += _summary_surv_rates[index]->num(); |
|
205 |
++index; |
|
206 |
||
207 |
if (index == length || num % 10 == 0) { |
|
24092
e274d864545a
8039743: Use correct format specifier to print size_t values and pointers in the GC code
stefank
parents:
13195
diff
changeset
|
208 |
gclog_or_tty->print_cr(" " SIZE_FORMAT_W(4) " .. " SIZE_FORMAT_W(4) |
33215 | 209 |
" %6.2lf%% %6.2lf", |
210 |
(index-1) / 10 * 10, index-1, sum / (double) num, |
|
211 |
(double) samples / (double) num); |
|
1374 | 212 |
sum = 0.0; |
213 |
num = 0; |
|
214 |
samples = 0; |
|
215 |
} |
|
216 |
} |
|
217 |
||
218 |
gclog_or_tty->print_cr(" ---------------------------------------------------------"); |
|
219 |
} |
|
220 |
#endif // PRODUCT |