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