< prev index next >

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

Print this page
rev 56968 : imported patch 8233306-heapregion-sorting
rev 56980 : imported patch 8234000-make-some-stuff-const
rev 56981 : imported patch 8233588-cleanup-survrategroup
rev 56982 : [mq]: 8231579-incremental-calculation-wrong

@@ -256,13 +256,13 @@
 
   // The remembered set length that was added to the total value
   // for the collection set.
   size_t _recorded_rs_length;
 
-  // The predicted elapsed time that was added to total value
+  // The predicted time without copy time that was added to total value
   // for the collection set.
-  double _predicted_elapsed_time_ms;
+  double _predicted_non_copy_time_ms;
 
   uint _node_index;
 
   void report_region_type_change(G1HeapRegionTraceType::Type to);
 

@@ -576,18 +576,18 @@
   // only happen when invoked concurrently with the mutator).
   template <bool is_gc_active, class Closure>
   inline HeapWord* oops_on_memregion_seq_iterate_careful(MemRegion mr, Closure* cl);
 
   size_t recorded_rs_length() const        { return _recorded_rs_length; }
-  double predicted_elapsed_time_ms() const { return _predicted_elapsed_time_ms; }
+  double predicted_non_copy_time_ms() const { return _predicted_non_copy_time_ms; }
 
   void set_recorded_rs_length(size_t rs_length) {
     _recorded_rs_length = rs_length;
   }
 
-  void set_predicted_elapsed_time_ms(double ms) {
-    _predicted_elapsed_time_ms = ms;
+  void set_predicted_non_copy_time_ms(double ms) {
+    _predicted_non_copy_time_ms = ms;
   }
 
   // Routines for managing a list of code roots (attached to the
   // this region's RSet) that point into this heap region.
   void add_strong_code_root(nmethod* nm);
< prev index next >