src/hotspot/share/jfr/periodic/jfrPeriodic.cpp
branchJEP-349-branch
changeset 58853 4c036608ca8b
parent 58183 e1b896faca1c
parent 58844 5a0e0d0b3a27
equal deleted inserted replaced
58841:12b4063e357f 58853:4c036608ca8b
   555   event.set_invalidatedCount(CompileBroker::get_total_invalidated_count());
   555   event.set_invalidatedCount(CompileBroker::get_total_invalidated_count());
   556   event.set_osrCompileCount(CompileBroker::get_total_osr_compile_count());
   556   event.set_osrCompileCount(CompileBroker::get_total_osr_compile_count());
   557   event.set_standardCompileCount(CompileBroker::get_total_standard_compile_count());
   557   event.set_standardCompileCount(CompileBroker::get_total_standard_compile_count());
   558   event.set_osrBytesCompiled(CompileBroker::get_sum_osr_bytes_compiled());
   558   event.set_osrBytesCompiled(CompileBroker::get_sum_osr_bytes_compiled());
   559   event.set_standardBytesCompiled(CompileBroker::get_sum_standard_bytes_compiled());
   559   event.set_standardBytesCompiled(CompileBroker::get_sum_standard_bytes_compiled());
   560   event.set_nmetodsSize(CompileBroker::get_sum_nmethod_size());
   560   event.set_nmethodsSize(CompileBroker::get_sum_nmethod_size());
   561   event.set_nmetodCodeSize(CompileBroker::get_sum_nmethod_code_size());
   561   event.set_nmethodCodeSize(CompileBroker::get_sum_nmethod_code_size());
   562   event.set_peakTimeSpent(CompileBroker::get_peak_compilation_time());
   562   event.set_peakTimeSpent(CompileBroker::get_peak_compilation_time());
   563   event.set_totalTimeSpent(CompileBroker::get_total_compilation_time());
   563   event.set_totalTimeSpent(CompileBroker::get_total_compilation_time());
   564   event.commit();
   564   event.commit();
   565 }
   565 }
   566 
   566