1 /*
2  * Copyright (c) 2012, 2019, 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"
26 #include "gc/shared/copyFailedInfo.hpp"
27 #include "gc/shared/gcHeapSummary.hpp"
28 #include "gc/shared/gcId.hpp"
29 #include "gc/shared/gcTimer.hpp"
30 #include "gc/shared/gcTrace.hpp"
31 #include "gc/shared/objectCountEventSender.hpp"
32 #include "gc/shared/referenceProcessorStats.hpp"
33 #include "memory/heapInspection.hpp"
34 #include "memory/resourceArea.hpp"
35 #include "runtime/os.hpp"
36 #include "utilities/globalDefinitions.hpp"
37 #include "utilities/macros.hpp"
38 #include "utilities/ticks.hpp"
39 
report_gc_start_impl(GCCause::Cause cause,const Ticks & timestamp)40 void GCTracer::report_gc_start_impl(GCCause::Cause cause, const Ticks& timestamp) {
41   _shared_gc_info.set_cause(cause);
42   _shared_gc_info.set_start_timestamp(timestamp);
43 }
44 
report_gc_start(GCCause::Cause cause,const Ticks & timestamp)45 void GCTracer::report_gc_start(GCCause::Cause cause, const Ticks& timestamp) {
46   report_gc_start_impl(cause, timestamp);
47 }
48 
report_gc_end_impl(const Ticks & timestamp,TimePartitions * time_partitions)49 void GCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) {
50   _shared_gc_info.set_sum_of_pauses(time_partitions->sum_of_pauses());
51   _shared_gc_info.set_longest_pause(time_partitions->longest_pause());
52   _shared_gc_info.set_end_timestamp(timestamp);
53 
54   send_phase_events(time_partitions);
55   send_garbage_collection_event();
56 }
57 
report_gc_end(const Ticks & timestamp,TimePartitions * time_partitions)58 void GCTracer::report_gc_end(const Ticks& timestamp, TimePartitions* time_partitions) {
59   report_gc_end_impl(timestamp, time_partitions);
60 }
61 
report_gc_reference_stats(const ReferenceProcessorStats & rps) const62 void GCTracer::report_gc_reference_stats(const ReferenceProcessorStats& rps) const {
63   send_reference_stats_event(REF_SOFT, rps.soft_count());
64   send_reference_stats_event(REF_WEAK, rps.weak_count());
65   send_reference_stats_event(REF_FINAL, rps.final_count());
66   send_reference_stats_event(REF_PHANTOM, rps.phantom_count());
67 }
68 
69 #if INCLUDE_SERVICES
70 class ObjectCountEventSenderClosure : public KlassInfoClosure {
71   const double _size_threshold_percentage;
72   const size_t _total_size_in_words;
73   const Ticks _timestamp;
74 
75  public:
ObjectCountEventSenderClosure(size_t total_size_in_words,const Ticks & timestamp)76   ObjectCountEventSenderClosure(size_t total_size_in_words, const Ticks& timestamp) :
77     _size_threshold_percentage(ObjectCountCutOffPercent / 100),
78     _total_size_in_words(total_size_in_words),
79     _timestamp(timestamp)
80   {}
81 
do_cinfo(KlassInfoEntry * entry)82   virtual void do_cinfo(KlassInfoEntry* entry) {
83     if (should_send_event(entry)) {
84       ObjectCountEventSender::send(entry, _timestamp);
85     }
86   }
87 
88  private:
should_send_event(const KlassInfoEntry * entry) const89   bool should_send_event(const KlassInfoEntry* entry) const {
90     double percentage_of_heap = ((double) entry->words()) / _total_size_in_words;
91     return percentage_of_heap >= _size_threshold_percentage;
92   }
93 };
94 
report_object_count_after_gc(BoolObjectClosure * is_alive_cl)95 void GCTracer::report_object_count_after_gc(BoolObjectClosure* is_alive_cl) {
96   assert(is_alive_cl != NULL, "Must supply function to check liveness");
97 
98   if (ObjectCountEventSender::should_send_event()) {
99     ResourceMark rm;
100 
101     KlassInfoTable cit(false);
102     if (!cit.allocation_failed()) {
103       HeapInspection hi(false, false, false, NULL);
104       hi.populate_table(&cit, is_alive_cl);
105       ObjectCountEventSenderClosure event_sender(cit.size_of_instances_in_words(), Ticks::now());
106       cit.iterate(&event_sender);
107     }
108   }
109 }
110 #endif // INCLUDE_SERVICES
111 
report_gc_heap_summary(GCWhen::Type when,const GCHeapSummary & heap_summary) const112 void GCTracer::report_gc_heap_summary(GCWhen::Type when, const GCHeapSummary& heap_summary) const {
113   send_gc_heap_summary_event(when, heap_summary);
114 }
115 
report_metaspace_summary(GCWhen::Type when,const MetaspaceSummary & summary) const116 void GCTracer::report_metaspace_summary(GCWhen::Type when, const MetaspaceSummary& summary) const {
117   send_meta_space_summary_event(when, summary);
118 
119   send_metaspace_chunk_free_list_summary(when, Metaspace::NonClassType, summary.metaspace_chunk_free_list_summary());
120   if (UseCompressedClassPointers) {
121     send_metaspace_chunk_free_list_summary(when, Metaspace::ClassType, summary.class_chunk_free_list_summary());
122   }
123 }
124 
report_gc_end_impl(const Ticks & timestamp,TimePartitions * time_partitions)125 void YoungGCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) {
126   assert(_tenuring_threshold != UNSET_TENURING_THRESHOLD, "Tenuring threshold has not been reported");
127 
128   GCTracer::report_gc_end_impl(timestamp, time_partitions);
129   send_young_gc_event();
130 
131   _tenuring_threshold = UNSET_TENURING_THRESHOLD;
132 }
133 
report_promotion_failed(const PromotionFailedInfo & pf_info) const134 void YoungGCTracer::report_promotion_failed(const PromotionFailedInfo& pf_info) const {
135   send_promotion_failed_event(pf_info);
136 }
137 
report_tenuring_threshold(const uint tenuring_threshold)138 void YoungGCTracer::report_tenuring_threshold(const uint tenuring_threshold) {
139   _tenuring_threshold = tenuring_threshold;
140 }
141 
should_report_promotion_events() const142 bool YoungGCTracer::should_report_promotion_events() const {
143   return should_report_promotion_in_new_plab_event() ||
144           should_report_promotion_outside_plab_event();
145 }
146 
should_report_promotion_in_new_plab_event() const147 bool YoungGCTracer::should_report_promotion_in_new_plab_event() const {
148   return should_send_promotion_in_new_plab_event();
149 }
150 
should_report_promotion_outside_plab_event() const151 bool YoungGCTracer::should_report_promotion_outside_plab_event() const {
152   return should_send_promotion_outside_plab_event();
153 }
154 
report_promotion_in_new_plab_event(Klass * klass,size_t obj_size,uint age,bool tenured,size_t plab_size) const155 void YoungGCTracer::report_promotion_in_new_plab_event(Klass* klass, size_t obj_size,
156                                                        uint age, bool tenured,
157                                                        size_t plab_size) const {
158   send_promotion_in_new_plab_event(klass, obj_size, age, tenured, plab_size);
159 }
160 
report_promotion_outside_plab_event(Klass * klass,size_t obj_size,uint age,bool tenured) const161 void YoungGCTracer::report_promotion_outside_plab_event(Klass* klass, size_t obj_size,
162                                                         uint age, bool tenured) const {
163   send_promotion_outside_plab_event(klass, obj_size, age, tenured);
164 }
165 
report_gc_end_impl(const Ticks & timestamp,TimePartitions * time_partitions)166 void OldGCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) {
167   GCTracer::report_gc_end_impl(timestamp, time_partitions);
168   send_old_gc_event();
169 }
170 
report_gc_end_impl(const Ticks & timestamp,TimePartitions * time_partitions)171 void ParallelOldTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) {
172   OldGCTracer::report_gc_end_impl(timestamp, time_partitions);
173   send_parallel_old_event();
174 }
175 
report_dense_prefix(void * dense_prefix)176 void ParallelOldTracer::report_dense_prefix(void* dense_prefix) {
177   _parallel_old_gc_info.report_dense_prefix(dense_prefix);
178 }
179 
report_concurrent_mode_failure()180 void OldGCTracer::report_concurrent_mode_failure() {
181   send_concurrent_mode_failure_event();
182 }
183