src/hotspot/share/gc/serial/genMarkSweep.cpp
author kvn
Wed, 01 May 2019 12:31:29 -0700
changeset 54669 ad45b3802d4e
parent 54178 98e21d4da074
child 54786 ebf733a324d4
permissions -rw-r--r--
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library Reviewed-by: dnsimon, never, stefank, rehn, neliasso, dholmes, kbarrett, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53536
482109fae02b 8213229: Investigate treating StringTable as weak in young collections
tschatzl
parents: 51959
diff changeset
     2
 * Copyright (c) 2001, 2019, 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"
51959
db0c3952de52 8209645: Split ClassLoaderData and ClassLoaderDataGraph into separate files
coleenp
parents: 50605
diff changeset
    26
#include "classfile/classLoaderDataGraph.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    27
#include "classfile/javaClasses.hpp"
24426
0a69c8cdfca9 8038654: Separate SymbolTable and StringTable code
gziemski
parents: 22883
diff changeset
    28
#include "classfile/stringTable.hpp"
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 33230
diff changeset
    29
#include "classfile/symbolTable.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    30
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    31
#include "classfile/vmSymbols.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    32
#include "code/codeCache.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    33
#include "code/icBuffer.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    34
#include "gc/serial/genMarkSweep.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    35
#include "gc/shared/collectedHeap.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    36
#include "gc/shared/gcHeapSummary.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    37
#include "gc/shared/gcTimer.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    38
#include "gc/shared/gcTrace.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34666
diff changeset
    39
#include "gc/shared/gcTraceTime.inline.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    40
#include "gc/shared/genCollectedHeap.hpp"
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31354
diff changeset
    41
#include "gc/shared/generation.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    42
#include "gc/shared/genOopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    43
#include "gc/shared/modRefBarrierSet.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    44
#include "gc/shared/referencePolicy.hpp"
50605
7f63c74f0974 8202845: Refactor reference processing for improved parallelism
tschatzl
parents: 50396
diff changeset
    45
#include "gc/shared/referenceProcessorPhaseTimes.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30262
diff changeset
    46
#include "gc/shared/space.hpp"
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
    47
#include "gc/shared/strongRootsScope.hpp"
47648
226b1fc611b9 8189359: Move native weak oops cleaning out of ReferenceProcessor
stefank
parents: 47216
diff changeset
    48
#include "gc/shared/weakProcessor.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    49
#include "oops/instanceRefKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    50
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    51
#include "prims/jvmtiExport.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    52
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    53
#include "runtime/synchronizer.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 13878
diff changeset
    54
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    55
#include "runtime/vmThread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    56
#include "utilities/copy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6762
diff changeset
    57
#include "utilities/events.hpp"
29702
9ed339a5e096 8075809: Add missing includes of stack.inline.hpp
stefank
parents: 29693
diff changeset
    58
#include "utilities/stack.inline.hpp"
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54178
diff changeset
    59
#if INCLUDE_JVMCI
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54178
diff changeset
    60
#include "jvmci/jvmci.hpp"
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54178
diff changeset
    61
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31354
diff changeset
    63
void GenMarkSweep::invoke_at_safepoint(ReferenceProcessor* rp, bool clear_all_softrefs) {
1
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
49047
8f004146e407 8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents: 47897
diff changeset
    68
  if (gch->soft_ref_policy()->should_clear_all_soft_refs()) {
5343
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");
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 31358
diff changeset
    76
  set_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
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17114
diff changeset
    79
  gch->trace_heap_before_gc(_gc_tracer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    81
  // Increment the invocation count
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    82
  _total_invocations++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Capture used regions for each generation that will be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // subject to collection, so that card table adjustments can
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // be made intelligently (see clear / invalidate further below).
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31354
diff changeset
    87
  gch->save_used_regions();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  allocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31354
diff changeset
    91
  mark_sweep_phase1(clear_all_softrefs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  mark_sweep_phase2();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Don't add any more derived pointers during phase3
47799
1772ebf07d1f 8152470: Add COMPILER2_OR_JVMCI definition
jcm
parents: 47676
diff changeset
    96
#if COMPILER2_OR_JVMCI
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32606
diff changeset
    97
  assert(DerivedPointerTable::is_active(), "Sanity");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32606
diff changeset
    98
  DerivedPointerTable::set_active(false);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32606
diff changeset
    99
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31354
diff changeset
   101
  mark_sweep_phase3();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  mark_sweep_phase4();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  restore_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // Set saved marks for allocation profiler (and other things? -- dld)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // (Should this be in general part?)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  gch->save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  deallocate_stacks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   113
  // If compaction completely evacuated the young generation then we
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   114
  // can clear the card table.  Otherwise, we must invalidate
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // it (consider all cards dirty).  In the future, we might consider doing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // compaction within generations only, and doing card-table sliding.
33212
906b3d079b13 8139434: Unify GenRemSet and CardTableRS
david
parents: 33107
diff changeset
   117
  CardTableRS* rs = gch->rem_set();
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   118
  Generation* old_gen = gch->old_gen();
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   119
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Clear/invalidate below make use of the "prev_used_regions" saved earlier.
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   121
  if (gch->young_gen()->used() == 0) {
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   122
    // We've evacuated the young generation.
19289
213031f03f61 8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents: 19286
diff changeset
   123
    rs->clear_into_younger(old_gen);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // Invalidate the cards corresponding to the currently used
19289
213031f03f61 8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents: 19286
diff changeset
   126
    // region and clear those corresponding to the evacuated region.
213031f03f61 8023021: Unnecessary clearing of the card table introduced by the fix for JDK-8023013
brutisso
parents: 19286
diff changeset
   127
    rs->invalidate_or_clear(old_gen);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
54178
98e21d4da074 8220609: Cleanups in ScavengableNMethods
stefank
parents: 54122
diff changeset
   130
  gch->prune_scavengable_nmethods();
7918
ce1e4ae77aea 7012505: BreakpointWithFullGC.sh fails with Internal Error (src/share/vm/oops/methodOop.cpp:220)
kamg
parents: 7397
diff changeset
   131
  JvmtiExport::gc_epilogue();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // refs processing: clean slate
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 31358
diff changeset
   134
  set_ref_processor(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Update heap occupancy information which is used as
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // input to soft ref clearing policy at the next gc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  Universe::update_heap_info_at_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Update time of last gc for all generations we collected
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
   141
  // (which currently is all the generations in the heap).
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22550
diff changeset
   142
  // We need to use a monotonically non-decreasing time in ms
11755
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11636
diff changeset
   143
  // or we will see time-warp warnings and os::javaTimeMillis()
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11636
diff changeset
   144
  // does not guarantee monotonicity.
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11636
diff changeset
   145
  jlong now = os::javaTimeNanos() / NANOSECS_PER_MILLISEC;
e68b5a95367b 7129514: time warp warnings after 7117303
johnc
parents: 11636
diff changeset
   146
  gch->update_time_of_last_gc(now);
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17114
diff changeset
   147
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17114
diff changeset
   148
  gch->trace_heap_after_gc(_gc_tracer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
void GenMarkSweep::allocate_stacks() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  GenCollectedHeap* gch = GenCollectedHeap::heap();
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   153
  // Scratch request on behalf of old generation; will do no allocation.
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   154
  ScratchBlock* scratch = gch->gather_scratch(gch->old_gen(), 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // $$$ To cut a corner, we'll only use the first scratch block, and then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // revert to malloc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  if (scratch != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    _preserved_count_max =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
      scratch->num_words * HeapWordSize / sizeof(PreservedMark);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    _preserved_count_max = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _preserved_marks = (PreservedMark*)scratch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  _preserved_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
void GenMarkSweep::deallocate_stacks() {
47897
eb3696e0c6d8 8189734: Cleanup MarkSweep when G1 dependency is gone
sjohanss
parents: 47799
diff changeset
   171
  GenCollectedHeap* gch = GenCollectedHeap::heap();
eb3696e0c6d8 8189734: Cleanup MarkSweep when G1 dependency is gone
sjohanss
parents: 47799
diff changeset
   172
  gch->release_scratch();
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 360
diff changeset
   173
6762
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   174
  _preserved_mark_stack.clear(true);
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   175
  _preserved_oop_stack.clear(true);
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   176
  _marking_stack.clear();
f8d1b560700e 6423256: GC stacks should use a better data structure
jcoomes
parents: 5547
diff changeset
   177
  _objarray_stack.clear(true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31354
diff changeset
   180
void GenMarkSweep::mark_sweep_phase1(bool clear_all_softrefs) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Recursively traverse all live objects and mark them
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37140
diff changeset
   182
  GCTraceTime(Info, gc, phases) tm("Phase 1: Mark live objects", _gc_timer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Because follow_root_closure is created statically, cannot
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // use OopsInGenClosure constructor which takes a generation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // as the Universe has not been created when the static constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // are run.
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   190
  follow_root_closure.set_orig_generation(gch->old_gen());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   192
  // Need new claim bits before marking starts.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   193
  ClassLoaderDataGraph::clear_claimed_marks();
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   194
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   195
  {
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   196
    StrongRootsScope srs(1);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   197
41683
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   198
    gch->full_process_roots(&srs,
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   199
                            false, // not the adjust phase
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   200
                            GenCollectedHeap::SO_None,
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   201
                            ClassUnloading, // only strong roots if ClassUnloading
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   202
                                            // is enabled
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   203
                            &follow_root_closure,
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   204
                            &follow_cld_closure);
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   205
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // Process reference objects found during marking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  {
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37140
diff changeset
   209
    GCTraceTime(Debug, gc, phases) tm_m("Reference Processing", gc_timer());
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37140
diff changeset
   210
1610
5dddd195cc86 6778647: snap(), snap_policy() should be renamed setup(), setup_policy()
ysr
parents: 1606
diff changeset
   211
    ref_processor()->setup_policy(clear_all_softrefs);
50396
7f48bff40a9a 8204094: assert(worker_i < _length) failed: Worker 15 is greater than max: 11 at ReferenceProcessorPhaseTimes
sangheki
parents: 50297
diff changeset
   212
    ReferenceProcessorPhaseTimes pt(_gc_timer, ref_processor()->max_num_queues());
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17114
diff changeset
   213
    const ReferenceProcessorStats& stats =
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17114
diff changeset
   214
      ref_processor()->process_discovered_references(
46795
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46505
diff changeset
   215
        &is_alive, &keep_alive, &follow_stack_closure, NULL, &pt);
623a5e42deb6 8173335: Improve logging for j.l.ref.reference processing
sangheki
parents: 46505
diff changeset
   216
    pt.print_all_references();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17114
diff changeset
   217
    gc_tracer()->report_gc_reference_stats(stats);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
47676
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   220
  // This is the point where the entire marking should have completed.
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   221
  assert(_marking_stack.is_empty(), "Marking should have completed");
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   222
47648
226b1fc611b9 8189359: Move native weak oops cleaning out of ReferenceProcessor
stefank
parents: 47216
diff changeset
   223
  {
226b1fc611b9 8189359: Move native weak oops cleaning out of ReferenceProcessor
stefank
parents: 47216
diff changeset
   224
    GCTraceTime(Debug, gc, phases) tm_m("Weak Processing", gc_timer());
47676
b1c020fc35a3 8189748: More precise closures for WeakProcessor::weak_oops_do calls
stefank
parents: 47648
diff changeset
   225
    WeakProcessor::weak_oops_do(&is_alive, &do_nothing_cl);
47648
226b1fc611b9 8189359: Move native weak oops cleaning out of ReferenceProcessor
stefank
parents: 47216
diff changeset
   226
  }
226b1fc611b9 8189359: Move native weak oops cleaning out of ReferenceProcessor
stefank
parents: 47216
diff changeset
   227
37140
b62549ead2cf 8027423: Parallel compact GC class unloading measurement includes symbol and string table time
stefank
parents: 35061
diff changeset
   228
  {
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37140
diff changeset
   229
    GCTraceTime(Debug, gc, phases) tm_m("Class Unloading", gc_timer());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
37140
b62549ead2cf 8027423: Parallel compact GC class unloading measurement includes symbol and string table time
stefank
parents: 35061
diff changeset
   231
    // Unload classes and purge the SystemDictionary.
50297
580744d900c8 8202813: Move vm_weak processing from SystemDictionary to WeakProcessor
coleenp
parents: 49969
diff changeset
   232
    bool purged_class = SystemDictionary::do_unloading(gc_timer());
37140
b62549ead2cf 8027423: Parallel compact GC class unloading measurement includes symbol and string table time
stefank
parents: 35061
diff changeset
   233
b62549ead2cf 8027423: Parallel compact GC class unloading measurement includes symbol and string table time
stefank
parents: 35061
diff changeset
   234
    // Unload nmethods.
b62549ead2cf 8027423: Parallel compact GC class unloading measurement includes symbol and string table time
stefank
parents: 35061
diff changeset
   235
    CodeCache::do_unloading(&is_alive, purged_class);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
37140
b62549ead2cf 8027423: Parallel compact GC class unloading measurement includes symbol and string table time
stefank
parents: 35061
diff changeset
   237
    // Prune dead klasses from subklass/sibling/implementor lists.
49969
8624981f1ffa 8202447: Fix unloading_occurred to mean unloading_occurred
coleenp
parents: 49967
diff changeset
   238
    Klass::clean_weak_klass_links(purged_class);
54669
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54178
diff changeset
   239
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54178
diff changeset
   240
    // Clean JVMCI metadata handles.
ad45b3802d4e 8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents: 54178
diff changeset
   241
    JVMCI_ONLY(JVMCI::do_unloading(purged_class));
37140
b62549ead2cf 8027423: Parallel compact GC class unloading measurement includes symbol and string table time
stefank
parents: 35061
diff changeset
   242
  }
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 1610
diff changeset
   243
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17114
diff changeset
   244
  gc_tracer()->report_object_count_after_gc(&is_alive);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
void GenMarkSweep::mark_sweep_phase2() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  // Now all live objects are marked, compute the new object addresses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // It is imperative that we traverse perm_gen LAST. If dead space is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  // allowed a range of dead object may get overwritten by a dead int
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   253
  // array. If perm_gen is not traversed last a Klass* may get
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // overwritten. This is fine since it is dead, but if the class has dead
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // instances we have to skip them, and in order to find their size we
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   256
  // need the Klass*!
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // It is not required that we traverse spaces in the same order in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // phase2, phase3 and phase4, but the ValidateMarkSweep live oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // tracking expects us to do so. See comment under phase4.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37140
diff changeset
   264
  GCTraceTime(Info, gc, phases) tm("Phase 2: Compute new object addresses", _gc_timer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  gch->prepare_for_compaction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
class GenAdjustPointersClosure: public GenCollectedHeap::GenClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void do_generation(Generation* gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
    gen->adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
31358
693058672cc6 8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents: 31354
diff changeset
   276
void GenMarkSweep::mark_sweep_phase3() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // Adjust the pointers to reflect the new locations
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37140
diff changeset
   280
  GCTraceTime(Info, gc, phases) tm("Phase 3: Adjust pointers", gc_timer());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   282
  // Need new claim bits for the pointer adjustment tracing.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   283
  ClassLoaderDataGraph::clear_claimed_marks();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
17105
25b392a7740d 8012687: Remove unused is_root checks and closures
stefank
parents: 15088
diff changeset
   285
  // Because the closure below is created statically, we cannot
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // use OopsInGenClosure constructor which takes a generation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  // as the Universe has not been created when the static constructors
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // are run.
29684
a36d90acae41 8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents: 29200
diff changeset
   289
  adjust_pointer_closure.set_orig_generation(gch->old_gen());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   291
  {
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   292
    StrongRootsScope srs(1);
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   293
41683
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   294
    gch->full_process_roots(&srs,
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   295
                            true,  // this is the adjust phase
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   296
                            GenCollectedHeap::SO_AllCodeCache,
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   297
                            false, // all roots
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   298
                            &adjust_pointer_closure,
cd5d2527e163 8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents: 41682
diff changeset
   299
                            &adjust_cld_closure);
30868
c1b24f26deed 8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents: 30764
diff changeset
   300
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
22882
195c8f70d605 8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents: 22551
diff changeset
   302
  gch->gen_process_weak_roots(&adjust_pointer_closure);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  adjust_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  GenAdjustPointersClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  gch->generation_iterate(&blk, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
class GenCompactClosure: public GenCollectedHeap::GenClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  void do_generation(Generation* gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    gen->compact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
void GenMarkSweep::mark_sweep_phase4() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  // All pointers are now adjusted, move objects accordingly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  // It is imperative that we traverse perm_gen first in phase4. All
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // classes must be allocated earlier than their instances, and traversing
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   321
  // perm_gen first makes sure that all Klass*s have moved to their new
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // location before any instance does a dispatch through it's klass!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // The ValidateMarkSweep live oops tracking expects us to traverse spaces
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // in the same order in phase2, phase3 and phase4. We don't quite do that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // here (perm_gen first rather than last), so we tell the validate code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // to use a higher index (saved from phase2) when verifying perm_gen.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  GenCollectedHeap* gch = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
37146
209e0fe518bb 8152100: Rework and unify the GC phase logging
stefank
parents: 37140
diff changeset
   330
  GCTraceTime(Info, gc, phases) tm("Phase 4: Move objects", _gc_timer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  GenCompactClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  gch->generation_iterate(&blk, true);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
}