author | stefank |
Tue, 06 Aug 2019 10:48:21 +0200 | |
changeset 57777 | 90ead0febf56 |
parent 53244 | 9807daeb47c4 |
child 57811 | 947252a54b98 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50752
diff
changeset
|
2 |
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5076
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50752
diff
changeset
|
25 |
#ifndef SHARE_GC_SERIAL_MARKSWEEP_HPP |
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50752
diff
changeset
|
26 |
#define SHARE_GC_SERIAL_MARKSWEEP_HPP |
7397 | 27 |
|
30764 | 28 |
#include "gc/shared/collectedHeap.hpp" |
29 |
#include "gc/shared/genOopClosures.hpp" |
|
30 |
#include "gc/shared/taskqueue.hpp" |
|
29701
f638fc81a3d0
8075803: Fix GC includes and forward declarations
stefank
parents:
25492
diff
changeset
|
31 |
#include "memory/iterator.hpp" |
7397 | 32 |
#include "oops/markOop.hpp" |
33 |
#include "oops/oop.hpp" |
|
34 |
#include "runtime/timer.hpp" |
|
35 |
#include "utilities/growableArray.hpp" |
|
36 |
#include "utilities/stack.hpp" |
|
37 |
||
1 | 38 |
class ReferenceProcessor; |
3696 | 39 |
class DataLayout; |
18025 | 40 |
class SerialOldTracer; |
41 |
class STWGCTimer; |
|
1 | 42 |
|
43 |
// MarkSweep takes care of global mark-compact garbage collection for a |
|
44 |
// GenCollectedHeap using a four-phase pointer forwarding algorithm. All |
|
45 |
// generations are assumed to support marking; those that can also support |
|
46 |
// compaction. |
|
47 |
// |
|
48 |
// Class unloading will only occur when a full gc is invoked. |
|
49 |
||
50 |
// declared at end |
|
51 |
class PreservedMark; |
|
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
52 |
class MarkAndPushClosure; |
46415
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
53 |
class AdjustPointerClosure; |
1 | 54 |
|
55 |
class MarkSweep : AllStatic { |
|
56 |
// |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
57 |
// Inline closure decls |
1 | 58 |
// |
50752 | 59 |
class FollowRootClosure: public BasicOopsInGenClosure { |
1 | 60 |
public: |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
61 |
virtual void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
62 |
virtual void do_oop(narrowOop* p); |
1 | 63 |
}; |
64 |
||
65 |
class FollowStackClosure: public VoidClosure { |
|
66 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
67 |
virtual void do_void(); |
1 | 68 |
}; |
69 |
||
70 |
// Used for java/lang/ref handling |
|
71 |
class IsAliveClosure: public BoolObjectClosure { |
|
72 |
public: |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
73 |
virtual bool do_object_b(oop p); |
1 | 74 |
}; |
75 |
||
76 |
class KeepAliveClosure: public OopClosure { |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
77 |
protected: |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
78 |
template <class T> void do_oop_work(T* p); |
1 | 79 |
public: |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
80 |
virtual void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
81 |
virtual void do_oop(narrowOop* p); |
1 | 82 |
}; |
83 |
||
84 |
// |
|
85 |
// Friend decls |
|
86 |
// |
|
87 |
friend class AdjustPointerClosure; |
|
88 |
friend class KeepAliveClosure; |
|
89 |
friend class VM_MarkSweep; |
|
90 |
||
91 |
// |
|
92 |
// Vars |
|
93 |
// |
|
94 |
protected: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
95 |
// Total invocations of a MarkSweep collection |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17105
diff
changeset
|
96 |
static uint _total_invocations; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
97 |
|
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3919
diff
changeset
|
98 |
// Traversal stacks used during phase1 |
13195 | 99 |
static Stack<oop, mtGC> _marking_stack; |
100 |
static Stack<ObjArrayTask, mtGC> _objarray_stack; |
|
1 | 101 |
|
102 |
// Space for storing/restoring mark word |
|
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
53244
diff
changeset
|
103 |
static Stack<markWord, mtGC> _preserved_mark_stack; |
13195 | 104 |
static Stack<oop, mtGC> _preserved_oop_stack; |
1 | 105 |
static size_t _preserved_count; |
106 |
static size_t _preserved_count_max; |
|
107 |
static PreservedMark* _preserved_marks; |
|
108 |
||
109 |
// Reference processing (used in ...follow_contents) |
|
110 |
static ReferenceProcessor* _ref_processor; |
|
111 |
||
18025 | 112 |
static STWGCTimer* _gc_timer; |
113 |
static SerialOldTracer* _gc_tracer; |
|
114 |
||
1 | 115 |
// Non public closures |
116 |
static KeepAliveClosure keep_alive; |
|
117 |
||
118 |
public: |
|
50059 | 119 |
static void initialize(); |
120 |
||
1 | 121 |
// Public closures |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
122 |
static IsAliveClosure is_alive; |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
123 |
static FollowRootClosure follow_root_closure; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
124 |
static MarkAndPushClosure mark_and_push_closure; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
125 |
static FollowStackClosure follow_stack_closure; |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
126 |
static CLDToOopClosure follow_cld_closure; |
1 | 127 |
static AdjustPointerClosure adjust_pointer_closure; |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
128 |
static CLDToOopClosure adjust_cld_closure; |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
129 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
130 |
// Accessors |
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17105
diff
changeset
|
131 |
static uint total_invocations() { return _total_invocations; } |
1 | 132 |
|
133 |
// Reference Processing |
|
134 |
static ReferenceProcessor* const ref_processor() { return _ref_processor; } |
|
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
135 |
static void set_ref_processor(ReferenceProcessor* rp); |
1 | 136 |
|
18025 | 137 |
static STWGCTimer* gc_timer() { return _gc_timer; } |
138 |
static SerialOldTracer* gc_tracer() { return _gc_tracer; } |
|
139 |
||
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
53244
diff
changeset
|
140 |
static void preserve_mark(oop p, markWord mark); |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
141 |
// Save the mark word so it can be restored later |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
142 |
static void adjust_marks(); // Adjust the pointers in the preserved marks table |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
143 |
static void restore_marks(); // Restore the marks that we saved in preserve_mark |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
144 |
|
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
145 |
static int adjust_pointers(oop obj); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
146 |
|
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
147 |
static void follow_stack(); // Empty marking stack. |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
148 |
|
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
149 |
static void follow_klass(Klass* klass); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
150 |
|
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
151 |
static void follow_cld(ClassLoaderData* cld); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
152 |
|
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
153 |
template <class T> static inline void adjust_pointer(T* p); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
154 |
|
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
155 |
// Check mark and maybe push on marking stack |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
156 |
template <class T> static void mark_and_push(T* p); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
157 |
|
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
158 |
private: |
1 | 159 |
// Call backs for marking |
160 |
static void mark_object(oop obj); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
161 |
// Mark pointer and follow contents. Empty marking stack afterwards. |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
162 |
template <class T> static inline void follow_root(T* p); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
163 |
|
5076
8b74a4b60b31
4396719: Mark Sweep stack overflow on deeply nested Object arrays
jcoomes
parents:
3919
diff
changeset
|
164 |
static inline void push_objarray(oop obj, size_t index); |
1 | 165 |
|
29792
8c6fa07f0869
8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents:
29701
diff
changeset
|
166 |
static void follow_object(oop obj); |
8c6fa07f0869
8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents:
29701
diff
changeset
|
167 |
|
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
168 |
static void follow_array(objArrayOop array); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
169 |
|
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
170 |
static void follow_array_chunk(objArrayOop array, int index); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
171 |
}; |
29792
8c6fa07f0869
8075957: Reduce calls to the GC specific object visitors in oopDesc
stefank
parents:
29701
diff
changeset
|
172 |
|
50752 | 173 |
class MarkAndPushClosure: public OopIterateClosure { |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
174 |
public: |
50752 | 175 |
template <typename T> void do_oop_work(T* p); |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
176 |
virtual void do_oop(oop* p); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
177 |
virtual void do_oop(narrowOop* p); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
178 |
|
50752 | 179 |
virtual bool do_metadata() { return true; } |
32606
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
180 |
virtual void do_klass(Klass* k); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
181 |
virtual void do_cld(ClassLoaderData* cld); |
fdaa30d06ada
8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents:
31346
diff
changeset
|
182 |
|
49827 | 183 |
void set_ref_discoverer(ReferenceDiscoverer* rd) { |
184 |
set_ref_discoverer_internal(rd); |
|
33226
19cb9b844190
8139341: Hide ExtendedOopClosure::_ref_processor
kbarrett
parents:
32606
diff
changeset
|
185 |
} |
1 | 186 |
}; |
187 |
||
50752 | 188 |
class AdjustPointerClosure: public BasicOopsInGenClosure { |
46415
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
189 |
public: |
50752 | 190 |
template <typename T> void do_oop_work(T* p); |
46415
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
191 |
virtual void do_oop(oop* p); |
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
192 |
virtual void do_oop(narrowOop* p); |
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
193 |
virtual ReferenceIterationMode reference_iteration_mode() { return DO_FIELDS; } |
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
194 |
|
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
195 |
// This closure provides its own oop verification code. |
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
196 |
debug_only(virtual bool should_verify_oops() { return false; }) |
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
197 |
}; |
7d5a286cdf89
8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents:
33226
diff
changeset
|
198 |
|
49392
2956d0ece7a9
8199282: Remove ValueObj class for allocation subclassing for gc code
coleenp
parents:
47897
diff
changeset
|
199 |
class PreservedMark { |
1 | 200 |
private: |
201 |
oop _obj; |
|
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
53244
diff
changeset
|
202 |
markWord _mark; |
1 | 203 |
|
204 |
public: |
|
57777
90ead0febf56
8229258: Rework markOop and markOopDesc into a simpler mark word value carrier
stefank
parents:
53244
diff
changeset
|
205 |
void init(oop obj, markWord mark) { |
1 | 206 |
_obj = obj; |
207 |
_mark = mark; |
|
208 |
} |
|
209 |
||
29701
f638fc81a3d0
8075803: Fix GC includes and forward declarations
stefank
parents:
25492
diff
changeset
|
210 |
void adjust_pointer(); |
f638fc81a3d0
8075803: Fix GC includes and forward declarations
stefank
parents:
25492
diff
changeset
|
211 |
void restore(); |
1 | 212 |
}; |
7397 | 213 |
|
53244
9807daeb47c4
8216167: Update include guards to reflect correct directories
coleenp
parents:
50752
diff
changeset
|
214 |
#endif // SHARE_GC_SERIAL_MARKSWEEP_HPP |