genMarkSweep.cpp 12.7 KB
Newer Older
D
duke 已提交
1
/*
S
sla 已提交
2
 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
D
duke 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
19 20 21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
D
duke 已提交
22 23 24
 *
 */

25 26 27 28 29 30 31
#include "precompiled.hpp"
#include "classfile/javaClasses.hpp"
#include "classfile/symbolTable.hpp"
#include "classfile/systemDictionary.hpp"
#include "classfile/vmSymbols.hpp"
#include "code/codeCache.hpp"
#include "code/icBuffer.hpp"
S
sla 已提交
32 33 34 35
#include "gc_implementation/shared/gcHeapSummary.hpp"
#include "gc_implementation/shared/gcTimer.hpp"
#include "gc_implementation/shared/gcTrace.hpp"
#include "gc_implementation/shared/gcTraceTime.hpp"
36 37 38 39 40 41 42 43 44 45 46 47 48 49
#include "gc_interface/collectedHeap.inline.hpp"
#include "memory/genCollectedHeap.hpp"
#include "memory/genMarkSweep.hpp"
#include "memory/genOopClosures.inline.hpp"
#include "memory/generation.inline.hpp"
#include "memory/modRefBarrierSet.hpp"
#include "memory/referencePolicy.hpp"
#include "memory/space.hpp"
#include "oops/instanceRefKlass.hpp"
#include "oops/oop.inline.hpp"
#include "prims/jvmtiExport.hpp"
#include "runtime/fprofiler.hpp"
#include "runtime/handles.inline.hpp"
#include "runtime/synchronizer.hpp"
50
#include "runtime/thread.inline.hpp"
51 52 53
#include "runtime/vmThread.hpp"
#include "utilities/copy.hpp"
#include "utilities/events.hpp"
D
duke 已提交
54

55 56
void GenMarkSweep::invoke_at_safepoint(int level, ReferenceProcessor* rp, bool clear_all_softrefs) {
  guarantee(level == 1, "We always collect both old and young.");
D
duke 已提交
57 58
  assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");

59 60 61 62 63 64 65
  GenCollectedHeap* gch = GenCollectedHeap::heap();
#ifdef ASSERT
  if (gch->collector_policy()->should_clear_all_soft_refs()) {
    assert(clear_all_softrefs, "Policy should have been checked earlier");
  }
#endif

D
duke 已提交
66 67 68
  // hook up weak ref data so it can be used during Mark-Sweep
  assert(ref_processor() == NULL, "no stomping");
  assert(rp != NULL, "should be non-NULL");
69
  _ref_processor = rp;
70
  rp->setup_policy(clear_all_softrefs);
D
duke 已提交
71

72
  GCTraceTime t1(GCCauseString("Full GC", gch->gc_cause()), PrintGC && !PrintGCDetails, true, NULL, _gc_tracer->gc_id());
S
sla 已提交
73 74

  gch->trace_heap_before_gc(_gc_tracer);
D
duke 已提交
75

76
  // When collecting the permanent generation Method*s may be moving,
D
duke 已提交
77 78 79 80
  // so we either have to flush all bcp data or convert it into bci.
  CodeCache::gc_prologue();
  Threads::gc_prologue();

81 82
  // Increment the invocation count
  _total_invocations++;
D
duke 已提交
83 84 85 86 87 88 89

  // Capture heap size before collection for printing.
  size_t gch_prev_used = gch->used();

  // Capture used regions for each generation that will be
  // subject to collection, so that card table adjustments can
  // be made intelligently (see clear / invalidate further below).
90
  gch->save_used_regions(level);
D
duke 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

  allocate_stacks();

  mark_sweep_phase1(level, clear_all_softrefs);

  mark_sweep_phase2();

  // Don't add any more derived pointers during phase3
  COMPILER2_PRESENT(assert(DerivedPointerTable::is_active(), "Sanity"));
  COMPILER2_PRESENT(DerivedPointerTable::set_active(false));

  mark_sweep_phase3(level);

  mark_sweep_phase4();

  restore_marks();

  // Set saved marks for allocation profiler (and other things? -- dld)
  // (Should this be in general part?)
  gch->save_marks();

  deallocate_stacks();

  // If compaction completely evacuated all generations younger than this
  // one, then we can clear the card table.  Otherwise, we must invalidate
  // it (consider all cards dirty).  In the future, we might consider doing
  // compaction within generations only, and doing card-table sliding.
  bool all_empty = true;
  for (int i = 0; all_empty && i < level; i++) {
    Generation* g = gch->get_gen(i);
    all_empty = all_empty && gch->get_gen(i)->used() == 0;
  }
  GenRemSet* rs = gch->rem_set();
124
  Generation* old_gen = gch->get_gen(level);
D
duke 已提交
125 126 127
  // Clear/invalidate below make use of the "prev_used_regions" saved earlier.
  if (all_empty) {
    // We've evacuated all generations below us.
128
    rs->clear_into_younger(old_gen);
D
duke 已提交
129 130
  } else {
    // Invalidate the cards corresponding to the currently used
131 132
    // region and clear those corresponding to the evacuated region.
    rs->invalidate_or_clear(old_gen);
D
duke 已提交
133 134 135 136
  }

  Threads::gc_epilogue();
  CodeCache::gc_epilogue();
137
  JvmtiExport::gc_epilogue();
D
duke 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150 151

  if (PrintGC && !PrintGCDetails) {
    gch->print_heap_change(gch_prev_used);
  }

  // refs processing: clean slate
  _ref_processor = NULL;

  // Update heap occupancy information which is used as
  // input to soft ref clearing policy at the next gc.
  Universe::update_heap_info_at_gc();

  // Update time of last gc for all generations we collected
  // (which curently is all the generations in the heap).
152 153 154 155 156
  // We need to use a monotonically non-deccreasing time in ms
  // or we will see time-warp warnings and os::javaTimeMillis()
  // does not guarantee monotonicity.
  jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC;
  gch->update_time_of_last_gc(now);
S
sla 已提交
157 158

  gch->trace_heap_after_gc(_gc_tracer);
D
duke 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
}

void GenMarkSweep::allocate_stacks() {
  GenCollectedHeap* gch = GenCollectedHeap::heap();
  // Scratch request on behalf of oldest generation; will do no
  // allocation.
  ScratchBlock* scratch = gch->gather_scratch(gch->_gens[gch->_n_gens-1], 0);

  // $$$ To cut a corner, we'll only use the first scratch block, and then
  // revert to malloc.
  if (scratch != NULL) {
    _preserved_count_max =
      scratch->num_words * HeapWordSize / sizeof(PreservedMark);
  } else {
    _preserved_count_max = 0;
  }

  _preserved_marks = (PreservedMark*)scratch;
  _preserved_count = 0;
}


void GenMarkSweep::deallocate_stacks() {
T
Merge  
tonyp 已提交
182 183 184 185
  if (!UseG1GC) {
    GenCollectedHeap* gch = GenCollectedHeap::heap();
    gch->release_scratch();
  }
186

187 188 189 190
  _preserved_mark_stack.clear(true);
  _preserved_oop_stack.clear(true);
  _marking_stack.clear();
  _objarray_stack.clear(true);
D
duke 已提交
191 192 193 194 195
}

void GenMarkSweep::mark_sweep_phase1(int level,
                                  bool clear_all_softrefs) {
  // Recursively traverse all live objects and mark them
196
  GCTraceTime tm("phase 1", PrintGC && Verbose, true, _gc_timer, _gc_tracer->gc_id());
D
duke 已提交
197 198 199
  trace(" 1");

  GenCollectedHeap* gch = GenCollectedHeap::heap();
200
  GenGCPhaseTimes* phase_times = gch->gen_policy()->phase_times();
D
duke 已提交
201 202 203 204 205 206
  // Because follow_root_closure is created statically, cannot
  // use OopsInGenClosure constructor which takes a generation,
  // as the Universe has not been created when the static constructors
  // are run.
  follow_root_closure.set_orig_generation(gch->get_gen(level));

207 208
  // Need new claim bits before marking starts.
  ClassLoaderDataGraph::clear_claimed_marks();
209 210
  phase_times->note_gc_start(1);
  phase_times->record_time_secs(GenGCPhaseTimes::GCWorkerStart, 0, os::elapsedTime());
211 212 213
  gch->gen_process_roots(level,
                         false, // Younger gens are not roots.
                         true,  // activate StrongRootsScope
214
                         GenCollectedHeap::SO_None,
P
poonam 已提交
215
                         ClassUnloading,
216 217
                         &follow_root_closure,
                         &follow_root_closure,
218 219 220 221
                         &follow_cld_closure,
                         phase_times,
                         0);
  phase_times->record_time_secs(GenGCPhaseTimes::GCWorkerEnd, 0, os::elapsedTime());
D
duke 已提交
222 223
  // Process reference objects found during marking
  {
224
    ref_processor()->setup_policy(clear_all_softrefs);
S
sla 已提交
225 226
    const ReferenceProcessorStats& stats =
      ref_processor()->process_discovered_references(
227
        &is_alive, &keep_alive, &follow_stack_closure, NULL, _gc_timer, _gc_tracer->gc_id());
S
sla 已提交
228
    gc_tracer()->report_gc_reference_stats(stats);
D
duke 已提交
229 230
  }

231 232 233 234 235
  phase_times->note_gc_end();
  if (PrintGCRootsTraceTime && PrintGCDetails) {
    phase_times->log_gc_details();
  }

236 237 238 239
  // This is the point where the entire marking should have completed.
  assert(_marking_stack.is_empty(), "Marking should have completed");

  // Unload classes and purge the SystemDictionary.
D
duke 已提交
240 241
  bool purged_class = SystemDictionary::do_unloading(&is_alive);

242
  // Unload nmethods.
243
  CodeCache::do_unloading(&is_alive, purged_class);
D
duke 已提交
244

245
  // Prune dead klasses from subklass/sibling/implementor lists.
246
  Klass::clean_weak_klass_links(&is_alive);
Y
ysr 已提交
247

248
  // Delete entries for dead interned strings.
D
duke 已提交
249
  StringTable::unlink(&is_alive);
250

251 252
  // Clean up unreferenced symbols in symbol table.
  SymbolTable::unlink();
S
sla 已提交
253 254

  gc_tracer()->report_object_count_after_gc(&is_alive);
D
duke 已提交
255 256 257 258 259 260 261
}

void GenMarkSweep::mark_sweep_phase2() {
  // Now all live objects are marked, compute the new object addresses.

  // It is imperative that we traverse perm_gen LAST. If dead space is
  // allowed a range of dead object may get overwritten by a dead int
262
  // array. If perm_gen is not traversed last a Klass* may get
D
duke 已提交
263 264
  // overwritten. This is fine since it is dead, but if the class has dead
  // instances we have to skip them, and in order to find their size we
265
  // need the Klass*!
D
duke 已提交
266 267 268 269 270 271 272
  //
  // It is not required that we traverse spaces in the same order in
  // phase2, phase3 and phase4, but the ValidateMarkSweep live oops
  // tracking expects us to do so. See comment under phase4.

  GenCollectedHeap* gch = GenCollectedHeap::heap();

273
  GCTraceTime tm("phase 2", PrintGC && Verbose, true, _gc_timer, _gc_tracer->gc_id());
D
duke 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
  trace("2");

  gch->prepare_for_compaction();
}

class GenAdjustPointersClosure: public GenCollectedHeap::GenClosure {
public:
  void do_generation(Generation* gen) {
    gen->adjust_pointers();
  }
};

void GenMarkSweep::mark_sweep_phase3(int level) {
  GenCollectedHeap* gch = GenCollectedHeap::heap();

289 290
  GenGCPhaseTimes* phase_times = gch->gen_policy()->phase_times();
  
D
duke 已提交
291
  // Adjust the pointers to reflect the new locations
292
  GCTraceTime tm("phase 3", PrintGC && Verbose, true, _gc_timer, _gc_tracer->gc_id());
D
duke 已提交
293 294
  trace("3");

295 296
  // Need new claim bits for the pointer adjustment tracing.
  ClassLoaderDataGraph::clear_claimed_marks();
D
duke 已提交
297

298
  // Because the closure below is created statically, we cannot
D
duke 已提交
299 300 301 302 303
  // use OopsInGenClosure constructor which takes a generation,
  // as the Universe has not been created when the static constructors
  // are run.
  adjust_pointer_closure.set_orig_generation(gch->get_gen(level));

304 305 306
  phase_times->note_gc_start(1);
  phase_times->record_time_secs(GenGCPhaseTimes::GCWorkerStart, 0, os::elapsedTime());

307 308 309
  gch->gen_process_roots(level,
                         false, // Younger gens are not roots.
                         true,  // activate StrongRootsScope
310
                         GenCollectedHeap::SO_AllCodeCache,
311 312 313
                         GenCollectedHeap::StrongAndWeakRoots,
                         &adjust_pointer_closure,
                         &adjust_pointer_closure,
314 315 316 317 318 319 320 321 322
                         &adjust_cld_closure,
                         phase_times,
                         0);

  phase_times->record_time_secs(GenGCPhaseTimes::GCWorkerEnd, 0, os::elapsedTime());
  phase_times->note_gc_end();
  if (PrintGCRootsTraceTime && PrintGCDetails) {
    phase_times->log_gc_details();
  }
D
duke 已提交
323

324
  gch->gen_process_weak_roots(&adjust_pointer_closure);
D
duke 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342

  adjust_marks();
  GenAdjustPointersClosure blk;
  gch->generation_iterate(&blk, true);
}

class GenCompactClosure: public GenCollectedHeap::GenClosure {
public:
  void do_generation(Generation* gen) {
    gen->compact();
  }
};

void GenMarkSweep::mark_sweep_phase4() {
  // All pointers are now adjusted, move objects accordingly

  // It is imperative that we traverse perm_gen first in phase4. All
  // classes must be allocated earlier than their instances, and traversing
343
  // perm_gen first makes sure that all Klass*s have moved to their new
D
duke 已提交
344 345 346 347 348 349 350 351
  // location before any instance does a dispatch through it's klass!

  // The ValidateMarkSweep live oops tracking expects us to traverse spaces
  // in the same order in phase2, phase3 and phase4. We don't quite do that
  // here (perm_gen first rather than last), so we tell the validate code
  // to use a higher index (saved from phase2) when verifying perm_gen.
  GenCollectedHeap* gch = GenCollectedHeap::heap();

352
  GCTraceTime tm("phase 4", PrintGC && Verbose, true, _gc_timer, _gc_tracer->gc_id());
D
duke 已提交
353 354 355 356 357
  trace("4");

  GenCompactClosure blk;
  gch->generation_iterate(&blk, true);
}