hotspot/src/share/vm/memory/genMarkSweep.cpp
author brutisso
Mon, 21 Nov 2011 07:47:34 +0100
changeset 11170 7663e46f3a54
parent 10565 dc90c239f4ec
child 11636 3c07b54482a5
permissions -rw-r--r--
7110718: -XX:MarkSweepAlwaysCompactCount=0 crashes the JVM Summary: Interpret MarkSweepAlwaysCompactCount < 1 as never do full compaction Reviewed-by: ysr, tonyp, jmasa, johnc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8921
14bfe81f2a9d 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 8076
diff changeset
     2
 * Copyright (c) 2001, 2011, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    26
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    27
#include "classfile/symbolTable.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    28
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    29
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    30
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    31
#include "code/icBuffer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    32
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    33
#include "memory/genCollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    34
#include "memory/genMarkSweep.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    35
#include "memory/genOopClosures.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    36
#include "memory/generation.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    37
#include "memory/modRefBarrierSet.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    38
#include "memory/referencePolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    39
#include "memory/space.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    40
#include "oops/instanceRefKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    41
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    42
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    43
#include "runtime/fprofiler.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    44
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    45
#include "runtime/synchronizer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    46
#include "runtime/vmThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    47
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    48
#include "utilities/events.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    49
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    50
# include "thread_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    51
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    52
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    53
# include "thread_solaris.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    54
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    55
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    56
# include "thread_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    57
#endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8921
diff changeset
    58
#ifdef TARGET_OS_FAMILY_bsd
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8921
diff changeset
    59
# include "thread_bsd.inline.hpp"
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8921
diff changeset
    60
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
void GenMarkSweep::invoke_at_safepoint(int level, ReferenceProcessor* rp,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  bool clear_all_softrefs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  assert(SafepointSynchronize::is_at_safepoint(), "must be at a safepoint");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 5076
diff changeset
    66
  GenCollectedHeap* gch = GenCollectedHeap::heap();
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 5076
diff changeset
    67
#ifdef ASSERT
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 5076
diff changeset
    68
  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
    69
    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
    70
  }
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 5076
diff changeset
    71
#endif
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 5076
diff changeset
    72
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // hook up weak ref data so it can be used during Mark-Sweep
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  assert(ref_processor() == NULL, "no stomping");
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
    75
  assert(rp != NULL, "should be non-NULL");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  _ref_processor = rp;
1610
5dddd195cc86 6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents: 1606
diff changeset
    77
  rp->setup_policy(clear_all_softrefs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  TraceTime t1("Full GC", PrintGC && !PrintGCDetails, true, gclog_or_tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // When collecting the permanent generation methodOops may be moving,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // so we either have to flush all bcp data or convert it into bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  CodeCache::gc_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  Threads::gc_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Increment the invocation count for the permanent generation, since it is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // implicitly collected whenever we do a full mark sweep collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  gch->perm_gen()->stat_record()->invocations++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Capture heap size before collection for printing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  size_t gch_prev_used = gch->used();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // Some of the card table updates below assume that the perm gen is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // also being collected.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  assert(level == gch->n_gens() - 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
         "All generations are being collected, ergo perm gen too.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Capture used regions for each generation that will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // subject to collection, so that card table adjustments can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // be made intelligently (see clear / invalidate further below).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  gch->save_used_regions(level, true /* perm */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  allocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  mark_sweep_phase1(level, clear_all_softrefs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  mark_sweep_phase2();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Don't add any more derived pointers during phase3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  COMPILER2_PRESENT(assert(DerivedPointerTable::is_active(), "Sanity"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  COMPILER2_PRESENT(DerivedPointerTable::set_active(false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  mark_sweep_phase3(level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  VALIDATE_MARK_SWEEP_ONLY(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    if (ValidateMarkSweep) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   117
      guarantee(_root_refs_stack->length() == 0, "should be empty by now");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  mark_sweep_phase4();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  VALIDATE_MARK_SWEEP_ONLY(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    if (ValidateMarkSweep) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      guarantee(_live_oops->length() == _live_oops_moved_to->length(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
                "should be the same size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  restore_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // Set saved marks for allocation profiler (and other things? -- dld)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // (Should this be in general part?)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  gch->save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  deallocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // If compaction completely evacuated all generations younger than this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // one, then we can clear the card table.  Otherwise, we must invalidate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // it (consider all cards dirty).  In the future, we might consider doing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // compaction within generations only, and doing card-table sliding.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  bool all_empty = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  for (int i = 0; all_empty && i < level; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    Generation* g = gch->get_gen(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    all_empty = all_empty && gch->get_gen(i)->used() == 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  GenRemSet* rs = gch->rem_set();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // Clear/invalidate below make use of the "prev_used_regions" saved earlier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  if (all_empty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
    // We've evacuated all generations below us.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    Generation* g = gch->get_gen(level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
    rs->clear_into_younger(g, true /* perm */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
    // Invalidate the cards corresponding to the currently used
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    // region and clear those corresponding to the evacuated region
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
    // of all generations just collected (i.e. level and younger).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    rs->invalidate_or_clear(gch->get_gen(level),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
                            true /* younger */,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
                            true /* perm */);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  Threads::gc_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  CodeCache::gc_epilogue();
7918
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7397
diff changeset
   164
  JvmtiExport::gc_epilogue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  if (PrintGC && !PrintGCDetails) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    gch->print_heap_change(gch_prev_used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // refs processing: clean slate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  _ref_processor = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // Update heap occupancy information which is used as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // input to soft ref clearing policy at the next gc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  Universe::update_heap_info_at_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // Update time of last gc for all generations we collected
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // (which curently is all the generations in the heap).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  gch->update_time_of_last_gc(os::javaTimeMillis());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
void GenMarkSweep::allocate_stacks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // Scratch request on behalf of oldest generation; will do no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  ScratchBlock* scratch = gch->gather_scratch(gch->_gens[gch->_n_gens-1], 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // $$$ To cut a corner, we'll only use the first scratch block, and then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // revert to malloc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  if (scratch != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    _preserved_count_max =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
      scratch->num_words * HeapWordSize / sizeof(PreservedMark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
    _preserved_count_max = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  _preserved_marks = (PreservedMark*)scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  _preserved_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
#ifdef VALIDATE_MARK_SWEEP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  if (ValidateMarkSweep) {
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   202
    _root_refs_stack    = new (ResourceObj::C_HEAP) GrowableArray<void*>(100, true);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   203
    _other_refs_stack   = new (ResourceObj::C_HEAP) GrowableArray<void*>(100, true);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   204
    _adjusted_pointers  = new (ResourceObj::C_HEAP) GrowableArray<void*>(100, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    _live_oops          = new (ResourceObj::C_HEAP) GrowableArray<oop>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    _live_oops_moved_to = new (ResourceObj::C_HEAP) GrowableArray<oop>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    _live_oops_size     = new (ResourceObj::C_HEAP) GrowableArray<size_t>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  if (RecordMarkSweepCompaction) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    if (_cur_gc_live_oops == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
      _cur_gc_live_oops           = new(ResourceObj::C_HEAP) GrowableArray<HeapWord*>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
      _cur_gc_live_oops_moved_to  = new(ResourceObj::C_HEAP) GrowableArray<HeapWord*>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
      _cur_gc_live_oops_size      = new(ResourceObj::C_HEAP) GrowableArray<size_t>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
      _last_gc_live_oops          = new(ResourceObj::C_HEAP) GrowableArray<HeapWord*>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
      _last_gc_live_oops_moved_to = new(ResourceObj::C_HEAP) GrowableArray<HeapWord*>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
      _last_gc_live_oops_size     = new(ResourceObj::C_HEAP) GrowableArray<size_t>(100, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      _cur_gc_live_oops->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
      _cur_gc_live_oops_moved_to->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
      _cur_gc_live_oops_size->clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
void GenMarkSweep::deallocate_stacks() {
1388
tonyp
parents: 977
diff changeset
   228
  if (!UseG1GC) {
tonyp
parents: 977
diff changeset
   229
    GenCollectedHeap* gch = GenCollectedHeap::heap();
tonyp
parents: 977
diff changeset
   230
    gch->release_scratch();
tonyp
parents: 977
diff changeset
   231
  }
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   232
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   233
  _preserved_mark_stack.clear(true);
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   234
  _preserved_oop_stack.clear(true);
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   235
  _marking_stack.clear();
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   236
  _objarray_stack.clear(true);
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   237
  _revisit_klass_stack.clear(true);
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   238
  _revisit_mdo_stack.clear(true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
#ifdef VALIDATE_MARK_SWEEP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  if (ValidateMarkSweep) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    delete _root_refs_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
    delete _other_refs_stack;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
    delete _adjusted_pointers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
    delete _live_oops;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
    delete _live_oops_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    delete _live_oops_moved_to;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    _live_oops_index = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
    _live_oops_index_at_perm = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
void GenMarkSweep::mark_sweep_phase1(int level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                                  bool clear_all_softrefs) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // Recursively traverse all live objects and mark them
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  EventMark m("1 mark object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  TraceTime tm("phase 1", PrintGC && Verbose, true, gclog_or_tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  trace(" 1");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  VALIDATE_MARK_SWEEP_ONLY(reset_live_oop_tracking(false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // Because follow_root_closure is created statically, cannot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // use OopsInGenClosure constructor which takes a generation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // as the Universe has not been created when the static constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // are run.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  follow_root_closure.set_orig_generation(gch->get_gen(level));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  gch->gen_process_strong_roots(level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
                                false, // Younger gens are not roots.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   273
                                true,  // activate StrongRootsScope
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
                                true,  // Collecting permanent generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
                                SharedHeap::SO_SystemClasses,
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   276
                                &follow_root_closure,
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   277
                                true,   // walk code active on stacks
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   278
                                &follow_root_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // Process reference objects found during marking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  {
1610
5dddd195cc86 6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents: 1606
diff changeset
   282
    ref_processor()->setup_policy(clear_all_softrefs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    ref_processor()->process_discovered_references(
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1388
diff changeset
   284
      &is_alive, &keep_alive, &follow_stack_closure, NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // Follow system dictionary roots and unload classes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  bool purged_class = SystemDictionary::do_unloading(&is_alive);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // Follow code cache roots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  CodeCache::do_unloading(&is_alive, &keep_alive, purged_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  follow_stack(); // Flush marking stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  // Update subklass/sibling/implementor links of live klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  follow_weak_klass_links();
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   296
  assert(_marking_stack.is_empty(), "just drained");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1610
diff changeset
   298
  // Visit memoized MDO's and clear any unmarked weak refs
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1610
diff changeset
   299
  follow_mdo_weak_refs();
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   300
  assert(_marking_stack.is_empty(), "just drained");
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1610
diff changeset
   301
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   302
  // Visit interned string tables and delete unmarked oops
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  StringTable::unlink(&is_alive);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   304
  // Clean up unreferenced symbols in symbol table.
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7918
diff changeset
   305
  SymbolTable::unlink();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   307
  assert(_marking_stack.is_empty(), "stack should be empty by now");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
void GenMarkSweep::mark_sweep_phase2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // Now all live objects are marked, compute the new object addresses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  // It is imperative that we traverse perm_gen LAST. If dead space is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  // allowed a range of dead object may get overwritten by a dead int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // array. If perm_gen is not traversed last a klassOop may get
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  // overwritten. This is fine since it is dead, but if the class has dead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  // instances we have to skip them, and in order to find their size we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // need the klassOop!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // It is not required that we traverse spaces in the same order in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // phase2, phase3 and phase4, but the ValidateMarkSweep live oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // tracking expects us to do so. See comment under phase4.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  Generation* pg = gch->perm_gen();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  EventMark m("2 compute new addresses");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  TraceTime tm("phase 2", PrintGC && Verbose, true, gclog_or_tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  trace("2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  VALIDATE_MARK_SWEEP_ONLY(reset_live_oop_tracking(false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  gch->prepare_for_compaction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  VALIDATE_MARK_SWEEP_ONLY(_live_oops_index_at_perm = _live_oops_index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  CompactPoint perm_cp(pg, NULL, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  pg->prepare_for_compaction(&perm_cp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
class GenAdjustPointersClosure: public GenCollectedHeap::GenClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  void do_generation(Generation* gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    gen->adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
void GenMarkSweep::mark_sweep_phase3(int level) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  Generation* pg = gch->perm_gen();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  // Adjust the pointers to reflect the new locations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  EventMark m("3 adjust pointers");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  TraceTime tm("phase 3", PrintGC && Verbose, true, gclog_or_tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  trace("3");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  VALIDATE_MARK_SWEEP_ONLY(reset_live_oop_tracking(false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // Needs to be done before the system dictionary is adjusted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  pg->pre_adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // Because the two closures below are created statically, cannot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // use OopsInGenClosure constructor which takes a generation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  // as the Universe has not been created when the static constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // are run.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  adjust_root_pointer_closure.set_orig_generation(gch->get_gen(level));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  adjust_pointer_closure.set_orig_generation(gch->get_gen(level));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  gch->gen_process_strong_roots(level,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
                                false, // Younger gens are not roots.
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   371
                                true,  // activate StrongRootsScope
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
                                true,  // Collecting permanent generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
                                SharedHeap::SO_AllClasses,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
                                &adjust_root_pointer_closure,
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   375
                                false, // do not walk code
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
                                &adjust_root_pointer_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // Now adjust pointers in remaining weak roots.  (All of which should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // have been cleared if they pointed to non-surviving objects.)
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   380
  CodeBlobToOopClosure adjust_code_pointer_closure(&adjust_pointer_closure,
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   381
                                                   /*do_marking=*/ false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  gch->gen_process_weak_roots(&adjust_root_pointer_closure,
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 1610
diff changeset
   383
                              &adjust_code_pointer_closure,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
                              &adjust_pointer_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  adjust_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  GenAdjustPointersClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  gch->generation_iterate(&blk, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  pg->adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
class GenCompactClosure: public GenCollectedHeap::GenClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  void do_generation(Generation* gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
    gen->compact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
void GenMarkSweep::mark_sweep_phase4() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // All pointers are now adjusted, move objects accordingly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // It is imperative that we traverse perm_gen first in phase4. All
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // classes must be allocated earlier than their instances, and traversing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // perm_gen first makes sure that all klassOops have moved to their new
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // location before any instance does a dispatch through it's klass!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // The ValidateMarkSweep live oops tracking expects us to traverse spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // in the same order in phase2, phase3 and phase4. We don't quite do that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // here (perm_gen first rather than last), so we tell the validate code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // to use a higher index (saved from phase2) when verifying perm_gen.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  Generation* pg = gch->perm_gen();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  EventMark m("4 compact heap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  TraceTime tm("phase 4", PrintGC && Verbose, true, gclog_or_tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  trace("4");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  VALIDATE_MARK_SWEEP_ONLY(reset_live_oop_tracking(true));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  pg->compact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  VALIDATE_MARK_SWEEP_ONLY(reset_live_oop_tracking(false));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  GenCompactClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  gch->generation_iterate(&blk, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  VALIDATE_MARK_SWEEP_ONLY(compaction_complete());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  pg->post_compact(); // Shared spaces verification.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
}