< prev index next >

src/hotspot/share/gc/shared/gcTraceSend.cpp

Print this page
rev 53385 : [mq]: 8217374-rename-g1evacuationinfo

*** 30,40 **** #include "gc/shared/gcWhen.hpp" #include "jfr/jfrEvents.hpp" #include "runtime/os.hpp" #include "utilities/macros.hpp" #if INCLUDE_G1GC ! #include "gc/g1/evacuationInfo.hpp" #include "gc/g1/g1YCTypes.hpp" #endif // All GC dependencies against the trace framework is contained within this file. --- 30,40 ---- #include "gc/shared/gcWhen.hpp" #include "jfr/jfrEvents.hpp" #include "runtime/os.hpp" #include "utilities/macros.hpp" #if INCLUDE_G1GC ! #include "gc/g1/g1EvacuationInfo.hpp" #include "gc/g1/g1YCTypes.hpp" #endif // All GC dependencies against the trace framework is contained within this file.
*** 207,217 **** e.set_pauseTarget(max_time_ms); e.commit(); } } ! void G1NewTracer::send_evacuation_info_event(EvacuationInfo* info) { EventEvacuationInformation e; if (e.should_commit()) { e.set_gcId(GCId::current()); e.set_cSetRegions(info->collectionset_regions()); e.set_cSetUsedBefore(info->collectionset_used_before()); --- 207,217 ---- e.set_pauseTarget(max_time_ms); e.commit(); } } ! void G1NewTracer::send_evacuation_info_event(G1EvacuationInfo* info) { EventEvacuationInformation e; if (e.should_commit()) { e.set_gcId(GCId::current()); e.set_cSetRegions(info->collectionset_regions()); e.set_cSetUsedBefore(info->collectionset_used_before());
< prev index next >