author | tschatzl |
Thu, 29 Mar 2018 14:07:59 +0200 | |
changeset 49643 | a3453bbd5418 |
parent 47216 | 71c04702a3d5 |
child 53244 | 9807daeb47c4 |
permissions | -rw-r--r-- |
1374 | 1 |
/* |
49643
a3453bbd5418
8199742: Clean up state flags in G1CollectorState
tschatzl
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2016, 2018, 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 |
||
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
25 |
#ifndef SHARE_VM_GC_G1_G1MEASUREMENTS_HPP |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
26 |
#define SHARE_VM_GC_G1_G1MEASUREMENTS_HPP |
7397 | 27 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
28 |
#include "memory/allocation.hpp" |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
29 |
#include "utilities/globalDefinitions.hpp" |
1374 | 30 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
31 |
class TruncatedSeq; |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
32 |
class G1Predictions; |
34298
f3c9dcc5af96
8136681: Factor out IHOP calculation from G1CollectorPolicy
tschatzl
parents:
34132
diff
changeset
|
33 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
34 |
class G1Analytics: public CHeapObj<mtGC> { |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
35 |
const static int TruncatedSeqLength = 10; |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
36 |
const static int NumPrevPausesForHeuristics = 10; |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
37 |
const G1Predictions* _predictor; |
3590
a268fa66d7fb
6819077: G1: first GC thread coming late into the GC.
johnc
parents:
3191
diff
changeset
|
38 |
|
1374 | 39 |
// These exclude marking times. |
40 |
TruncatedSeq* _recent_gc_times_ms; |
|
41 |
||
42 |
TruncatedSeq* _concurrent_mark_remark_times_ms; |
|
43 |
TruncatedSeq* _concurrent_mark_cleanup_times_ms; |
|
44 |
||
45 |
TruncatedSeq* _alloc_rate_ms_seq; |
|
46 |
double _prev_collection_pause_end_ms; |
|
47 |
||
48 |
TruncatedSeq* _rs_length_diff_seq; |
|
49 |
TruncatedSeq* _cost_per_card_ms_seq; |
|
33204
b8a3901ac5b3
8069330: Adjustment of concurrent refinement thresholds does not take hot card cache into account
tschatzl
parents:
33130
diff
changeset
|
50 |
TruncatedSeq* _cost_scan_hcc_seq; |
11249 | 51 |
TruncatedSeq* _young_cards_per_entry_ratio_seq; |
52 |
TruncatedSeq* _mixed_cards_per_entry_ratio_seq; |
|
1374 | 53 |
TruncatedSeq* _cost_per_entry_ms_seq; |
11249 | 54 |
TruncatedSeq* _mixed_cost_per_entry_ms_seq; |
1374 | 55 |
TruncatedSeq* _cost_per_byte_ms_seq; |
56 |
TruncatedSeq* _constant_other_time_ms_seq; |
|
57 |
TruncatedSeq* _young_other_cost_per_region_ms_seq; |
|
58 |
TruncatedSeq* _non_young_other_cost_per_region_ms_seq; |
|
59 |
||
60 |
TruncatedSeq* _pending_cards_seq; |
|
61 |
TruncatedSeq* _rs_lengths_seq; |
|
62 |
||
63 |
TruncatedSeq* _cost_per_byte_ms_during_cm_seq; |
|
64 |
||
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
65 |
// Statistics kept per GC stoppage, pause or full. |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
66 |
TruncatedSeq* _recent_prev_end_times_for_all_gcs_sec; |
1374 | 67 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
68 |
// The ratio of gc time to elapsed time, computed over recent pauses, |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
69 |
// and the ratio for just the last pause. |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
70 |
double _recent_avg_pause_time_ratio; |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
71 |
double _last_pause_time_ratio; |
13288
331d5b6725f3
7178361: G1: Make sure that PrintGC and PrintGCDetails use the same timing for the GC pause
brutisso
parents:
12781
diff
changeset
|
72 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
73 |
double get_new_prediction(TruncatedSeq const* seq) const; |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
74 |
size_t get_new_size_prediction(TruncatedSeq const* seq) const; |
1374 | 75 |
|
76 |
public: |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
77 |
G1Analytics(const G1Predictions* predictor); |
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
78 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
79 |
double prev_collection_pause_end_ms() const { |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
80 |
return _prev_collection_pause_end_ms; |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
81 |
} |
1374 | 82 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
83 |
double recent_avg_pause_time_ratio() const { |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
84 |
return _recent_avg_pause_time_ratio; |
1374 | 85 |
} |
86 |
||
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
87 |
double last_pause_time_ratio() const { |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
88 |
return _last_pause_time_ratio; |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
89 |
} |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
90 |
|
37144
b7ae74d4d5d8
8151808: Factor G1 heap sizing code out of the G1CollectorPolicy
mgerdin
parents:
37134
diff
changeset
|
91 |
uint number_of_recorded_pause_times() const { |
b7ae74d4d5d8
8151808: Factor G1 heap sizing code out of the G1CollectorPolicy
mgerdin
parents:
37134
diff
changeset
|
92 |
return NumPrevPausesForHeuristics; |
b7ae74d4d5d8
8151808: Factor G1 heap sizing code out of the G1CollectorPolicy
mgerdin
parents:
37134
diff
changeset
|
93 |
} |
b7ae74d4d5d8
8151808: Factor G1 heap sizing code out of the G1CollectorPolicy
mgerdin
parents:
37134
diff
changeset
|
94 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
95 |
void append_prev_collection_pause_end_ms(double ms) { |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
96 |
_prev_collection_pause_end_ms += ms; |
1374 | 97 |
} |
98 |
||
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
99 |
void report_concurrent_mark_remark_times_ms(double ms); |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
100 |
void report_concurrent_mark_cleanup_times_ms(double ms); |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
101 |
void report_alloc_rate_ms(double alloc_rate); |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
102 |
void report_cost_per_card_ms(double cost_per_card_ms); |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
103 |
void report_cost_scan_hcc(double cost_scan_hcc); |
49643
a3453bbd5418
8199742: Clean up state flags in G1CollectorState
tschatzl
parents:
47216
diff
changeset
|
104 |
void report_cost_per_entry_ms(double cost_per_entry_ms, bool for_young_gc); |
a3453bbd5418
8199742: Clean up state flags in G1CollectorState
tschatzl
parents:
47216
diff
changeset
|
105 |
void report_cards_per_entry_ratio(double cards_per_entry_ratio, bool for_young_gc); |
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
106 |
void report_rs_length_diff(double rs_length_diff); |
49643
a3453bbd5418
8199742: Clean up state flags in G1CollectorState
tschatzl
parents:
47216
diff
changeset
|
107 |
void report_cost_per_byte_ms(double cost_per_byte_ms, bool mark_or_rebuild_in_progress); |
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
108 |
void report_young_other_cost_per_region_ms(double other_cost_per_region_ms); |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
109 |
void report_non_young_other_cost_per_region_ms(double other_cost_per_region_ms); |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
110 |
void report_constant_other_time_ms(double constant_other_time_ms); |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
111 |
void report_pending_cards(double pending_cards); |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
112 |
void report_rs_lengths(double rs_lengths); |
37051
b02a3fb98142
8150362: G1 base elapsed time prediction is wrong because rs_length prediction is wrong
sangheki
parents:
37039
diff
changeset
|
113 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
114 |
size_t predict_rs_length_diff() const; |
1374 | 115 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
116 |
double predict_alloc_rate_ms() const; |
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
117 |
int num_alloc_rate_ms() const; |
1374 | 118 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
119 |
double predict_cost_per_card_ms() const; |
1374 | 120 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
121 |
double predict_scan_hcc_ms() const; |
1374 | 122 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
123 |
double predict_rs_update_time_ms(size_t pending_cards) const; |
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
124 |
|
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
125 |
double predict_young_cards_per_entry_ratio() const; |
1374 | 126 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
127 |
double predict_mixed_cards_per_entry_ratio() const; |
1374 | 128 |
|
49643
a3453bbd5418
8199742: Clean up state flags in G1CollectorState
tschatzl
parents:
47216
diff
changeset
|
129 |
size_t predict_card_num(size_t rs_length, bool for_young_gc) const; |
1374 | 130 |
|
49643
a3453bbd5418
8199742: Clean up state flags in G1CollectorState
tschatzl
parents:
47216
diff
changeset
|
131 |
double predict_rs_scan_time_ms(size_t card_num, bool for_young_gc) const; |
1374 | 132 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
133 |
double predict_mixed_rs_scan_time_ms(size_t card_num) const; |
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
134 |
|
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
135 |
double predict_object_copy_time_ms_during_cm(size_t bytes_to_copy) const; |
1374 | 136 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
137 |
double predict_object_copy_time_ms(size_t bytes_to_copy, bool during_concurrent_mark) const; |
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
138 |
|
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
139 |
double predict_constant_other_time_ms() const; |
1374 | 140 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
141 |
double predict_young_other_time_ms(size_t young_num) const; |
1374 | 142 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
143 |
double predict_non_young_other_time_ms(size_t non_young_num) const; |
1374 | 144 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
145 |
double predict_remark_time_ms() const; |
1374 | 146 |
|
33214
5a00fba36171
8137082: Factor out G1 prediction code from G1CollectorPolicy and clean up
tschatzl
parents:
33204
diff
changeset
|
147 |
double predict_cleanup_time_ms() const; |
1374 | 148 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
149 |
size_t predict_rs_lengths() const; |
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
150 |
size_t predict_pending_cards() const; |
1374 | 151 |
|
38249
51b1102fc197
8156022: Add prediction for cost_per_byte_ms to G1Analytics
ehelin
parents:
37144
diff
changeset
|
152 |
double predict_cost_per_byte_ms() const; |
51b1102fc197
8156022: Add prediction for cost_per_byte_ms to G1Analytics
ehelin
parents:
37144
diff
changeset
|
153 |
|
1374 | 154 |
// Add a new GC of the given duration and end time to the record. |
155 |
void update_recent_gc_times(double end_time_sec, double elapsed_ms); |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
156 |
void compute_pause_time_ratio(double interval_ms, double pause_time_ms); |
1374 | 157 |
|
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
158 |
double last_known_gc_end_time_sec() const; |
1374 | 159 |
}; |
160 |
||
37134
9dd3975ca940
8151711: Move G1 number sequences out of the G1 collector policy
mgerdin
parents:
37070
diff
changeset
|
161 |
#endif // SHARE_VM_GC_G1_G1MEASUREMENTS_HPP |