< prev index next >

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

Print this page

  1 /*
  2  * Copyright (c) 2015, 2022, Red Hat, Inc. All rights reserved.

  3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4  *
  5  * This code is free software; you can redistribute it and/or modify it
  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #ifndef SHARE_GC_SHENANDOAH_SHENANDOAHOOPCLOSURES_HPP
 26 #define SHARE_GC_SHENANDOAH_SHENANDOAHOOPCLOSURES_HPP
 27 
 28 #include "gc/shared/stringdedup/stringDedup.hpp"
 29 #include "gc/shenandoah/shenandoahClosures.inline.hpp"

 30 #include "gc/shenandoah/shenandoahHeap.inline.hpp"
 31 #include "gc/shenandoah/shenandoahTaskqueue.hpp"
 32 #include "gc/shenandoah/shenandoahUtils.hpp"
 33 #include "memory/iterator.hpp"
 34 #include "runtime/javaThread.hpp"
 35 
 36 enum StringDedupMode {
 37   NO_DEDUP,      // Do not do anything for String deduplication
 38   ENQUEUE_DEDUP, // Enqueue candidate Strings for deduplication, if meet age threshold
 39   ALWAYS_DEDUP   // Enqueue Strings for deduplication
 40 };
 41 
 42 class ShenandoahMarkRefsSuperClosure : public MetadataVisitingOopIterateClosure {
 43 private:
 44   ShenandoahObjToScanQueue* _queue;

 45   ShenandoahMarkingContext* const _mark_context;
 46   bool _weak;
 47 
 48 protected:
 49   template <class T>
 50   void work(T *p);
 51 
 52 public:
 53   ShenandoahMarkRefsSuperClosure(ShenandoahObjToScanQueue* q, ShenandoahReferenceProcessor* rp);
 54 
 55   bool is_weak() const {
 56     return _weak;
 57   }
 58 
 59   void set_weak(bool weak) {
 60     _weak = weak;
 61   }
 62 
 63   virtual void do_nmethod(nmethod* nm) {
 64     assert(!is_weak(), "Can't handle weak marking of nmethods");
 65     nm->run_nmethod_entry_barrier();
 66   }
 67 };
 68 
 69 class ShenandoahMarkUpdateRefsSuperClosure : public ShenandoahMarkRefsSuperClosure {
 70 protected:
 71   ShenandoahHeap* const _heap;
 72 
 73   template <class T>
 74   inline void work(T* p);
 75 
 76 public:
 77   ShenandoahMarkUpdateRefsSuperClosure(ShenandoahObjToScanQueue* q, ShenandoahReferenceProcessor* rp) :
 78     ShenandoahMarkRefsSuperClosure(q, rp),
 79     _heap(ShenandoahHeap::heap()) {
 80     assert(_heap->is_stw_gc_in_progress(), "Can only be used for STW GC");
 81   };
 82 };
 83 

 84 class ShenandoahMarkUpdateRefsClosure : public ShenandoahMarkUpdateRefsSuperClosure {
 85 private:
 86   template <class T>
 87   inline void do_oop_work(T* p)     { work<T>(p); }
 88 
 89 public:
 90   ShenandoahMarkUpdateRefsClosure(ShenandoahObjToScanQueue* q, ShenandoahReferenceProcessor* rp) :
 91     ShenandoahMarkUpdateRefsSuperClosure(q, rp) {}
 92 
 93   virtual void do_oop(narrowOop* p) { do_oop_work(p); }
 94   virtual void do_oop(oop* p)       { do_oop_work(p); }
 95 };
 96 

 97 class ShenandoahMarkRefsClosure : public ShenandoahMarkRefsSuperClosure {
 98 private:
 99   template <class T>
100   inline void do_oop_work(T* p)     { work<T>(p); }
101 
102 public:
103   ShenandoahMarkRefsClosure(ShenandoahObjToScanQueue* q, ShenandoahReferenceProcessor* rp) :
104     ShenandoahMarkRefsSuperClosure(q, rp) {};
105 
106   virtual void do_oop(narrowOop* p) { do_oop_work(p); }
107   virtual void do_oop(oop* p)       { do_oop_work(p); }
108 };
109 
110 
111 class ShenandoahUpdateRefsSuperClosure : public ShenandoahOopClosureBase {
112 protected:
113   ShenandoahHeap* _heap;
114 
115 public:
116   ShenandoahUpdateRefsSuperClosure() :  _heap(ShenandoahHeap::heap()) {}
117 };
118 
119 class ShenandoahSTWUpdateRefsClosure : public ShenandoahUpdateRefsSuperClosure {
120 private:
121   template<class T>
122   inline void work(T* p);
123 
124 public:
125   ShenandoahSTWUpdateRefsClosure() : ShenandoahUpdateRefsSuperClosure() {
126     assert(ShenandoahSafepoint::is_at_shenandoah_safepoint(), "Must only be used at safepoints");
127   }
128 
129   virtual void do_oop(narrowOop* p) { work(p); }
130   virtual void do_oop(oop* p)       { work(p); }

  1 /*
  2  * Copyright (c) 2015, 2022, 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_SHENANDOAHOOPCLOSURES_HPP
 27 #define SHARE_GC_SHENANDOAH_SHENANDOAHOOPCLOSURES_HPP
 28 
 29 #include "gc/shared/stringdedup/stringDedup.hpp"
 30 #include "gc/shenandoah/shenandoahClosures.inline.hpp"
 31 #include "gc/shenandoah/shenandoahGenerationType.hpp"
 32 #include "gc/shenandoah/shenandoahHeap.inline.hpp"
 33 #include "gc/shenandoah/shenandoahTaskqueue.hpp"
 34 #include "gc/shenandoah/shenandoahUtils.hpp"
 35 #include "memory/iterator.hpp"
 36 #include "runtime/javaThread.hpp"
 37 






 38 class ShenandoahMarkRefsSuperClosure : public MetadataVisitingOopIterateClosure {
 39 private:
 40   ShenandoahObjToScanQueue* _queue;
 41   ShenandoahObjToScanQueue* _old_queue;
 42   ShenandoahMarkingContext* const _mark_context;
 43   bool _weak;
 44 
 45 protected:
 46   template <class T, ShenandoahGenerationType GENERATION>
 47   void work(T *p);
 48 
 49 public:
 50   ShenandoahMarkRefsSuperClosure(ShenandoahObjToScanQueue* q, ShenandoahReferenceProcessor* rp, ShenandoahObjToScanQueue* old_q);
 51 
 52   bool is_weak() const {
 53     return _weak;
 54   }
 55 
 56   void set_weak(bool weak) {
 57     _weak = weak;
 58   }
 59 
 60   virtual void do_nmethod(nmethod* nm) {
 61     assert(!is_weak(), "Can't handle weak marking of nmethods");
 62     nm->run_nmethod_entry_barrier();
 63   }
 64 };
 65 
 66 class ShenandoahMarkUpdateRefsSuperClosure : public ShenandoahMarkRefsSuperClosure {
 67 protected:
 68   ShenandoahHeap* const _heap;
 69 
 70   template <class T, ShenandoahGenerationType GENERATION>
 71   inline void work(T* p);
 72 
 73 public:
 74   ShenandoahMarkUpdateRefsSuperClosure(ShenandoahObjToScanQueue* q, ShenandoahReferenceProcessor* rp, ShenandoahObjToScanQueue* old_q) :
 75     ShenandoahMarkRefsSuperClosure(q, rp, old_q),
 76     _heap(ShenandoahHeap::heap()) {
 77     assert(_heap->is_stw_gc_in_progress(), "Can only be used for STW GC");
 78   };
 79 };
 80 
 81 template <ShenandoahGenerationType GENERATION>
 82 class ShenandoahMarkUpdateRefsClosure : public ShenandoahMarkUpdateRefsSuperClosure {
 83 private:
 84   template <class T>
 85   inline void do_oop_work(T* p)     { work<T, GENERATION>(p); }
 86 
 87 public:
 88   ShenandoahMarkUpdateRefsClosure(ShenandoahObjToScanQueue* q, ShenandoahReferenceProcessor* rp, ShenandoahObjToScanQueue* old_q) :
 89     ShenandoahMarkUpdateRefsSuperClosure(q, rp, old_q) {}
 90 
 91   virtual void do_oop(narrowOop* p) { do_oop_work(p); }
 92   virtual void do_oop(oop* p)       { do_oop_work(p); }
 93 };
 94 
 95 template <ShenandoahGenerationType GENERATION>
 96 class ShenandoahMarkRefsClosure : public ShenandoahMarkRefsSuperClosure {
 97 private:
 98   template <class T>
 99   inline void do_oop_work(T* p)     { work<T, GENERATION>(p); }
100 
101 public:
102   ShenandoahMarkRefsClosure(ShenandoahObjToScanQueue* q, ShenandoahReferenceProcessor* rp, ShenandoahObjToScanQueue* old_q) :
103     ShenandoahMarkRefsSuperClosure(q, rp, old_q) {};
104 
105   virtual void do_oop(narrowOop* p) { do_oop_work(p); }
106   virtual void do_oop(oop* p)       { do_oop_work(p); }
107 };
108 

109 class ShenandoahUpdateRefsSuperClosure : public ShenandoahOopClosureBase {
110 protected:
111   ShenandoahHeap* _heap;
112 
113 public:
114   ShenandoahUpdateRefsSuperClosure() :  _heap(ShenandoahHeap::heap()) {}
115 };
116 
117 class ShenandoahSTWUpdateRefsClosure : public ShenandoahUpdateRefsSuperClosure {
118 private:
119   template<class T>
120   inline void work(T* p);
121 
122 public:
123   ShenandoahSTWUpdateRefsClosure() : ShenandoahUpdateRefsSuperClosure() {
124     assert(ShenandoahSafepoint::is_at_shenandoah_safepoint(), "Must only be used at safepoints");
125   }
126 
127   virtual void do_oop(narrowOop* p) { work(p); }
128   virtual void do_oop(oop* p)       { work(p); }
< prev index next >