< prev index next >

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

Print this page
rev 52572 : JDK-8212657: Implementation of JDK-8204089 Promptly Return Unused Committed Memory from G1
Summary: Issue optional, default enabled, concurrent cycles when the VM is idle to reclaim unused internal and Java heap memory.
Reviewed-by:
Contributed-by: Rodrigo Bruno <rbruno@gsd.inesc-id.pt>, Ruslan Synytsky <rs@jelastic.com>, Thomas Schatzl <thomas.schatzl@oracle.com>
rev 52573 : [mq]: 8212657-stefanj-review


  33 // At the end of the GC G1 determines the length of the young gen based on
  34 // how much time the next GC can take, and when the next GC may occur
  35 // according to the MMU.
  36 //
  37 // The assumption is that a significant part of the GC is spent on scanning
  38 // the remembered sets (and many other components), so this thread constantly
  39 // reevaluates the prediction for the remembered set scanning costs, and potentially
  40 // G1Policy resizes the young gen. This may do a premature GC or even
  41 // increase the young gen size to keep pause time length goal.
  42 class G1YoungRemSetSamplingThread: public ConcurrentGCThread {
  43 private:
  44   Monitor _monitor;
  45 
  46   double _last_periodic_gc_attempt_s;
  47 
  48   double _vtime_accum;  // Accumulated virtual time.
  49 
  50   void sample_young_list_rs_lengths();
  51 
  52   void run_service();


  53   void stop_service();
  54 
  55   void sleep_before_next_cycle();
  56 
  57   bool should_start_periodic_gc();
  58 
  59 public:
  60   G1YoungRemSetSamplingThread();
  61   double vtime_accum() { return _vtime_accum; }
  62 };
  63 
  64 #endif // SHARE_VM_GC_G1_G1YOUNGREMSETSAMPLINGTHREAD_HPP


  33 // At the end of the GC G1 determines the length of the young gen based on
  34 // how much time the next GC can take, and when the next GC may occur
  35 // according to the MMU.
  36 //
  37 // The assumption is that a significant part of the GC is spent on scanning
  38 // the remembered sets (and many other components), so this thread constantly
  39 // reevaluates the prediction for the remembered set scanning costs, and potentially
  40 // G1Policy resizes the young gen. This may do a premature GC or even
  41 // increase the young gen size to keep pause time length goal.
  42 class G1YoungRemSetSamplingThread: public ConcurrentGCThread {
  43 private:
  44   Monitor _monitor;
  45 
  46   double _last_periodic_gc_attempt_s;
  47 
  48   double _vtime_accum;  // Accumulated virtual time.
  49 
  50   void sample_young_list_rs_lengths();
  51 
  52   void run_service();
  53   void check_for_periodic_gc();
  54 
  55   void stop_service();
  56 
  57   void sleep_before_next_cycle();
  58 
  59   bool should_start_periodic_gc();
  60 
  61 public:
  62   G1YoungRemSetSamplingThread();
  63   double vtime_accum() { return _vtime_accum; }
  64 };
  65 
  66 #endif // SHARE_VM_GC_G1_G1YOUNGREMSETSAMPLINGTHREAD_HPP
< prev index next >