annotate src/share/vm/gc_implementation/g1/g1OopClosures.hpp @ 23472:047a642c9729

8065579: WB method to start G1 concurrent mark cycle should be introduced Summary: Add a WhiteBox callback to the VM to start a concurrent mark cycle in G1. Reviewed-by: tschatzl, sjohanss Contributed-by: Leonid Mesnik <leonid.mesnik@oracle.com>
author kevinw
date Wed, 02 Dec 2015 13:58:34 +0530
parents ea47136e6ea4
children dd9cc155639c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
1 /*
17650
5a9a209853bf 6991197: G1: specialize deal_with_reference() for narrowOop*
tschatzl
parents: 17636
diff changeset
2 * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
4 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
7 * published by the Free Software Foundation.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
8 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
13 * accompanied this code).
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
14 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1261
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1261
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1261
diff changeset
21 * questions.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
22 *
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
23 */
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1861
diff changeset
25 #ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1OOPCLOSURES_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1861
diff changeset
26 #define SHARE_VM_GC_IMPLEMENTATION_G1_G1OOPCLOSURES_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1861
diff changeset
27
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
28 #include "memory/iterator.hpp"
22901
c132be0fb74d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents: 20278
diff changeset
29 #include "oops/markOop.hpp"
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
30
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
31 class HeapRegion;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
32 class G1CollectedHeap;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
33 class G1RemSet;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
34 class ConcurrentMark;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
35 class DirtyCardToOopClosure;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
36 class CMBitMap;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
37 class CMMarkStack;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
38 class G1ParScanThreadState;
3771
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
39 class CMTask;
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
40 class ReferenceProcessor;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
41
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
42 // A class that scans oops in a given heap region (much as OopsInGenClosure
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
43 // scans oops in a generation.)
17636
889068b9a088 8027746: Remove do_gen_barrier template parameter in G1ParCopyClosure
tschatzl
parents: 12316
diff changeset
44 class OopsInHeapRegionClosure: public ExtendedOopClosure {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
45 protected:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
46 HeapRegion* _from;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
47 public:
3765
ae5b2f1dcf12 7045662: G1: OopsInHeapRegionClosure::set_region() should not be virtual
tonyp
parents: 1972
diff changeset
48 void set_region(HeapRegion* from) { _from = from; }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
49 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
50
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
51 class G1ParClosureSuper : public OopsInHeapRegionClosure {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
52 protected:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
53 G1CollectedHeap* _g1;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
54 G1ParScanThreadState* _par_scan_state;
4836
d30fa85f9994 6484965: G1: piggy-back liveness accounting phase on marking
johnc
parents: 4787
diff changeset
55 uint _worker_id;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
56 public:
20225
cd43876f692e 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 17844
diff changeset
57 // Initializes the instance, leaving _par_scan_state uninitialized. Must be done
cd43876f692e 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 17844
diff changeset
58 // later using the set_par_scan_thread_state() method.
cd43876f692e 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 17844
diff changeset
59 G1ParClosureSuper(G1CollectedHeap* g1);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
60 G1ParClosureSuper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
61 bool apply_to_weak_ref_discovered_field() { return true; }
20225
cd43876f692e 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 17844
diff changeset
62
cd43876f692e 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 17844
diff changeset
63 void set_par_scan_thread_state(G1ParScanThreadState* par_scan_state);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
64 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
65
1261
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
66 class G1ParPushHeapRSClosure : public G1ParClosureSuper {
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
67 public:
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
68 G1ParPushHeapRSClosure(G1CollectedHeap* g1,
3983
811ec3d0833b 7097053: G1: assert(da ? referent->is_oop() : referent->is_oop_or_null()) failed: referenceProcessor.cpp:1054
johnc
parents: 3979
diff changeset
69 G1ParScanThreadState* par_scan_state):
811ec3d0833b 7097053: G1: assert(da ? referent->is_oop() : referent->is_oop_or_null()) failed: referenceProcessor.cpp:1054
johnc
parents: 3979
diff changeset
70 G1ParClosureSuper(g1, par_scan_state) { }
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
71
1261
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
72 template <class T> void do_oop_nv(T* p);
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
73 virtual void do_oop(oop* p) { do_oop_nv(p); }
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
74 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
75 };
0414c1049f15 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 845
diff changeset
76
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
77 class G1ParScanClosure : public G1ParClosureSuper {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
78 public:
20225
cd43876f692e 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 17844
diff changeset
79 G1ParScanClosure(G1CollectedHeap* g1, ReferenceProcessor* rp) :
cd43876f692e 8040977: G1 crashes when run with -XX:-G1DeferredRSUpdate
tschatzl
parents: 17844
diff changeset
80 G1ParClosureSuper(g1) {
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
81 assert(_ref_processor == NULL, "sanity");
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
82 _ref_processor = rp;
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
83 }
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
84
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
85 template <class T> void do_oop_nv(T* p);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
86 virtual void do_oop(oop* p) { do_oop_nv(p); }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
87 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
88 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
89
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
90 // Add back base class for metadata
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
91 class G1ParCopyHelper : public G1ParClosureSuper {
17687
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
92 protected:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
93 Klass* _scanned_klass;
17687
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
94 ConcurrentMark* _cm;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
95
17687
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
96 // Mark the object if it's not already marked. This is used to mark
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
97 // objects pointed to by roots that are guaranteed not to move
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
98 // during the GC (i.e., non-CSet objects). It is MT-safe.
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
99 void mark_object(oop obj);
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
100
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
101 // Mark the object if it's not already marked. This is used to mark
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
102 // objects pointed to by roots that have been forwarded during a
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
103 // GC. It is MT-safe.
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
104 void mark_forwarded_object(oop from_obj, oop to_obj);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
105 public:
17687
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
106 G1ParCopyHelper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
107
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
108 void set_scanned_klass(Klass* k) { _scanned_klass = k; }
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
109 template <class T> void do_klass_barrier(T* p, oop new_obj);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
110 };
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
111
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
112 template <G1Barrier barrier, G1Mark do_mark_object>
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
113 class G1ParCopyClosure : public G1ParCopyHelper {
17689
5d492d192cbf 8035329: Move G1ParCopyClosure::copy_to_survivor_space into G1ParScanThreadState
tschatzl
parents: 17687
diff changeset
114 private:
5987
748051fd24ce 7130974: G1: Remove G1ParCopyHelper
brutisso
parents: 4839
diff changeset
115 template <class T> void do_oop_work(T* p);
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
116
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
117 public:
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
118 G1ParCopyClosure(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state,
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
119 ReferenceProcessor* rp) :
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
120 G1ParCopyHelper(g1, par_scan_state) {
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
121 assert(_ref_processor == NULL, "sanity");
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
122 }
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
123
17687
86b64209f715 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 17650
diff changeset
124 template <class T> void do_oop_nv(T* p) { do_oop_work(p); }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
125 virtual void do_oop(oop* p) { do_oop_nv(p); }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
126 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
127
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
128 G1CollectedHeap* g1() { return _g1; };
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
129 G1ParScanThreadState* pss() { return _par_scan_state; }
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
130 ReferenceProcessor* rp() { return _ref_processor; };
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
131 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
132
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
133 typedef G1ParCopyClosure<G1BarrierNone, G1MarkNone> G1ParScanExtRootClosure;
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
134 typedef G1ParCopyClosure<G1BarrierNone, G1MarkFromRoot> G1ParScanAndMarkExtRootClosure;
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
135 typedef G1ParCopyClosure<G1BarrierNone, G1MarkPromotedFromRoot> G1ParScanAndMarkWeakExtRootClosure;
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
136 // We use a separate closure to handle references during evacuation
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
137 // failure processing.
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
138
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
139 typedef G1ParCopyClosure<G1BarrierEvac, G1MarkNone> G1ParScanHeapEvacFailureClosure;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
140
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
141 class FilterIntoCSClosure: public ExtendedOopClosure {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
142 G1CollectedHeap* _g1;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
143 OopClosure* _oc;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
144 DirtyCardToOopClosure* _dcto_cl;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
145 public:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
146 FilterIntoCSClosure( DirtyCardToOopClosure* dcto_cl,
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
147 G1CollectedHeap* g1,
3983
811ec3d0833b 7097053: G1: assert(da ? referent->is_oop() : referent->is_oop_or_null()) failed: referenceProcessor.cpp:1054
johnc
parents: 3979
diff changeset
148 OopClosure* oc) :
811ec3d0833b 7097053: G1: assert(da ? referent->is_oop() : referent->is_oop_or_null()) failed: referenceProcessor.cpp:1054
johnc
parents: 3979
diff changeset
149 _dcto_cl(dcto_cl), _g1(g1), _oc(oc) { }
3979
4dfb2df418f2 6484982: G1: process references during evacuation pauses
johnc
parents: 3973
diff changeset
150
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
151 template <class T> void do_oop_nv(T* p);
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
152 virtual void do_oop(oop* p) { do_oop_nv(p); }
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
153 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
154 bool apply_to_weak_ref_discovered_field() { return true; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
155 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
156
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
157 class FilterOutOfRegionClosure: public ExtendedOopClosure {
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
158 HeapWord* _r_bottom;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
159 HeapWord* _r_end;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
160 OopClosure* _oc;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
161 public:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
162 FilterOutOfRegionClosure(HeapRegion* r, OopClosure* oc);
845
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
163 template <class T> void do_oop_nv(T* p);
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
164 virtual void do_oop(oop* p) { do_oop_nv(p); }
df6caf649ff7 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 579
diff changeset
165 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
166 bool apply_to_weak_ref_discovered_field() { return true; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
167 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1861
diff changeset
168
3771
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
169 // Closure for iterating over object fields during concurrent marking
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
170 class G1CMOopClosure : public MetadataAwareOopClosure {
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
171 protected:
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
172 ConcurrentMark* _cm;
4837
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
173 private:
3771
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
174 G1CollectedHeap* _g1h;
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
175 CMTask* _task;
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
176 public:
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
177 G1CMOopClosure(G1CollectedHeap* g1h, ConcurrentMark* cm, CMTask* task);
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
178 template <class T> void do_oop_nv(T* p);
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
179 virtual void do_oop( oop* p) { do_oop_nv(p); }
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
180 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
181 };
842b840e67db 7046558: G1: concurrent marking optimizations
tonyp
parents: 3765
diff changeset
182
4837
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
183 // Closure to scan the root regions during concurrent marking
20278
2c6ef90f030a 8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents: 20225
diff changeset
184 class G1RootRegionScanClosure : public MetadataAwareOopClosure {
4837
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
185 private:
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
186 G1CollectedHeap* _g1h;
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
187 ConcurrentMark* _cm;
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
188 uint _worker_id;
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
189 public:
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
190 G1RootRegionScanClosure(G1CollectedHeap* g1h, ConcurrentMark* cm,
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
191 uint worker_id) :
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
192 _g1h(g1h), _cm(cm), _worker_id(worker_id) { }
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
193 template <class T> void do_oop_nv(T* p);
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
194 virtual void do_oop( oop* p) { do_oop_nv(p); }
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
195 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
196 };
eff609af17d7 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 4836
diff changeset
197
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
198 // Closure that applies the given two closures in sequence.
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
199 // Used by the RSet refinement code (when updating RSets
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
200 // during an evacuation pause) to record cards containing
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
201 // pointers into the collection set.
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
202
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
203 class G1Mux2Closure : public ExtendedOopClosure {
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
204 OopClosure* _c1;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
205 OopClosure* _c2;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
206 public:
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
207 G1Mux2Closure(OopClosure *c1, OopClosure *c2);
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
208 template <class T> void do_oop_nv(T* p);
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
209 virtual void do_oop(oop* p) { do_oop_nv(p); }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
210 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
211 };
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
212
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
213 // A closure that returns true if it is actually applied
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
214 // to a reference
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
215
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
216 class G1TriggerClosure : public ExtendedOopClosure {
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
217 bool _triggered;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
218 public:
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
219 G1TriggerClosure();
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
220 bool triggered() const { return _triggered; }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
221 template <class T> void do_oop_nv(T* p);
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
222 virtual void do_oop(oop* p) { do_oop_nv(p); }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
223 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
224 };
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
225
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
226 // A closure which uses a triggering closure to determine
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
227 // whether to apply an oop closure.
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
228
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
229 class G1InvokeIfNotTriggeredClosure: public ExtendedOopClosure {
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
230 G1TriggerClosure* _trigger_cl;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
231 OopClosure* _oop_cl;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
232 public:
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
233 G1InvokeIfNotTriggeredClosure(G1TriggerClosure* t, OopClosure* oc);
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
234 template <class T> void do_oop_nv(T* p);
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
235 virtual void do_oop(oop* p) { do_oop_nv(p); }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
236 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
237 };
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
238
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6254
diff changeset
239 class G1UpdateRSOrPushRefOopClosure: public ExtendedOopClosure {
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
240 G1CollectedHeap* _g1;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
241 G1RemSet* _g1_rem_set;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
242 HeapRegion* _from;
23220
b554c7fa9478 8067655: Clean up G1 remembered set oop iteration
mgerdin
parents: 20278
diff changeset
243 G1ParPushHeapRSClosure* _push_ref_cl;
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
244 bool _record_refs_into_cset;
17844
8847586c9037 8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents: 17759
diff changeset
245 uint _worker_i;
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
246
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
247 public:
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
248 G1UpdateRSOrPushRefOopClosure(G1CollectedHeap* g1h,
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
249 G1RemSet* rs,
23220
b554c7fa9478 8067655: Clean up G1 remembered set oop iteration
mgerdin
parents: 20278
diff changeset
250 G1ParPushHeapRSClosure* push_ref_cl,
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
251 bool record_refs_into_cset,
17844
8847586c9037 8016302: Change type of the number of GC workers to unsigned int (2)
vkempik
parents: 17759
diff changeset
252 uint worker_i = 0);
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
253
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
254 void set_from(HeapRegion* from) {
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
255 assert(from != NULL, "from region must be non-NULL");
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
256 _from = from;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
257 }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
258
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
259 bool self_forwarded(oop obj) {
22901
c132be0fb74d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents: 20278
diff changeset
260 markOop m = obj->mark();
c132be0fb74d 8060025: Object copy time regressions after JDK-8031323 and JDK-8057536
tschatzl
parents: 20278
diff changeset
261 bool result = (m->is_marked() && ((oop)m->decode_pointer() == obj));
4839
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
262 return result;
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
263 }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
264
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
265 bool apply_to_weak_ref_discovered_field() { return true; }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
266
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
267 template <class T> void do_oop_nv(T* p);
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
268 virtual void do_oop(narrowOop* p) { do_oop_nv(p); }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
269 virtual void do_oop(oop* p) { do_oop_nv(p); }
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
270 };
b4ebad3520bb 7133038: G1: Some small profile based optimizations
johnc
parents: 4837
diff changeset
271
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1861
diff changeset
272 #endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1OOPCLOSURES_HPP