< prev index next >

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

Print this page
rev 49944 : imported patch 8201492-properly-implement-non-contiguous-reference-processing


  25 #ifndef SHARE_GC_G1_G1FULLCOLLECTOR_HPP
  26 #define SHARE_GC_G1_G1FULLCOLLECTOR_HPP
  27 
  28 #include "gc/g1/g1FullGCCompactionPoint.hpp"
  29 #include "gc/g1/g1FullGCMarker.hpp"
  30 #include "gc/g1/g1FullGCOopClosures.hpp"
  31 #include "gc/g1/g1FullGCScope.hpp"
  32 #include "gc/shared/preservedMarks.hpp"
  33 #include "gc/shared/referenceProcessor.hpp"
  34 #include "gc/shared/taskqueue.hpp"
  35 #include "memory/allocation.hpp"
  36 
  37 class AbstractGangTask;
  38 class G1CMBitMap;
  39 class G1FullGCMarker;
  40 class G1FullGCScope;
  41 class G1FullGCCompactionPoint;
  42 class GCMemoryManager;
  43 class ReferenceProcessor;
  44 









  45 // The G1FullCollector holds data associated with the current Full GC.
  46 class G1FullCollector : StackObj {
  47   G1CollectedHeap*          _heap;
  48   G1FullGCScope             _scope;
  49   uint                      _num_workers;
  50   G1FullGCMarker**          _markers;
  51   G1FullGCCompactionPoint** _compaction_points;
  52   OopQueueSet               _oop_queue_set;
  53   ObjArrayTaskQueueSet      _array_queue_set;
  54   PreservedMarksSet         _preserved_marks_set;
  55   G1FullGCCompactionPoint   _serial_compaction_point;
  56   G1IsAliveClosure          _is_alive;
  57   ReferenceProcessorIsAliveMutator _is_alive_mutator;
  58 
  59   static uint calc_active_workers();



  60 
  61 public:
  62   G1FullCollector(G1CollectedHeap* heap, GCMemoryManager* memory_manager, bool explicit_gc, bool clear_soft_refs);
  63   ~G1FullCollector();
  64 
  65   void prepare_collection();
  66   void collect();
  67   void complete_collection();
  68 
  69   G1FullGCScope*           scope() { return &_scope; }
  70   uint                     workers() { return _num_workers; }
  71   G1FullGCMarker*          marker(uint id) { return _markers[id]; }
  72   G1FullGCCompactionPoint* compaction_point(uint id) { return _compaction_points[id]; }
  73   OopQueueSet*             oop_queue_set() { return &_oop_queue_set; }
  74   ObjArrayTaskQueueSet*    array_queue_set() { return &_array_queue_set; }
  75   PreservedMarksSet*       preserved_mark_set() { return &_preserved_marks_set; }
  76   G1FullGCCompactionPoint* serial_compaction_point() { return &_serial_compaction_point; }
  77   G1CMBitMap*              mark_bitmap();
  78   ReferenceProcessor*      reference_processor();
  79 


  25 #ifndef SHARE_GC_G1_G1FULLCOLLECTOR_HPP
  26 #define SHARE_GC_G1_G1FULLCOLLECTOR_HPP
  27 
  28 #include "gc/g1/g1FullGCCompactionPoint.hpp"
  29 #include "gc/g1/g1FullGCMarker.hpp"
  30 #include "gc/g1/g1FullGCOopClosures.hpp"
  31 #include "gc/g1/g1FullGCScope.hpp"
  32 #include "gc/shared/preservedMarks.hpp"
  33 #include "gc/shared/referenceProcessor.hpp"
  34 #include "gc/shared/taskqueue.hpp"
  35 #include "memory/allocation.hpp"
  36 
  37 class AbstractGangTask;
  38 class G1CMBitMap;
  39 class G1FullGCMarker;
  40 class G1FullGCScope;
  41 class G1FullGCCompactionPoint;
  42 class GCMemoryManager;
  43 class ReferenceProcessor;
  44 
  45 // Subject-to-discovery closure for reference processing during Full GC. During
  46 // Full GC the whole heap is subject to discovery.
  47 class G1FullGCSubjectToDiscoveryClosure: public BoolObjectClosure {
  48 public:
  49   bool do_object_b(oop p) {
  50     return (p != NULL);
  51   }
  52 };
  53 
  54 // The G1FullCollector holds data associated with the current Full GC.
  55 class G1FullCollector : StackObj {
  56   G1CollectedHeap*          _heap;
  57   G1FullGCScope             _scope;
  58   uint                      _num_workers;
  59   G1FullGCMarker**          _markers;
  60   G1FullGCCompactionPoint** _compaction_points;
  61   OopQueueSet               _oop_queue_set;
  62   ObjArrayTaskQueueSet      _array_queue_set;
  63   PreservedMarksSet         _preserved_marks_set;
  64   G1FullGCCompactionPoint   _serial_compaction_point;
  65   G1IsAliveClosure          _is_alive;
  66   ReferenceProcessorIsAliveMutator _is_alive_mutator;
  67 
  68   static uint calc_active_workers();
  69 
  70   G1FullGCSubjectToDiscoveryClosure _always_subject_to_discovery;
  71   ReferenceProcessorSubjectToDiscoveryMutator _is_subject_mutator;
  72 
  73 public:
  74   G1FullCollector(G1CollectedHeap* heap, GCMemoryManager* memory_manager, bool explicit_gc, bool clear_soft_refs);
  75   ~G1FullCollector();
  76 
  77   void prepare_collection();
  78   void collect();
  79   void complete_collection();
  80 
  81   G1FullGCScope*           scope() { return &_scope; }
  82   uint                     workers() { return _num_workers; }
  83   G1FullGCMarker*          marker(uint id) { return _markers[id]; }
  84   G1FullGCCompactionPoint* compaction_point(uint id) { return _compaction_points[id]; }
  85   OopQueueSet*             oop_queue_set() { return &_oop_queue_set; }
  86   ObjArrayTaskQueueSet*    array_queue_set() { return &_array_queue_set; }
  87   PreservedMarksSet*       preserved_mark_set() { return &_preserved_marks_set; }
  88   G1FullGCCompactionPoint* serial_compaction_point() { return &_serial_compaction_point; }
  89   G1CMBitMap*              mark_bitmap();
  90   ReferenceProcessor*      reference_processor();
  91 
< prev index next >