--- old/src/share/vm/gc_implementation/shared/gcTrace.cpp 2014-11-06 01:36:45.881526345 -0800 +++ new/src/share/vm/gc_implementation/shared/gcTrace.cpp 2014-11-06 01:36:45.789526348 -0800 @@ -172,6 +172,25 @@ _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();