hotspot/src/share/vm/gc_implementation/g1/g1GCPhaseTimes.hpp
changeset 26422 4ee5901e205e
parent 25889 221296ac4359
child 27880 afb974a04396
equal deleted inserted replaced
26421:37d88e604ad0 26422:4ee5901e205e
   127   WorkerDataArray<double> _last_gc_worker_times_ms;
   127   WorkerDataArray<double> _last_gc_worker_times_ms;
   128   WorkerDataArray<double> _last_gc_worker_other_times_ms;
   128   WorkerDataArray<double> _last_gc_worker_other_times_ms;
   129 
   129 
   130   double _cur_collection_par_time_ms;
   130   double _cur_collection_par_time_ms;
   131   double _cur_collection_code_root_fixup_time_ms;
   131   double _cur_collection_code_root_fixup_time_ms;
   132   double _cur_strong_code_root_migration_time_ms;
       
   133   double _cur_strong_code_root_purge_time_ms;
   132   double _cur_strong_code_root_purge_time_ms;
   134 
   133 
   135   double _cur_evac_fail_recalc_used;
   134   double _cur_evac_fail_recalc_used;
   136   double _cur_evac_fail_restore_remsets;
   135   double _cur_evac_fail_restore_remsets;
   137   double _cur_evac_fail_remove_self_forwards;
   136   double _cur_evac_fail_remove_self_forwards;
   231 
   230 
   232   void record_code_root_fixup_time(double ms) {
   231   void record_code_root_fixup_time(double ms) {
   233     _cur_collection_code_root_fixup_time_ms = ms;
   232     _cur_collection_code_root_fixup_time_ms = ms;
   234   }
   233   }
   235 
   234 
   236   void record_strong_code_root_migration_time(double ms) {
       
   237     _cur_strong_code_root_migration_time_ms = ms;
       
   238   }
       
   239 
       
   240   void record_strong_code_root_purge_time(double ms) {
   235   void record_strong_code_root_purge_time(double ms) {
   241     _cur_strong_code_root_purge_time_ms = ms;
   236     _cur_strong_code_root_purge_time_ms = ms;
   242   }
   237   }
   243 
   238 
   244   void record_evac_fail_recalc_used_time(double ms) {
   239   void record_evac_fail_recalc_used_time(double ms) {