1 /*
  2  * Copyright (c) 2021, Red Hat, Inc. All rights reserved.
  3  * Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
  4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  5  *
  6  * This code is free software; you can redistribute it and/or modify it
  7  * under the terms of the GNU General Public License version 2 only, as
  8  * published by the Free Software Foundation.
  9  *
 10  * This code is distributed in the hope that it will be useful, but WITHOUT
 11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 13  * version 2 for more details (a copy is included in the LICENSE file that
 14  * accompanied this code).
 15  *
 16  * You should have received a copy of the GNU General Public License version
 17  * 2 along with this work; if not, write to the Free Software Foundation,
 18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 19  *
 20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 21  * or visit www.oracle.com if you need additional information or have any
 22  * questions.
 23  *
 24  */
 25 
 26 #ifndef SHARE_GC_SHENANDOAH_SHENANDOAHCONCURRENTGC_HPP
 27 #define SHARE_GC_SHENANDOAH_SHENANDOAHCONCURRENTGC_HPP
 28 
 29 #include "gc/shared/gcCause.hpp"
 30 #include "gc/shenandoah/shenandoahConcurrentMark.hpp"
 31 #include "gc/shenandoah/shenandoahGC.hpp"
 32 #include "gc/shenandoah/shenandoahHeap.hpp"
 33 
 34 class ShenandoahGeneration;
 35 
 36 class VM_ShenandoahInitMark;
 37 class VM_ShenandoahFinalMarkStartEvac;
 38 class VM_ShenandoahInitUpdateRefs;
 39 class VM_ShenandoahFinalUpdateRefs;
 40 
 41 class ShenandoahConcurrentGC : public ShenandoahGC {
 42   friend class VM_ShenandoahInitMark;
 43   friend class VM_ShenandoahFinalMarkStartEvac;
 44   friend class VM_ShenandoahFinalRoots;
 45   friend class VM_ShenandoahInitUpdateRefs;
 46   friend class VM_ShenandoahFinalUpdateRefs;
 47   friend class VM_ShenandoahFinalVerify;
 48 
 49 protected:
 50   ShenandoahConcurrentMark    _mark;
 51 
 52 private:
 53   ShenandoahDegenPoint        _degen_point;
 54   bool                        _abbreviated;
 55   const bool                  _do_old_gc_bootstrap;
 56 
 57 public:
 58   ShenandoahConcurrentGC(ShenandoahGeneration* generation, bool do_old_gc_bootstrap);
 59 
 60   bool collect(GCCause::Cause cause) override;
 61   ShenandoahDegenPoint degen_point() const;
 62 
 63   // Return true if this cycle found enough immediate garbage to skip evacuation
 64   bool abbreviated() const { return _abbreviated; }
 65 
 66 protected:
 67   // Entry points to STW GC operations, these cause a related safepoint, that then
 68   // call the entry method below
 69   void vmop_entry_init_mark();
 70   void vmop_entry_final_mark();
 71   void vmop_entry_init_update_refs();
 72   void vmop_entry_final_update_refs();
 73   void vmop_entry_final_roots();
 74   void vmop_entry_final_verify();
 75 
 76   // Entry methods to normally STW GC operations. These set up logging, monitoring
 77   // and workers for next VM operation
 78   void entry_init_mark();
 79   void entry_final_mark();
 80   void entry_final_roots();
 81   void entry_init_update_refs();
 82   void entry_final_update_refs();
 83   void entry_final_verify();
 84 
 85   // Entry methods to normally concurrent GC operations. These set up logging, monitoring
 86   // for concurrent operation.
 87   void entry_reset();
 88   void entry_mark_roots();
 89   void entry_scan_remembered_set();
 90   void entry_mark();
 91   void entry_thread_roots();
 92   void entry_weak_refs();
 93   void entry_weak_roots();
 94   void entry_class_unloading();
 95   void entry_strong_roots();
 96   void entry_cleanup_early();
 97   void entry_conc_roots();
 98   void entry_complete_abbreviated_cycle();
 99   void entry_evacuate();
100   void entry_update_thread_roots();
101   void entry_update_card_table();
102   void entry_concurrent_update_refs_prepare(ShenandoahHeap* heap);
103   void entry_update_refs();
104   void entry_cleanup_complete();
105 
106   // Actual work for the phases
107   void op_reset();
108   void op_init_mark();
109   void op_mark_roots();
110   void op_mark();
111   virtual void op_final_mark();
112   void op_thread_roots();
113   void op_weak_refs();
114   void op_weak_roots();
115   void op_class_unloading();
116   void op_strong_roots();
117   void op_cleanup_early();
118   void op_evacuate();
119   void op_init_update_refs();
120   void op_update_refs();
121   void op_update_thread_roots();
122   void op_final_update_refs();
123 
124   void op_verify_final();
125   void op_cleanup_complete();
126   void op_reset_after_collect();
127 
128   // Check GC cancellation and abort concurrent GC
129   bool check_cancellation_and_abort(ShenandoahDegenPoint point);
130 
131   // Called when concurrent GC succeeds.
132   void entry_reset_after_collect();
133 
134 private:
135   void start_mark();
136 
137   static bool has_in_place_promotions(ShenandoahHeap* heap);
138 
139   // Messages for GC trace events, they have to be immortal for
140   // passing around the logging/tracing systems
141   const char* init_mark_event_message() const;
142   const char* final_mark_event_message() const;
143   const char* verify_final_event_message() const;
144   const char* conc_final_roots_event_message() const;
145   const char* conc_mark_event_message() const;
146   const char* conc_reset_event_message() const;
147   const char* conc_reset_after_collect_event_message() const;
148   const char* conc_weak_refs_event_message() const;
149   const char* conc_weak_roots_event_message() const;
150   const char* conc_cleanup_event_message() const;
151   const char* conc_init_update_refs_event_message() const;
152 };
153 
154 #endif // SHARE_GC_SHENANDOAH_SHENANDOAHCONCURRENTGC_HPP