< prev index next >

src/share/vm/gc/shared/gcTrace.cpp

Print this page
rev 9314 : imported patch 8136679-jfr-event-for-dynamic-ihop


 195 
 196 void G1NewTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) {
 197   YoungGCTracer::report_gc_end_impl(timestamp, time_partitions);
 198   send_g1_young_gc_event();
 199 }
 200 
 201 void G1NewTracer::report_evacuation_info(EvacuationInfo* info) {
 202   send_evacuation_info_event(info);
 203 }
 204 
 205 void G1NewTracer::report_evacuation_failed(EvacuationFailedInfo& ef_info) {
 206   send_evacuation_failed_event(ef_info);
 207   ef_info.reset();
 208 }
 209 
 210 void G1NewTracer::report_evacuation_statistics(const G1EvacSummary& young_summary, const G1EvacSummary& old_summary) const {
 211   send_young_evacuation_statistics(young_summary);
 212   send_old_evacuation_statistics(old_summary);
 213 }
 214 
























 215 #endif


 195 
 196 void G1NewTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) {
 197   YoungGCTracer::report_gc_end_impl(timestamp, time_partitions);
 198   send_g1_young_gc_event();
 199 }
 200 
 201 void G1NewTracer::report_evacuation_info(EvacuationInfo* info) {
 202   send_evacuation_info_event(info);
 203 }
 204 
 205 void G1NewTracer::report_evacuation_failed(EvacuationFailedInfo& ef_info) {
 206   send_evacuation_failed_event(ef_info);
 207   ef_info.reset();
 208 }
 209 
 210 void G1NewTracer::report_evacuation_statistics(const G1EvacSummary& young_summary, const G1EvacSummary& old_summary) const {
 211   send_young_evacuation_statistics(young_summary);
 212   send_old_evacuation_statistics(old_summary);
 213 }
 214 
 215 void G1NewTracer::report_basic_ihop_statistics(size_t threshold,
 216                                                size_t target_ccupancy,
 217                                                size_t current_occupancy,
 218                                                size_t last_allocation_size,
 219                                                double last_allocation_duration,
 220                                                double last_marking_length) {
 221   send_basic_ihop_statistics(threshold,
 222                              target_ccupancy,
 223                              current_occupancy,
 224                              last_allocation_size,
 225                              last_allocation_duration,
 226                              last_marking_length);
 227 }
 228 
 229 void G1NewTracer::report_adaptive_ihop_statistics(size_t additional_buffer_size,
 230                                                   double predicted_allocation_rate,
 231                                                   double predicted_marking_length,
 232                                                   bool prediction_active) {
 233   send_adaptive_ihop_statistics(additional_buffer_size,
 234                                 predicted_allocation_rate,
 235                                 predicted_marking_length,
 236                                 prediction_active);
 237 }
 238 
 239 #endif
< prev index next >