author | jwilhelm |
Mon, 04 May 2015 17:10:50 +0200 | |
changeset 30579 | 5208524ce05c |
parent 30262 | 04d3680cd029 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29200 | 2 |
* Copyright (c) 2001, 2015, 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:
5343
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
5343
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:
5343
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/javaClasses.hpp" |
|
24426
0a69c8cdfca9
8038654: Separate SymbolTable and StringTable code
gziemski
parents:
22883
diff
changeset
|
27 |
#include "classfile/stringTable.hpp" |
7397 | 28 |
#include "classfile/systemDictionary.hpp" |
29 |
#include "classfile/vmSymbols.hpp" |
|
30 |
#include "code/codeCache.hpp" |
|
31 |
#include "code/icBuffer.hpp" |
|
18025 | 32 |
#include "gc_implementation/shared/gcHeapSummary.hpp" |
33 |
#include "gc_implementation/shared/gcTimer.hpp" |
|
34 |
#include "gc_implementation/shared/gcTrace.hpp" |
|
35 |
#include "gc_implementation/shared/gcTraceTime.hpp" |
|
7397 | 36 |
#include "gc_interface/collectedHeap.inline.hpp" |
37 |
#include "memory/genCollectedHeap.hpp" |
|
38 |
#include "memory/genMarkSweep.hpp" |
|
39 |
#include "memory/genOopClosures.inline.hpp" |
|
40 |
#include "memory/modRefBarrierSet.hpp" |
|
41 |
#include "memory/referencePolicy.hpp" |
|
42 |
#include "memory/space.hpp" |
|
43 |
#include "oops/instanceRefKlass.hpp" |
|
44 |
#include "oops/oop.inline.hpp" |
|
45 |
#include "prims/jvmtiExport.hpp" |
|
46 |
#include "runtime/fprofiler.hpp" |
|
47 |
#include "runtime/handles.inline.hpp" |
|
48 |
#include "runtime/synchronizer.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
13878
diff
changeset
|
49 |
#include "runtime/thread.inline.hpp" |
7397 | 50 |
#include "runtime/vmThread.hpp" |
51 |
#include "utilities/copy.hpp" |
|
52 |
#include "utilities/events.hpp" |
|
29702
9ed339a5e096
8075809: Add missing includes of stack.inline.hpp
stefank
parents:
29693
diff
changeset
|
53 |
#include "utilities/stack.inline.hpp" |
1 | 54 |
|
19286
48394008c803
8022800: Use specific generations rather than generation iteration
brutisso
parents:
18025
diff
changeset
|
55 |
void GenMarkSweep::invoke_at_safepoint(int level, ReferenceProcessor* rp, bool clear_all_softrefs) { |
48394008c803
8022800: Use specific generations rather than generation iteration
brutisso
parents:
18025
diff
changeset
|
56 |
guarantee(level == 1, "We always collect both old and young."); |
1 | 57 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint"); |
58 |
||
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
59 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
60 |
#ifdef ASSERT |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
61 |
if (gch->collector_policy()->should_clear_all_soft_refs()) { |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
62 |
assert(clear_all_softrefs, "Policy should have been checked earlier"); |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
63 |
} |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
64 |
#endif |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
65 |
|
1 | 66 |
// hook up weak ref data so it can be used during Mark-Sweep |
67 |
assert(ref_processor() == NULL, "no stomping"); |
|
1606
dcf9714addbe
6684579: SoftReference processing can be made more efficient
ysr
parents:
1388
diff
changeset
|
68 |
assert(rp != NULL, "should be non-NULL"); |
1 | 69 |
_ref_processor = rp; |
1610
5dddd195cc86
6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents:
1606
diff
changeset
|
70 |
rp->setup_policy(clear_all_softrefs); |
1 | 71 |
|
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24426
diff
changeset
|
72 |
GCTraceTime t1(GCCauseString("Full GC", gch->gc_cause()), PrintGC && !PrintGCDetails, true, NULL, _gc_tracer->gc_id()); |
18025 | 73 |
|
74 |
gch->trace_heap_before_gc(_gc_tracer); |
|
1 | 75 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
76 |
// When collecting the permanent generation Method*s may be moving, |
1 | 77 |
// so we either have to flush all bcp data or convert it into bci. |
78 |
CodeCache::gc_prologue(); |
|
79 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
80 |
// Increment the invocation count |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
81 |
_total_invocations++; |
1 | 82 |
|
83 |
// Capture heap size before collection for printing. |
|
84 |
size_t gch_prev_used = gch->used(); |
|
85 |
||
86 |
// Capture used regions for each generation that will be |
|
87 |
// subject to collection, so that card table adjustments can |
|
88 |
// be made intelligently (see clear / invalidate further below). |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
89 |
gch->save_used_regions(level); |
1 | 90 |
|
91 |
allocate_stacks(); |
|
92 |
||
93 |
mark_sweep_phase1(level, clear_all_softrefs); |
|
94 |
||
95 |
mark_sweep_phase2(); |
|
96 |
||
97 |
// Don't add any more derived pointers during phase3 |
|
98 |
COMPILER2_PRESENT(assert(DerivedPointerTable::is_active(), "Sanity")); |
|
99 |
COMPILER2_PRESENT(DerivedPointerTable::set_active(false)); |
|
100 |
||
101 |
mark_sweep_phase3(level); |
|
102 |
||
103 |
mark_sweep_phase4(); |
|
104 |
||
105 |
restore_marks(); |
|
106 |
||
107 |
// Set saved marks for allocation profiler (and other things? -- dld) |
|
108 |
// (Should this be in general part?) |
|
109 |
gch->save_marks(); |
|
110 |
||
111 |
deallocate_stacks(); |
|
112 |
||
29684
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
113 |
// If compaction completely evacuated the young generation then we |
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
114 |
// can clear the card table. Otherwise, we must invalidate |
1 | 115 |
// it (consider all cards dirty). In the future, we might consider doing |
116 |
// compaction within generations only, and doing card-table sliding. |
|
117 |
GenRemSet* rs = gch->rem_set(); |
|
29684
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
118 |
Generation* old_gen = gch->old_gen(); |
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
119 |
|
1 | 120 |
// Clear/invalidate below make use of the "prev_used_regions" saved earlier. |
29684
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
121 |
if (gch->young_gen()->used() == 0) { |
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
122 |
// We've evacuated the young generation. |
19289
213031f03f61
8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents:
19286
diff
changeset
|
123 |
rs->clear_into_younger(old_gen); |
1 | 124 |
} else { |
125 |
// Invalidate the cards corresponding to the currently used |
|
19289
213031f03f61
8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents:
19286
diff
changeset
|
126 |
// region and clear those corresponding to the evacuated region. |
213031f03f61
8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents:
19286
diff
changeset
|
127 |
rs->invalidate_or_clear(old_gen); |
1 | 128 |
} |
129 |
||
130 |
CodeCache::gc_epilogue(); |
|
7918
ce1e4ae77aea
7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents:
7397
diff
changeset
|
131 |
JvmtiExport::gc_epilogue(); |
1 | 132 |
|
133 |
if (PrintGC && !PrintGCDetails) { |
|
134 |
gch->print_heap_change(gch_prev_used); |
|
135 |
} |
|
136 |
||
137 |
// refs processing: clean slate |
|
138 |
_ref_processor = NULL; |
|
139 |
||
140 |
// Update heap occupancy information which is used as |
|
141 |
// input to soft ref clearing policy at the next gc. |
|
142 |
Universe::update_heap_info_at_gc(); |
|
143 |
||
144 |
// Update time of last gc for all generations we collected |
|
22551 | 145 |
// (which currently is all the generations in the heap). |
146 |
// We need to use a monotonically non-decreasing time in ms |
|
11755 | 147 |
// or we will see time-warp warnings and os::javaTimeMillis() |
148 |
// does not guarantee monotonicity. |
|
149 |
jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC; |
|
150 |
gch->update_time_of_last_gc(now); |
|
18025 | 151 |
|
152 |
gch->trace_heap_after_gc(_gc_tracer); |
|
1 | 153 |
} |
154 |
||
155 |
void GenMarkSweep::allocate_stacks() { |
|
156 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
|
29684
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
157 |
// Scratch request on behalf of old generation; will do no allocation. |
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
158 |
ScratchBlock* scratch = gch->gather_scratch(gch->old_gen(), 0); |
1 | 159 |
|
160 |
// $$$ To cut a corner, we'll only use the first scratch block, and then |
|
161 |
// revert to malloc. |
|
162 |
if (scratch != NULL) { |
|
163 |
_preserved_count_max = |
|
164 |
scratch->num_words * HeapWordSize / sizeof(PreservedMark); |
|
165 |
} else { |
|
166 |
_preserved_count_max = 0; |
|
167 |
} |
|
168 |
||
169 |
_preserved_marks = (PreservedMark*)scratch; |
|
170 |
_preserved_count = 0; |
|
171 |
} |
|
172 |
||
173 |
||
174 |
void GenMarkSweep::deallocate_stacks() { |
|
1388 | 175 |
if (!UseG1GC) { |
176 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
|
177 |
gch->release_scratch(); |
|
178 |
} |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
179 |
|
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
180 |
_preserved_mark_stack.clear(true); |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
181 |
_preserved_oop_stack.clear(true); |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
182 |
_marking_stack.clear(); |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
183 |
_objarray_stack.clear(true); |
1 | 184 |
} |
185 |
||
186 |
void GenMarkSweep::mark_sweep_phase1(int level, |
|
29684
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
187 |
bool clear_all_softrefs) { |
1 | 188 |
// Recursively traverse all live objects and mark them |
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24426
diff
changeset
|
189 |
GCTraceTime tm("phase 1", PrintGC && Verbose, true, _gc_timer, _gc_tracer->gc_id()); |
1 | 190 |
|
191 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
|
192 |
||
193 |
// Because follow_root_closure is created statically, cannot |
|
194 |
// use OopsInGenClosure constructor which takes a generation, |
|
195 |
// as the Universe has not been created when the static constructors |
|
196 |
// are run. |
|
29684
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
197 |
assert(level == 1, "We don't use mark-sweep on young generations"); |
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
198 |
follow_root_closure.set_orig_generation(gch->old_gen()); |
1 | 199 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
200 |
// Need new claim bits before marking starts. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
201 |
ClassLoaderDataGraph::clear_claimed_marks(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
202 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
203 |
gch->gen_process_roots(level, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
204 |
false, // Younger gens are not roots. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
205 |
true, // activate StrongRootsScope |
29693
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
206 |
GenCollectedHeap::SO_None, |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
207 |
GenCollectedHeap::StrongRootsOnly, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
208 |
&follow_root_closure, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
209 |
&follow_root_closure, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
210 |
&follow_cld_closure); |
1 | 211 |
|
212 |
// Process reference objects found during marking |
|
213 |
{ |
|
1610
5dddd195cc86
6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents:
1606
diff
changeset
|
214 |
ref_processor()->setup_policy(clear_all_softrefs); |
18025 | 215 |
const ReferenceProcessorStats& stats = |
216 |
ref_processor()->process_discovered_references( |
|
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24426
diff
changeset
|
217 |
&is_alive, &keep_alive, &follow_stack_closure, NULL, _gc_timer, _gc_tracer->gc_id()); |
18025 | 218 |
gc_tracer()->report_gc_reference_stats(stats); |
1 | 219 |
} |
220 |
||
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17105
diff
changeset
|
221 |
// This is the point where the entire marking should have completed. |
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17105
diff
changeset
|
222 |
assert(_marking_stack.is_empty(), "Marking should have completed"); |
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17105
diff
changeset
|
223 |
|
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17105
diff
changeset
|
224 |
// Unload classes and purge the SystemDictionary. |
1 | 225 |
bool purged_class = SystemDictionary::do_unloading(&is_alive); |
226 |
||
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17105
diff
changeset
|
227 |
// Unload nmethods. |
13878
6e6a462a6cff
7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents:
13728
diff
changeset
|
228 |
CodeCache::do_unloading(&is_alive, purged_class); |
1 | 229 |
|
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17105
diff
changeset
|
230 |
// Prune dead klasses from subklass/sibling/implementor lists. |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
231 |
Klass::clean_weak_klass_links(&is_alive); |
3696 | 232 |
|
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17105
diff
changeset
|
233 |
// Delete entries for dead interned strings. |
1 | 234 |
StringTable::unlink(&is_alive); |
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17105
diff
changeset
|
235 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
236 |
// Clean up unreferenced symbols in symbol table. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
237 |
SymbolTable::unlink(); |
18025 | 238 |
|
239 |
gc_tracer()->report_object_count_after_gc(&is_alive); |
|
1 | 240 |
} |
241 |
||
242 |
||
243 |
void GenMarkSweep::mark_sweep_phase2() { |
|
244 |
// Now all live objects are marked, compute the new object addresses. |
|
245 |
||
246 |
// It is imperative that we traverse perm_gen LAST. If dead space is |
|
247 |
// allowed a range of dead object may get overwritten by a dead int |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
248 |
// array. If perm_gen is not traversed last a Klass* may get |
1 | 249 |
// overwritten. This is fine since it is dead, but if the class has dead |
250 |
// instances we have to skip them, and in order to find their size we |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
251 |
// need the Klass*! |
1 | 252 |
// |
253 |
// It is not required that we traverse spaces in the same order in |
|
254 |
// phase2, phase3 and phase4, but the ValidateMarkSweep live oops |
|
255 |
// tracking expects us to do so. See comment under phase4. |
|
256 |
||
257 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
|
258 |
||
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24426
diff
changeset
|
259 |
GCTraceTime tm("phase 2", PrintGC && Verbose, true, _gc_timer, _gc_tracer->gc_id()); |
1 | 260 |
|
261 |
gch->prepare_for_compaction(); |
|
262 |
} |
|
263 |
||
264 |
class GenAdjustPointersClosure: public GenCollectedHeap::GenClosure { |
|
265 |
public: |
|
266 |
void do_generation(Generation* gen) { |
|
267 |
gen->adjust_pointers(); |
|
268 |
} |
|
269 |
}; |
|
270 |
||
271 |
void GenMarkSweep::mark_sweep_phase3(int level) { |
|
272 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
|
273 |
||
274 |
// Adjust the pointers to reflect the new locations |
|
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24426
diff
changeset
|
275 |
GCTraceTime tm("phase 3", PrintGC && Verbose, true, _gc_timer, _gc_tracer->gc_id()); |
1 | 276 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
277 |
// Need new claim bits for the pointer adjustment tracing. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
278 |
ClassLoaderDataGraph::clear_claimed_marks(); |
1 | 279 |
|
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
15088
diff
changeset
|
280 |
// Because the closure below is created statically, we cannot |
1 | 281 |
// use OopsInGenClosure constructor which takes a generation, |
282 |
// as the Universe has not been created when the static constructors |
|
283 |
// are run. |
|
29684
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
284 |
assert(level == 1, "We don't use mark-sweep on young generations."); |
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
285 |
adjust_pointer_closure.set_orig_generation(gch->old_gen()); |
1 | 286 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
287 |
gch->gen_process_roots(level, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
288 |
false, // Younger gens are not roots. |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
289 |
true, // activate StrongRootsScope |
29693
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
290 |
GenCollectedHeap::SO_AllCodeCache, |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
291 |
GenCollectedHeap::StrongAndWeakRoots, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
292 |
&adjust_pointer_closure, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
293 |
&adjust_pointer_closure, |
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
294 |
&adjust_cld_closure); |
1 | 295 |
|
22882
195c8f70d605
8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents:
22551
diff
changeset
|
296 |
gch->gen_process_weak_roots(&adjust_pointer_closure); |
1 | 297 |
|
298 |
adjust_marks(); |
|
299 |
GenAdjustPointersClosure blk; |
|
300 |
gch->generation_iterate(&blk, true); |
|
301 |
} |
|
302 |
||
303 |
class GenCompactClosure: public GenCollectedHeap::GenClosure { |
|
304 |
public: |
|
305 |
void do_generation(Generation* gen) { |
|
306 |
gen->compact(); |
|
307 |
} |
|
308 |
}; |
|
309 |
||
310 |
void GenMarkSweep::mark_sweep_phase4() { |
|
311 |
// All pointers are now adjusted, move objects accordingly |
|
312 |
||
313 |
// It is imperative that we traverse perm_gen first in phase4. All |
|
314 |
// classes must be allocated earlier than their instances, and traversing |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
315 |
// perm_gen first makes sure that all Klass*s have moved to their new |
1 | 316 |
// location before any instance does a dispatch through it's klass! |
317 |
||
318 |
// The ValidateMarkSweep live oops tracking expects us to traverse spaces |
|
319 |
// in the same order in phase2, phase3 and phase4. We don't quite do that |
|
320 |
// here (perm_gen first rather than last), so we tell the validate code |
|
321 |
// to use a higher index (saved from phase2) when verifying perm_gen. |
|
322 |
GenCollectedHeap* gch = GenCollectedHeap::heap(); |
|
323 |
||
25350
6423a57e5451
8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents:
24426
diff
changeset
|
324 |
GCTraceTime tm("phase 4", PrintGC && Verbose, true, _gc_timer, _gc_tracer->gc_id()); |
1 | 325 |
|
326 |
GenCompactClosure blk; |
|
327 |
gch->generation_iterate(&blk, true); |
|
328 |
} |