src/share/vm/gc_implementation/g1/g1MarkSweep.cpp

Tue, 12 Aug 2014 15:17:46 +0000

author
tschatzl
date
Tue, 12 Aug 2014 15:17:46 +0000
changeset 7024
bfba6779654b
parent 7009
3f2894c5052e
child 7131
d35872270666
permissions
-rw-r--r--

Merge

ysr@777 1 /*
pliden@6413 2 * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
ysr@777 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ysr@777 4 *
ysr@777 5 * This code is free software; you can redistribute it and/or modify it
ysr@777 6 * under the terms of the GNU General Public License version 2 only, as
ysr@777 7 * published by the Free Software Foundation.
ysr@777 8 *
ysr@777 9 * This code is distributed in the hope that it will be useful, but WITHOUT
ysr@777 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ysr@777 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ysr@777 12 * version 2 for more details (a copy is included in the LICENSE file that
ysr@777 13 * accompanied this code).
ysr@777 14 *
ysr@777 15 * You should have received a copy of the GNU General Public License version
ysr@777 16 * 2 along with this work; if not, write to the Free Software Foundation,
ysr@777 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ysr@777 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
ysr@777 22 *
ysr@777 23 */
ysr@777 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/javaClasses.hpp"
stefank@2314 27 #include "classfile/symbolTable.hpp"
stefank@2314 28 #include "classfile/systemDictionary.hpp"
stefank@2314 29 #include "classfile/vmSymbols.hpp"
stefank@2314 30 #include "code/codeCache.hpp"
stefank@2314 31 #include "code/icBuffer.hpp"
brutisso@3710 32 #include "gc_implementation/g1/g1Log.hpp"
stefank@2314 33 #include "gc_implementation/g1/g1MarkSweep.hpp"
pliden@6413 34 #include "gc_implementation/g1/g1StringDedup.hpp"
sla@5237 35 #include "gc_implementation/shared/gcHeapSummary.hpp"
sla@5237 36 #include "gc_implementation/shared/gcTimer.hpp"
sla@5237 37 #include "gc_implementation/shared/gcTrace.hpp"
sla@5237 38 #include "gc_implementation/shared/gcTraceTime.hpp"
stefank@2314 39 #include "memory/gcLocker.hpp"
stefank@2314 40 #include "memory/genCollectedHeap.hpp"
stefank@2314 41 #include "memory/modRefBarrierSet.hpp"
stefank@2314 42 #include "memory/referencePolicy.hpp"
stefank@2314 43 #include "memory/space.hpp"
stefank@2314 44 #include "oops/instanceRefKlass.hpp"
stefank@2314 45 #include "oops/oop.inline.hpp"
stefank@2314 46 #include "prims/jvmtiExport.hpp"
stefank@2314 47 #include "runtime/biasedLocking.hpp"
stefank@2314 48 #include "runtime/fprofiler.hpp"
stefank@2314 49 #include "runtime/synchronizer.hpp"
stefank@2314 50 #include "runtime/thread.hpp"
stefank@2314 51 #include "runtime/vmThread.hpp"
stefank@2314 52 #include "utilities/copy.hpp"
stefank@2314 53 #include "utilities/events.hpp"
ysr@777 54
ysr@777 55 class HeapRegion;
ysr@777 56
ysr@777 57 void G1MarkSweep::invoke_at_safepoint(ReferenceProcessor* rp,
ysr@777 58 bool clear_all_softrefs) {
ysr@777 59 assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
ysr@777 60
jmasa@1822 61 SharedHeap* sh = SharedHeap::heap();
jmasa@1822 62 #ifdef ASSERT
jmasa@1822 63 if (sh->collector_policy()->should_clear_all_soft_refs()) {
jmasa@1822 64 assert(clear_all_softrefs, "Policy should have been checked earler");
jmasa@1822 65 }
jmasa@1822 66 #endif
ysr@777 67 // hook up weak ref data so it can be used during Mark-Sweep
ysr@777 68 assert(GenMarkSweep::ref_processor() == NULL, "no stomping");
ysr@888 69 assert(rp != NULL, "should be non-NULL");
johnc@3175 70 assert(rp == G1CollectedHeap::heap()->ref_processor_stw(), "Precondition");
johnc@3175 71
ysr@777 72 GenMarkSweep::_ref_processor = rp;
ysr@892 73 rp->setup_policy(clear_all_softrefs);
ysr@777 74
coleenp@4037 75 // When collecting the permanent generation Method*s may be moving,
ysr@777 76 // so we either have to flush all bcp data or convert it into bci.
ysr@777 77 CodeCache::gc_prologue();
ysr@777 78 Threads::gc_prologue();
ysr@777 79
ysr@777 80 bool marked_for_unloading = false;
ysr@777 81
ysr@777 82 allocate_stacks();
ysr@777 83
iveresov@793 84 // We should save the marks of the currently locked biased monitors.
iveresov@793 85 // The marking doesn't preserve the marks of biased objects.
iveresov@793 86 BiasedLocking::preserve_marks();
iveresov@793 87
ysr@777 88 mark_sweep_phase1(marked_for_unloading, clear_all_softrefs);
ysr@777 89
ysr@777 90 mark_sweep_phase2();
ysr@777 91
ysr@777 92 // Don't add any more derived pointers during phase3
ysr@777 93 COMPILER2_PRESENT(DerivedPointerTable::set_active(false));
ysr@777 94
ysr@777 95 mark_sweep_phase3();
ysr@777 96
ysr@777 97 mark_sweep_phase4();
ysr@777 98
ysr@777 99 GenMarkSweep::restore_marks();
iveresov@793 100 BiasedLocking::restore_marks();
ysr@777 101 GenMarkSweep::deallocate_stacks();
ysr@777 102
ysr@777 103 // "free at last gc" is calculated from these.
ysr@777 104 // CHF: cheating for now!!!
ysr@777 105 // Universe::set_heap_capacity_at_last_gc(Universe::heap()->capacity());
ysr@777 106 // Universe::set_heap_used_at_last_gc(Universe::heap()->used());
ysr@777 107
ysr@777 108 Threads::gc_epilogue();
ysr@777 109 CodeCache::gc_epilogue();
kamg@2467 110 JvmtiExport::gc_epilogue();
ysr@777 111
ysr@777 112 // refs processing: clean slate
ysr@777 113 GenMarkSweep::_ref_processor = NULL;
ysr@777 114 }
ysr@777 115
ysr@777 116
ysr@777 117 void G1MarkSweep::allocate_stacks() {
ysr@777 118 GenMarkSweep::_preserved_count_max = 0;
ysr@777 119 GenMarkSweep::_preserved_marks = NULL;
ysr@777 120 GenMarkSweep::_preserved_count = 0;
ysr@777 121 }
ysr@777 122
ysr@777 123 void G1MarkSweep::mark_sweep_phase1(bool& marked_for_unloading,
ysr@777 124 bool clear_all_softrefs) {
ysr@777 125 // Recursively traverse all live objects and mark them
brutisso@6904 126 GCTraceTime tm("phase 1", G1Log::fine() && Verbose, true, gc_timer(), gc_tracer()->gc_id());
ysr@777 127 GenMarkSweep::trace(" 1");
ysr@777 128
ysr@777 129 SharedHeap* sh = SharedHeap::heap();
ysr@777 130
stefank@6992 131 // Need cleared claim bits for the roots processing
coleenp@4037 132 ClassLoaderDataGraph::clear_claimed_marks();
coleenp@4037 133
stefank@6992 134 MarkingCodeBlobClosure follow_code_closure(&GenMarkSweep::follow_root_closure, !CodeBlobToOopClosure::FixRelocations);
stefank@6992 135 sh->process_strong_roots(true, // activate StrongRootsScope
stefank@6992 136 SharedHeap::SO_None,
ysr@777 137 &GenMarkSweep::follow_root_closure,
stefank@6992 138 &GenMarkSweep::follow_cld_closure,
stefank@6992 139 &follow_code_closure);
ysr@777 140
ysr@777 141 // Process reference objects found during marking
ysr@888 142 ReferenceProcessor* rp = GenMarkSweep::ref_processor();
johnc@3175 143 assert(rp == G1CollectedHeap::heap()->ref_processor_stw(), "Sanity");
johnc@3175 144
ysr@892 145 rp->setup_policy(clear_all_softrefs);
sla@5237 146 const ReferenceProcessorStats& stats =
sla@5237 147 rp->process_discovered_references(&GenMarkSweep::is_alive,
sla@5237 148 &GenMarkSweep::keep_alive,
sla@5237 149 &GenMarkSweep::follow_stack_closure,
sla@5237 150 NULL,
brutisso@6904 151 gc_timer(),
brutisso@6904 152 gc_tracer()->gc_id());
sla@5237 153 gc_tracer()->report_gc_reference_stats(stats);
ysr@777 154
stefank@5020 155
stefank@5020 156 // This is the point where the entire marking should have completed.
stefank@5020 157 assert(GenMarkSweep::_marking_stack.is_empty(), "Marking should have completed");
stefank@5020 158
stefank@5020 159 // Unload classes and purge the SystemDictionary.
ysr@777 160 bool purged_class = SystemDictionary::do_unloading(&GenMarkSweep::is_alive);
ysr@777 161
stefank@5020 162 // Unload nmethods.
brutisso@4098 163 CodeCache::do_unloading(&GenMarkSweep::is_alive, purged_class);
ysr@777 164
stefank@5020 165 // Prune dead klasses from subklass/sibling/implementor lists.
coleenp@4037 166 Klass::clean_weak_klass_links(&GenMarkSweep::is_alive);
ysr@777 167
tschatzl@6229 168 // Delete entries for dead interned string and clean up unreferenced symbols in symbol table.
tschatzl@6229 169 G1CollectedHeap::heap()->unlink_string_and_symbol_table(&GenMarkSweep::is_alive);
ysr@777 170
johnc@2969 171 if (VerifyDuringGC) {
johnc@2969 172 HandleMark hm; // handle scope
johnc@2969 173 COMPILER2_PRESENT(DerivedPointerTableDeactivate dpt_deact);
johnc@2969 174 Universe::heap()->prepare_for_verify();
johnc@2969 175 // Note: we can verify only the heap here. When an object is
johnc@2969 176 // marked, the previous value of the mark word (including
johnc@2969 177 // identity hash values, ages, etc) is preserved, and the mark
johnc@2969 178 // word is set to markOop::marked_value - effectively removing
johnc@2969 179 // any hash values from the mark word. These hash values are
johnc@2969 180 // used when verifying the dictionaries and so removing them
johnc@2969 181 // from the mark word can make verification of the dictionaries
johnc@2969 182 // fail. At the end of the GC, the orginal mark word values
johnc@2969 183 // (including hash values) are restored to the appropriate
johnc@2969 184 // objects.
stefank@5018 185 if (!VerifySilently) {
stefank@5018 186 gclog_or_tty->print(" VerifyDuringGC:(full)[Verifying ");
stefank@5018 187 }
stefank@5018 188 Universe::heap()->verify(VerifySilently, VerifyOption_G1UseMarkWord);
stefank@5018 189 if (!VerifySilently) {
stefank@5018 190 gclog_or_tty->print_cr("]");
stefank@5018 191 }
johnc@2969 192 }
sla@5237 193
sla@5237 194 gc_tracer()->report_object_count_after_gc(&GenMarkSweep::is_alive);
ysr@777 195 }
ysr@777 196
ysr@777 197 class G1PrepareCompactClosure: public HeapRegionClosure {
tonyp@2472 198 G1CollectedHeap* _g1h;
ysr@777 199 ModRefBarrierSet* _mrbs;
ysr@777 200 CompactPoint _cp;
brutisso@6385 201 HeapRegionSetCount _humongous_regions_removed;
ysr@777 202
tschatzl@7009 203 bool is_cp_initialized() const {
tschatzl@7009 204 return _cp.space != NULL;
tschatzl@7009 205 }
tschatzl@7009 206
tschatzl@7009 207 void prepare_for_compaction(HeapRegion* hr, HeapWord* end) {
tschatzl@7009 208 // If this is the first live region that we came across which we can compact,
tschatzl@7009 209 // initialize the CompactPoint.
tschatzl@7009 210 if (!is_cp_initialized()) {
tschatzl@7009 211 _cp.space = hr;
tschatzl@7009 212 _cp.threshold = hr->initialize_threshold();
tschatzl@7009 213 }
tschatzl@7009 214 hr->prepare_for_compaction(&_cp);
tschatzl@7009 215 // Also clear the part of the card table that will be unused after
tschatzl@7009 216 // compaction.
tschatzl@7009 217 _mrbs->clear(MemRegion(hr->compaction_top(), end));
tschatzl@7009 218 }
tschatzl@7009 219
ysr@777 220 void free_humongous_region(HeapRegion* hr) {
ysr@777 221 HeapWord* end = hr->end();
tonyp@2643 222 FreeRegionList dummy_free_list("Dummy Free List for G1MarkSweep");
tonyp@2643 223
ysr@777 224 assert(hr->startsHumongous(),
ysr@777 225 "Only the start of a humongous region should be freed.");
brutisso@6385 226
brutisso@6385 227 hr->set_containing_set(NULL);
brutisso@6385 228 _humongous_regions_removed.increment(1u, hr->capacity());
brutisso@6385 229
brutisso@6385 230 _g1h->free_humongous_region(hr, &dummy_free_list, false /* par */);
tschatzl@7009 231 prepare_for_compaction(hr, end);
tonyp@2643 232 dummy_free_list.remove_all();
ysr@777 233 }
ysr@777 234
ysr@777 235 public:
tschatzl@7009 236 G1PrepareCompactClosure()
tonyp@2472 237 : _g1h(G1CollectedHeap::heap()),
mgerdin@5811 238 _mrbs(_g1h->g1_barrier_set()),
tschatzl@7009 239 _cp(NULL),
brutisso@6385 240 _humongous_regions_removed() { }
tonyp@2472 241
tonyp@2472 242 void update_sets() {
tonyp@2472 243 // We'll recalculate total used bytes and recreate the free list
tonyp@2472 244 // at the end of the GC, so no point in updating those values here.
brutisso@6385 245 HeapRegionSetCount empty_set;
brutisso@6385 246 _g1h->remove_from_old_sets(empty_set, _humongous_regions_removed);
tonyp@2472 247 }
tonyp@2472 248
ysr@777 249 bool doHeapRegion(HeapRegion* hr) {
ysr@777 250 if (hr->isHumongous()) {
ysr@777 251 if (hr->startsHumongous()) {
ysr@777 252 oop obj = oop(hr->bottom());
ysr@777 253 if (obj->is_gc_marked()) {
ysr@777 254 obj->forward_to(obj);
ysr@777 255 } else {
ysr@777 256 free_humongous_region(hr);
ysr@777 257 }
ysr@777 258 } else {
ysr@777 259 assert(hr->continuesHumongous(), "Invalid humongous.");
ysr@777 260 }
ysr@777 261 } else {
tschatzl@7009 262 prepare_for_compaction(hr, hr->end());
ysr@777 263 }
ysr@777 264 return false;
ysr@777 265 }
ysr@777 266 };
apetrusenko@1112 267
ysr@777 268 void G1MarkSweep::mark_sweep_phase2() {
ysr@777 269 // Now all live objects are marked, compute the new object addresses.
ysr@777 270
ysr@777 271 // It is not required that we traverse spaces in the same order in
ysr@777 272 // phase2, phase3 and phase4, but the ValidateMarkSweep live oops
ysr@777 273 // tracking expects us to do so. See comment under phase4.
ysr@777 274
ysr@777 275 G1CollectedHeap* g1h = G1CollectedHeap::heap();
ysr@777 276
brutisso@6904 277 GCTraceTime tm("phase 2", G1Log::fine() && Verbose, true, gc_timer(), gc_tracer()->gc_id());
ysr@777 278 GenMarkSweep::trace("2");
ysr@777 279
tschatzl@7009 280 G1PrepareCompactClosure blk;
ysr@777 281 g1h->heap_region_iterate(&blk);
tonyp@2472 282 blk.update_sets();
ysr@777 283 }
ysr@777 284
ysr@777 285 class G1AdjustPointersClosure: public HeapRegionClosure {
ysr@777 286 public:
ysr@777 287 bool doHeapRegion(HeapRegion* r) {
ysr@777 288 if (r->isHumongous()) {
ysr@777 289 if (r->startsHumongous()) {
ysr@777 290 // We must adjust the pointers on the single H object.
ysr@777 291 oop obj = oop(r->bottom());
ysr@777 292 // point all the oops to the new location
ysr@777 293 obj->adjust_pointers();
ysr@777 294 }
ysr@777 295 } else {
ysr@777 296 // This really ought to be "as_CompactibleSpace"...
ysr@777 297 r->adjust_pointers();
ysr@777 298 }
ysr@777 299 return false;
ysr@777 300 }
ysr@777 301 };
ysr@777 302
ysr@777 303 void G1MarkSweep::mark_sweep_phase3() {
ysr@777 304 G1CollectedHeap* g1h = G1CollectedHeap::heap();
ysr@777 305
ysr@777 306 // Adjust the pointers to reflect the new locations
brutisso@6904 307 GCTraceTime tm("phase 3", G1Log::fine() && Verbose, true, gc_timer(), gc_tracer()->gc_id());
ysr@777 308 GenMarkSweep::trace("3");
ysr@777 309
ysr@777 310 SharedHeap* sh = SharedHeap::heap();
ysr@777 311
stefank@6992 312 // Need cleared claim bits for the roots processing
coleenp@4037 313 ClassLoaderDataGraph::clear_claimed_marks();
coleenp@4037 314
stefank@6992 315 CodeBlobToOopClosure adjust_code_closure(&GenMarkSweep::adjust_pointer_closure, CodeBlobToOopClosure::FixRelocations);
stefank@6992 316 sh->process_all_roots(true, // activate StrongRootsScope
stefank@6992 317 SharedHeap::SO_AllCodeCache,
stefank@6992 318 &GenMarkSweep::adjust_pointer_closure,
stefank@6992 319 &GenMarkSweep::adjust_cld_closure,
stefank@6992 320 &adjust_code_closure);
ysr@777 321
johnc@3175 322 assert(GenMarkSweep::ref_processor() == g1h->ref_processor_stw(), "Sanity");
stefank@5011 323 g1h->ref_processor_stw()->weak_oops_do(&GenMarkSweep::adjust_pointer_closure);
ysr@777 324
ysr@777 325 // Now adjust pointers in remaining weak roots. (All of which should
ysr@777 326 // have been cleared if they pointed to non-surviving objects.)
stefank@6971 327 sh->process_weak_roots(&GenMarkSweep::adjust_pointer_closure);
ysr@777 328
pliden@6413 329 if (G1StringDedup::is_enabled()) {
pliden@6413 330 G1StringDedup::oops_do(&GenMarkSweep::adjust_pointer_closure);
pliden@6413 331 }
pliden@6413 332
ysr@777 333 GenMarkSweep::adjust_marks();
ysr@777 334
ysr@777 335 G1AdjustPointersClosure blk;
ysr@777 336 g1h->heap_region_iterate(&blk);
ysr@777 337 }
ysr@777 338
ysr@777 339 class G1SpaceCompactClosure: public HeapRegionClosure {
ysr@777 340 public:
ysr@777 341 G1SpaceCompactClosure() {}
ysr@777 342
ysr@777 343 bool doHeapRegion(HeapRegion* hr) {
ysr@777 344 if (hr->isHumongous()) {
ysr@777 345 if (hr->startsHumongous()) {
ysr@777 346 oop obj = oop(hr->bottom());
ysr@777 347 if (obj->is_gc_marked()) {
ysr@777 348 obj->init_mark();
ysr@777 349 } else {
ysr@777 350 assert(hr->is_empty(), "Should have been cleared in phase 2.");
ysr@777 351 }
ysr@777 352 hr->reset_during_compaction();
ysr@777 353 }
ysr@777 354 } else {
ysr@777 355 hr->compact();
ysr@777 356 }
ysr@777 357 return false;
ysr@777 358 }
ysr@777 359 };
ysr@777 360
ysr@777 361 void G1MarkSweep::mark_sweep_phase4() {
ysr@777 362 // All pointers are now adjusted, move objects accordingly
ysr@777 363
ysr@777 364 // The ValidateMarkSweep live oops tracking expects us to traverse spaces
ysr@777 365 // in the same order in phase2, phase3 and phase4. We don't quite do that
coleenp@4037 366 // here (code and comment not fixed for perm removal), so we tell the validate code
ysr@777 367 // to use a higher index (saved from phase2) when verifying perm_gen.
ysr@777 368 G1CollectedHeap* g1h = G1CollectedHeap::heap();
ysr@777 369
brutisso@6904 370 GCTraceTime tm("phase 4", G1Log::fine() && Verbose, true, gc_timer(), gc_tracer()->gc_id());
ysr@777 371 GenMarkSweep::trace("4");
ysr@777 372
ysr@777 373 G1SpaceCompactClosure blk;
ysr@777 374 g1h->heap_region_iterate(&blk);
ysr@777 375
ysr@777 376 }

mercurial