src/hotspot/share/gc/g1/g1CollectorState.hpp
changeset 49632 64f9ebc85e67
parent 49607 acffe6ff3ae7
child 49643 a3453bbd5418
--- a/src/hotspot/share/gc/g1/g1CollectorState.hpp	Mon Mar 26 17:01:32 2018 +0200
+++ b/src/hotspot/share/gc/g1/g1CollectorState.hpp	Wed Mar 28 16:39:32 2018 +0200
@@ -71,9 +71,6 @@
   bool _in_marking_window;
   bool _in_marking_window_im;
 
-  // Are we going into a mixed gc phase.
-  bool _mixed_gc_pending;
-
   bool _full_collection;
 
   public:
@@ -81,7 +78,6 @@
       _gcs_are_young(true),
       _last_gc_was_young(false),
       _last_young_gc(false),
-      _mixed_gc_pending(false),
 
       _during_initial_mark_pause(false),
       _initiate_conc_mark_if_possible(false),
@@ -95,14 +91,13 @@
   // Setters
   void set_gcs_are_young(bool v) { _gcs_are_young = v; }
   void set_last_gc_was_young(bool v) { _last_gc_was_young = v; }
-  void set_last_young_gc(bool v) { _last_young_gc = v; _mixed_gc_pending = false;}
+  void set_last_young_gc(bool v) { _last_young_gc = v; }
   void set_during_initial_mark_pause(bool v) { _during_initial_mark_pause = v; }
   void set_initiate_conc_mark_if_possible(bool v) { _initiate_conc_mark_if_possible = v; }
   void set_during_marking(bool v) { _during_marking = v; }
   void set_mark_in_progress(bool v) { _mark_in_progress = v; }
   void set_in_marking_window(bool v) { _in_marking_window = v; }
   void set_in_marking_window_im(bool v) { _in_marking_window_im = v; }
-  void set_mixed_gc_pending(bool v) { _mixed_gc_pending = v; }
   void set_full_collection(bool v) { _full_collection = v; }
 
   // Getters
@@ -115,7 +110,6 @@
   bool mark_in_progress() const { return _mark_in_progress; }
   bool in_marking_window() const { return _in_marking_window; }
   bool in_marking_window_im() const { return _in_marking_window_im; }
-  bool mixed_gc_pending() const { return _mixed_gc_pending; }
   bool full_collection() const { return _full_collection; }
 
   // Composite booleans (clients worry about flickering)