< prev index next >

src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.hpp

Print this page
rev 50076 : Fold Partial GC into Traversal GC

@@ -219,12 +219,10 @@
 
   size_t _tlab_allocs;
   size_t _gclab_allocs;
   size_t _shared_allocs;
 
-  bool _root;
-
   HeapWord* _new_top;
 
   size_t _critical_pins;
 
   // Seq numbers are used to drive heuristics decisions for collection.

@@ -374,17 +372,10 @@
   void compact();
 
   void set_new_top(HeapWord* new_top) { _new_top = new_top; }
   HeapWord* new_top() const { return _new_top; }
 
-  void set_root(bool r) {
-    _root = r;
-  }
-  bool is_root() const {
-    return _root;
-  }
-
   inline void adjust_alloc_metadata(ShenandoahHeap::AllocType type, size_t);
   void reset_alloc_metadata_to_shared();
   void reset_alloc_metadata();
   size_t get_shared_allocs() const;
   size_t get_tlab_allocs() const;
< prev index next >