< prev index next >

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

Print this page

        

@@ -23,11 +23,10 @@
  */
 
 #ifndef SHARE_VM_GC_G1_VM_OPERATIONS_G1_HPP
 #define SHARE_VM_GC_G1_VM_OPERATIONS_G1_HPP
 
-#include "gc/g1/g1AllocationContext.hpp"
 #include "gc/shared/gcId.hpp"
 #include "gc/shared/vmGCOperations.hpp"
 
 // VM_operations for the G1 collector.
 // VM_GC_Operation:

@@ -49,23 +48,21 @@
 };
 
 class VM_G1CollectForAllocation: public VM_CollectForAllocation {
 private:
   bool      _pause_succeeded;
-  AllocationContext_t _allocation_context;
 
   bool         _should_initiate_conc_mark;
   bool         _should_retry_gc;
   double       _target_pause_time_ms;
   uint         _old_marking_cycles_completed_before;
 public:
   VM_G1CollectForAllocation(size_t         word_size,
                             uint           gc_count_before,
                             GCCause::Cause gc_cause,
                             bool           should_initiate_conc_mark,
-                            double         target_pause_time_ms,
-                            AllocationContext_t allocation_context);
+                            double         target_pause_time_ms);
   virtual VMOp_Type type() const { return VMOp_G1CollectForAllocation; }
   virtual bool doit_prologue();
   virtual void doit();
   virtual void doit_epilogue();
   virtual const char* name() const {
< prev index next >