author | egahlin |
Tue, 15 May 2018 20:24:34 +0200 | |
changeset 50113 | caf115bb98ad |
parent 49982 | 9042ffe5b7fe |
child 53411 | aa87f38fcba2 |
permissions | -rw-r--r-- |
18025 | 1 |
/* |
46795
623a5e42deb6
8173335: Improve logging for j.l.ref.reference processing
sangheki
parents:
41076
diff
changeset
|
2 |
* Copyright (c) 2012, 2017, 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/gcTimer.hpp" |
|
29 |
#include "gc/shared/gcTrace.hpp" |
|
30 |
#include "gc/shared/gcWhen.hpp" |
|
50113 | 31 |
#include "jfr/jfrEvents.hpp" |
19729
0ddd2b7bb9bd
8020692: TestGCEventMixed.java failed because of timestamp in event after end event
ehelin
parents:
18704
diff
changeset
|
32 |
#include "runtime/os.hpp" |
27684
e0391b2bf625
8064581: Move INCLUDE_ALL_GCS include section to the end of the include list
stefank
parents:
25350
diff
changeset
|
33 |
#include "utilities/macros.hpp" |
49982 | 34 |
#if INCLUDE_G1GC |
30764 | 35 |
#include "gc/g1/evacuationInfo.hpp" |
36 |
#include "gc/g1/g1YCTypes.hpp" |
|
18025 | 37 |
#endif |
38 |
||
39 |
// All GC dependencies against the trace framework is contained within this file. |
|
40 |
||
41 |
typedef uintptr_t TraceAddress; |
|
42 |
||
43 |
void GCTracer::send_garbage_collection_event() const { |
|
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
44 |
EventGarbageCollection event(UNTIMED); |
18025 | 45 |
if (event.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
46 |
event.set_gcId(GCId::current()); |
18025 | 47 |
event.set_name(_shared_gc_info.name()); |
48 |
event.set_cause((u2) _shared_gc_info.cause()); |
|
49 |
event.set_sumOfPauses(_shared_gc_info.sum_of_pauses()); |
|
50 |
event.set_longestPause(_shared_gc_info.longest_pause()); |
|
51 |
event.set_starttime(_shared_gc_info.start_timestamp()); |
|
52 |
event.set_endtime(_shared_gc_info.end_timestamp()); |
|
53 |
event.commit(); |
|
54 |
} |
|
55 |
} |
|
56 |
||
57 |
void GCTracer::send_reference_stats_event(ReferenceType type, size_t count) const { |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
19729
diff
changeset
|
58 |
EventGCReferenceStatistics e; |
18025 | 59 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
60 |
e.set_gcId(GCId::current()); |
18025 | 61 |
e.set_type((u1)type); |
62 |
e.set_count(count); |
|
63 |
e.commit(); |
|
64 |
} |
|
65 |
} |
|
66 |
||
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
67 |
void GCTracer::send_metaspace_chunk_free_list_summary(GCWhen::Type when, Metaspace::MetadataType mdtype, |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
68 |
const MetaspaceChunkFreeListSummary& summary) const { |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
69 |
EventMetaspaceChunkFreeListSummary e; |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
70 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
71 |
e.set_gcId(GCId::current()); |
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
72 |
e.set_when(when); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
73 |
e.set_metadataType(mdtype); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
74 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
75 |
e.set_specializedChunks(summary.num_specialized_chunks()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
76 |
e.set_specializedChunksTotalSize(summary.specialized_chunks_size_in_bytes()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
77 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
78 |
e.set_smallChunks(summary.num_small_chunks()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
79 |
e.set_smallChunksTotalSize(summary.small_chunks_size_in_bytes()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
80 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
81 |
e.set_mediumChunks(summary.num_medium_chunks()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
82 |
e.set_mediumChunksTotalSize(summary.medium_chunks_size_in_bytes()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
83 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
84 |
e.set_humongousChunks(summary.num_humongous_chunks()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
85 |
e.set_humongousChunksTotalSize(summary.humongous_chunks_size_in_bytes()); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
86 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
87 |
e.commit(); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
88 |
} |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
89 |
} |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
23464
diff
changeset
|
90 |
|
18025 | 91 |
void ParallelOldTracer::send_parallel_old_event() const { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
92 |
EventParallelOldGarbageCollection e(UNTIMED); |
18025 | 93 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
94 |
e.set_gcId(GCId::current()); |
18025 | 95 |
e.set_densePrefix((TraceAddress)_parallel_old_gc_info.dense_prefix()); |
96 |
e.set_starttime(_shared_gc_info.start_timestamp()); |
|
97 |
e.set_endtime(_shared_gc_info.end_timestamp()); |
|
98 |
e.commit(); |
|
99 |
} |
|
100 |
} |
|
101 |
||
102 |
void YoungGCTracer::send_young_gc_event() const { |
|
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
103 |
EventYoungGarbageCollection e(UNTIMED); |
18025 | 104 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
105 |
e.set_gcId(GCId::current()); |
18025 | 106 |
e.set_tenuringThreshold(_tenuring_threshold); |
107 |
e.set_starttime(_shared_gc_info.start_timestamp()); |
|
108 |
e.set_endtime(_shared_gc_info.end_timestamp()); |
|
109 |
e.commit(); |
|
110 |
} |
|
111 |
} |
|
112 |
||
28024 | 113 |
bool YoungGCTracer::should_send_promotion_in_new_plab_event() const { |
114 |
return EventPromoteObjectInNewPLAB::is_enabled(); |
|
115 |
} |
|
116 |
||
117 |
bool YoungGCTracer::should_send_promotion_outside_plab_event() const { |
|
118 |
return EventPromoteObjectOutsidePLAB::is_enabled(); |
|
119 |
} |
|
120 |
||
121 |
void YoungGCTracer::send_promotion_in_new_plab_event(Klass* klass, size_t obj_size, |
|
122 |
uint age, bool tenured, |
|
123 |
size_t plab_size) const { |
|
124 |
||
125 |
EventPromoteObjectInNewPLAB event; |
|
126 |
if (event.should_commit()) { |
|
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
127 |
event.set_gcId(GCId::current()); |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
128 |
event.set_objectClass(klass); |
28024 | 129 |
event.set_objectSize(obj_size); |
130 |
event.set_tenured(tenured); |
|
131 |
event.set_tenuringAge(age); |
|
132 |
event.set_plabSize(plab_size); |
|
133 |
event.commit(); |
|
134 |
} |
|
135 |
} |
|
136 |
||
137 |
void YoungGCTracer::send_promotion_outside_plab_event(Klass* klass, size_t obj_size, |
|
138 |
uint age, bool tenured) const { |
|
139 |
||
140 |
EventPromoteObjectOutsidePLAB event; |
|
141 |
if (event.should_commit()) { |
|
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
142 |
event.set_gcId(GCId::current()); |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
143 |
event.set_objectClass(klass); |
28024 | 144 |
event.set_objectSize(obj_size); |
145 |
event.set_tenured(tenured); |
|
146 |
event.set_tenuringAge(age); |
|
147 |
event.commit(); |
|
148 |
} |
|
149 |
} |
|
150 |
||
18025 | 151 |
void OldGCTracer::send_old_gc_event() const { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
152 |
EventOldGarbageCollection e(UNTIMED); |
18025 | 153 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
154 |
e.set_gcId(GCId::current()); |
18025 | 155 |
e.set_starttime(_shared_gc_info.start_timestamp()); |
156 |
e.set_endtime(_shared_gc_info.end_timestamp()); |
|
157 |
e.commit(); |
|
158 |
} |
|
159 |
} |
|
160 |
||
50113 | 161 |
static JfrStructCopyFailed to_struct(const CopyFailedInfo& cf_info) { |
162 |
JfrStructCopyFailed failed_info; |
|
18025 | 163 |
failed_info.set_objectCount(cf_info.failed_count()); |
164 |
failed_info.set_firstSize(cf_info.first_size()); |
|
165 |
failed_info.set_smallestSize(cf_info.smallest_size()); |
|
166 |
failed_info.set_totalSize(cf_info.total_size()); |
|
167 |
return failed_info; |
|
168 |
} |
|
169 |
||
170 |
void YoungGCTracer::send_promotion_failed_event(const PromotionFailedInfo& pf_info) const { |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
19729
diff
changeset
|
171 |
EventPromotionFailed e; |
18025 | 172 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
173 |
e.set_gcId(GCId::current()); |
50113 | 174 |
e.set_promotionFailed(to_struct(pf_info)); |
36384 | 175 |
e.set_thread(pf_info.thread_trace_id()); |
18025 | 176 |
e.commit(); |
177 |
} |
|
178 |
} |
|
179 |
||
180 |
// Common to CMS and G1 |
|
181 |
void OldGCTracer::send_concurrent_mode_failure_event() { |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
19729
diff
changeset
|
182 |
EventConcurrentModeFailure e; |
18025 | 183 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
184 |
e.set_gcId(GCId::current()); |
18025 | 185 |
e.commit(); |
186 |
} |
|
187 |
} |
|
188 |
||
49982 | 189 |
#if INCLUDE_G1GC |
18025 | 190 |
void G1NewTracer::send_g1_young_gc_event() { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
191 |
EventG1GarbageCollection e(UNTIMED); |
18025 | 192 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
193 |
e.set_gcId(GCId::current()); |
18025 | 194 |
e.set_type(_g1_young_gc_info.type()); |
195 |
e.set_starttime(_shared_gc_info.start_timestamp()); |
|
196 |
e.set_endtime(_shared_gc_info.end_timestamp()); |
|
197 |
e.commit(); |
|
198 |
} |
|
199 |
} |
|
200 |
||
41076
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
201 |
void G1MMUTracer::send_g1_mmu_event(double time_slice_ms, double gc_time_ms, double max_time_ms) { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
202 |
EventG1MMU e; |
31619 | 203 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
204 |
e.set_gcId(GCId::current()); |
41076
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
205 |
e.set_timeSlice(time_slice_ms); |
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
206 |
e.set_gcTime(gc_time_ms); |
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
207 |
e.set_pauseTarget(max_time_ms); |
31619 | 208 |
e.commit(); |
209 |
} |
|
210 |
} |
|
211 |
||
18025 | 212 |
void G1NewTracer::send_evacuation_info_event(EvacuationInfo* info) { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
213 |
EventEvacuationInformation e; |
18025 | 214 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
215 |
e.set_gcId(GCId::current()); |
18025 | 216 |
e.set_cSetRegions(info->collectionset_regions()); |
217 |
e.set_cSetUsedBefore(info->collectionset_used_before()); |
|
218 |
e.set_cSetUsedAfter(info->collectionset_used_after()); |
|
219 |
e.set_allocationRegions(info->allocation_regions()); |
|
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
220 |
e.set_allocationRegionsUsedBefore(info->alloc_regions_used_before()); |
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
221 |
e.set_allocationRegionsUsedAfter(info->alloc_regions_used_before() + info->bytes_copied()); |
18025 | 222 |
e.set_bytesCopied(info->bytes_copied()); |
223 |
e.set_regionsFreed(info->regions_freed()); |
|
224 |
e.commit(); |
|
225 |
} |
|
226 |
} |
|
227 |
||
228 |
void G1NewTracer::send_evacuation_failed_event(const EvacuationFailedInfo& ef_info) const { |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
19729
diff
changeset
|
229 |
EventEvacuationFailed e; |
18025 | 230 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
231 |
e.set_gcId(GCId::current()); |
50113 | 232 |
e.set_evacuationFailed(to_struct(ef_info)); |
18025 | 233 |
e.commit(); |
234 |
} |
|
235 |
} |
|
32380
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
236 |
|
50113 | 237 |
static JfrStructG1EvacuationStatistics |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
238 |
create_g1_evacstats(unsigned gcid, const G1EvacSummary& summary) { |
50113 | 239 |
JfrStructG1EvacuationStatistics s; |
32380
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
240 |
s.set_gcId(gcid); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
241 |
s.set_allocated(summary.allocated() * HeapWordSize); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
242 |
s.set_wasted(summary.wasted() * HeapWordSize); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
243 |
s.set_used(summary.used() * HeapWordSize); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
244 |
s.set_undoWaste(summary.undo_wasted() * HeapWordSize); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
245 |
s.set_regionEndWaste(summary.region_end_waste() * HeapWordSize); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
246 |
s.set_regionsRefilled(summary.regions_filled()); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
247 |
s.set_directAllocated(summary.direct_allocated() * HeapWordSize); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
248 |
s.set_failureUsed(summary.failure_used() * HeapWordSize); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
249 |
s.set_failureWaste(summary.failure_waste() * HeapWordSize); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
250 |
return s; |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
251 |
} |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
252 |
|
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
253 |
void G1NewTracer::send_young_evacuation_statistics(const G1EvacSummary& summary) const { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
254 |
EventG1EvacuationYoungStatistics surv_evt; |
32380
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
255 |
if (surv_evt.should_commit()) { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
256 |
surv_evt.set_statistics(create_g1_evacstats(GCId::current(), summary)); |
32380
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
257 |
surv_evt.commit(); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
258 |
} |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
259 |
} |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
260 |
|
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
261 |
void G1NewTracer::send_old_evacuation_statistics(const G1EvacSummary& summary) const { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
262 |
EventG1EvacuationOldStatistics old_evt; |
32380
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
263 |
if (old_evt.should_commit()) { |
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
264 |
old_evt.set_statistics(create_g1_evacstats(GCId::current(), summary)); |
32380
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
265 |
old_evt.commit(); |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
266 |
} |
1dcdb686f0cb
8133530: Add JFR event for evacuation statistics
tschatzl
parents:
31619
diff
changeset
|
267 |
} |
34300 | 268 |
|
269 |
void G1NewTracer::send_basic_ihop_statistics(size_t threshold, |
|
270 |
size_t target_occupancy, |
|
271 |
size_t current_occupancy, |
|
272 |
size_t last_allocation_size, |
|
273 |
double last_allocation_duration, |
|
274 |
double last_marking_length) { |
|
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
275 |
EventG1BasicIHOP evt; |
34300 | 276 |
if (evt.should_commit()) { |
277 |
evt.set_gcId(GCId::current()); |
|
278 |
evt.set_threshold(threshold); |
|
279 |
evt.set_targetOccupancy(target_occupancy); |
|
39980
dcef6760667c
8157459: G1 IHOP JFR event attribute with incorrect content type
tschatzl
parents:
36384
diff
changeset
|
280 |
evt.set_thresholdPercentage(target_occupancy > 0 ? ((double)threshold / target_occupancy) : 0.0); |
34300 | 281 |
evt.set_currentOccupancy(current_occupancy); |
41076
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
282 |
evt.set_recentMutatorAllocationSize(last_allocation_size); |
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
283 |
evt.set_recentMutatorDuration(last_allocation_duration * MILLIUNITS); |
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
284 |
evt.set_recentAllocationRate(last_allocation_duration != 0.0 ? last_allocation_size / last_allocation_duration : 0.0); |
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
285 |
evt.set_lastMarkingDuration(last_marking_length * MILLIUNITS); |
34300 | 286 |
evt.commit(); |
287 |
} |
|
288 |
} |
|
289 |
||
290 |
void G1NewTracer::send_adaptive_ihop_statistics(size_t threshold, |
|
291 |
size_t internal_target_occupancy, |
|
292 |
size_t current_occupancy, |
|
293 |
size_t additional_buffer_size, |
|
294 |
double predicted_allocation_rate, |
|
295 |
double predicted_marking_length, |
|
296 |
bool prediction_active) { |
|
40664
1ec65b303bb7
8164523: Clean up metadata for event based tracing
egahlin
parents:
39980
diff
changeset
|
297 |
EventG1AdaptiveIHOP evt; |
34300 | 298 |
if (evt.should_commit()) { |
299 |
evt.set_gcId(GCId::current()); |
|
300 |
evt.set_threshold(threshold); |
|
39980
dcef6760667c
8157459: G1 IHOP JFR event attribute with incorrect content type
tschatzl
parents:
36384
diff
changeset
|
301 |
evt.set_thresholdPercentage(internal_target_occupancy > 0 ? ((double)threshold / internal_target_occupancy) : 0.0); |
41076
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
302 |
evt.set_ihopTargetOccupancy(internal_target_occupancy); |
34300 | 303 |
evt.set_currentOccupancy(current_occupancy); |
304 |
evt.set_additionalBufferSize(additional_buffer_size); |
|
305 |
evt.set_predictedAllocationRate(predicted_allocation_rate); |
|
41076
8c6aa0873dd1
8165455: Tracing events for G1 have incorrect metadata
ehelin
parents:
40664
diff
changeset
|
306 |
evt.set_predictedMarkingDuration(predicted_marking_length * MILLIUNITS); |
34300 | 307 |
evt.set_predictionActive(prediction_active); |
308 |
evt.commit(); |
|
309 |
} |
|
310 |
} |
|
311 |
||
49982 | 312 |
#endif // INCLUDE_G1GC |
18025 | 313 |
|
50113 | 314 |
static JfrStructVirtualSpace to_struct(const VirtualSpaceSummary& summary) { |
315 |
JfrStructVirtualSpace space; |
|
18025 | 316 |
space.set_start((TraceAddress)summary.start()); |
317 |
space.set_committedEnd((TraceAddress)summary.committed_end()); |
|
318 |
space.set_committedSize(summary.committed_size()); |
|
319 |
space.set_reservedEnd((TraceAddress)summary.reserved_end()); |
|
320 |
space.set_reservedSize(summary.reserved_size()); |
|
321 |
return space; |
|
322 |
} |
|
323 |
||
50113 | 324 |
static JfrStructObjectSpace to_struct(const SpaceSummary& summary) { |
325 |
JfrStructObjectSpace space; |
|
18025 | 326 |
space.set_start((TraceAddress)summary.start()); |
327 |
space.set_end((TraceAddress)summary.end()); |
|
328 |
space.set_used(summary.used()); |
|
329 |
space.set_size(summary.size()); |
|
330 |
return space; |
|
331 |
} |
|
332 |
||
333 |
class GCHeapSummaryEventSender : public GCHeapSummaryVisitor { |
|
334 |
GCWhen::Type _when; |
|
335 |
public: |
|
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
336 |
GCHeapSummaryEventSender(GCWhen::Type when) : _when(when) {} |
18025 | 337 |
|
338 |
void visit(const GCHeapSummary* heap_summary) const { |
|
339 |
const VirtualSpaceSummary& heap_space = heap_summary->heap(); |
|
340 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
19729
diff
changeset
|
341 |
EventGCHeapSummary e; |
18025 | 342 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
343 |
e.set_gcId(GCId::current()); |
18025 | 344 |
e.set_when((u1)_when); |
50113 | 345 |
e.set_heapSpace(to_struct(heap_space)); |
18025 | 346 |
e.set_heapUsed(heap_summary->used()); |
347 |
e.commit(); |
|
348 |
} |
|
349 |
} |
|
350 |
||
31344
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
351 |
void visit(const G1HeapSummary* g1_heap_summary) const { |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
352 |
visit((GCHeapSummary*)g1_heap_summary); |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
353 |
|
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
354 |
EventG1HeapSummary e; |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
355 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
356 |
e.set_gcId(GCId::current()); |
31344
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
357 |
e.set_when((u1)_when); |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
358 |
e.set_edenUsedSize(g1_heap_summary->edenUsed()); |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
359 |
e.set_edenTotalSize(g1_heap_summary->edenCapacity()); |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
360 |
e.set_survivorUsedSize(g1_heap_summary->survivorUsed()); |
36095
2d530b26ae5c
8149648: Add number of regions to the G1HeapSummary event
david
parents:
35204
diff
changeset
|
361 |
e.set_numberOfRegions(g1_heap_summary->numberOfRegions()); |
31344
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
362 |
e.commit(); |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
363 |
} |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
364 |
} |
2316eb7a0358
8025608: GC trace events missing nursery size information
david
parents:
30764
diff
changeset
|
365 |
|
18025 | 366 |
void visit(const PSHeapSummary* ps_heap_summary) const { |
367 |
visit((GCHeapSummary*)ps_heap_summary); |
|
368 |
||
369 |
const VirtualSpaceSummary& old_summary = ps_heap_summary->old(); |
|
370 |
const SpaceSummary& old_space = ps_heap_summary->old_space(); |
|
371 |
const VirtualSpaceSummary& young_summary = ps_heap_summary->young(); |
|
372 |
const SpaceSummary& eden_space = ps_heap_summary->eden(); |
|
373 |
const SpaceSummary& from_space = ps_heap_summary->from(); |
|
374 |
const SpaceSummary& to_space = ps_heap_summary->to(); |
|
375 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
19729
diff
changeset
|
376 |
EventPSHeapSummary e; |
18025 | 377 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
378 |
e.set_gcId(GCId::current()); |
18025 | 379 |
e.set_when((u1)_when); |
380 |
||
50113 | 381 |
e.set_oldSpace(to_struct(ps_heap_summary->old())); |
382 |
e.set_oldObjectSpace(to_struct(ps_heap_summary->old_space())); |
|
383 |
e.set_youngSpace(to_struct(ps_heap_summary->young())); |
|
384 |
e.set_edenSpace(to_struct(ps_heap_summary->eden())); |
|
385 |
e.set_fromSpace(to_struct(ps_heap_summary->from())); |
|
386 |
e.set_toSpace(to_struct(ps_heap_summary->to())); |
|
18025 | 387 |
e.commit(); |
388 |
} |
|
389 |
} |
|
390 |
}; |
|
391 |
||
392 |
void GCTracer::send_gc_heap_summary_event(GCWhen::Type when, const GCHeapSummary& heap_summary) const { |
|
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
393 |
GCHeapSummaryEventSender visitor(when); |
18025 | 394 |
heap_summary.accept(&visitor); |
395 |
} |
|
396 |
||
50113 | 397 |
static JfrStructMetaspaceSizes to_struct(const MetaspaceSizes& sizes) { |
398 |
JfrStructMetaspaceSizes meta_sizes; |
|
18025 | 399 |
|
23853
3e1633ff6996
8035667: EventMetaspaceSummary doesn't report committed Metaspace memory
ehelin
parents:
23470
diff
changeset
|
400 |
meta_sizes.set_committed(sizes.committed()); |
18025 | 401 |
meta_sizes.set_used(sizes.used()); |
402 |
meta_sizes.set_reserved(sizes.reserved()); |
|
403 |
||
404 |
return meta_sizes; |
|
405 |
} |
|
406 |
||
407 |
void GCTracer::send_meta_space_summary_event(GCWhen::Type when, const MetaspaceSummary& meta_space_summary) const { |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
19729
diff
changeset
|
408 |
EventMetaspaceSummary e; |
18025 | 409 |
if (e.should_commit()) { |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
410 |
e.set_gcId(GCId::current()); |
18025 | 411 |
e.set_when((u1) when); |
23464
ae470a2efd44
8036696: Add metaspace gc threshold to metaspace summary trace event
ehelin
parents:
21767
diff
changeset
|
412 |
e.set_gcThreshold(meta_space_summary.capacity_until_GC()); |
50113 | 413 |
e.set_metaspace(to_struct(meta_space_summary.meta_space())); |
414 |
e.set_dataSpace(to_struct(meta_space_summary.data_space())); |
|
415 |
e.set_classSpace(to_struct(meta_space_summary.class_space())); |
|
18025 | 416 |
e.commit(); |
417 |
} |
|
418 |
} |
|
419 |
||
420 |
class PhaseSender : public PhaseVisitor { |
|
35204 | 421 |
void visit_pause(GCPhase* phase) { |
422 |
assert(phase->level() < PhasesStack::PHASE_LEVELS, "Need more event types for PausePhase"); |
|
423 |
||
424 |
switch (phase->level()) { |
|
425 |
case 0: send_phase<EventGCPhasePause>(phase); break; |
|
426 |
case 1: send_phase<EventGCPhasePauseLevel1>(phase); break; |
|
427 |
case 2: send_phase<EventGCPhasePauseLevel2>(phase); break; |
|
428 |
case 3: send_phase<EventGCPhasePauseLevel3>(phase); break; |
|
46795
623a5e42deb6
8173335: Improve logging for j.l.ref.reference processing
sangheki
parents:
41076
diff
changeset
|
429 |
case 4: send_phase<EventGCPhasePauseLevel4>(phase); break; |
35204 | 430 |
default: /* Ignore sending this phase */ break; |
431 |
} |
|
432 |
} |
|
433 |
||
434 |
void visit_concurrent(GCPhase* phase) { |
|
435 |
assert(phase->level() < 1, "There is only one level for ConcurrentPhase"); |
|
436 |
||
437 |
switch (phase->level()) { |
|
438 |
case 0: send_phase<EventGCPhaseConcurrent>(phase); break; |
|
439 |
default: /* Ignore sending this phase */ break; |
|
440 |
} |
|
441 |
} |
|
442 |
||
18025 | 443 |
public: |
444 |
template<typename T> |
|
35204 | 445 |
void send_phase(GCPhase* phase) { |
18025 | 446 |
T event(UNTIMED); |
447 |
if (event.should_commit()) { |
|
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
448 |
event.set_gcId(GCId::current()); |
35204 | 449 |
event.set_name(phase->name()); |
450 |
event.set_starttime(phase->start()); |
|
451 |
event.set_endtime(phase->end()); |
|
18025 | 452 |
event.commit(); |
453 |
} |
|
454 |
} |
|
455 |
||
35204 | 456 |
void visit(GCPhase* phase) { |
457 |
if (phase->type() == GCPhase::PausePhaseType) { |
|
458 |
visit_pause(phase); |
|
459 |
} else { |
|
460 |
assert(phase->type() == GCPhase::ConcurrentPhaseType, "Should be ConcurrentPhaseType"); |
|
461 |
visit_concurrent(phase); |
|
18025 | 462 |
} |
463 |
} |
|
464 |
}; |
|
465 |
||
466 |
void GCTracer::send_phase_events(TimePartitions* time_partitions) const { |
|
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
32380
diff
changeset
|
467 |
PhaseSender phase_reporter; |
18025 | 468 |
|
469 |
TimePartitionPhasesIterator iter(time_partitions); |
|
470 |
while (iter.has_next()) { |
|
471 |
GCPhase* phase = iter.next(); |
|
472 |
phase->accept(&phase_reporter); |
|
473 |
} |
|
474 |
} |