author | kbarrett |
Tue, 12 Jun 2018 18:12:59 -0400 | |
changeset 50532 | a18c60527166 |
parent 49982 | 9042ffe5b7fe |
child 51332 | c25572739e7c |
permissions | -rw-r--r-- |
9338 | 1 |
/* |
49377
ecd91135d645
8153333: [REDO] STW phases at Concurrent GC should count in PerfCounte
ysuenaga
parents:
48116
diff
changeset
|
2 |
* Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
9338 | 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" |
|
30764 | 26 |
#include "gc/g1/g1CollectedHeap.inline.hpp" |
27 |
#include "gc/g1/g1MonitoringSupport.hpp" |
|
37985
539c597ee0fa
8154154: Separate G1 specific policy code from the CollectorPolicy class hierarchy
mgerdin
parents:
37235
diff
changeset
|
28 |
#include "gc/g1/g1Policy.hpp" |
49982 | 29 |
#include "gc/shared/collectorCounters.hpp" |
48116 | 30 |
#include "gc/shared/hSpaceCounters.hpp" |
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49806
diff
changeset
|
31 |
#include "memory/metaspaceCounters.hpp" |
9338 | 32 |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
33 |
G1GenerationCounters::G1GenerationCounters(G1MonitoringSupport* g1mm, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
34 |
const char* name, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
35 |
int ordinal, int spaces, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
36 |
size_t min_capacity, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
37 |
size_t max_capacity, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
38 |
size_t curr_capacity) |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
39 |
: GenerationCounters(name, ordinal, spaces, min_capacity, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
40 |
max_capacity, curr_capacity), _g1mm(g1mm) { } |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
41 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
42 |
// We pad the capacity three times given that the young generation |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
43 |
// contains three spaces (eden and two survivors). |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
44 |
G1YoungGenerationCounters::G1YoungGenerationCounters(G1MonitoringSupport* g1mm, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
45 |
const char* name) |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
46 |
: G1GenerationCounters(g1mm, name, 0 /* ordinal */, 3 /* spaces */, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
47 |
G1MonitoringSupport::pad_capacity(0, 3) /* min_capacity */, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
48 |
G1MonitoringSupport::pad_capacity(g1mm->young_gen_max(), 3), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
49 |
G1MonitoringSupport::pad_capacity(0, 3) /* curr_capacity */) { |
12096
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
50 |
if (UsePerfData) { |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
51 |
update_all(); |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
52 |
} |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
53 |
} |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
54 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
55 |
G1OldGenerationCounters::G1OldGenerationCounters(G1MonitoringSupport* g1mm, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
56 |
const char* name) |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
57 |
: G1GenerationCounters(g1mm, name, 1 /* ordinal */, 1 /* spaces */, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
58 |
G1MonitoringSupport::pad_capacity(0) /* min_capacity */, |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
59 |
G1MonitoringSupport::pad_capacity(g1mm->old_gen_max()), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
60 |
G1MonitoringSupport::pad_capacity(0) /* curr_capacity */) { |
12096
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
61 |
if (UsePerfData) { |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
62 |
update_all(); |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
63 |
} |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
64 |
} |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
65 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
66 |
void G1YoungGenerationCounters::update_all() { |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
67 |
size_t committed = |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
68 |
G1MonitoringSupport::pad_capacity(_g1mm->young_gen_committed(), 3); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
69 |
_current_size->set_value(committed); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
70 |
} |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
71 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
72 |
void G1OldGenerationCounters::update_all() { |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
73 |
size_t committed = |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
74 |
G1MonitoringSupport::pad_capacity(_g1mm->old_gen_committed()); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
75 |
_current_size->set_value(committed); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
76 |
} |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
77 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
78 |
G1MonitoringSupport::G1MonitoringSupport(G1CollectedHeap* g1h) : |
9338 | 79 |
_g1h(g1h), |
80 |
_incremental_collection_counters(NULL), |
|
81 |
_full_collection_counters(NULL), |
|
49377
ecd91135d645
8153333: [REDO] STW phases at Concurrent GC should count in PerfCounte
ysuenaga
parents:
48116
diff
changeset
|
82 |
_conc_collection_counters(NULL), |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
83 |
_old_collection_counters(NULL), |
9338 | 84 |
_old_space_counters(NULL), |
85 |
_young_collection_counters(NULL), |
|
86 |
_eden_counters(NULL), |
|
87 |
_from_counters(NULL), |
|
88 |
_to_counters(NULL), |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
89 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
90 |
_overall_reserved(0), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
91 |
_overall_committed(0), _overall_used(0), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
92 |
_young_region_num(0), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
93 |
_young_gen_committed(0), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
94 |
_eden_committed(0), _eden_used(0), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
95 |
_survivor_committed(0), _survivor_used(0), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
96 |
_old_committed(0), _old_used(0) { |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
97 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
98 |
_overall_reserved = g1h->max_capacity(); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
99 |
recalculate_sizes(); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
100 |
|
9338 | 101 |
// Counters for GC collections |
102 |
// |
|
103 |
// name "collector.0". In a generational collector this would be the |
|
104 |
// young generation collection. |
|
105 |
_incremental_collection_counters = |
|
106 |
new CollectorCounters("G1 incremental collections", 0); |
|
107 |
// name "collector.1". In a generational collector this would be the |
|
108 |
// old generation collection. |
|
109 |
_full_collection_counters = |
|
110 |
new CollectorCounters("G1 stop-the-world full collections", 1); |
|
49377
ecd91135d645
8153333: [REDO] STW phases at Concurrent GC should count in PerfCounte
ysuenaga
parents:
48116
diff
changeset
|
111 |
// name "collector.2". In a generational collector this would be the |
ecd91135d645
8153333: [REDO] STW phases at Concurrent GC should count in PerfCounte
ysuenaga
parents:
48116
diff
changeset
|
112 |
// STW phases in concurrent collection. |
ecd91135d645
8153333: [REDO] STW phases at Concurrent GC should count in PerfCounte
ysuenaga
parents:
48116
diff
changeset
|
113 |
_conc_collection_counters = |
ecd91135d645
8153333: [REDO] STW phases at Concurrent GC should count in PerfCounte
ysuenaga
parents:
48116
diff
changeset
|
114 |
new CollectorCounters("G1 stop-the-world phases", 2); |
9338 | 115 |
|
116 |
// timer sampling for all counters supporting sampling only update the |
|
117 |
// used value. See the take_sample() method. G1 requires both used and |
|
118 |
// capacity updated so sampling is not currently used. It might |
|
119 |
// be sufficient to update all counters in take_sample() even though |
|
120 |
// take_sample() only returns "used". When sampling was used, there |
|
121 |
// were some anomolous values emitted which may have been the consequence |
|
122 |
// of not updating all values simultaneously (i.e., see the calculation done |
|
22551 | 123 |
// in eden_space_used(), is it possible that the values used to |
9338 | 124 |
// calculate either eden_used or survivor_used are being updated by |
125 |
// the collector when the sample is being done?). |
|
126 |
const bool sampled = false; |
|
127 |
||
128 |
// "Generation" and "Space" counters. |
|
129 |
// |
|
130 |
// name "generation.1" This is logically the old generation in |
|
131 |
// generational GC terms. The "1, 1" parameters are for |
|
132 |
// the n-th generation (=1) with 1 space. |
|
133 |
// Counters are created from minCapacity, maxCapacity, and capacity |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
134 |
_old_collection_counters = new G1OldGenerationCounters(this, "old"); |
9338 | 135 |
|
136 |
// name "generation.1.space.0" |
|
137 |
// Counters are created from maxCapacity, capacity, initCapacity, |
|
138 |
// and used. |
|
48116 | 139 |
_old_space_counters = new HSpaceCounters(_old_collection_counters->name_space(), |
140 |
"space", 0 /* ordinal */, |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
141 |
pad_capacity(overall_reserved()) /* max_capacity */, |
48116 | 142 |
pad_capacity(old_space_committed()) /* init_capacity */); |
9338 | 143 |
|
144 |
// Young collection set |
|
145 |
// name "generation.0". This is logically the young generation. |
|
22551 | 146 |
// The "0, 3" are parameters for the n-th generation (=0) with 3 spaces. |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
147 |
// See _old_collection_counters for additional counters |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
148 |
_young_collection_counters = new G1YoungGenerationCounters(this, "young"); |
9338 | 149 |
|
48116 | 150 |
const char* young_collection_name_space = _young_collection_counters->name_space(); |
151 |
||
9338 | 152 |
// name "generation.0.space.0" |
153 |
// See _old_space_counters for additional counters |
|
48116 | 154 |
_eden_counters = new HSpaceCounters(young_collection_name_space, |
155 |
"eden", 0 /* ordinal */, |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
156 |
pad_capacity(overall_reserved()) /* max_capacity */, |
48116 | 157 |
pad_capacity(eden_space_committed()) /* init_capacity */); |
9338 | 158 |
|
159 |
// name "generation.0.space.1" |
|
160 |
// See _old_space_counters for additional counters |
|
161 |
// Set the arguments to indicate that this survivor space is not used. |
|
48116 | 162 |
_from_counters = new HSpaceCounters(young_collection_name_space, |
163 |
"s0", 1 /* ordinal */, |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
164 |
pad_capacity(0) /* max_capacity */, |
48116 | 165 |
pad_capacity(0) /* init_capacity */); |
9338 | 166 |
|
167 |
// name "generation.0.space.2" |
|
168 |
// See _old_space_counters for additional counters |
|
48116 | 169 |
_to_counters = new HSpaceCounters(young_collection_name_space, |
170 |
"s1", 2 /* ordinal */, |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
171 |
pad_capacity(overall_reserved()) /* max_capacity */, |
48116 | 172 |
pad_capacity(survivor_space_committed()) /* init_capacity */); |
12096
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
173 |
|
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
174 |
if (UsePerfData) { |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
175 |
// Given that this survivor space is not used, we update it here |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
176 |
// once to reflect that its used space is 0 so that we don't have to |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
177 |
// worry about updating it again later. |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
178 |
_from_counters->update_used(0); |
c9ee3caeda27
7147806: G1: Crash in vm bootstrap when running with -XX:+UseG1GC -XX:-UsePerfData
johnc
parents:
10671
diff
changeset
|
179 |
} |
9338 | 180 |
} |
181 |
||
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
182 |
void G1MonitoringSupport::recalculate_sizes() { |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
183 |
// Recalculate all the sizes from scratch. We assume that this is |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
184 |
// called at a point where no concurrent updates to the various |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
185 |
// values we read here are possible (i.e., at a STW phase at the end |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
186 |
// of a GC). |
9338 | 187 |
|
49806 | 188 |
uint young_list_length = _g1h->young_regions_count(); |
189 |
uint survivor_list_length = _g1h->survivor_regions_count(); |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
190 |
assert(young_list_length >= survivor_list_length, "invariant"); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
12096
diff
changeset
|
191 |
uint eden_list_length = young_list_length - survivor_list_length; |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
192 |
// Max length includes any potential extensions to the young gen |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
193 |
// we'll do when the GC locker is active. |
49806 | 194 |
uint young_list_max_length = _g1h->g1_policy()->young_list_max_length(); |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
195 |
assert(young_list_max_length >= survivor_list_length, "invariant"); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
12096
diff
changeset
|
196 |
uint eden_list_max_length = young_list_max_length - survivor_list_length; |
9338 | 197 |
|
49806 | 198 |
_overall_used = _g1h->used_unlocked(); |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
12096
diff
changeset
|
199 |
_eden_used = (size_t) eden_list_length * HeapRegion::GrainBytes; |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
12096
diff
changeset
|
200 |
_survivor_used = (size_t) survivor_list_length * HeapRegion::GrainBytes; |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
201 |
_young_region_num = young_list_length; |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
202 |
_old_used = subtract_up_to_zero(_overall_used, _eden_used + _survivor_used); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
203 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
204 |
// First calculate the committed sizes that can be calculated independently. |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
205 |
_survivor_committed = _survivor_used; |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
206 |
_old_committed = HeapRegion::align_up_to_region_byte_size(_old_used); |
9338 | 207 |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
208 |
// Next, start with the overall committed size. |
49806 | 209 |
_overall_committed = _g1h->capacity(); |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
210 |
size_t committed = _overall_committed; |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
211 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
212 |
// Remove the committed size we have calculated so far (for the |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
213 |
// survivor and old space). |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
214 |
assert(committed >= (_survivor_committed + _old_committed), "sanity"); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
215 |
committed -= _survivor_committed + _old_committed; |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
216 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
217 |
// Next, calculate and remove the committed size for the eden. |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
12096
diff
changeset
|
218 |
_eden_committed = (size_t) eden_list_max_length * HeapRegion::GrainBytes; |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
219 |
// Somewhat defensive: be robust in case there are inaccuracies in |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
220 |
// the calculations |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
221 |
_eden_committed = MIN2(_eden_committed, committed); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
222 |
committed -= _eden_committed; |
9338 | 223 |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
224 |
// Finally, give the rest to the old space... |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
225 |
_old_committed += committed; |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
226 |
// ..and calculate the young gen committed. |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
227 |
_young_gen_committed = _eden_committed + _survivor_committed; |
9338 | 228 |
|
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
229 |
assert(_overall_committed == |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
230 |
(_eden_committed + _survivor_committed + _old_committed), |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
231 |
"the committed sizes should add up"); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
232 |
// Somewhat defensive: cap the eden used size to make sure it |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
233 |
// never exceeds the committed size. |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
234 |
_eden_used = MIN2(_eden_used, _eden_committed); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
235 |
// _survivor_committed and _old_committed are calculated in terms of |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
236 |
// the corresponding _*_used value, so the next two conditions |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
237 |
// should hold. |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
238 |
assert(_survivor_used <= _survivor_committed, "post-condition"); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
239 |
assert(_old_used <= _old_committed, "post-condition"); |
9338 | 240 |
} |
241 |
||
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
242 |
void G1MonitoringSupport::recalculate_eden_size() { |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
243 |
// When a new eden region is allocated, only the eden_used size is |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
244 |
// affected (since we have recalculated everything else at the last GC). |
9338 | 245 |
|
49806 | 246 |
uint young_region_num = _g1h->young_regions_count(); |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
247 |
if (young_region_num > _young_region_num) { |
12381
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
12096
diff
changeset
|
248 |
uint diff = young_region_num - _young_region_num; |
1438e0fbfa27
7157073: G1: type change size_t -> uint for region counts / indexes
tonyp
parents:
12096
diff
changeset
|
249 |
_eden_used += (size_t) diff * HeapRegion::GrainBytes; |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
250 |
// Somewhat defensive: cap the eden used size to make sure it |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
251 |
// never exceeds the committed size. |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
252 |
_eden_used = MIN2(_eden_used, _eden_committed); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
253 |
_young_region_num = young_region_num; |
9338 | 254 |
} |
255 |
} |
|
256 |
||
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
257 |
void G1MonitoringSupport::update_sizes() { |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
258 |
recalculate_sizes(); |
9338 | 259 |
if (UsePerfData) { |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
260 |
eden_counters()->update_capacity(pad_capacity(eden_space_committed())); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
261 |
eden_counters()->update_used(eden_space_used()); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
262 |
// only the to survivor space (s1) is active, so we don't need to |
22551 | 263 |
// update the counters for the from survivor space (s0) |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
264 |
to_counters()->update_capacity(pad_capacity(survivor_space_committed())); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
265 |
to_counters()->update_used(survivor_space_used()); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
266 |
old_space_counters()->update_capacity(pad_capacity(old_space_committed())); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
267 |
old_space_counters()->update_used(old_space_used()); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
268 |
old_collection_counters()->update_all(); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
269 |
young_collection_counters()->update_all(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12381
diff
changeset
|
270 |
MetaspaceCounters::update_performance_counters(); |
19322
e35f9ed4f081
8014659: NPG: performance counters for compressed klass space
ehelin
parents:
13728
diff
changeset
|
271 |
CompressedClassSpaceCounters::update_performance_counters(); |
10671
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
272 |
} |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
273 |
} |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
274 |
|
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
275 |
void G1MonitoringSupport::update_eden_size() { |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
276 |
recalculate_eden_size(); |
431ff8629f97
7075646: G1: fix inconsistencies in the monitoring data
tonyp
parents:
9338
diff
changeset
|
277 |
if (UsePerfData) { |
9338 | 278 |
eden_counters()->update_used(eden_space_used()); |
279 |
} |
|
280 |
} |