< prev index next >

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

Print this page
rev 13079 : Add humongous regions support to partial GC.

@@ -90,10 +90,15 @@
   void object_iterate_interruptible(ObjectClosure* blk, bool allow_cancel);
 
   HeapWord* object_iterate_careful(ObjectClosureCareful* cl);
   void oop_iterate(ExtendedOopClosure* cl);
 
+private:
+  void oop_iterate_objects(ExtendedOopClosure* cl);
+  void oop_iterate_humongous(ExtendedOopClosure* cl);
+
+public:
   HeapWord* block_start_const(const void* p) const;
 
   // Just before GC we need to fill the current region.
   void fill_region();
 
< prev index next >