hotspot/src/share/vm/gc/g1/g1GCPhaseTimes.hpp
changeset 33577 d6c1611973dc
parent 33204 b8a3901ac5b3
child 33738 1708291bd3d7
equal deleted inserted replaced
33229:51173444fdd5 33577:d6c1611973dc
    90   double _cur_evac_fail_remove_self_forwards;
    90   double _cur_evac_fail_remove_self_forwards;
    91 
    91 
    92   double _cur_string_dedup_fixup_time_ms;
    92   double _cur_string_dedup_fixup_time_ms;
    93 
    93 
    94   double _cur_clear_ct_time_ms;
    94   double _cur_clear_ct_time_ms;
       
    95   double _cur_expand_heap_time_ms;
    95   double _cur_ref_proc_time_ms;
    96   double _cur_ref_proc_time_ms;
    96   double _cur_ref_enq_time_ms;
    97   double _cur_ref_enq_time_ms;
    97 
    98 
    98   double _cur_collection_start_sec;
    99   double _cur_collection_start_sec;
    99   double _root_region_scan_wait_time_ms;
   100   double _root_region_scan_wait_time_ms;
   153 
   154 
   154   void record_clear_ct_time(double ms) {
   155   void record_clear_ct_time(double ms) {
   155     _cur_clear_ct_time_ms = ms;
   156     _cur_clear_ct_time_ms = ms;
   156   }
   157   }
   157 
   158 
       
   159   void record_expand_heap_time(double ms) {
       
   160     _cur_expand_heap_time_ms = ms;
       
   161   }
       
   162 
   158   void record_par_time(double ms) {
   163   void record_par_time(double ms) {
   159     _cur_collection_par_time_ms = ms;
   164     _cur_collection_par_time_ms = ms;
   160   }
   165   }
   161 
   166 
   162   void record_code_root_fixup_time(double ms) {
   167   void record_code_root_fixup_time(double ms) {
   248     return _cur_collection_par_time_ms;
   253     return _cur_collection_par_time_ms;
   249   }
   254   }
   250 
   255 
   251   double cur_clear_ct_time_ms() {
   256   double cur_clear_ct_time_ms() {
   252     return _cur_clear_ct_time_ms;
   257     return _cur_clear_ct_time_ms;
       
   258   }
       
   259 
       
   260   double cur_expand_heap_time_ms() {
       
   261     return _cur_expand_heap_time_ms;
   253   }
   262   }
   254 
   263 
   255   double root_region_scan_wait_time_ms() {
   264   double root_region_scan_wait_time_ms() {
   256     return _root_region_scan_wait_time_ms;
   265     return _root_region_scan_wait_time_ms;
   257   }
   266   }