1 /*
   2  * Copyright (c) 2012, 2015, 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/gcTimer.hpp"
  29 #include "gc/shared/gcTrace.hpp"
  30 #include "gc/shared/gcWhen.hpp"
  31 #include "runtime/os.hpp"
  32 #include "trace/traceBackend.hpp"
  33 #include "trace/tracing.hpp"
  34 #include "utilities/macros.hpp"
  35 #if INCLUDE_ALL_GCS
  36 #include "gc/g1/evacuationInfo.hpp"
  37 #include "gc/g1/g1YCTypes.hpp"
  38 #endif
  39 
  40 // All GC dependencies against the trace framework is contained within this file.
  41 
  42 typedef uintptr_t TraceAddress;
  43 
  44 void GCTracer::send_garbage_collection_event() const {
  45   EventGCGarbageCollection event(UNTIMED);
  46   if (event.should_commit()) {
  47     event.set_gcId(_shared_gc_info.gc_id().id());
  48     event.set_name(_shared_gc_info.name());
  49     event.set_cause((u2) _shared_gc_info.cause());
  50     event.set_sumOfPauses(_shared_gc_info.sum_of_pauses());
  51     event.set_longestPause(_shared_gc_info.longest_pause());
  52     event.set_starttime(_shared_gc_info.start_timestamp());
  53     event.set_endtime(_shared_gc_info.end_timestamp());
  54     event.commit();
  55   }
  56 }
  57 
  58 void GCTracer::send_reference_stats_event(ReferenceType type, size_t count) const {
  59   EventGCReferenceStatistics e;
  60   if (e.should_commit()) {
  61       e.set_gcId(_shared_gc_info.gc_id().id());
  62       e.set_type((u1)type);
  63       e.set_count(count);
  64       e.commit();
  65   }
  66 }
  67 
  68 void GCTracer::send_metaspace_chunk_free_list_summary(GCWhen::Type when, Metaspace::MetadataType mdtype,
  69                                                       const MetaspaceChunkFreeListSummary& summary) const {
  70   EventMetaspaceChunkFreeListSummary e;
  71   if (e.should_commit()) {
  72     e.set_gcId(_shared_gc_info.gc_id().id());
  73     e.set_when(when);
  74     e.set_metadataType(mdtype);
  75 
  76     e.set_specializedChunks(summary.num_specialized_chunks());
  77     e.set_specializedChunksTotalSize(summary.specialized_chunks_size_in_bytes());
  78 
  79     e.set_smallChunks(summary.num_small_chunks());
  80     e.set_smallChunksTotalSize(summary.small_chunks_size_in_bytes());
  81 
  82     e.set_mediumChunks(summary.num_medium_chunks());
  83     e.set_mediumChunksTotalSize(summary.medium_chunks_size_in_bytes());
  84 
  85     e.set_humongousChunks(summary.num_humongous_chunks());
  86     e.set_humongousChunksTotalSize(summary.humongous_chunks_size_in_bytes());
  87 
  88     e.commit();
  89   }
  90 }
  91 
  92 void ParallelOldTracer::send_parallel_old_event() const {
  93   EventGCParallelOld e(UNTIMED);
  94   if (e.should_commit()) {
  95     e.set_gcId(_shared_gc_info.gc_id().id());
  96     e.set_densePrefix((TraceAddress)_parallel_old_gc_info.dense_prefix());
  97     e.set_starttime(_shared_gc_info.start_timestamp());
  98     e.set_endtime(_shared_gc_info.end_timestamp());
  99     e.commit();
 100   }
 101 }
 102 
 103 void YoungGCTracer::send_young_gc_event() const {
 104   EventGCYoungGarbageCollection e(UNTIMED);
 105   if (e.should_commit()) {
 106     e.set_gcId(_shared_gc_info.gc_id().id());
 107     e.set_tenuringThreshold(_tenuring_threshold);
 108     e.set_starttime(_shared_gc_info.start_timestamp());
 109     e.set_endtime(_shared_gc_info.end_timestamp());
 110     e.commit();
 111   }
 112 }
 113 
 114 bool YoungGCTracer::should_send_promotion_in_new_plab_event() const {
 115   return EventPromoteObjectInNewPLAB::is_enabled();
 116 }
 117 
 118 bool YoungGCTracer::should_send_promotion_outside_plab_event() const {
 119   return EventPromoteObjectOutsidePLAB::is_enabled();
 120 }
 121 
 122 void YoungGCTracer::send_promotion_in_new_plab_event(Klass* klass, size_t obj_size,
 123                                                      uint age, bool tenured,
 124                                                      size_t plab_size) const {
 125 
 126   EventPromoteObjectInNewPLAB event;
 127   if (event.should_commit()) {
 128     event.set_gcId(_shared_gc_info.gc_id().id());
 129     event.set_class(klass);
 130     event.set_objectSize(obj_size);
 131     event.set_tenured(tenured);
 132     event.set_tenuringAge(age);
 133     event.set_plabSize(plab_size);
 134     event.commit();
 135   }
 136 }
 137 
 138 void YoungGCTracer::send_promotion_outside_plab_event(Klass* klass, size_t obj_size,
 139                                                       uint age, bool tenured) const {
 140 
 141   EventPromoteObjectOutsidePLAB event;
 142   if (event.should_commit()) {
 143     event.set_gcId(_shared_gc_info.gc_id().id());
 144     event.set_class(klass);
 145     event.set_objectSize(obj_size);
 146     event.set_tenured(tenured);
 147     event.set_tenuringAge(age);
 148     event.commit();
 149   }
 150 }
 151 
 152 void OldGCTracer::send_old_gc_event() const {
 153   EventGCOldGarbageCollection e(UNTIMED);
 154   if (e.should_commit()) {
 155     e.set_gcId(_shared_gc_info.gc_id().id());
 156     e.set_starttime(_shared_gc_info.start_timestamp());
 157     e.set_endtime(_shared_gc_info.end_timestamp());
 158     e.commit();
 159   }
 160 }
 161 
 162 static TraceStructCopyFailed to_trace_struct(const CopyFailedInfo& cf_info) {
 163   TraceStructCopyFailed failed_info;
 164   failed_info.set_objectCount(cf_info.failed_count());
 165   failed_info.set_firstSize(cf_info.first_size());
 166   failed_info.set_smallestSize(cf_info.smallest_size());
 167   failed_info.set_totalSize(cf_info.total_size());
 168   return failed_info;
 169 }
 170 
 171 void YoungGCTracer::send_promotion_failed_event(const PromotionFailedInfo& pf_info) const {
 172   EventPromotionFailed e;
 173   if (e.should_commit()) {
 174     e.set_gcId(_shared_gc_info.gc_id().id());
 175     e.set_data(to_trace_struct(pf_info));
 176     e.set_thread(pf_info.thread()->thread_id());
 177     e.commit();
 178   }
 179 }
 180 
 181 // Common to CMS and G1
 182 void OldGCTracer::send_concurrent_mode_failure_event() {
 183   EventConcurrentModeFailure e;
 184   if (e.should_commit()) {
 185     e.set_gcId(_shared_gc_info.gc_id().id());
 186     e.commit();
 187   }
 188 }
 189 
 190 #if INCLUDE_ALL_GCS
 191 void G1NewTracer::send_g1_young_gc_event() {
 192   EventGCG1GarbageCollection e(UNTIMED);
 193   if (e.should_commit()) {
 194     e.set_gcId(_shared_gc_info.gc_id().id());
 195     e.set_type(_g1_young_gc_info.type());
 196     e.set_starttime(_shared_gc_info.start_timestamp());
 197     e.set_endtime(_shared_gc_info.end_timestamp());
 198     e.commit();
 199   }
 200 }
 201 
 202 void G1MMUTracer::send_g1_mmu_event(const GCId& gcId, double timeSlice, double gcTime, double maxTime) {
 203   EventGCG1MMU e;
 204   if (e.should_commit()) {
 205     e.set_gcId(gcId.id());
 206     e.set_timeSlice(timeSlice);
 207     e.set_gcTime(gcTime);
 208     e.set_maxGcTime(maxTime);
 209     e.commit();
 210   }
 211 }
 212 
 213 void G1NewTracer::send_evacuation_info_event(EvacuationInfo* info) {
 214   EventEvacuationInfo e;
 215   if (e.should_commit()) {
 216     e.set_gcId(_shared_gc_info.gc_id().id());
 217     e.set_cSetRegions(info->collectionset_regions());
 218     e.set_cSetUsedBefore(info->collectionset_used_before());
 219     e.set_cSetUsedAfter(info->collectionset_used_after());
 220     e.set_allocationRegions(info->allocation_regions());
 221     e.set_allocRegionsUsedBefore(info->alloc_regions_used_before());
 222     e.set_allocRegionsUsedAfter(info->alloc_regions_used_before() + info->bytes_copied());
 223     e.set_bytesCopied(info->bytes_copied());
 224     e.set_regionsFreed(info->regions_freed());
 225     e.commit();
 226   }
 227 }
 228 
 229 void G1NewTracer::send_evacuation_failed_event(const EvacuationFailedInfo& ef_info) const {
 230   EventEvacuationFailed e;
 231   if (e.should_commit()) {
 232     e.set_gcId(_shared_gc_info.gc_id().id());
 233     e.set_data(to_trace_struct(ef_info));
 234     e.commit();
 235   }
 236 }
 237 
 238 void G1NewTracer::send_young_evacuation_statistics(const G1EvacSummary& summary) const {
 239   EventGCG1EvacuationYoungStatistics surv_evt;
 240   if (surv_evt.should_commit()) {
 241     surv_evt.set_gcId(GCId::peek().id());
 242     surv_evt.set_allocated(summary.allocated() * HeapWordSize);
 243     surv_evt.set_wasted(summary.wasted() * HeapWordSize);
 244     surv_evt.set_used(summary.used() * HeapWordSize);
 245     surv_evt.set_undoWaste(summary.undo_wasted() * HeapWordSize);
 246     surv_evt.set_regionEndWaste(summary.region_end_waste() * HeapWordSize);
 247     surv_evt.set_regionsRefilled(summary.regions_filled());
 248     surv_evt.set_directAllocated(summary.direct_allocated() * HeapWordSize);
 249     surv_evt.set_failureUsed(summary.failure_used() * HeapWordSize);
 250     surv_evt.set_failureWaste(summary.failure_waste() * HeapWordSize);
 251     surv_evt.commit();
 252   }    
 253 }
 254 
 255 void G1NewTracer::send_old_evacuation_statistics(const G1EvacSummary& summary) const {
 256   EventGCG1EvacuationOldStatistics old_evt;
 257   if (old_evt.should_commit()) {
 258     old_evt.set_gcId(GCId::peek().id());
 259     old_evt.set_allocated(summary.allocated() * HeapWordSize);
 260     old_evt.set_wasted(summary.wasted() * HeapWordSize);
 261     old_evt.set_used(summary.used() * HeapWordSize);
 262     old_evt.set_undoWaste(summary.undo_wasted() * HeapWordSize);
 263     old_evt.set_regionEndWaste(summary.region_end_waste() * HeapWordSize);
 264     old_evt.set_regionsRefilled(summary.regions_filled());
 265     old_evt.set_directAllocated(summary.direct_allocated() * HeapWordSize);
 266     old_evt.set_failureUsed(summary.failure_used() * HeapWordSize);
 267     old_evt.set_failureWaste(summary.failure_waste() * HeapWordSize);
 268     old_evt.commit();
 269   }
 270 }
 271 #endif
 272 
 273 static TraceStructVirtualSpace to_trace_struct(const VirtualSpaceSummary& summary) {
 274   TraceStructVirtualSpace space;
 275   space.set_start((TraceAddress)summary.start());
 276   space.set_committedEnd((TraceAddress)summary.committed_end());
 277   space.set_committedSize(summary.committed_size());
 278   space.set_reservedEnd((TraceAddress)summary.reserved_end());
 279   space.set_reservedSize(summary.reserved_size());
 280   return space;
 281 }
 282 
 283 static TraceStructObjectSpace to_trace_struct(const SpaceSummary& summary) {
 284   TraceStructObjectSpace space;
 285   space.set_start((TraceAddress)summary.start());
 286   space.set_end((TraceAddress)summary.end());
 287   space.set_used(summary.used());
 288   space.set_size(summary.size());
 289   return space;
 290 }
 291 
 292 class GCHeapSummaryEventSender : public GCHeapSummaryVisitor {
 293   GCId _gc_id;
 294   GCWhen::Type _when;
 295  public:
 296   GCHeapSummaryEventSender(GCId gc_id, GCWhen::Type when) : _gc_id(gc_id), _when(when) {}
 297 
 298   void visit(const GCHeapSummary* heap_summary) const {
 299     const VirtualSpaceSummary& heap_space = heap_summary->heap();
 300 
 301     EventGCHeapSummary e;
 302     if (e.should_commit()) {
 303       e.set_gcId(_gc_id.id());
 304       e.set_when((u1)_when);
 305       e.set_heapSpace(to_trace_struct(heap_space));
 306       e.set_heapUsed(heap_summary->used());
 307       e.commit();
 308     }
 309   }
 310 
 311   void visit(const G1HeapSummary* g1_heap_summary) const {
 312     visit((GCHeapSummary*)g1_heap_summary);
 313 
 314     EventG1HeapSummary e;
 315     if (e.should_commit()) {
 316       e.set_gcId(_gc_id.id());
 317       e.set_when((u1)_when);
 318       e.set_edenUsedSize(g1_heap_summary->edenUsed());
 319       e.set_edenTotalSize(g1_heap_summary->edenCapacity());
 320       e.set_survivorUsedSize(g1_heap_summary->survivorUsed());
 321       e.commit();
 322     }
 323   }
 324 
 325   void visit(const PSHeapSummary* ps_heap_summary) const {
 326     visit((GCHeapSummary*)ps_heap_summary);
 327 
 328     const VirtualSpaceSummary& old_summary = ps_heap_summary->old();
 329     const SpaceSummary& old_space = ps_heap_summary->old_space();
 330     const VirtualSpaceSummary& young_summary = ps_heap_summary->young();
 331     const SpaceSummary& eden_space = ps_heap_summary->eden();
 332     const SpaceSummary& from_space = ps_heap_summary->from();
 333     const SpaceSummary& to_space = ps_heap_summary->to();
 334 
 335     EventPSHeapSummary e;
 336     if (e.should_commit()) {
 337       e.set_gcId(_gc_id.id());
 338       e.set_when((u1)_when);
 339 
 340       e.set_oldSpace(to_trace_struct(ps_heap_summary->old()));
 341       e.set_oldObjectSpace(to_trace_struct(ps_heap_summary->old_space()));
 342       e.set_youngSpace(to_trace_struct(ps_heap_summary->young()));
 343       e.set_edenSpace(to_trace_struct(ps_heap_summary->eden()));
 344       e.set_fromSpace(to_trace_struct(ps_heap_summary->from()));
 345       e.set_toSpace(to_trace_struct(ps_heap_summary->to()));
 346       e.commit();
 347     }
 348   }
 349 };
 350 
 351 void GCTracer::send_gc_heap_summary_event(GCWhen::Type when, const GCHeapSummary& heap_summary) const {
 352   GCHeapSummaryEventSender visitor(_shared_gc_info.gc_id(), when);
 353   heap_summary.accept(&visitor);
 354 }
 355 
 356 static TraceStructMetaspaceSizes to_trace_struct(const MetaspaceSizes& sizes) {
 357   TraceStructMetaspaceSizes meta_sizes;
 358 
 359   meta_sizes.set_committed(sizes.committed());
 360   meta_sizes.set_used(sizes.used());
 361   meta_sizes.set_reserved(sizes.reserved());
 362 
 363   return meta_sizes;
 364 }
 365 
 366 void GCTracer::send_meta_space_summary_event(GCWhen::Type when, const MetaspaceSummary& meta_space_summary) const {
 367   EventMetaspaceSummary e;
 368   if (e.should_commit()) {
 369     e.set_gcId(_shared_gc_info.gc_id().id());
 370     e.set_when((u1) when);
 371     e.set_gcThreshold(meta_space_summary.capacity_until_GC());
 372     e.set_metaspace(to_trace_struct(meta_space_summary.meta_space()));
 373     e.set_dataSpace(to_trace_struct(meta_space_summary.data_space()));
 374     e.set_classSpace(to_trace_struct(meta_space_summary.class_space()));
 375     e.commit();
 376   }
 377 }
 378 
 379 class PhaseSender : public PhaseVisitor {
 380   GCId _gc_id;
 381  public:
 382   PhaseSender(GCId gc_id) : _gc_id(gc_id) {}
 383 
 384   template<typename T>
 385   void send_phase(PausePhase* pause) {
 386     T event(UNTIMED);
 387     if (event.should_commit()) {
 388       event.set_gcId(_gc_id.id());
 389       event.set_name(pause->name());
 390       event.set_starttime(pause->start());
 391       event.set_endtime(pause->end());
 392       event.commit();
 393     }
 394   }
 395 
 396   void visit(GCPhase* pause) { ShouldNotReachHere(); }
 397   void visit(ConcurrentPhase* pause) { Unimplemented(); }
 398   void visit(PausePhase* pause) {
 399     assert(PhasesStack::PHASE_LEVELS == 5, "Need more event types");
 400 
 401     switch (pause->level()) {
 402       case 0: send_phase<EventGCPhasePause>(pause); break;
 403       case 1: send_phase<EventGCPhasePauseLevel1>(pause); break;
 404       case 2: send_phase<EventGCPhasePauseLevel2>(pause); break;
 405       case 3: send_phase<EventGCPhasePauseLevel3>(pause); break;
 406       default: /* Ignore sending this phase */ break;
 407     }
 408   }
 409 };
 410 
 411 void GCTracer::send_phase_events(TimePartitions* time_partitions) const {
 412   PhaseSender phase_reporter(_shared_gc_info.gc_id());
 413 
 414   TimePartitionPhasesIterator iter(time_partitions);
 415   while (iter.has_next()) {
 416     GCPhase* phase = iter.next();
 417     phase->accept(&phase_reporter);
 418   }
 419 }