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