author | jwilhelm |
Thu, 03 Oct 2013 21:36:29 +0200 | |
changeset 20398 | b206c580c45f |
parent 20317 | 0f5f511b642c |
child 21767 | 41eaa9a17059 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
17393
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
2 |
* Copyright (c) 2001, 2013, 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/symbolTable.hpp" |
|
27 |
#include "classfile/systemDictionary.hpp" |
|
28 |
#include "code/codeCache.hpp" |
|
29 |
#include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp" |
|
30 |
#include "gc_implementation/parallelScavenge/psAdaptiveSizePolicy.hpp" |
|
31 |
#include "gc_implementation/parallelScavenge/psMarkSweep.hpp" |
|
32 |
#include "gc_implementation/parallelScavenge/psMarkSweepDecorator.hpp" |
|
33 |
#include "gc_implementation/parallelScavenge/psOldGen.hpp" |
|
34 |
#include "gc_implementation/parallelScavenge/psScavenge.hpp" |
|
35 |
#include "gc_implementation/parallelScavenge/psYoungGen.hpp" |
|
18025 | 36 |
#include "gc_implementation/shared/gcHeapSummary.hpp" |
37 |
#include "gc_implementation/shared/gcTimer.hpp" |
|
38 |
#include "gc_implementation/shared/gcTrace.hpp" |
|
39 |
#include "gc_implementation/shared/gcTraceTime.hpp" |
|
7397 | 40 |
#include "gc_implementation/shared/isGCActiveMark.hpp" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
41 |
#include "gc_implementation/shared/markSweep.hpp" |
7397 | 42 |
#include "gc_implementation/shared/spaceDecorator.hpp" |
43 |
#include "gc_interface/gcCause.hpp" |
|
44 |
#include "memory/gcLocker.inline.hpp" |
|
45 |
#include "memory/referencePolicy.hpp" |
|
46 |
#include "memory/referenceProcessor.hpp" |
|
47 |
#include "oops/oop.inline.hpp" |
|
48 |
#include "runtime/biasedLocking.hpp" |
|
49 |
#include "runtime/fprofiler.hpp" |
|
50 |
#include "runtime/safepoint.hpp" |
|
51 |
#include "runtime/vmThread.hpp" |
|
52 |
#include "services/management.hpp" |
|
53 |
#include "services/memoryService.hpp" |
|
54 |
#include "utilities/events.hpp" |
|
55 |
#include "utilities/stack.inline.hpp" |
|
1 | 56 |
|
57 |
elapsedTimer PSMarkSweep::_accumulated_time; |
|
58 |
jlong PSMarkSweep::_time_of_last_gc = 0; |
|
59 |
CollectorCounters* PSMarkSweep::_counters = NULL; |
|
60 |
||
61 |
void PSMarkSweep::initialize() { |
|
62 |
MemRegion mr = Universe::heap()->reserved_region(); |
|
8688
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
8076
diff
changeset
|
63 |
_ref_processor = new ReferenceProcessor(mr); // a vanilla ref proc |
1406
e5e2b519fc11
6716466: par compact - remove VerifyParallelOldWithMarkSweep code
jcoomes
parents:
971
diff
changeset
|
64 |
_counters = new CollectorCounters("PSMarkSweep", 1); |
1 | 65 |
} |
66 |
||
67 |
// This method contains all heap specific policy for invoking mark sweep. |
|
68 |
// PSMarkSweep::invoke_no_policy() will only attempt to mark-sweep-compact |
|
69 |
// the heap. It will do nothing further. If we need to bail out for policy |
|
70 |
// reasons, scavenge before full gc, or any other specialized behavior, it |
|
71 |
// needs to be added here. |
|
72 |
// |
|
73 |
// Note that this method should only be called from the vm_thread while |
|
74 |
// at a safepoint! |
|
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
75 |
// |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
76 |
// Note that the all_soft_refs_clear flag in the collector policy |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
77 |
// may be true because this method can be called without intervening |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
78 |
// activity. For example when the heap space is tight and full measure |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
79 |
// are being taken to free space. |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
80 |
|
1 | 81 |
void PSMarkSweep::invoke(bool maximum_heap_compaction) { |
82 |
assert(SafepointSynchronize::is_at_safepoint(), "should be at safepoint"); |
|
83 |
assert(Thread::current() == (Thread*)VMThread::vm_thread(), "should be in vm thread"); |
|
84 |
assert(!Universe::heap()->is_gc_active(), "not reentrant"); |
|
85 |
||
86 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
87 |
GCCause::Cause gc_cause = heap->gc_cause(); |
|
88 |
PSAdaptiveSizePolicy* policy = heap->size_policy(); |
|
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
89 |
IsGCActiveMark mark; |
1 | 90 |
|
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
91 |
if (ScavengeBeforeFullGC) { |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
92 |
PSScavenge::invoke_no_policy(); |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
93 |
} |
1 | 94 |
|
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
95 |
const bool clear_all_soft_refs = |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
96 |
heap->collector_policy()->should_clear_all_soft_refs(); |
1 | 97 |
|
17392
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17114
diff
changeset
|
98 |
uint count = maximum_heap_compaction ? 1 : MarkSweepAlwaysCompactCount; |
2f967c0e4246
6843347: Boundary values in some public GC options cause crashes
tschatzl
parents:
17114
diff
changeset
|
99 |
UIntFlagSetting flag_setting(MarkSweepAlwaysCompactCount, count); |
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
100 |
PSMarkSweep::invoke_no_policy(clear_all_soft_refs || maximum_heap_compaction); |
1 | 101 |
} |
102 |
||
103 |
// This method contains no policy. You should probably |
|
104 |
// be calling invoke() instead. |
|
11757
cdf6204b114a
7146343: PS invoke methods should indicate the type of gc done
jcoomes
parents:
11636
diff
changeset
|
105 |
bool PSMarkSweep::invoke_no_policy(bool clear_all_softrefs) { |
1 | 106 |
assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint"); |
107 |
assert(ref_processor() != NULL, "Sanity"); |
|
108 |
||
109 |
if (GC_locker::check_active_before_gc()) { |
|
11757
cdf6204b114a
7146343: PS invoke methods should indicate the type of gc done
jcoomes
parents:
11636
diff
changeset
|
110 |
return false; |
1 | 111 |
} |
112 |
||
113 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
18025 | 114 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
1 | 115 |
GCCause::Cause gc_cause = heap->gc_cause(); |
18025 | 116 |
|
117 |
_gc_timer->register_gc_start(os::elapsed_counter()); |
|
118 |
_gc_tracer->report_gc_start(gc_cause, _gc_timer->gc_start()); |
|
119 |
||
1 | 120 |
PSAdaptiveSizePolicy* size_policy = heap->size_policy(); |
121 |
||
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
122 |
// The scope of casr should end after code that can change |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
123 |
// CollectorPolicy::_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
|
124 |
ClearedAllSoftRefs casr(clear_all_softrefs, heap->collector_policy()); |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
5076
diff
changeset
|
125 |
|
1 | 126 |
PSYoungGen* young_gen = heap->young_gen(); |
127 |
PSOldGen* old_gen = heap->old_gen(); |
|
128 |
||
129 |
// Increment the invocation count |
|
130 |
heap->increment_total_collections(true /* full */); |
|
131 |
||
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
132 |
// Save information needed to minimize mangling |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
133 |
heap->record_gen_tops_before_GC(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
134 |
|
1 | 135 |
// We need to track unique mark sweep invocations as well. |
136 |
_total_invocations++; |
|
137 |
||
138 |
AdaptiveSizePolicyOutput(size_policy, heap->total_collections()); |
|
139 |
||
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11251
diff
changeset
|
140 |
heap->print_heap_before_gc(); |
18025 | 141 |
heap->trace_heap_before_gc(_gc_tracer); |
1 | 142 |
|
143 |
// Fill in TLABs |
|
144 |
heap->accumulate_statistics_all_tlabs(); |
|
145 |
heap->ensure_parsability(true); // retire TLABs |
|
146 |
||
147 |
if (VerifyBeforeGC && heap->total_collections() >= VerifyGCStartAt) { |
|
148 |
HandleMark hm; // Discard invalid handles created during verification |
|
17112
e49af4ba7755
8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents:
17109
diff
changeset
|
149 |
Universe::verify(" VerifyBeforeGC:"); |
1 | 150 |
} |
151 |
||
152 |
// Verify object start arrays |
|
153 |
if (VerifyObjectStartArray && |
|
154 |
VerifyBeforeGC) { |
|
155 |
old_gen->verify_object_start_array(); |
|
156 |
} |
|
157 |
||
18025 | 158 |
heap->pre_full_gc_dump(_gc_timer); |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2010
diff
changeset
|
159 |
|
1 | 160 |
// Filled in below to track the state of the young gen after the collection. |
161 |
bool eden_empty; |
|
162 |
bool survivors_empty; |
|
163 |
bool young_gen_empty; |
|
164 |
||
165 |
{ |
|
166 |
HandleMark hm; |
|
12630
ddf6ee008138
7166894: Add gc cause to GC logging for all collectors
brutisso
parents:
11757
diff
changeset
|
167 |
|
1 | 168 |
gclog_or_tty->date_stamp(PrintGC && PrintGCDateStamps); |
169 |
TraceCPUTime tcpu(PrintGCDetails, true, gclog_or_tty); |
|
18025 | 170 |
GCTraceTime t1(GCCauseString("Full GC", gc_cause), PrintGC, !PrintGCDetails, NULL); |
1 | 171 |
TraceCollectorStats tcs(counters()); |
9623
151c0b638488
7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents:
8688
diff
changeset
|
172 |
TraceMemoryManagerStats tms(true /* Full GC */,gc_cause); |
1 | 173 |
|
174 |
if (TraceGen1Time) accumulated_time()->start(); |
|
175 |
||
176 |
// Let the size policy know we're starting |
|
177 |
size_policy->major_collection_begin(); |
|
178 |
||
179 |
CodeCache::gc_prologue(); |
|
180 |
Threads::gc_prologue(); |
|
181 |
BiasedLocking::preserve_marks(); |
|
182 |
||
183 |
// Capture heap size before collection for printing. |
|
184 |
size_t prev_used = heap->used(); |
|
185 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
186 |
// Capture metadata size before collection for sizing. |
17109
90e6c31bbbe4
8008966: NPG: Inefficient Metaspace counter functions cause large young GC regressions
jmasa
parents:
17105
diff
changeset
|
187 |
size_t metadata_prev_used = MetaspaceAux::allocated_used_bytes(); |
1 | 188 |
|
189 |
// For PrintGCDetails |
|
190 |
size_t old_gen_prev_used = old_gen->used_in_bytes(); |
|
191 |
size_t young_gen_prev_used = young_gen->used_in_bytes(); |
|
192 |
||
193 |
allocate_stacks(); |
|
194 |
||
195 |
COMPILER2_PRESENT(DerivedPointerTable::clear()); |
|
196 |
||
10670
4ea0e7d2ffbc
6484982: G1: process references during evacuation pauses
johnc
parents:
10524
diff
changeset
|
197 |
ref_processor()->enable_discovery(true /*verify_disabled*/, true /*verify_no_refs*/); |
1610
5dddd195cc86
6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents:
1606
diff
changeset
|
198 |
ref_processor()->setup_policy(clear_all_softrefs); |
1 | 199 |
|
200 |
mark_sweep_phase1(clear_all_softrefs); |
|
201 |
||
202 |
mark_sweep_phase2(); |
|
203 |
||
204 |
// Don't add any more derived pointers during phase3 |
|
205 |
COMPILER2_PRESENT(assert(DerivedPointerTable::is_active(), "Sanity")); |
|
206 |
COMPILER2_PRESENT(DerivedPointerTable::set_active(false)); |
|
207 |
||
208 |
mark_sweep_phase3(); |
|
209 |
||
210 |
mark_sweep_phase4(); |
|
211 |
||
212 |
restore_marks(); |
|
213 |
||
214 |
deallocate_stacks(); |
|
215 |
||
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
216 |
if (ZapUnusedHeapArea) { |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
217 |
// Do a complete mangle (top to end) because the usage for |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
218 |
// scratch does not maintain a top pointer. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
219 |
young_gen->to_space()->mangle_unused_area_complete(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
220 |
} |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
221 |
|
1 | 222 |
eden_empty = young_gen->eden_space()->is_empty(); |
223 |
if (!eden_empty) { |
|
224 |
eden_empty = absorb_live_data_from_eden(size_policy, young_gen, old_gen); |
|
225 |
} |
|
226 |
||
227 |
// Update heap occupancy information which is used as |
|
228 |
// input to soft ref clearing policy at the next gc. |
|
229 |
Universe::update_heap_info_at_gc(); |
|
230 |
||
231 |
survivors_empty = young_gen->from_space()->is_empty() && |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
232 |
young_gen->to_space()->is_empty(); |
1 | 233 |
young_gen_empty = eden_empty && survivors_empty; |
234 |
||
235 |
BarrierSet* bs = heap->barrier_set(); |
|
236 |
if (bs->is_a(BarrierSet::ModRef)) { |
|
237 |
ModRefBarrierSet* modBS = (ModRefBarrierSet*)bs; |
|
238 |
MemRegion old_mr = heap->old_gen()->reserved(); |
|
239 |
if (young_gen_empty) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
240 |
modBS->clear(MemRegion(old_mr.start(), old_mr.end())); |
1 | 241 |
} else { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
242 |
modBS->invalidate(MemRegion(old_mr.start(), old_mr.end())); |
1 | 243 |
} |
244 |
} |
|
245 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
246 |
// Delete metaspaces for unloaded class loaders and clean up loader_data graph |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
247 |
ClassLoaderDataGraph::purge(); |
17109
90e6c31bbbe4
8008966: NPG: Inefficient Metaspace counter functions cause large young GC regressions
jmasa
parents:
17105
diff
changeset
|
248 |
MetaspaceAux::verify_metrics(); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
249 |
|
1 | 250 |
BiasedLocking::restore_marks(); |
251 |
Threads::gc_epilogue(); |
|
252 |
CodeCache::gc_epilogue(); |
|
7918
ce1e4ae77aea
7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents:
7397
diff
changeset
|
253 |
JvmtiExport::gc_epilogue(); |
1 | 254 |
|
255 |
COMPILER2_PRESENT(DerivedPointerTable::update_pointers()); |
|
256 |
||
257 |
ref_processor()->enqueue_discovered_references(NULL); |
|
258 |
||
259 |
// Update time of last GC |
|
260 |
reset_millis_since_last_gc(); |
|
261 |
||
262 |
// Let the size policy know we're done |
|
263 |
size_policy->major_collection_end(old_gen->used_in_bytes(), gc_cause); |
|
264 |
||
265 |
if (UseAdaptiveSizePolicy) { |
|
266 |
||
267 |
if (PrintAdaptiveSizePolicy) { |
|
268 |
gclog_or_tty->print("AdaptiveSizeStart: "); |
|
269 |
gclog_or_tty->stamp(); |
|
270 |
gclog_or_tty->print_cr(" collection: %d ", |
|
271 |
heap->total_collections()); |
|
272 |
if (Verbose) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
273 |
gclog_or_tty->print("old_gen_capacity: %d young_gen_capacity: %d", |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
274 |
old_gen->capacity_in_bytes(), young_gen->capacity_in_bytes()); |
1 | 275 |
} |
276 |
} |
|
277 |
||
278 |
// Don't check if the size_policy is ready here. Let |
|
279 |
// the size_policy check that internally. |
|
280 |
if (UseAdaptiveGenerationSizePolicyAtMajorCollection && |
|
281 |
((gc_cause != GCCause::_java_lang_system_gc) || |
|
282 |
UseAdaptiveSizePolicyWithSystemGC)) { |
|
283 |
// Calculate optimal free space amounts |
|
284 |
assert(young_gen->max_size() > |
|
285 |
young_gen->from_space()->capacity_in_bytes() + |
|
286 |
young_gen->to_space()->capacity_in_bytes(), |
|
287 |
"Sizes of space in young gen are out-of-bounds"); |
|
17393
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
288 |
|
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
289 |
size_t young_live = young_gen->used_in_bytes(); |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
290 |
size_t eden_live = young_gen->eden_space()->used_in_bytes(); |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
291 |
size_t old_live = old_gen->used_in_bytes(); |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
292 |
size_t cur_eden = young_gen->eden_space()->capacity_in_bytes(); |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
293 |
size_t max_old_gen_size = old_gen->max_gen_size(); |
1 | 294 |
size_t max_eden_size = young_gen->max_size() - |
295 |
young_gen->from_space()->capacity_in_bytes() - |
|
296 |
young_gen->to_space()->capacity_in_bytes(); |
|
17393
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
297 |
|
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
298 |
// Used for diagnostics |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
299 |
size_policy->clear_generation_free_space_flags(); |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
300 |
|
17842
0d11fa49f81f
8007762: Rename a bunch of methods in size policy across collectors
tamao
parents:
17625
diff
changeset
|
301 |
size_policy->compute_generations_free_space(young_live, |
0d11fa49f81f
8007762: Rename a bunch of methods in size policy across collectors
tamao
parents:
17625
diff
changeset
|
302 |
eden_live, |
0d11fa49f81f
8007762: Rename a bunch of methods in size policy across collectors
tamao
parents:
17625
diff
changeset
|
303 |
old_live, |
0d11fa49f81f
8007762: Rename a bunch of methods in size policy across collectors
tamao
parents:
17625
diff
changeset
|
304 |
cur_eden, |
0d11fa49f81f
8007762: Rename a bunch of methods in size policy across collectors
tamao
parents:
17625
diff
changeset
|
305 |
max_old_gen_size, |
0d11fa49f81f
8007762: Rename a bunch of methods in size policy across collectors
tamao
parents:
17625
diff
changeset
|
306 |
max_eden_size, |
0d11fa49f81f
8007762: Rename a bunch of methods in size policy across collectors
tamao
parents:
17625
diff
changeset
|
307 |
true /* full gc*/); |
17393
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
308 |
|
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
309 |
size_policy->check_gc_overhead_limit(young_live, |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
310 |
eden_live, |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
311 |
max_old_gen_size, |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
312 |
max_eden_size, |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
313 |
true /* full gc*/, |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
314 |
gc_cause, |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
315 |
heap->collector_policy()); |
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
316 |
|
7e99f263902c
8007763: Refactoring: split up compute_generation_free_space() into two functions for class PSAdaptiveSizePolicy
tamao
parents:
17392
diff
changeset
|
317 |
size_policy->decay_supplemental_growth(true /* full gc*/); |
1 | 318 |
|
319 |
heap->resize_old_gen(size_policy->calculated_old_free_size_in_bytes()); |
|
320 |
||
321 |
// Don't resize the young generation at an major collection. A |
|
322 |
// desired young generation size may have been calculated but |
|
323 |
// resizing the young generation complicates the code because the |
|
324 |
// resizing of the old generation may have moved the boundary |
|
325 |
// between the young generation and the old generation. Let the |
|
326 |
// young generation resizing happen at the minor collections. |
|
327 |
} |
|
328 |
if (PrintAdaptiveSizePolicy) { |
|
329 |
gclog_or_tty->print_cr("AdaptiveSizeStop: collection: %d ", |
|
330 |
heap->total_collections()); |
|
331 |
} |
|
332 |
} |
|
333 |
||
334 |
if (UsePerfData) { |
|
335 |
heap->gc_policy_counters()->update_counters(); |
|
336 |
heap->gc_policy_counters()->update_old_capacity( |
|
337 |
old_gen->capacity_in_bytes()); |
|
338 |
heap->gc_policy_counters()->update_young_capacity( |
|
339 |
young_gen->capacity_in_bytes()); |
|
340 |
} |
|
341 |
||
342 |
heap->resize_all_tlabs(); |
|
343 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
344 |
// We collected the heap, recalculate the metaspace capacity |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
345 |
MetaspaceGC::compute_new_size(); |
1 | 346 |
|
347 |
if (TraceGen1Time) accumulated_time()->stop(); |
|
348 |
||
349 |
if (PrintGC) { |
|
350 |
if (PrintGCDetails) { |
|
351 |
// Don't print a GC timestamp here. This is after the GC so |
|
352 |
// would be confusing. |
|
353 |
young_gen->print_used_change(young_gen_prev_used); |
|
354 |
old_gen->print_used_change(old_gen_prev_used); |
|
355 |
} |
|
356 |
heap->print_heap_change(prev_used); |
|
357 |
if (PrintGCDetails) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
358 |
MetaspaceAux::print_metaspace_change(metadata_prev_used); |
1 | 359 |
} |
360 |
} |
|
361 |
||
362 |
// Track memory usage and detect low memory |
|
363 |
MemoryService::track_memory_usage(); |
|
364 |
heap->update_counters(); |
|
365 |
} |
|
366 |
||
367 |
if (VerifyAfterGC && heap->total_collections() >= VerifyGCStartAt) { |
|
368 |
HandleMark hm; // Discard invalid handles created during verification |
|
17112
e49af4ba7755
8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents:
17109
diff
changeset
|
369 |
Universe::verify(" VerifyAfterGC:"); |
1 | 370 |
} |
371 |
||
372 |
// Re-verify object start arrays |
|
373 |
if (VerifyObjectStartArray && |
|
374 |
VerifyAfterGC) { |
|
375 |
old_gen->verify_object_start_array(); |
|
376 |
} |
|
377 |
||
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
378 |
if (ZapUnusedHeapArea) { |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
379 |
old_gen->object_space()->check_mangled_unused_area_complete(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
380 |
} |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
1
diff
changeset
|
381 |
|
1 | 382 |
NOT_PRODUCT(ref_processor()->verify_no_references_recorded()); |
383 |
||
11636
3c07b54482a5
7141200: log some interesting information in ring buffers for crashes
never
parents:
11251
diff
changeset
|
384 |
heap->print_heap_after_gc(); |
18025 | 385 |
heap->trace_heap_after_gc(_gc_tracer); |
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
1668
diff
changeset
|
386 |
|
18025 | 387 |
heap->post_full_gc_dump(_gc_timer); |
2141
e9a644aaff87
6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents:
2010
diff
changeset
|
388 |
|
2010
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
1668
diff
changeset
|
389 |
#ifdef TRACESPINNING |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
1668
diff
changeset
|
390 |
ParallelTaskTerminator::print_termination_counts(); |
c13462bbad17
6690928: Use spinning in combination with yields for workstealing termination.
jmasa
parents:
1668
diff
changeset
|
391 |
#endif |
11757
cdf6204b114a
7146343: PS invoke methods should indicate the type of gc done
jcoomes
parents:
11636
diff
changeset
|
392 |
|
18025 | 393 |
_gc_timer->register_gc_end(os::elapsed_counter()); |
394 |
||
395 |
_gc_tracer->report_gc_end(_gc_timer->gc_end(), _gc_timer->time_partitions()); |
|
396 |
||
11757
cdf6204b114a
7146343: PS invoke methods should indicate the type of gc done
jcoomes
parents:
11636
diff
changeset
|
397 |
return true; |
1 | 398 |
} |
399 |
||
400 |
bool PSMarkSweep::absorb_live_data_from_eden(PSAdaptiveSizePolicy* size_policy, |
|
401 |
PSYoungGen* young_gen, |
|
402 |
PSOldGen* old_gen) { |
|
403 |
MutableSpace* const eden_space = young_gen->eden_space(); |
|
404 |
assert(!eden_space->is_empty(), "eden must be non-empty"); |
|
405 |
assert(young_gen->virtual_space()->alignment() == |
|
406 |
old_gen->virtual_space()->alignment(), "alignments do not match"); |
|
407 |
||
408 |
if (!(UseAdaptiveSizePolicy && UseAdaptiveGCBoundary)) { |
|
409 |
return false; |
|
410 |
} |
|
411 |
||
412 |
// Both generations must be completely committed. |
|
413 |
if (young_gen->virtual_space()->uncommitted_size() != 0) { |
|
414 |
return false; |
|
415 |
} |
|
416 |
if (old_gen->virtual_space()->uncommitted_size() != 0) { |
|
417 |
return false; |
|
418 |
} |
|
419 |
||
420 |
// Figure out how much to take from eden. Include the average amount promoted |
|
421 |
// in the total; otherwise the next young gen GC will simply bail out to a |
|
422 |
// full GC. |
|
423 |
const size_t alignment = old_gen->virtual_space()->alignment(); |
|
424 |
const size_t eden_used = eden_space->used_in_bytes(); |
|
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
425 |
const size_t promoted = (size_t)size_policy->avg_promoted()->padded_average(); |
1 | 426 |
const size_t absorb_size = align_size_up(eden_used + promoted, alignment); |
427 |
const size_t eden_capacity = eden_space->capacity_in_bytes(); |
|
428 |
||
429 |
if (absorb_size >= eden_capacity) { |
|
430 |
return false; // Must leave some space in eden. |
|
431 |
} |
|
432 |
||
433 |
const size_t new_young_size = young_gen->capacity_in_bytes() - absorb_size; |
|
434 |
if (new_young_size < young_gen->min_gen_size()) { |
|
435 |
return false; // Respect young gen minimum size. |
|
436 |
} |
|
437 |
||
438 |
if (TraceAdaptiveGCBoundary && Verbose) { |
|
439 |
gclog_or_tty->print(" absorbing " SIZE_FORMAT "K: " |
|
440 |
"eden " SIZE_FORMAT "K->" SIZE_FORMAT "K " |
|
441 |
"from " SIZE_FORMAT "K, to " SIZE_FORMAT "K " |
|
442 |
"young_gen " SIZE_FORMAT "K->" SIZE_FORMAT "K ", |
|
443 |
absorb_size / K, |
|
444 |
eden_capacity / K, (eden_capacity - absorb_size) / K, |
|
445 |
young_gen->from_space()->used_in_bytes() / K, |
|
446 |
young_gen->to_space()->used_in_bytes() / K, |
|
447 |
young_gen->capacity_in_bytes() / K, new_young_size / K); |
|
448 |
} |
|
449 |
||
450 |
// Fill the unused part of the old gen. |
|
451 |
MutableSpace* const old_space = old_gen->object_space(); |
|
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
452 |
HeapWord* const unused_start = old_space->top(); |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
453 |
size_t const unused_words = pointer_delta(old_space->end(), unused_start); |
1 | 454 |
|
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
455 |
if (unused_words > 0) { |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
456 |
if (unused_words < CollectedHeap::min_fill_size()) { |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
457 |
return false; // If the old gen cannot be filled, must give up. |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
458 |
} |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
459 |
CollectedHeap::fill_with_objects(unused_start, unused_words); |
1 | 460 |
} |
461 |
||
462 |
// Take the live data from eden and set both top and end in the old gen to |
|
463 |
// eden top. (Need to set end because reset_after_change() mangles the region |
|
464 |
// from end to virtual_space->high() in debug builds). |
|
465 |
HeapWord* const new_top = eden_space->top(); |
|
466 |
old_gen->virtual_space()->expand_into(young_gen->virtual_space(), |
|
467 |
absorb_size); |
|
468 |
young_gen->reset_after_change(); |
|
469 |
old_space->set_top(new_top); |
|
470 |
old_space->set_end(new_top); |
|
471 |
old_gen->reset_after_change(); |
|
472 |
||
473 |
// Update the object start array for the filler object and the data from eden. |
|
474 |
ObjectStartArray* const start_array = old_gen->start_array(); |
|
1668
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
475 |
for (HeapWord* p = unused_start; p < new_top; p += oop(p)->size()) { |
8ec481b8f514
6578152: fill_region_with_object has usability and safety issues
jcoomes
parents:
1610
diff
changeset
|
476 |
start_array->allocate_block(p); |
1 | 477 |
} |
478 |
||
479 |
// Could update the promoted average here, but it is not typically updated at |
|
480 |
// full GCs and the value to use is unclear. Something like |
|
481 |
// |
|
482 |
// cur_promoted_avg + absorb_size / number_of_scavenges_since_last_full_gc. |
|
483 |
||
484 |
size_policy->set_bytes_absorbed_from_eden(absorb_size); |
|
485 |
return true; |
|
486 |
} |
|
487 |
||
488 |
void PSMarkSweep::allocate_stacks() { |
|
489 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
490 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
|
491 |
||
492 |
PSYoungGen* young_gen = heap->young_gen(); |
|
493 |
||
494 |
MutableSpace* to_space = young_gen->to_space(); |
|
495 |
_preserved_marks = (PreservedMark*)to_space->top(); |
|
496 |
_preserved_count = 0; |
|
497 |
||
498 |
// We want to calculate the size in bytes first. |
|
499 |
_preserved_count_max = pointer_delta(to_space->end(), to_space->top(), sizeof(jbyte)); |
|
500 |
// Now divide by the size of a PreservedMark |
|
501 |
_preserved_count_max /= sizeof(PreservedMark); |
|
502 |
} |
|
503 |
||
504 |
||
505 |
void PSMarkSweep::deallocate_stacks() { |
|
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
506 |
_preserved_mark_stack.clear(true); |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
507 |
_preserved_oop_stack.clear(true); |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
508 |
_marking_stack.clear(); |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
509 |
_objarray_stack.clear(true); |
1 | 510 |
} |
511 |
||
512 |
void PSMarkSweep::mark_sweep_phase1(bool clear_all_softrefs) { |
|
513 |
// Recursively traverse all live objects and mark them |
|
18025 | 514 |
GCTraceTime tm("phase 1", PrintGCDetails && Verbose, true, _gc_timer); |
1 | 515 |
trace(" 1"); |
516 |
||
517 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
518 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
|
519 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
520 |
// Need to clear claim bits before the tracing starts. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
521 |
ClassLoaderDataGraph::clear_claimed_marks(); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
522 |
|
1 | 523 |
// General strong roots. |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
524 |
{ |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
525 |
ParallelScavengeHeap::ParStrongRootsScope psrs; |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
526 |
Universe::oops_do(mark_and_push_closure()); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
527 |
JNIHandles::oops_do(mark_and_push_closure()); // Global (strong) JNI handles |
14582
490bb6c0df7c
8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
14076
diff
changeset
|
528 |
CLDToOopClosure mark_and_push_from_cld(mark_and_push_closure()); |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
529 |
CodeBlobToOopClosure each_active_code_blob(mark_and_push_closure(), /*do_marking=*/ true); |
14582
490bb6c0df7c
8003720: NPG: Method in interpreter stack frame can be deallocated
stefank
parents:
14076
diff
changeset
|
530 |
Threads::oops_do(mark_and_push_closure(), &mark_and_push_from_cld, &each_active_code_blob); |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
531 |
ObjectSynchronizer::oops_do(mark_and_push_closure()); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
532 |
FlatProfiler::oops_do(mark_and_push_closure()); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
533 |
Management::oops_do(mark_and_push_closure()); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
534 |
JvmtiExport::oops_do(mark_and_push_closure()); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
535 |
SystemDictionary::always_strong_oops_do(mark_and_push_closure()); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
536 |
ClassLoaderDataGraph::always_strong_oops_do(mark_and_push_closure(), follow_klass_closure(), true); |
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
537 |
// Do not treat nmethods as strong roots for mark/sweep, since we can unload them. |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
538 |
//CodeCache::scavenge_root_nmethods_do(CodeBlobToOopClosure(mark_and_push_closure())); |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
2154
diff
changeset
|
539 |
} |
1 | 540 |
|
541 |
// Flush marking stack. |
|
542 |
follow_stack(); |
|
543 |
||
544 |
// Process reference objects found during marking |
|
545 |
{ |
|
1610
5dddd195cc86
6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents:
1606
diff
changeset
|
546 |
ref_processor()->setup_policy(clear_all_softrefs); |
18025 | 547 |
const ReferenceProcessorStats& stats = |
548 |
ref_processor()->process_discovered_references( |
|
549 |
is_alive_closure(), mark_and_push_closure(), follow_stack_closure(), NULL, _gc_timer); |
|
550 |
gc_tracer()->report_gc_reference_stats(stats); |
|
1 | 551 |
} |
552 |
||
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17112
diff
changeset
|
553 |
// 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:
17112
diff
changeset
|
554 |
assert(_marking_stack.is_empty(), "Marking should have completed"); |
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17112
diff
changeset
|
555 |
|
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17112
diff
changeset
|
556 |
// Unload classes and purge the SystemDictionary. |
1 | 557 |
bool purged_class = SystemDictionary::do_unloading(is_alive_closure()); |
558 |
||
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17112
diff
changeset
|
559 |
// Unload nmethods. |
13878
6e6a462a6cff
7200470: KeepAliveClosure not needed in CodeCache::do_unloading
brutisso
parents:
13728
diff
changeset
|
560 |
CodeCache::do_unloading(is_alive_closure(), purged_class); |
1 | 561 |
|
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17112
diff
changeset
|
562 |
// Prune dead klasses from subklass/sibling/implementor lists. |
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17112
diff
changeset
|
563 |
Klass::clean_weak_klass_links(is_alive_closure()); |
3696 | 564 |
|
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17112
diff
changeset
|
565 |
// Delete entries for dead interned strings. |
1 | 566 |
StringTable::unlink(is_alive_closure()); |
17114
b341b4c63384
8013160: NPG: Remove unnecessary mark stack draining after CodeCache::do_unloading
stefank
parents:
17112
diff
changeset
|
567 |
|
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
568 |
// Clean up unreferenced symbols in symbol table. |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7918
diff
changeset
|
569 |
SymbolTable::unlink(); |
18025 | 570 |
_gc_tracer->report_object_count_after_gc(is_alive_closure()); |
1 | 571 |
} |
572 |
||
573 |
||
574 |
void PSMarkSweep::mark_sweep_phase2() { |
|
18025 | 575 |
GCTraceTime tm("phase 2", PrintGCDetails && Verbose, true, _gc_timer); |
1 | 576 |
trace("2"); |
577 |
||
578 |
// Now all live objects are marked, compute the new object addresses. |
|
579 |
||
580 |
// It is not required that we traverse spaces in the same order in |
|
581 |
// phase2, phase3 and phase4, but the ValidateMarkSweep live oops |
|
582 |
// tracking expects us to do so. See comment under phase4. |
|
583 |
||
584 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
585 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
|
586 |
||
587 |
PSOldGen* old_gen = heap->old_gen(); |
|
588 |
||
589 |
// Begin compacting into the old gen |
|
590 |
PSMarkSweepDecorator::set_destination_decorator_tenured(); |
|
591 |
||
592 |
// This will also compact the young gen spaces. |
|
593 |
old_gen->precompact(); |
|
594 |
} |
|
595 |
||
596 |
// This should be moved to the shared markSweep code! |
|
597 |
class PSAlwaysTrueClosure: public BoolObjectClosure { |
|
598 |
public: |
|
599 |
bool do_object_b(oop p) { return true; } |
|
600 |
}; |
|
601 |
static PSAlwaysTrueClosure always_true; |
|
602 |
||
603 |
void PSMarkSweep::mark_sweep_phase3() { |
|
604 |
// Adjust the pointers to reflect the new locations |
|
18025 | 605 |
GCTraceTime tm("phase 3", PrintGCDetails && Verbose, true, _gc_timer); |
1 | 606 |
trace("3"); |
607 |
||
608 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
609 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
|
610 |
||
611 |
PSYoungGen* young_gen = heap->young_gen(); |
|
612 |
PSOldGen* old_gen = heap->old_gen(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
613 |
|
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
614 |
// Need to clear claim bits before the tracing starts. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12630
diff
changeset
|
615 |
ClassLoaderDataGraph::clear_claimed_marks(); |
1 | 616 |
|
617 |
// General strong roots. |
|
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
618 |
Universe::oops_do(adjust_pointer_closure()); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
619 |
JNIHandles::oops_do(adjust_pointer_closure()); // Global (strong) JNI handles |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
620 |
CLDToOopClosure adjust_from_cld(adjust_pointer_closure()); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
621 |
Threads::oops_do(adjust_pointer_closure(), &adjust_from_cld, NULL); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
622 |
ObjectSynchronizer::oops_do(adjust_pointer_closure()); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
623 |
FlatProfiler::oops_do(adjust_pointer_closure()); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
624 |
Management::oops_do(adjust_pointer_closure()); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
625 |
JvmtiExport::oops_do(adjust_pointer_closure()); |
1 | 626 |
// SO_AllClasses |
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
627 |
SystemDictionary::oops_do(adjust_pointer_closure()); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
628 |
ClassLoaderDataGraph::oops_do(adjust_pointer_closure(), adjust_klass_closure(), true); |
1 | 629 |
|
630 |
// Now adjust pointers in remaining weak roots. (All of which should |
|
631 |
// have been cleared if they pointed to non-surviving objects.) |
|
632 |
// Global (weak) JNI handles |
|
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
633 |
JNIHandles::weak_oops_do(&always_true, adjust_pointer_closure()); |
1 | 634 |
|
635 |
CodeCache::oops_do(adjust_pointer_closure()); |
|
17105
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
636 |
StringTable::oops_do(adjust_pointer_closure()); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
637 |
ref_processor()->weak_oops_do(adjust_pointer_closure()); |
25b392a7740d
8012687: Remove unused is_root checks and closures
stefank
parents:
14582
diff
changeset
|
638 |
PSScavenge::reference_processor()->weak_oops_do(adjust_pointer_closure()); |
1 | 639 |
|
640 |
adjust_marks(); |
|
641 |
||
642 |
young_gen->adjust_pointers(); |
|
643 |
old_gen->adjust_pointers(); |
|
644 |
} |
|
645 |
||
646 |
void PSMarkSweep::mark_sweep_phase4() { |
|
647 |
EventMark m("4 compact heap"); |
|
18025 | 648 |
GCTraceTime tm("phase 4", PrintGCDetails && Verbose, true, _gc_timer); |
1 | 649 |
trace("4"); |
650 |
||
651 |
// All pointers are now adjusted, move objects accordingly |
|
652 |
||
653 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
654 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
|
655 |
||
656 |
PSYoungGen* young_gen = heap->young_gen(); |
|
657 |
PSOldGen* old_gen = heap->old_gen(); |
|
658 |
||
659 |
old_gen->compact(); |
|
660 |
young_gen->compact(); |
|
661 |
} |
|
662 |
||
663 |
jlong PSMarkSweep::millis_since_last_gc() { |
|
11251
e29da6b5622b
7117303: VM uses non-monotonic time source and complains that it is non-monotonic
johnc
parents:
10670
diff
changeset
|
664 |
// We need a monotonically non-deccreasing time in ms but |
e29da6b5622b
7117303: VM uses non-monotonic time source and complains that it is non-monotonic
johnc
parents:
10670
diff
changeset
|
665 |
// os::javaTimeMillis() does not guarantee monotonicity. |
e29da6b5622b
7117303: VM uses non-monotonic time source and complains that it is non-monotonic
johnc
parents:
10670
diff
changeset
|
666 |
jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC; |
e29da6b5622b
7117303: VM uses non-monotonic time source and complains that it is non-monotonic
johnc
parents:
10670
diff
changeset
|
667 |
jlong ret_val = now - _time_of_last_gc; |
1 | 668 |
// XXX See note in genCollectedHeap::millis_since_last_gc(). |
669 |
if (ret_val < 0) { |
|
11251
e29da6b5622b
7117303: VM uses non-monotonic time source and complains that it is non-monotonic
johnc
parents:
10670
diff
changeset
|
670 |
NOT_PRODUCT(warning("time warp: "INT64_FORMAT, ret_val);) |
1 | 671 |
return 0; |
672 |
} |
|
673 |
return ret_val; |
|
674 |
} |
|
675 |
||
676 |
void PSMarkSweep::reset_millis_since_last_gc() { |
|
11251
e29da6b5622b
7117303: VM uses non-monotonic time source and complains that it is non-monotonic
johnc
parents:
10670
diff
changeset
|
677 |
// We need a monotonically non-deccreasing time in ms but |
e29da6b5622b
7117303: VM uses non-monotonic time source and complains that it is non-monotonic
johnc
parents:
10670
diff
changeset
|
678 |
// os::javaTimeMillis() does not guarantee monotonicity. |
e29da6b5622b
7117303: VM uses non-monotonic time source and complains that it is non-monotonic
johnc
parents:
10670
diff
changeset
|
679 |
_time_of_last_gc = os::javaTimeNanos() / NANOSECS_PER_MILLISEC; |
1 | 680 |
} |