author | stefank |
Thu, 22 Feb 2018 18:36:07 +0100 | |
changeset 49047 | 8f004146e407 |
parent 47216 | 71c04702a3d5 |
child 49982 | 9042ffe5b7fe |
permissions | -rw-r--r-- |
18025 | 1 |
/* |
37137
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
2 |
* Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved. |
18025 | 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/shared/copyFailedInfo.hpp" |
27 |
#include "gc/shared/gcHeapSummary.hpp" |
|
28 |
#include "gc/shared/gcId.hpp" |
|
29 |
#include "gc/shared/gcTimer.hpp" |
|
30 |
#include "gc/shared/gcTrace.hpp" |
|
31 |
#include "gc/shared/objectCountEventSender.hpp" |
|
32 |
#include "gc/shared/referenceProcessorStats.hpp" |
|
18025 | 33 |
#include "memory/heapInspection.hpp" |
29081
c61eb4914428
8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
28940
diff
changeset
|
34 |
#include "memory/resourceArea.hpp" |
18706
2d278f82253d
8015683: object_count_after_gc should have the same timestamp for all events
ehelin
parents:
18705
diff
changeset
|
35 |
#include "runtime/os.hpp" |
18025 | 36 |
#include "utilities/globalDefinitions.hpp" |
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
25350
diff
changeset
|
37 |
#include "utilities/macros.hpp" |
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
38 |
#include "utilities/ticks.inline.hpp" |
18025 | 39 |
#if INCLUDE_ALL_GCS |
30764 | 40 |
#include "gc/g1/evacuationInfo.hpp" |
18025 | 41 |
#endif |
42 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
43 |
void GCTracer::report_gc_start_impl(GCCause::Cause cause, const Ticks& timestamp) { |
18025 | 44 |
_shared_gc_info.set_cause(cause); |
45 |
_shared_gc_info.set_start_timestamp(timestamp); |
|
46 |
} |
|
47 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
48 |
void GCTracer::report_gc_start(GCCause::Cause cause, const Ticks& timestamp) { |
18025 | 49 |
report_gc_start_impl(cause, timestamp); |
50 |
} |
|
51 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
52 |
void GCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 53 |
_shared_gc_info.set_sum_of_pauses(time_partitions->sum_of_pauses()); |
54 |
_shared_gc_info.set_longest_pause(time_partitions->longest_pause()); |
|
55 |
_shared_gc_info.set_end_timestamp(timestamp); |
|
56 |
||
57 |
send_phase_events(time_partitions); |
|
58 |
send_garbage_collection_event(); |
|
59 |
} |
|
60 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
61 |
void GCTracer::report_gc_end(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 62 |
report_gc_end_impl(timestamp, time_partitions); |
63 |
} |
|
64 |
||
65 |
void GCTracer::report_gc_reference_stats(const ReferenceProcessorStats& rps) const { |
|
66 |
send_reference_stats_event(REF_SOFT, rps.soft_count()); |
|
67 |
send_reference_stats_event(REF_WEAK, rps.weak_count()); |
|
68 |
send_reference_stats_event(REF_FINAL, rps.final_count()); |
|
69 |
send_reference_stats_event(REF_PHANTOM, rps.phantom_count()); |
|
70 |
} |
|
71 |
||
72 |
#if INCLUDE_SERVICES |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
73 |
class ObjectCountEventSenderClosure : public KlassInfoClosure { |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
74 |
const double _size_threshold_percentage; |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
75 |
const size_t _total_size_in_words; |
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
76 |
const Ticks _timestamp; |
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
77 |
|
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
78 |
public: |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32817
diff
changeset
|
79 |
ObjectCountEventSenderClosure(size_t total_size_in_words, const Ticks& timestamp) : |
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
80 |
_size_threshold_percentage(ObjectCountCutOffPercent / 100), |
18706
2d278f82253d
8015683: object_count_after_gc should have the same timestamp for all events
ehelin
parents:
18705
diff
changeset
|
81 |
_total_size_in_words(total_size_in_words), |
2d278f82253d
8015683: object_count_after_gc should have the same timestamp for all events
ehelin
parents:
18705
diff
changeset
|
82 |
_timestamp(timestamp) |
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
83 |
{} |
18025 | 84 |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
85 |
virtual void do_cinfo(KlassInfoEntry* entry) { |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
86 |
if (should_send_event(entry)) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32817
diff
changeset
|
87 |
ObjectCountEventSender::send(entry, _timestamp); |
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
88 |
} |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
89 |
} |
18025 | 90 |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
91 |
private: |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
92 |
bool should_send_event(const KlassInfoEntry* entry) const { |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
93 |
double percentage_of_heap = ((double) entry->words()) / _total_size_in_words; |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
94 |
return percentage_of_heap >= _size_threshold_percentage; |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
95 |
} |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
96 |
}; |
18025 | 97 |
|
98 |
void GCTracer::report_object_count_after_gc(BoolObjectClosure* is_alive_cl) { |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
99 |
assert(is_alive_cl != NULL, "Must supply function to check liveness"); |
18025 | 100 |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
101 |
if (ObjectCountEventSender::should_send_event()) { |
18025 | 102 |
ResourceMark rm; |
103 |
||
104 |
KlassInfoTable cit(false); |
|
105 |
if (!cit.allocation_failed()) { |
|
106 |
HeapInspection hi(false, false, false, NULL); |
|
107 |
hi.populate_table(&cit, is_alive_cl); |
|
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32817
diff
changeset
|
108 |
ObjectCountEventSenderClosure event_sender(cit.size_of_instances_in_words(), Ticks::now()); |
18025 | 109 |
cit.iterate(&event_sender); |
110 |
} |
|
111 |
} |
|
112 |
} |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
113 |
#endif // INCLUDE_SERVICES |
18025 | 114 |
|
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
115 |
void GCTracer::report_gc_heap_summary(GCWhen::Type when, const GCHeapSummary& heap_summary) const { |
18025 | 116 |
send_gc_heap_summary_event(when, heap_summary); |
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
117 |
} |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
118 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
119 |
void GCTracer::report_metaspace_summary(GCWhen::Type when, const MetaspaceSummary& summary) const { |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
120 |
send_meta_space_summary_event(when, summary); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
121 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
122 |
send_metaspace_chunk_free_list_summary(when, Metaspace::NonClassType, summary.metaspace_chunk_free_list_summary()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
123 |
if (UseCompressedClassPointers) { |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
124 |
send_metaspace_chunk_free_list_summary(when, Metaspace::ClassType, summary.class_chunk_free_list_summary()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
125 |
} |
18025 | 126 |
} |
127 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
128 |
void YoungGCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 129 |
assert(_tenuring_threshold != UNSET_TENURING_THRESHOLD, "Tenuring threshold has not been reported"); |
130 |
||
131 |
GCTracer::report_gc_end_impl(timestamp, time_partitions); |
|
132 |
send_young_gc_event(); |
|
133 |
||
134 |
_tenuring_threshold = UNSET_TENURING_THRESHOLD; |
|
135 |
} |
|
136 |
||
28940
c314cf1db3fa
8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents:
28024
diff
changeset
|
137 |
void YoungGCTracer::report_promotion_failed(const PromotionFailedInfo& pf_info) const { |
18025 | 138 |
send_promotion_failed_event(pf_info); |
139 |
} |
|
140 |
||
141 |
void YoungGCTracer::report_tenuring_threshold(const uint tenuring_threshold) { |
|
142 |
_tenuring_threshold = tenuring_threshold; |
|
143 |
} |
|
144 |
||
32608 | 145 |
bool YoungGCTracer::should_report_promotion_events() const { |
146 |
return should_report_promotion_in_new_plab_event() || |
|
147 |
should_report_promotion_outside_plab_event(); |
|
148 |
} |
|
149 |
||
28024 | 150 |
bool YoungGCTracer::should_report_promotion_in_new_plab_event() const { |
151 |
return should_send_promotion_in_new_plab_event(); |
|
152 |
} |
|
153 |
||
154 |
bool YoungGCTracer::should_report_promotion_outside_plab_event() const { |
|
155 |
return should_send_promotion_outside_plab_event(); |
|
156 |
} |
|
157 |
||
158 |
void YoungGCTracer::report_promotion_in_new_plab_event(Klass* klass, size_t obj_size, |
|
159 |
uint age, bool tenured, |
|
160 |
size_t plab_size) const { |
|
161 |
send_promotion_in_new_plab_event(klass, obj_size, age, tenured, plab_size); |
|
162 |
} |
|
163 |
||
164 |
void YoungGCTracer::report_promotion_outside_plab_event(Klass* klass, size_t obj_size, |
|
165 |
uint age, bool tenured) const { |
|
166 |
send_promotion_outside_plab_event(klass, obj_size, age, tenured); |
|
167 |
} |
|
168 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
169 |
void OldGCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 170 |
GCTracer::report_gc_end_impl(timestamp, time_partitions); |
171 |
send_old_gc_event(); |
|
172 |
} |
|
173 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
174 |
void ParallelOldTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 175 |
OldGCTracer::report_gc_end_impl(timestamp, time_partitions); |
176 |
send_parallel_old_event(); |
|
177 |
} |
|
178 |
||
179 |
void ParallelOldTracer::report_dense_prefix(void* dense_prefix) { |
|
180 |
_parallel_old_gc_info.report_dense_prefix(dense_prefix); |
|
181 |
} |
|
182 |
||
183 |
void OldGCTracer::report_concurrent_mode_failure() { |
|
184 |
send_concurrent_mode_failure_event(); |
|
185 |
} |
|
186 |
||
187 |
#if INCLUDE_ALL_GCS |
|
41076
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
37137
diff
changeset
|
188 |
void G1MMUTracer::report_mmu(double time_slice_sec, double gc_time_sec, double max_time_sec) { |
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
37137
diff
changeset
|
189 |
send_g1_mmu_event(time_slice_sec * MILLIUNITS, |
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
37137
diff
changeset
|
190 |
gc_time_sec * MILLIUNITS, |
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
37137
diff
changeset
|
191 |
max_time_sec * MILLIUNITS); |
31619 | 192 |
} |
193 |
||
18025 | 194 |
void G1NewTracer::report_yc_type(G1YCType type) { |
195 |
_g1_young_gc_info.set_type(type); |
|
196 |
} |
|
197 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
198 |
void G1NewTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 199 |
YoungGCTracer::report_gc_end_impl(timestamp, time_partitions); |
200 |
send_g1_young_gc_event(); |
|
201 |
} |
|
202 |
||
203 |
void G1NewTracer::report_evacuation_info(EvacuationInfo* info) { |
|
204 |
send_evacuation_info_event(info); |
|
205 |
} |
|
206 |
||
207 |
void G1NewTracer::report_evacuation_failed(EvacuationFailedInfo& ef_info) { |
|
208 |
send_evacuation_failed_event(ef_info); |
|
209 |
ef_info.reset(); |
|
210 |
} |
|
32380
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
211 |
|
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
212 |
void G1NewTracer::report_evacuation_statistics(const G1EvacSummary& young_summary, const G1EvacSummary& old_summary) const { |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
213 |
send_young_evacuation_statistics(young_summary); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
214 |
send_old_evacuation_statistics(old_summary); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
215 |
} |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
216 |
|
34300 | 217 |
void G1NewTracer::report_basic_ihop_statistics(size_t threshold, |
218 |
size_t target_ccupancy, |
|
219 |
size_t current_occupancy, |
|
220 |
size_t last_allocation_size, |
|
221 |
double last_allocation_duration, |
|
222 |
double last_marking_length) { |
|
223 |
send_basic_ihop_statistics(threshold, |
|
224 |
target_ccupancy, |
|
225 |
current_occupancy, |
|
226 |
last_allocation_size, |
|
227 |
last_allocation_duration, |
|
228 |
last_marking_length); |
|
229 |
} |
|
230 |
||
231 |
void G1NewTracer::report_adaptive_ihop_statistics(size_t threshold, |
|
232 |
size_t internal_target_occupancy, |
|
233 |
size_t current_occupancy, |
|
234 |
size_t additional_buffer_size, |
|
235 |
double predicted_allocation_rate, |
|
236 |
double predicted_marking_length, |
|
237 |
bool prediction_active) { |
|
238 |
send_adaptive_ihop_statistics(threshold, |
|
239 |
internal_target_occupancy, |
|
240 |
additional_buffer_size, |
|
241 |
current_occupancy, |
|
242 |
predicted_allocation_rate, |
|
243 |
predicted_marking_length, |
|
244 |
prediction_active); |
|
245 |
} |
|
246 |
||
37137
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
247 |
void G1OldTracer::report_gc_start_impl(GCCause::Cause cause, const Ticks& timestamp) { |
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
248 |
_shared_gc_info.set_start_timestamp(timestamp); |
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
249 |
} |
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
250 |
|
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
251 |
void G1OldTracer::set_gc_cause(GCCause::Cause cause) { |
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
252 |
_shared_gc_info.set_cause(cause); |
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
253 |
} |
62fd3fb4b1b1
8151085: Change G1 concurrent timer and tracer measuring time
sangheki
parents:
34300
diff
changeset
|
254 |
|
18025 | 255 |
#endif |