< prev index next >

src/hotspot/share/gc/g1/g1Policy.hpp

Print this page
rev 56940 : imported patch 8228609-used-vs-copied-bytes
rev 56942 : imported patch 8227739-merge-scan-rs-update-rs-cost
rev 56952 : [mq]: 8233588-cleanup-survrategroup

@@ -165,14 +165,10 @@
 
   double max_pause_time_ms() const {
     return _mmu_tracker->max_gc_time() * 1000.0;
   }
 
-  double predict_yg_surv_rate(int age, SurvRateGroup* surv_rate_group) const;
-
-  double predict_yg_surv_rate(int age) const;
-
   double accum_yg_surv_rate_pred(int age) const;
 
 private:
   G1CollectionSet* _collection_set;
   double average_time_ms(G1GCPhaseTimes::GCParPhases phase) const;

@@ -381,18 +377,10 @@
   // marking thread has completed its work during the previous cycle,
   // it will set in_initial_mark_gc() to so that the pause does
   // the initial-mark work and start a marking cycle.
   void decide_on_conc_mark_initiation();
 
-  void finished_recalculating_age_indexes(bool is_survivors) {
-    if (is_survivors) {
-      _survivor_surv_rate_group->finished_recalculating_age_indexes();
-    } else {
-      _short_lived_surv_rate_group->finished_recalculating_age_indexes();
-    }
-  }
-
   size_t young_list_target_length() const { return _young_list_target_length; }
 
   bool should_allocate_mutator_region() const;
 
   bool can_expand_young_list() const;
< prev index next >