< prev index next >

src/share/vm/gc/g1/g1CollectorPolicy.hpp

Print this page

        

@@ -154,10 +154,11 @@
     return _min_desired_young_length;
   }
   uint max_desired_young_length() {
     return _max_desired_young_length;
   }
+  
   bool adaptive_young_list_length() const {
     return _adaptive_size;
   }
 };
 

@@ -594,13 +595,11 @@
   // print_detailed_heap_transition
   void record_heap_size_info_at_start(bool full);
 
   // Print heap sizing transition (with less and more detail).
 
-  void print_heap_transition(size_t bytes_before) const;
-  void print_heap_transition() const;
-  void print_detailed_heap_transition(bool full = false) const;
+  void print_detailed_heap_transition() const;
 
   virtual void print_phases(double pause_time_sec);
 
   void record_stop_world_start();
   void record_concurrent_pause();

@@ -751,10 +750,11 @@
   // The value of _heap_bytes_before_gc is also used to calculate
   // the cost of copying.
 
   size_t _eden_used_bytes_before_gc;         // Eden occupancy before GC
   size_t _survivor_used_bytes_before_gc;     // Survivor occupancy before GC
+  size_t _old_used_bytes_before_gc;          // Old occupancy before GC
   size_t _heap_used_bytes_before_gc;         // Heap occupancy before GC
   size_t _metaspace_used_bytes_before_gc;    // Metaspace occupancy before GC
 
   size_t _eden_capacity_bytes_before_gc;     // Eden capacity before GC
   size_t _heap_capacity_bytes_before_gc;     // Heap capacity before GC
< prev index next >