src/share/vm/gc_implementation/g1/g1GCPhaseTimes.hpp

Print this page
rev 6872 : imported patch nm-hashtable

*** 127,137 **** WorkerDataArray<double> _last_gc_worker_times_ms; WorkerDataArray<double> _last_gc_worker_other_times_ms; double _cur_collection_par_time_ms; double _cur_collection_code_root_fixup_time_ms; - double _cur_strong_code_root_migration_time_ms; double _cur_strong_code_root_purge_time_ms; double _cur_evac_fail_recalc_used; double _cur_evac_fail_restore_remsets; double _cur_evac_fail_remove_self_forwards; --- 127,136 ----
*** 231,244 **** void record_code_root_fixup_time(double ms) { _cur_collection_code_root_fixup_time_ms = ms; } - void record_strong_code_root_migration_time(double ms) { - _cur_strong_code_root_migration_time_ms = ms; - } - void record_strong_code_root_purge_time(double ms) { _cur_strong_code_root_purge_time_ms = ms; } void record_evac_fail_recalc_used_time(double ms) { --- 230,239 ----