author | mlarsson |
Wed, 11 Feb 2015 14:47:21 +0100 | |
changeset 28940 | c314cf1db3fa |
parent 28024 | 33102d6e1f06 |
child 29081 | c61eb4914428 |
permissions | -rw-r--r-- |
18025 | 1 |
/* |
2 |
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. |
|
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" |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
26 |
#include "gc_implementation/shared/copyFailedInfo.hpp" |
18025 | 27 |
#include "gc_implementation/shared/gcHeapSummary.hpp" |
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
23470
diff
changeset
|
28 |
#include "gc_implementation/shared/gcId.hpp" |
18025 | 29 |
#include "gc_implementation/shared/gcTimer.hpp" |
30 |
#include "gc_implementation/shared/gcTrace.hpp" |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
31 |
#include "gc_implementation/shared/objectCountEventSender.hpp" |
18025 | 32 |
#include "memory/heapInspection.hpp" |
33 |
#include "memory/referenceProcessorStats.hpp" |
|
18706
2d278f82253d
8015683: object_count_after_gc should have the same timestamp for all events
ehelin
parents:
18705
diff
changeset
|
34 |
#include "runtime/os.hpp" |
18025 | 35 |
#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
|
36 |
#include "utilities/macros.hpp" |
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
37 |
#include "utilities/ticks.inline.hpp" |
18025 | 38 |
#if INCLUDE_ALL_GCS |
39 |
#include "gc_implementation/g1/evacuationInfo.hpp" |
|
40 |
#endif |
|
41 |
||
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
23470
diff
changeset
|
42 |
#define assert_unset_gc_id() assert(_shared_gc_info.gc_id().is_undefined(), "GC already started?") |
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
23470
diff
changeset
|
43 |
#define assert_set_gc_id() assert(!_shared_gc_info.gc_id().is_undefined(), "GC not started?") |
18025 | 44 |
|
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
45 |
void GCTracer::report_gc_start_impl(GCCause::Cause cause, const Ticks& timestamp) { |
18025 | 46 |
assert_unset_gc_id(); |
47 |
||
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
23470
diff
changeset
|
48 |
GCId gc_id = GCId::create(); |
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
23470
diff
changeset
|
49 |
_shared_gc_info.set_gc_id(gc_id); |
18025 | 50 |
_shared_gc_info.set_cause(cause); |
51 |
_shared_gc_info.set_start_timestamp(timestamp); |
|
52 |
} |
|
53 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
54 |
void GCTracer::report_gc_start(GCCause::Cause cause, const Ticks& timestamp) { |
18025 | 55 |
assert_unset_gc_id(); |
56 |
||
57 |
report_gc_start_impl(cause, timestamp); |
|
58 |
} |
|
59 |
||
60 |
bool GCTracer::has_reported_gc_start() const { |
|
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
23470
diff
changeset
|
61 |
return !_shared_gc_info.gc_id().is_undefined(); |
18025 | 62 |
} |
63 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
64 |
void GCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 65 |
assert_set_gc_id(); |
66 |
||
67 |
_shared_gc_info.set_sum_of_pauses(time_partitions->sum_of_pauses()); |
|
68 |
_shared_gc_info.set_longest_pause(time_partitions->longest_pause()); |
|
69 |
_shared_gc_info.set_end_timestamp(timestamp); |
|
70 |
||
71 |
send_phase_events(time_partitions); |
|
72 |
send_garbage_collection_event(); |
|
73 |
} |
|
74 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
75 |
void GCTracer::report_gc_end(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 76 |
assert_set_gc_id(); |
77 |
||
78 |
report_gc_end_impl(timestamp, time_partitions); |
|
79 |
||
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
23470
diff
changeset
|
80 |
_shared_gc_info.set_gc_id(GCId::undefined()); |
18025 | 81 |
} |
82 |
||
83 |
void GCTracer::report_gc_reference_stats(const ReferenceProcessorStats& rps) const { |
|
84 |
assert_set_gc_id(); |
|
85 |
||
86 |
send_reference_stats_event(REF_SOFT, rps.soft_count()); |
|
87 |
send_reference_stats_event(REF_WEAK, rps.weak_count()); |
|
88 |
send_reference_stats_event(REF_FINAL, rps.final_count()); |
|
89 |
send_reference_stats_event(REF_PHANTOM, rps.phantom_count()); |
|
90 |
} |
|
91 |
||
92 |
#if INCLUDE_SERVICES |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
93 |
class ObjectCountEventSenderClosure : public KlassInfoClosure { |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
94 |
const GCId _gc_id; |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
95 |
const double _size_threshold_percentage; |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
96 |
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
|
97 |
const Ticks _timestamp; |
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
98 |
|
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
99 |
public: |
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
100 |
ObjectCountEventSenderClosure(GCId gc_id, 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
|
101 |
_gc_id(gc_id), |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
102 |
_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
|
103 |
_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
|
104 |
_timestamp(timestamp) |
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
105 |
{} |
18025 | 106 |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
107 |
virtual void do_cinfo(KlassInfoEntry* entry) { |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
108 |
if (should_send_event(entry)) { |
18706
2d278f82253d
8015683: object_count_after_gc should have the same timestamp for all events
ehelin
parents:
18705
diff
changeset
|
109 |
ObjectCountEventSender::send(entry, _gc_id, _timestamp); |
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
110 |
} |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
111 |
} |
18025 | 112 |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
113 |
private: |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
114 |
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
|
115 |
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
|
116 |
return percentage_of_heap >= _size_threshold_percentage; |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
117 |
} |
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
118 |
}; |
18025 | 119 |
|
120 |
void GCTracer::report_object_count_after_gc(BoolObjectClosure* is_alive_cl) { |
|
121 |
assert_set_gc_id(); |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
122 |
assert(is_alive_cl != NULL, "Must supply function to check liveness"); |
18025 | 123 |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
124 |
if (ObjectCountEventSender::should_send_event()) { |
18025 | 125 |
ResourceMark rm; |
126 |
||
127 |
KlassInfoTable cit(false); |
|
128 |
if (!cit.allocation_failed()) { |
|
129 |
HeapInspection hi(false, false, false, NULL); |
|
130 |
hi.populate_table(&cit, is_alive_cl); |
|
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
23470
diff
changeset
|
131 |
ObjectCountEventSenderClosure event_sender(_shared_gc_info.gc_id(), cit.size_of_instances_in_words(), Ticks::now()); |
18025 | 132 |
cit.iterate(&event_sender); |
133 |
} |
|
134 |
} |
|
135 |
} |
|
18704
226ce98e75e6
8015972: Refactor the sending of the object count after GC event
ehelin
parents:
18025
diff
changeset
|
136 |
#endif // INCLUDE_SERVICES |
18025 | 137 |
|
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
138 |
void GCTracer::report_gc_heap_summary(GCWhen::Type when, const GCHeapSummary& heap_summary) const { |
18025 | 139 |
assert_set_gc_id(); |
140 |
||
141 |
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
|
142 |
} |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
143 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
144 |
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
|
145 |
assert_set_gc_id(); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
146 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
147 |
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
|
148 |
|
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
149 |
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
|
150 |
if (UseCompressedClassPointers) { |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
21767
diff
changeset
|
151 |
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
|
152 |
} |
18025 | 153 |
} |
154 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
155 |
void YoungGCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 156 |
assert_set_gc_id(); |
157 |
assert(_tenuring_threshold != UNSET_TENURING_THRESHOLD, "Tenuring threshold has not been reported"); |
|
158 |
||
159 |
GCTracer::report_gc_end_impl(timestamp, time_partitions); |
|
160 |
send_young_gc_event(); |
|
161 |
||
162 |
_tenuring_threshold = UNSET_TENURING_THRESHOLD; |
|
163 |
} |
|
164 |
||
28940
c314cf1db3fa
8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents:
28024
diff
changeset
|
165 |
void YoungGCTracer::report_promotion_failed(const PromotionFailedInfo& pf_info) const { |
18025 | 166 |
assert_set_gc_id(); |
167 |
||
168 |
send_promotion_failed_event(pf_info); |
|
169 |
} |
|
170 |
||
171 |
void YoungGCTracer::report_tenuring_threshold(const uint tenuring_threshold) { |
|
172 |
_tenuring_threshold = tenuring_threshold; |
|
173 |
} |
|
174 |
||
28024 | 175 |
bool YoungGCTracer::should_report_promotion_in_new_plab_event() const { |
176 |
return should_send_promotion_in_new_plab_event(); |
|
177 |
} |
|
178 |
||
179 |
bool YoungGCTracer::should_report_promotion_outside_plab_event() const { |
|
180 |
return should_send_promotion_outside_plab_event(); |
|
181 |
} |
|
182 |
||
183 |
void YoungGCTracer::report_promotion_in_new_plab_event(Klass* klass, size_t obj_size, |
|
184 |
uint age, bool tenured, |
|
185 |
size_t plab_size) const { |
|
186 |
assert_set_gc_id(); |
|
187 |
send_promotion_in_new_plab_event(klass, obj_size, age, tenured, plab_size); |
|
188 |
} |
|
189 |
||
190 |
void YoungGCTracer::report_promotion_outside_plab_event(Klass* klass, size_t obj_size, |
|
191 |
uint age, bool tenured) const { |
|
192 |
assert_set_gc_id(); |
|
193 |
send_promotion_outside_plab_event(klass, obj_size, age, tenured); |
|
194 |
} |
|
195 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
196 |
void OldGCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 197 |
assert_set_gc_id(); |
198 |
||
199 |
GCTracer::report_gc_end_impl(timestamp, time_partitions); |
|
200 |
send_old_gc_event(); |
|
201 |
} |
|
202 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
203 |
void ParallelOldTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 204 |
assert_set_gc_id(); |
205 |
||
206 |
OldGCTracer::report_gc_end_impl(timestamp, time_partitions); |
|
207 |
send_parallel_old_event(); |
|
208 |
} |
|
209 |
||
210 |
void ParallelOldTracer::report_dense_prefix(void* dense_prefix) { |
|
211 |
assert_set_gc_id(); |
|
212 |
||
213 |
_parallel_old_gc_info.report_dense_prefix(dense_prefix); |
|
214 |
} |
|
215 |
||
216 |
void OldGCTracer::report_concurrent_mode_failure() { |
|
217 |
assert_set_gc_id(); |
|
218 |
||
219 |
send_concurrent_mode_failure_event(); |
|
220 |
} |
|
221 |
||
222 |
#if INCLUDE_ALL_GCS |
|
223 |
void G1NewTracer::report_yc_type(G1YCType type) { |
|
224 |
assert_set_gc_id(); |
|
225 |
||
226 |
_g1_young_gc_info.set_type(type); |
|
227 |
} |
|
228 |
||
21767
41eaa9a17059
8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
18706
diff
changeset
|
229 |
void G1NewTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { |
18025 | 230 |
assert_set_gc_id(); |
231 |
||
232 |
YoungGCTracer::report_gc_end_impl(timestamp, time_partitions); |
|
233 |
send_g1_young_gc_event(); |
|
234 |
} |
|
235 |
||
236 |
void G1NewTracer::report_evacuation_info(EvacuationInfo* info) { |
|
237 |
assert_set_gc_id(); |
|
238 |
||
239 |
send_evacuation_info_event(info); |
|
240 |
} |
|
241 |
||
242 |
void G1NewTracer::report_evacuation_failed(EvacuationFailedInfo& ef_info) { |
|
243 |
assert_set_gc_id(); |
|
244 |
||
245 |
send_evacuation_failed_event(ef_info); |
|
246 |
ef_info.reset(); |
|
247 |
} |
|
248 |
#endif |