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

Print this page

        

*** 170,179 **** --- 170,198 ---- void YoungGCTracer::report_tenuring_threshold(const uint tenuring_threshold) { _tenuring_threshold = tenuring_threshold; } + bool YoungGCTracer::should_report_promotion_in_new_plab_event() const { + return should_send_promotion_in_new_plab_event(); + } + + bool YoungGCTracer::should_report_promotion_outside_plab_event() const { + return should_send_promotion_outside_plab_event(); + } + + void YoungGCTracer::report_promotion_in_new_plab_event(const oop old, const size_t obj_size, + const uint age, bool tenured, + size_t plab_size) const { + send_promotion_in_new_plab_event(old, obj_size, age, tenured, plab_size); + } + + void YoungGCTracer::report_promotion_outside_plab_event(const oop old, const size_t obj_size, + const uint age, bool tenured) const { + send_promotion_outside_plab_event(old, obj_size, age, tenured); + } + void OldGCTracer::report_gc_end_impl(const Ticks& timestamp, TimePartitions* time_partitions) { assert_set_gc_id(); GCTracer::report_gc_end_impl(timestamp, time_partitions); send_old_gc_event();